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 /* If non-zero, use only whitelisted block drivers */
67 static int use_bdrv_whitelist
;
69 int path_is_absolute(const char *path
)
73 /* specific case for names like: "\\.\d:" */
74 if (*path
== '/' || *path
== '\\')
77 p
= strchr(path
, ':');
83 return (*p
== '/' || *p
== '\\');
89 /* if filename is absolute, just copy it to dest. Otherwise, build a
90 path to it by considering it is relative to base_path. URL are
92 void path_combine(char *dest
, int dest_size
,
93 const char *base_path
,
101 if (path_is_absolute(filename
)) {
102 pstrcpy(dest
, dest_size
, filename
);
104 p
= strchr(base_path
, ':');
109 p1
= strrchr(base_path
, '/');
113 p2
= strrchr(base_path
, '\\');
125 if (len
> dest_size
- 1)
127 memcpy(dest
, base_path
, len
);
129 pstrcat(dest
, dest_size
, filename
);
133 void bdrv_register(BlockDriver
*bdrv
)
135 if (!bdrv
->bdrv_aio_readv
) {
136 /* add AIO emulation layer */
137 bdrv
->bdrv_aio_readv
= bdrv_aio_readv_em
;
138 bdrv
->bdrv_aio_writev
= bdrv_aio_writev_em
;
139 } else if (!bdrv
->bdrv_read
) {
140 /* add synchronous IO emulation layer */
141 bdrv
->bdrv_read
= bdrv_read_em
;
142 bdrv
->bdrv_write
= bdrv_write_em
;
145 if (!bdrv
->bdrv_aio_flush
)
146 bdrv
->bdrv_aio_flush
= bdrv_aio_flush_em
;
148 QLIST_INSERT_HEAD(&bdrv_drivers
, bdrv
, list
);
151 /* create a new block device (by default it is empty) */
152 BlockDriverState
*bdrv_new(const char *device_name
)
154 BlockDriverState
*bs
;
156 bs
= qemu_mallocz(sizeof(BlockDriverState
));
157 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
158 if (device_name
[0] != '\0') {
159 QTAILQ_INSERT_TAIL(&bdrv_states
, bs
, list
);
164 BlockDriver
*bdrv_find_format(const char *format_name
)
167 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
168 if (!strcmp(drv1
->format_name
, format_name
)) {
175 static int bdrv_is_whitelisted(BlockDriver
*drv
)
177 static const char *whitelist
[] = {
178 CONFIG_BDRV_WHITELIST
183 return 1; /* no whitelist, anything goes */
185 for (p
= whitelist
; *p
; p
++) {
186 if (!strcmp(drv
->format_name
, *p
)) {
193 BlockDriver
*bdrv_find_whitelisted_format(const char *format_name
)
195 BlockDriver
*drv
= bdrv_find_format(format_name
);
196 return drv
&& bdrv_is_whitelisted(drv
) ? drv
: NULL
;
199 int bdrv_create(BlockDriver
*drv
, const char* filename
,
200 QEMUOptionParameter
*options
)
202 if (!drv
->bdrv_create
)
205 return drv
->bdrv_create(filename
, options
);
208 int bdrv_create_file(const char* filename
, QEMUOptionParameter
*options
)
212 drv
= bdrv_find_protocol(filename
);
214 drv
= bdrv_find_format("file");
217 return bdrv_create(drv
, filename
, options
);
221 void get_tmp_filename(char *filename
, int size
)
223 char temp_dir
[MAX_PATH
];
225 GetTempPath(MAX_PATH
, temp_dir
);
226 GetTempFileName(temp_dir
, "qem", 0, filename
);
229 void get_tmp_filename(char *filename
, int size
)
233 /* XXX: race condition possible */
234 tmpdir
= getenv("TMPDIR");
237 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
238 fd
= mkstemp(filename
);
244 static int is_windows_drive_prefix(const char *filename
)
246 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
247 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
251 int is_windows_drive(const char *filename
)
253 if (is_windows_drive_prefix(filename
) &&
256 if (strstart(filename
, "\\\\.\\", NULL
) ||
257 strstart(filename
, "//./", NULL
))
264 * Detect host devices. By convention, /dev/cdrom[N] is always
265 * recognized as a host CDROM.
267 static BlockDriver
*find_hdev_driver(const char *filename
)
269 int score_max
= 0, score
;
270 BlockDriver
*drv
= NULL
, *d
;
272 QLIST_FOREACH(d
, &bdrv_drivers
, list
) {
273 if (d
->bdrv_probe_device
) {
274 score
= d
->bdrv_probe_device(filename
);
275 if (score
> score_max
) {
285 BlockDriver
*bdrv_find_protocol(const char *filename
)
293 /* TODO Drivers without bdrv_file_open must be specified explicitly */
296 is_drive
= is_windows_drive(filename
) ||
297 is_windows_drive_prefix(filename
);
301 p
= strchr(filename
, ':');
302 if (!p
|| is_drive
) {
303 drv1
= find_hdev_driver(filename
);
305 drv1
= bdrv_find_format("file");
310 if (len
> sizeof(protocol
) - 1)
311 len
= sizeof(protocol
) - 1;
312 memcpy(protocol
, filename
, len
);
313 protocol
[len
] = '\0';
314 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
315 if (drv1
->protocol_name
&&
316 !strcmp(drv1
->protocol_name
, protocol
)) {
323 static BlockDriver
*find_image_format(const char *filename
)
325 int ret
, score
, score_max
;
326 BlockDriver
*drv1
, *drv
;
328 BlockDriverState
*bs
;
330 ret
= bdrv_file_open(&bs
, filename
, 0);
334 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
335 if (bs
->sg
|| !bdrv_is_inserted(bs
)) {
337 return bdrv_find_format("raw");
340 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
348 QLIST_FOREACH(drv1
, &bdrv_drivers
, list
) {
349 if (drv1
->bdrv_probe
) {
350 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
351 if (score
> score_max
) {
361 * Set the current 'total_sectors' value
363 static int refresh_total_sectors(BlockDriverState
*bs
, int64_t hint
)
365 BlockDriver
*drv
= bs
->drv
;
367 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
371 /* query actual device if possible, otherwise just trust the hint */
372 if (drv
->bdrv_getlength
) {
373 int64_t length
= drv
->bdrv_getlength(bs
);
377 hint
= length
>> BDRV_SECTOR_BITS
;
380 bs
->total_sectors
= hint
;
385 * Common part for opening disk images and files
387 static int bdrv_open_common(BlockDriverState
*bs
, const char *filename
,
388 int flags
, BlockDriver
*drv
)
395 bs
->total_sectors
= 0;
396 bs
->is_temporary
= 0;
399 bs
->open_flags
= flags
;
400 /* buffer_alignment defaulted to 512, drivers can change this value */
401 bs
->buffer_alignment
= 512;
403 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
405 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
)) {
410 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
413 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
414 * write cache to the guest. We do need the fdatasync to flush
415 * out transactions for block allocations, and we maybe have a
416 * volatile write cache in our backing device to deal with.
418 if (flags
& (BDRV_O_CACHE_WB
|BDRV_O_NOCACHE
))
419 bs
->enable_write_cache
= 1;
422 * Clear flags that are internal to the block layer before opening the
425 open_flags
= flags
& ~(BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
428 * Snapshots should be writeable.
430 if (bs
->is_temporary
) {
431 open_flags
|= BDRV_O_RDWR
;
434 /* Open the image, either directly or using a protocol */
435 if (drv
->bdrv_file_open
) {
436 ret
= drv
->bdrv_file_open(bs
, filename
, open_flags
);
438 ret
= bdrv_file_open(&bs
->file
, filename
, open_flags
);
440 ret
= drv
->bdrv_open(bs
, open_flags
);
448 bs
->keep_read_only
= bs
->read_only
= !(open_flags
& BDRV_O_RDWR
);
450 ret
= refresh_total_sectors(bs
, bs
->total_sectors
);
456 if (bs
->is_temporary
) {
464 bdrv_delete(bs
->file
);
467 qemu_free(bs
->opaque
);
474 * Opens a file using a protocol (file, host_device, nbd, ...)
476 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
478 BlockDriverState
*bs
;
482 drv
= bdrv_find_protocol(filename
);
488 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
499 * Opens a disk image (raw, qcow2, vmdk, ...)
501 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
,
506 if (flags
& BDRV_O_SNAPSHOT
) {
507 BlockDriverState
*bs1
;
510 BlockDriver
*bdrv_qcow2
;
511 QEMUOptionParameter
*options
;
512 char tmp_filename
[PATH_MAX
];
513 char backing_filename
[PATH_MAX
];
515 /* if snapshot, we create a temporary backing file and open it
516 instead of opening 'filename' directly */
518 /* if there is a backing file, use it */
520 ret
= bdrv_open(bs1
, filename
, 0, drv
);
525 total_size
= bdrv_getlength(bs1
) & BDRV_SECTOR_MASK
;
527 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
532 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
534 /* Real path is meaningless for protocols */
536 snprintf(backing_filename
, sizeof(backing_filename
),
538 else if (!realpath(filename
, backing_filename
))
541 bdrv_qcow2
= bdrv_find_format("qcow2");
542 options
= parse_option_parameters("", bdrv_qcow2
->create_options
, NULL
);
544 set_option_parameter_int(options
, BLOCK_OPT_SIZE
, total_size
);
545 set_option_parameter(options
, BLOCK_OPT_BACKING_FILE
, backing_filename
);
547 set_option_parameter(options
, BLOCK_OPT_BACKING_FMT
,
551 ret
= bdrv_create(bdrv_qcow2
, tmp_filename
, options
);
552 free_option_parameters(options
);
557 filename
= tmp_filename
;
559 bs
->is_temporary
= 1;
562 /* Find the right image format driver */
564 drv
= find_image_format(filename
);
569 goto unlink_and_fail
;
573 ret
= bdrv_open_common(bs
, filename
, flags
, drv
);
575 goto unlink_and_fail
;
578 /* If there is a backing file, use it */
579 if ((flags
& BDRV_O_NO_BACKING
) == 0 && bs
->backing_file
[0] != '\0') {
580 char backing_filename
[PATH_MAX
];
582 BlockDriver
*back_drv
= NULL
;
584 bs
->backing_hd
= bdrv_new("");
585 path_combine(backing_filename
, sizeof(backing_filename
),
586 filename
, bs
->backing_file
);
587 if (bs
->backing_format
[0] != '\0')
588 back_drv
= bdrv_find_format(bs
->backing_format
);
590 /* backing files always opened read-only */
592 flags
& ~(BDRV_O_RDWR
| BDRV_O_SNAPSHOT
| BDRV_O_NO_BACKING
);
594 ret
= bdrv_open(bs
->backing_hd
, backing_filename
, back_flags
, back_drv
);
599 if (bs
->is_temporary
) {
600 bs
->backing_hd
->keep_read_only
= !(flags
& BDRV_O_RDWR
);
602 /* base image inherits from "parent" */
603 bs
->backing_hd
->keep_read_only
= bs
->keep_read_only
;
607 if (!bdrv_key_required(bs
)) {
608 /* call the change callback */
609 bs
->media_changed
= 1;
611 bs
->change_cb(bs
->change_opaque
);
617 if (bs
->is_temporary
) {
623 void bdrv_close(BlockDriverState
*bs
)
626 if (bs
->backing_hd
) {
627 bdrv_delete(bs
->backing_hd
);
628 bs
->backing_hd
= NULL
;
630 bs
->drv
->bdrv_close(bs
);
631 qemu_free(bs
->opaque
);
633 if (bs
->is_temporary
) {
634 unlink(bs
->filename
);
640 if (bs
->file
!= NULL
) {
641 bdrv_close(bs
->file
);
644 /* call the change callback */
645 bs
->media_changed
= 1;
647 bs
->change_cb(bs
->change_opaque
);
651 void bdrv_close_all(void)
653 BlockDriverState
*bs
;
655 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
660 void bdrv_delete(BlockDriverState
*bs
)
662 /* remove from list, if necessary */
663 if (bs
->device_name
[0] != '\0') {
664 QTAILQ_REMOVE(&bdrv_states
, bs
, list
);
668 if (bs
->file
!= NULL
) {
669 bdrv_delete(bs
->file
);
676 * Run consistency checks on an image
678 * Returns the number of errors or -errno when an internal error occurs
680 int bdrv_check(BlockDriverState
*bs
)
682 if (bs
->drv
->bdrv_check
== NULL
) {
686 return bs
->drv
->bdrv_check(bs
);
689 /* commit COW file into the raw image */
690 int bdrv_commit(BlockDriverState
*bs
)
692 BlockDriver
*drv
= bs
->drv
;
693 int64_t i
, total_sectors
;
694 int n
, j
, ro
, open_flags
;
695 int ret
= 0, rw_ret
= 0;
696 unsigned char sector
[BDRV_SECTOR_SIZE
];
698 BlockDriverState
*bs_rw
, *bs_ro
;
703 if (!bs
->backing_hd
) {
707 if (bs
->backing_hd
->keep_read_only
) {
711 ro
= bs
->backing_hd
->read_only
;
712 strncpy(filename
, bs
->backing_hd
->filename
, sizeof(filename
));
713 open_flags
= bs
->backing_hd
->open_flags
;
717 bdrv_delete(bs
->backing_hd
);
718 bs
->backing_hd
= NULL
;
719 bs_rw
= bdrv_new("");
720 rw_ret
= bdrv_open(bs_rw
, filename
, open_flags
| BDRV_O_RDWR
, drv
);
723 /* try to re-open read-only */
724 bs_ro
= bdrv_new("");
725 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
, drv
);
728 /* drive not functional anymore */
732 bs
->backing_hd
= bs_ro
;
735 bs
->backing_hd
= bs_rw
;
738 total_sectors
= bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
;
739 for (i
= 0; i
< total_sectors
;) {
740 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
741 for(j
= 0; j
< n
; j
++) {
742 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
747 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
758 if (drv
->bdrv_make_empty
) {
759 ret
= drv
->bdrv_make_empty(bs
);
764 * Make sure all data we wrote to the backing device is actually
768 bdrv_flush(bs
->backing_hd
);
774 bdrv_delete(bs
->backing_hd
);
775 bs
->backing_hd
= NULL
;
776 bs_ro
= bdrv_new("");
777 ret
= bdrv_open(bs_ro
, filename
, open_flags
& ~BDRV_O_RDWR
, drv
);
780 /* drive not functional anymore */
784 bs
->backing_hd
= bs_ro
;
785 bs
->backing_hd
->keep_read_only
= 0;
794 * -EINVAL - backing format specified, but no file
795 * -ENOSPC - can't update the backing file because no space is left in the
797 * -ENOTSUP - format driver doesn't support changing the backing file
799 int bdrv_change_backing_file(BlockDriverState
*bs
,
800 const char *backing_file
, const char *backing_fmt
)
802 BlockDriver
*drv
= bs
->drv
;
804 if (drv
->bdrv_change_backing_file
!= NULL
) {
805 return drv
->bdrv_change_backing_file(bs
, backing_file
, backing_fmt
);
811 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
816 if (!bdrv_is_inserted(bs
))
822 len
= bdrv_getlength(bs
);
827 if ((offset
> len
) || (len
- offset
< size
))
833 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
836 return bdrv_check_byte_request(bs
, sector_num
* BDRV_SECTOR_SIZE
,
837 nb_sectors
* BDRV_SECTOR_SIZE
);
840 /* return < 0 if error. See bdrv_write() for the return codes */
841 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
842 uint8_t *buf
, int nb_sectors
)
844 BlockDriver
*drv
= bs
->drv
;
848 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
851 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
854 static void set_dirty_bitmap(BlockDriverState
*bs
, int64_t sector_num
,
855 int nb_sectors
, int dirty
)
858 unsigned long val
, idx
, bit
;
860 start
= sector_num
/ BDRV_SECTORS_PER_DIRTY_CHUNK
;
861 end
= (sector_num
+ nb_sectors
- 1) / BDRV_SECTORS_PER_DIRTY_CHUNK
;
863 for (; start
<= end
; start
++) {
864 idx
= start
/ (sizeof(unsigned long) * 8);
865 bit
= start
% (sizeof(unsigned long) * 8);
866 val
= bs
->dirty_bitmap
[idx
];
868 if (!(val
& (1 << bit
))) {
873 if (val
& (1 << bit
)) {
878 bs
->dirty_bitmap
[idx
] = val
;
882 /* Return < 0 if error. Important errors are:
883 -EIO generic I/O error (may happen for all errors)
884 -ENOMEDIUM No media inserted.
885 -EINVAL Invalid sector number or nb_sectors
886 -EACCES Trying to write a read-only device
888 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
889 const uint8_t *buf
, int nb_sectors
)
891 BlockDriver
*drv
= bs
->drv
;
896 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
899 if (bs
->dirty_bitmap
) {
900 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
903 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
904 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
907 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
910 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
911 void *buf
, int count1
)
913 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
914 int len
, nb_sectors
, count
;
919 /* first read to align to sector start */
920 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
923 sector_num
= offset
>> BDRV_SECTOR_BITS
;
925 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
927 memcpy(buf
, tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), len
);
935 /* read the sectors "in place" */
936 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
937 if (nb_sectors
> 0) {
938 if ((ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
)) < 0)
940 sector_num
+= nb_sectors
;
941 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
946 /* add data from the last sector */
948 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
950 memcpy(buf
, tmp_buf
, count
);
955 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
956 const void *buf
, int count1
)
958 uint8_t tmp_buf
[BDRV_SECTOR_SIZE
];
959 int len
, nb_sectors
, count
;
964 /* first write to align to sector start */
965 len
= (BDRV_SECTOR_SIZE
- offset
) & (BDRV_SECTOR_SIZE
- 1);
968 sector_num
= offset
>> BDRV_SECTOR_BITS
;
970 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
972 memcpy(tmp_buf
+ (offset
& (BDRV_SECTOR_SIZE
- 1)), buf
, len
);
973 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
982 /* write the sectors "in place" */
983 nb_sectors
= count
>> BDRV_SECTOR_BITS
;
984 if (nb_sectors
> 0) {
985 if ((ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
)) < 0)
987 sector_num
+= nb_sectors
;
988 len
= nb_sectors
<< BDRV_SECTOR_BITS
;
993 /* add data from the last sector */
995 if ((ret
= bdrv_read(bs
, sector_num
, tmp_buf
, 1)) < 0)
997 memcpy(tmp_buf
, buf
, count
);
998 if ((ret
= bdrv_write(bs
, sector_num
, tmp_buf
, 1)) < 0)
1005 * Truncate file to 'offset' bytes (needed only for file protocols)
1007 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
1009 BlockDriver
*drv
= bs
->drv
;
1013 if (!drv
->bdrv_truncate
)
1017 ret
= drv
->bdrv_truncate(bs
, offset
);
1019 ret
= refresh_total_sectors(bs
, offset
>> BDRV_SECTOR_BITS
);
1025 * Length of a file in bytes. Return < 0 if error or unknown.
1027 int64_t bdrv_getlength(BlockDriverState
*bs
)
1029 BlockDriver
*drv
= bs
->drv
;
1033 /* Fixed size devices use the total_sectors value for speed instead of
1034 issuing a length query (like lseek) on each call. Also, legacy block
1035 drivers don't provide a bdrv_getlength function and must use
1037 if (!bs
->growable
|| !drv
->bdrv_getlength
) {
1038 return bs
->total_sectors
* BDRV_SECTOR_SIZE
;
1040 return drv
->bdrv_getlength(bs
);
1043 /* return 0 as number of sectors if no device present or error */
1044 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
1047 length
= bdrv_getlength(bs
);
1051 length
= length
>> BDRV_SECTOR_BITS
;
1052 *nb_sectors_ptr
= length
;
1056 uint8_t boot_ind
; /* 0x80 - active */
1057 uint8_t head
; /* starting head */
1058 uint8_t sector
; /* starting sector */
1059 uint8_t cyl
; /* starting cylinder */
1060 uint8_t sys_ind
; /* What partition type */
1061 uint8_t end_head
; /* end head */
1062 uint8_t end_sector
; /* end sector */
1063 uint8_t end_cyl
; /* end cylinder */
1064 uint32_t start_sect
; /* starting sector counting from 0 */
1065 uint32_t nr_sects
; /* nr of sectors in partition */
1066 } __attribute__((packed
));
1068 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1069 static int guess_disk_lchs(BlockDriverState
*bs
,
1070 int *pcylinders
, int *pheads
, int *psectors
)
1072 uint8_t buf
[BDRV_SECTOR_SIZE
];
1073 int ret
, i
, heads
, sectors
, cylinders
;
1074 struct partition
*p
;
1076 uint64_t nb_sectors
;
1078 bdrv_get_geometry(bs
, &nb_sectors
);
1080 ret
= bdrv_read(bs
, 0, buf
, 1);
1083 /* test msdos magic */
1084 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
1086 for(i
= 0; i
< 4; i
++) {
1087 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
1088 nr_sects
= le32_to_cpu(p
->nr_sects
);
1089 if (nr_sects
&& p
->end_head
) {
1090 /* We make the assumption that the partition terminates on
1091 a cylinder boundary */
1092 heads
= p
->end_head
+ 1;
1093 sectors
= p
->end_sector
& 63;
1096 cylinders
= nb_sectors
/ (heads
* sectors
);
1097 if (cylinders
< 1 || cylinders
> 16383)
1100 *psectors
= sectors
;
1101 *pcylinders
= cylinders
;
1103 printf("guessed geometry: LCHS=%d %d %d\n",
1104 cylinders
, heads
, sectors
);
1112 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
1114 int translation
, lba_detected
= 0;
1115 int cylinders
, heads
, secs
;
1116 uint64_t nb_sectors
;
1118 /* if a geometry hint is available, use it */
1119 bdrv_get_geometry(bs
, &nb_sectors
);
1120 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
1121 translation
= bdrv_get_translation_hint(bs
);
1122 if (cylinders
!= 0) {
1127 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
1129 /* if heads > 16, it means that a BIOS LBA
1130 translation was active, so the default
1131 hardware geometry is OK */
1133 goto default_geometry
;
1138 /* disable any translation to be in sync with
1139 the logical geometry */
1140 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
1141 bdrv_set_translation_hint(bs
,
1142 BIOS_ATA_TRANSLATION_NONE
);
1147 /* if no geometry, use a standard physical disk geometry */
1148 cylinders
= nb_sectors
/ (16 * 63);
1150 if (cylinders
> 16383)
1152 else if (cylinders
< 2)
1157 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
1158 if ((*pcyls
* *pheads
) <= 131072) {
1159 bdrv_set_translation_hint(bs
,
1160 BIOS_ATA_TRANSLATION_LARGE
);
1162 bdrv_set_translation_hint(bs
,
1163 BIOS_ATA_TRANSLATION_LBA
);
1167 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
1171 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
1172 int cyls
, int heads
, int secs
)
1179 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
1182 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
1183 type
== BDRV_TYPE_FLOPPY
));
1186 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
1188 bs
->translation
= translation
;
1191 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
1192 int *pcyls
, int *pheads
, int *psecs
)
1195 *pheads
= bs
->heads
;
1199 int bdrv_get_type_hint(BlockDriverState
*bs
)
1204 int bdrv_get_translation_hint(BlockDriverState
*bs
)
1206 return bs
->translation
;
1209 int bdrv_is_removable(BlockDriverState
*bs
)
1211 return bs
->removable
;
1214 int bdrv_is_read_only(BlockDriverState
*bs
)
1216 return bs
->read_only
;
1219 int bdrv_is_sg(BlockDriverState
*bs
)
1224 int bdrv_enable_write_cache(BlockDriverState
*bs
)
1226 return bs
->enable_write_cache
;
1229 /* XXX: no longer used */
1230 void bdrv_set_change_cb(BlockDriverState
*bs
,
1231 void (*change_cb
)(void *opaque
), void *opaque
)
1233 bs
->change_cb
= change_cb
;
1234 bs
->change_opaque
= opaque
;
1237 int bdrv_is_encrypted(BlockDriverState
*bs
)
1239 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1241 return bs
->encrypted
;
1244 int bdrv_key_required(BlockDriverState
*bs
)
1246 BlockDriverState
*backing_hd
= bs
->backing_hd
;
1248 if (backing_hd
&& backing_hd
->encrypted
&& !backing_hd
->valid_key
)
1250 return (bs
->encrypted
&& !bs
->valid_key
);
1253 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
1256 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
1257 ret
= bdrv_set_key(bs
->backing_hd
, key
);
1263 if (!bs
->encrypted
) {
1265 } else if (!bs
->drv
|| !bs
->drv
->bdrv_set_key
) {
1268 ret
= bs
->drv
->bdrv_set_key(bs
, key
);
1271 } else if (!bs
->valid_key
) {
1273 /* call the change callback now, we skipped it on open */
1274 bs
->media_changed
= 1;
1276 bs
->change_cb(bs
->change_opaque
);
1281 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
1286 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
1290 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
1295 QLIST_FOREACH(drv
, &bdrv_drivers
, list
) {
1296 it(opaque
, drv
->format_name
);
1300 BlockDriverState
*bdrv_find(const char *name
)
1302 BlockDriverState
*bs
;
1304 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1305 if (!strcmp(name
, bs
->device_name
)) {
1312 void bdrv_iterate(void (*it
)(void *opaque
, BlockDriverState
*bs
), void *opaque
)
1314 BlockDriverState
*bs
;
1316 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1321 const char *bdrv_get_device_name(BlockDriverState
*bs
)
1323 return bs
->device_name
;
1326 void bdrv_flush(BlockDriverState
*bs
)
1328 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
1332 if (bs
->drv
&& bs
->drv
->bdrv_flush
)
1333 bs
->drv
->bdrv_flush(bs
);
1336 void bdrv_flush_all(void)
1338 BlockDriverState
*bs
;
1340 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1341 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1342 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
))) {
1348 int bdrv_has_zero_init(BlockDriverState
*bs
)
1352 if (bs
->drv
->no_zero_init
) {
1354 } else if (bs
->file
) {
1355 return bdrv_has_zero_init(bs
->file
);
1362 * Returns true iff the specified sector is present in the disk image. Drivers
1363 * not implementing the functionality are assumed to not support backing files,
1364 * hence all their sectors are reported as allocated.
1366 * 'pnum' is set to the number of sectors (including and immediately following
1367 * the specified sector) that are known to be in the same
1368 * allocated/unallocated state.
1370 * 'nb_sectors' is the max value 'pnum' should be set to.
1372 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1376 if (!bs
->drv
->bdrv_is_allocated
) {
1377 if (sector_num
>= bs
->total_sectors
) {
1381 n
= bs
->total_sectors
- sector_num
;
1382 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1385 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1388 void bdrv_mon_event(const BlockDriverState
*bdrv
,
1389 BlockMonEventAction action
, int is_read
)
1392 const char *action_str
;
1395 case BDRV_ACTION_REPORT
:
1396 action_str
= "report";
1398 case BDRV_ACTION_IGNORE
:
1399 action_str
= "ignore";
1401 case BDRV_ACTION_STOP
:
1402 action_str
= "stop";
1408 data
= qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1411 is_read
? "read" : "write");
1412 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR
, data
);
1414 qobject_decref(data
);
1417 static void bdrv_print_dict(QObject
*obj
, void *opaque
)
1420 Monitor
*mon
= opaque
;
1422 bs_dict
= qobject_to_qdict(obj
);
1424 monitor_printf(mon
, "%s: type=%s removable=%d",
1425 qdict_get_str(bs_dict
, "device"),
1426 qdict_get_str(bs_dict
, "type"),
1427 qdict_get_bool(bs_dict
, "removable"));
1429 if (qdict_get_bool(bs_dict
, "removable")) {
1430 monitor_printf(mon
, " locked=%d", qdict_get_bool(bs_dict
, "locked"));
1433 if (qdict_haskey(bs_dict
, "inserted")) {
1434 QDict
*qdict
= qobject_to_qdict(qdict_get(bs_dict
, "inserted"));
1436 monitor_printf(mon
, " file=");
1437 monitor_print_filename(mon
, qdict_get_str(qdict
, "file"));
1438 if (qdict_haskey(qdict
, "backing_file")) {
1439 monitor_printf(mon
, " backing_file=");
1440 monitor_print_filename(mon
, qdict_get_str(qdict
, "backing_file"));
1442 monitor_printf(mon
, " ro=%d drv=%s encrypted=%d",
1443 qdict_get_bool(qdict
, "ro"),
1444 qdict_get_str(qdict
, "drv"),
1445 qdict_get_bool(qdict
, "encrypted"));
1447 monitor_printf(mon
, " [not inserted]");
1450 monitor_printf(mon
, "\n");
1453 void bdrv_info_print(Monitor
*mon
, const QObject
*data
)
1455 qlist_iter(qobject_to_qlist(data
), bdrv_print_dict
, mon
);
1458 void bdrv_info(Monitor
*mon
, QObject
**ret_data
)
1461 BlockDriverState
*bs
;
1463 bs_list
= qlist_new();
1465 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1467 const char *type
= "unknown";
1473 case BDRV_TYPE_CDROM
:
1476 case BDRV_TYPE_FLOPPY
:
1481 bs_obj
= qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1482 "'removable': %i, 'locked': %i }",
1483 bs
->device_name
, type
, bs
->removable
,
1488 QDict
*bs_dict
= qobject_to_qdict(bs_obj
);
1490 obj
= qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1491 "'encrypted': %i }",
1492 bs
->filename
, bs
->read_only
,
1493 bs
->drv
->format_name
,
1494 bdrv_is_encrypted(bs
));
1495 if (bs
->backing_file
[0] != '\0') {
1496 QDict
*qdict
= qobject_to_qdict(obj
);
1497 qdict_put(qdict
, "backing_file",
1498 qstring_from_str(bs
->backing_file
));
1501 qdict_put_obj(bs_dict
, "inserted", obj
);
1503 qlist_append_obj(bs_list
, bs_obj
);
1506 *ret_data
= QOBJECT(bs_list
);
1509 static void bdrv_stats_iter(QObject
*data
, void *opaque
)
1512 Monitor
*mon
= opaque
;
1514 qdict
= qobject_to_qdict(data
);
1515 monitor_printf(mon
, "%s:", qdict_get_str(qdict
, "device"));
1517 qdict
= qobject_to_qdict(qdict_get(qdict
, "stats"));
1518 monitor_printf(mon
, " rd_bytes=%" PRId64
1519 " wr_bytes=%" PRId64
1520 " rd_operations=%" PRId64
1521 " wr_operations=%" PRId64
1523 qdict_get_int(qdict
, "rd_bytes"),
1524 qdict_get_int(qdict
, "wr_bytes"),
1525 qdict_get_int(qdict
, "rd_operations"),
1526 qdict_get_int(qdict
, "wr_operations"));
1529 void bdrv_stats_print(Monitor
*mon
, const QObject
*data
)
1531 qlist_iter(qobject_to_qlist(data
), bdrv_stats_iter
, mon
);
1534 static QObject
* bdrv_info_stats_bs(BlockDriverState
*bs
)
1539 res
= qobject_from_jsonf("{ 'stats': {"
1540 "'rd_bytes': %" PRId64
","
1541 "'wr_bytes': %" PRId64
","
1542 "'rd_operations': %" PRId64
","
1543 "'wr_operations': %" PRId64
","
1544 "'wr_highest_offset': %" PRId64
1546 bs
->rd_bytes
, bs
->wr_bytes
,
1547 bs
->rd_ops
, bs
->wr_ops
,
1548 bs
->wr_highest_sector
* (long)BDRV_SECTOR_SIZE
);
1549 dict
= qobject_to_qdict(res
);
1551 if (*bs
->device_name
) {
1552 qdict_put(dict
, "device", qstring_from_str(bs
->device_name
));
1556 QObject
*parent
= bdrv_info_stats_bs(bs
->file
);
1557 qdict_put_obj(dict
, "parent", parent
);
1563 void bdrv_info_stats(Monitor
*mon
, QObject
**ret_data
)
1567 BlockDriverState
*bs
;
1569 devices
= qlist_new();
1571 QTAILQ_FOREACH(bs
, &bdrv_states
, list
) {
1572 obj
= bdrv_info_stats_bs(bs
);
1573 qlist_append_obj(devices
, obj
);
1576 *ret_data
= QOBJECT(devices
);
1579 const char *bdrv_get_encrypted_filename(BlockDriverState
*bs
)
1581 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1582 return bs
->backing_file
;
1583 else if (bs
->encrypted
)
1584 return bs
->filename
;
1589 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1590 char *filename
, int filename_size
)
1592 if (!bs
->backing_file
) {
1593 pstrcpy(filename
, filename_size
, "");
1595 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1599 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1600 const uint8_t *buf
, int nb_sectors
)
1602 BlockDriver
*drv
= bs
->drv
;
1605 if (!drv
->bdrv_write_compressed
)
1607 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1610 if (bs
->dirty_bitmap
) {
1611 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1614 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1617 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1619 BlockDriver
*drv
= bs
->drv
;
1622 if (!drv
->bdrv_get_info
)
1624 memset(bdi
, 0, sizeof(*bdi
));
1625 return drv
->bdrv_get_info(bs
, bdi
);
1628 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1629 int64_t pos
, int size
)
1631 BlockDriver
*drv
= bs
->drv
;
1634 if (drv
->bdrv_save_vmstate
)
1635 return drv
->bdrv_save_vmstate(bs
, buf
, pos
, size
);
1637 return bdrv_save_vmstate(bs
->file
, buf
, pos
, size
);
1641 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1642 int64_t pos
, int size
)
1644 BlockDriver
*drv
= bs
->drv
;
1647 if (drv
->bdrv_load_vmstate
)
1648 return drv
->bdrv_load_vmstate(bs
, buf
, pos
, size
);
1650 return bdrv_load_vmstate(bs
->file
, buf
, pos
, size
);
1654 void bdrv_debug_event(BlockDriverState
*bs
, BlkDebugEvent event
)
1656 BlockDriver
*drv
= bs
->drv
;
1658 if (!drv
|| !drv
->bdrv_debug_event
) {
1662 return drv
->bdrv_debug_event(bs
, event
);
1666 /**************************************************************/
1667 /* handling of snapshots */
1669 int bdrv_snapshot_create(BlockDriverState
*bs
,
1670 QEMUSnapshotInfo
*sn_info
)
1672 BlockDriver
*drv
= bs
->drv
;
1675 if (drv
->bdrv_snapshot_create
)
1676 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1678 return bdrv_snapshot_create(bs
->file
, sn_info
);
1682 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1683 const char *snapshot_id
)
1685 BlockDriver
*drv
= bs
->drv
;
1690 if (drv
->bdrv_snapshot_goto
)
1691 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1694 drv
->bdrv_close(bs
);
1695 ret
= bdrv_snapshot_goto(bs
->file
, snapshot_id
);
1696 open_ret
= drv
->bdrv_open(bs
, bs
->open_flags
);
1698 bdrv_delete(bs
->file
);
1708 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1710 BlockDriver
*drv
= bs
->drv
;
1713 if (drv
->bdrv_snapshot_delete
)
1714 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1716 return bdrv_snapshot_delete(bs
->file
, snapshot_id
);
1720 int bdrv_snapshot_list(BlockDriverState
*bs
,
1721 QEMUSnapshotInfo
**psn_info
)
1723 BlockDriver
*drv
= bs
->drv
;
1726 if (drv
->bdrv_snapshot_list
)
1727 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1729 return bdrv_snapshot_list(bs
->file
, psn_info
);
1733 #define NB_SUFFIXES 4
1735 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1737 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1742 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1745 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1746 if (size
< (10 * base
)) {
1747 snprintf(buf
, buf_size
, "%0.1f%c",
1748 (double)size
/ base
,
1751 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1752 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1753 ((size
+ (base
>> 1)) / base
),
1763 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1765 char buf1
[128], date_buf
[128], clock_buf
[128];
1775 snprintf(buf
, buf_size
,
1776 "%-10s%-20s%7s%20s%15s",
1777 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1781 ptm
= localtime(&ti
);
1782 strftime(date_buf
, sizeof(date_buf
),
1783 "%Y-%m-%d %H:%M:%S", ptm
);
1785 localtime_r(&ti
, &tm
);
1786 strftime(date_buf
, sizeof(date_buf
),
1787 "%Y-%m-%d %H:%M:%S", &tm
);
1789 secs
= sn
->vm_clock_nsec
/ 1000000000;
1790 snprintf(clock_buf
, sizeof(clock_buf
),
1791 "%02d:%02d:%02d.%03d",
1793 (int)((secs
/ 60) % 60),
1795 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1796 snprintf(buf
, buf_size
,
1797 "%-10s%-20s%7s%20s%15s",
1798 sn
->id_str
, sn
->name
,
1799 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1807 /**************************************************************/
1810 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1811 QEMUIOVector
*qiov
, int nb_sectors
,
1812 BlockDriverCompletionFunc
*cb
, void *opaque
)
1814 BlockDriver
*drv
= bs
->drv
;
1815 BlockDriverAIOCB
*ret
;
1819 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1822 ret
= drv
->bdrv_aio_readv(bs
, sector_num
, qiov
, nb_sectors
,
1826 /* Update stats even though technically transfer has not happened. */
1827 bs
->rd_bytes
+= (unsigned) nb_sectors
* BDRV_SECTOR_SIZE
;
1834 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1835 QEMUIOVector
*qiov
, int nb_sectors
,
1836 BlockDriverCompletionFunc
*cb
, void *opaque
)
1838 BlockDriver
*drv
= bs
->drv
;
1839 BlockDriverAIOCB
*ret
;
1845 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1848 if (bs
->dirty_bitmap
) {
1849 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1852 ret
= drv
->bdrv_aio_writev(bs
, sector_num
, qiov
, nb_sectors
,
1856 /* Update stats even though technically transfer has not happened. */
1857 bs
->wr_bytes
+= (unsigned) nb_sectors
* BDRV_SECTOR_SIZE
;
1859 if (bs
->wr_highest_sector
< sector_num
+ nb_sectors
- 1) {
1860 bs
->wr_highest_sector
= sector_num
+ nb_sectors
- 1;
1868 typedef struct MultiwriteCB
{
1873 BlockDriverCompletionFunc
*cb
;
1875 QEMUIOVector
*free_qiov
;
1880 static void multiwrite_user_cb(MultiwriteCB
*mcb
)
1884 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
1885 mcb
->callbacks
[i
].cb(mcb
->callbacks
[i
].opaque
, mcb
->error
);
1886 if (mcb
->callbacks
[i
].free_qiov
) {
1887 qemu_iovec_destroy(mcb
->callbacks
[i
].free_qiov
);
1889 qemu_free(mcb
->callbacks
[i
].free_qiov
);
1890 qemu_vfree(mcb
->callbacks
[i
].free_buf
);
1894 static void multiwrite_cb(void *opaque
, int ret
)
1896 MultiwriteCB
*mcb
= opaque
;
1898 if (ret
< 0 && !mcb
->error
) {
1900 multiwrite_user_cb(mcb
);
1903 mcb
->num_requests
--;
1904 if (mcb
->num_requests
== 0) {
1905 if (mcb
->error
== 0) {
1906 multiwrite_user_cb(mcb
);
1912 static int multiwrite_req_compare(const void *a
, const void *b
)
1914 const BlockRequest
*req1
= a
, *req2
= b
;
1917 * Note that we can't simply subtract req2->sector from req1->sector
1918 * here as that could overflow the return value.
1920 if (req1
->sector
> req2
->sector
) {
1922 } else if (req1
->sector
< req2
->sector
) {
1930 * Takes a bunch of requests and tries to merge them. Returns the number of
1931 * requests that remain after merging.
1933 static int multiwrite_merge(BlockDriverState
*bs
, BlockRequest
*reqs
,
1934 int num_reqs
, MultiwriteCB
*mcb
)
1938 // Sort requests by start sector
1939 qsort(reqs
, num_reqs
, sizeof(*reqs
), &multiwrite_req_compare
);
1941 // Check if adjacent requests touch the same clusters. If so, combine them,
1942 // filling up gaps with zero sectors.
1944 for (i
= 1; i
< num_reqs
; i
++) {
1946 int64_t oldreq_last
= reqs
[outidx
].sector
+ reqs
[outidx
].nb_sectors
;
1948 // This handles the cases that are valid for all block drivers, namely
1949 // exactly sequential writes and overlapping writes.
1950 if (reqs
[i
].sector
<= oldreq_last
) {
1954 // The block driver may decide that it makes sense to combine requests
1955 // even if there is a gap of some sectors between them. In this case,
1956 // the gap is filled with zeros (therefore only applicable for yet
1957 // unused space in format like qcow2).
1958 if (!merge
&& bs
->drv
->bdrv_merge_requests
) {
1959 merge
= bs
->drv
->bdrv_merge_requests(bs
, &reqs
[outidx
], &reqs
[i
]);
1962 if (reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1 > IOV_MAX
) {
1968 QEMUIOVector
*qiov
= qemu_mallocz(sizeof(*qiov
));
1969 qemu_iovec_init(qiov
,
1970 reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1);
1972 // Add the first request to the merged one. If the requests are
1973 // overlapping, drop the last sectors of the first request.
1974 size
= (reqs
[i
].sector
- reqs
[outidx
].sector
) << 9;
1975 qemu_iovec_concat(qiov
, reqs
[outidx
].qiov
, size
);
1977 // We might need to add some zeros between the two requests
1978 if (reqs
[i
].sector
> oldreq_last
) {
1979 size_t zero_bytes
= (reqs
[i
].sector
- oldreq_last
) << 9;
1980 uint8_t *buf
= qemu_blockalign(bs
, zero_bytes
);
1981 memset(buf
, 0, zero_bytes
);
1982 qemu_iovec_add(qiov
, buf
, zero_bytes
);
1983 mcb
->callbacks
[i
].free_buf
= buf
;
1986 // Add the second request
1987 qemu_iovec_concat(qiov
, reqs
[i
].qiov
, reqs
[i
].qiov
->size
);
1989 reqs
[outidx
].nb_sectors
= qiov
->size
>> 9;
1990 reqs
[outidx
].qiov
= qiov
;
1992 mcb
->callbacks
[i
].free_qiov
= reqs
[outidx
].qiov
;
1995 reqs
[outidx
].sector
= reqs
[i
].sector
;
1996 reqs
[outidx
].nb_sectors
= reqs
[i
].nb_sectors
;
1997 reqs
[outidx
].qiov
= reqs
[i
].qiov
;
2005 * Submit multiple AIO write requests at once.
2007 * On success, the function returns 0 and all requests in the reqs array have
2008 * been submitted. In error case this function returns -1, and any of the
2009 * requests may or may not be submitted yet. In particular, this means that the
2010 * callback will be called for some of the requests, for others it won't. The
2011 * caller must check the error field of the BlockRequest to wait for the right
2012 * callbacks (if error != 0, no callback will be called).
2014 * The implementation may modify the contents of the reqs array, e.g. to merge
2015 * requests. However, the fields opaque and error are left unmodified as they
2016 * are used to signal failure for a single request to the caller.
2018 int bdrv_aio_multiwrite(BlockDriverState
*bs
, BlockRequest
*reqs
, int num_reqs
)
2020 BlockDriverAIOCB
*acb
;
2024 if (num_reqs
== 0) {
2028 // Create MultiwriteCB structure
2029 mcb
= qemu_mallocz(sizeof(*mcb
) + num_reqs
* sizeof(*mcb
->callbacks
));
2030 mcb
->num_requests
= 0;
2031 mcb
->num_callbacks
= num_reqs
;
2033 for (i
= 0; i
< num_reqs
; i
++) {
2034 mcb
->callbacks
[i
].cb
= reqs
[i
].cb
;
2035 mcb
->callbacks
[i
].opaque
= reqs
[i
].opaque
;
2038 // Check for mergable requests
2039 num_reqs
= multiwrite_merge(bs
, reqs
, num_reqs
, mcb
);
2041 // Run the aio requests
2042 for (i
= 0; i
< num_reqs
; i
++) {
2043 acb
= bdrv_aio_writev(bs
, reqs
[i
].sector
, reqs
[i
].qiov
,
2044 reqs
[i
].nb_sectors
, multiwrite_cb
, mcb
);
2047 // We can only fail the whole thing if no request has been
2048 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2049 // complete and report the error in the callback.
2050 if (mcb
->num_requests
== 0) {
2051 reqs
[i
].error
= -EIO
;
2054 mcb
->num_requests
++;
2055 multiwrite_cb(mcb
, -EIO
);
2059 mcb
->num_requests
++;
2070 BlockDriverAIOCB
*bdrv_aio_flush(BlockDriverState
*bs
,
2071 BlockDriverCompletionFunc
*cb
, void *opaque
)
2073 BlockDriver
*drv
= bs
->drv
;
2075 if (bs
->open_flags
& BDRV_O_NO_FLUSH
) {
2076 return bdrv_aio_noop_em(bs
, cb
, opaque
);
2081 return drv
->bdrv_aio_flush(bs
, cb
, opaque
);
2084 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
2086 acb
->pool
->cancel(acb
);
2090 /**************************************************************/
2091 /* async block device emulation */
2093 typedef struct BlockDriverAIOCBSync
{
2094 BlockDriverAIOCB common
;
2097 /* vector translation state */
2101 } BlockDriverAIOCBSync
;
2103 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
2105 BlockDriverAIOCBSync
*acb
=
2106 container_of(blockacb
, BlockDriverAIOCBSync
, common
);
2107 qemu_bh_delete(acb
->bh
);
2109 qemu_aio_release(acb
);
2112 static AIOPool bdrv_em_aio_pool
= {
2113 .aiocb_size
= sizeof(BlockDriverAIOCBSync
),
2114 .cancel
= bdrv_aio_cancel_em
,
2117 static void bdrv_aio_bh_cb(void *opaque
)
2119 BlockDriverAIOCBSync
*acb
= opaque
;
2122 qemu_iovec_from_buffer(acb
->qiov
, acb
->bounce
, acb
->qiov
->size
);
2123 qemu_vfree(acb
->bounce
);
2124 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
2125 qemu_bh_delete(acb
->bh
);
2127 qemu_aio_release(acb
);
2130 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
2134 BlockDriverCompletionFunc
*cb
,
2139 BlockDriverAIOCBSync
*acb
;
2141 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2142 acb
->is_write
= is_write
;
2144 acb
->bounce
= qemu_blockalign(bs
, qiov
->size
);
2147 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2150 qemu_iovec_to_buffer(acb
->qiov
, acb
->bounce
);
2151 acb
->ret
= bdrv_write(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2153 acb
->ret
= bdrv_read(bs
, sector_num
, acb
->bounce
, nb_sectors
);
2156 qemu_bh_schedule(acb
->bh
);
2158 return &acb
->common
;
2161 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
2162 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2163 BlockDriverCompletionFunc
*cb
, void *opaque
)
2165 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 0);
2168 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
2169 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
2170 BlockDriverCompletionFunc
*cb
, void *opaque
)
2172 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 1);
2175 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
2176 BlockDriverCompletionFunc
*cb
, void *opaque
)
2178 BlockDriverAIOCBSync
*acb
;
2180 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2181 acb
->is_write
= 1; /* don't bounce in the completion hadler */
2187 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2190 qemu_bh_schedule(acb
->bh
);
2191 return &acb
->common
;
2194 static BlockDriverAIOCB
*bdrv_aio_noop_em(BlockDriverState
*bs
,
2195 BlockDriverCompletionFunc
*cb
, void *opaque
)
2197 BlockDriverAIOCBSync
*acb
;
2199 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
2200 acb
->is_write
= 1; /* don't bounce in the completion handler */
2206 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
2209 qemu_bh_schedule(acb
->bh
);
2210 return &acb
->common
;
2213 /**************************************************************/
2214 /* sync block device emulation */
2216 static void bdrv_rw_em_cb(void *opaque
, int ret
)
2218 *(int *)opaque
= ret
;
2221 #define NOT_DONE 0x7fffffff
2223 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
2224 uint8_t *buf
, int nb_sectors
)
2227 BlockDriverAIOCB
*acb
;
2231 async_context_push();
2233 async_ret
= NOT_DONE
;
2234 iov
.iov_base
= (void *)buf
;
2235 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2236 qemu_iovec_init_external(&qiov
, &iov
, 1);
2237 acb
= bdrv_aio_readv(bs
, sector_num
, &qiov
, nb_sectors
,
2238 bdrv_rw_em_cb
, &async_ret
);
2244 while (async_ret
== NOT_DONE
) {
2250 async_context_pop();
2254 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
2255 const uint8_t *buf
, int nb_sectors
)
2258 BlockDriverAIOCB
*acb
;
2262 async_context_push();
2264 async_ret
= NOT_DONE
;
2265 iov
.iov_base
= (void *)buf
;
2266 iov
.iov_len
= nb_sectors
* BDRV_SECTOR_SIZE
;
2267 qemu_iovec_init_external(&qiov
, &iov
, 1);
2268 acb
= bdrv_aio_writev(bs
, sector_num
, &qiov
, nb_sectors
,
2269 bdrv_rw_em_cb
, &async_ret
);
2274 while (async_ret
== NOT_DONE
) {
2279 async_context_pop();
2283 void bdrv_init(void)
2285 module_call_init(MODULE_INIT_BLOCK
);
2288 void bdrv_init_with_whitelist(void)
2290 use_bdrv_whitelist
= 1;
2294 void *qemu_aio_get(AIOPool
*pool
, BlockDriverState
*bs
,
2295 BlockDriverCompletionFunc
*cb
, void *opaque
)
2297 BlockDriverAIOCB
*acb
;
2299 if (pool
->free_aiocb
) {
2300 acb
= pool
->free_aiocb
;
2301 pool
->free_aiocb
= acb
->next
;
2303 acb
= qemu_mallocz(pool
->aiocb_size
);
2308 acb
->opaque
= opaque
;
2312 void qemu_aio_release(void *p
)
2314 BlockDriverAIOCB
*acb
= (BlockDriverAIOCB
*)p
;
2315 AIOPool
*pool
= acb
->pool
;
2316 acb
->next
= pool
->free_aiocb
;
2317 pool
->free_aiocb
= acb
;
2320 /**************************************************************/
2321 /* removable device support */
2324 * Return TRUE if the media is present
2326 int bdrv_is_inserted(BlockDriverState
*bs
)
2328 BlockDriver
*drv
= bs
->drv
;
2332 if (!drv
->bdrv_is_inserted
)
2334 ret
= drv
->bdrv_is_inserted(bs
);
2339 * Return TRUE if the media changed since the last call to this
2340 * function. It is currently only used for floppy disks
2342 int bdrv_media_changed(BlockDriverState
*bs
)
2344 BlockDriver
*drv
= bs
->drv
;
2347 if (!drv
|| !drv
->bdrv_media_changed
)
2350 ret
= drv
->bdrv_media_changed(bs
);
2351 if (ret
== -ENOTSUP
)
2352 ret
= bs
->media_changed
;
2353 bs
->media_changed
= 0;
2358 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2360 int bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
2362 BlockDriver
*drv
= bs
->drv
;
2369 if (!drv
|| !drv
->bdrv_eject
) {
2372 ret
= drv
->bdrv_eject(bs
, eject_flag
);
2374 if (ret
== -ENOTSUP
) {
2383 int bdrv_is_locked(BlockDriverState
*bs
)
2389 * Lock or unlock the media (if it is locked, the user won't be able
2390 * to eject it manually).
2392 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
2394 BlockDriver
*drv
= bs
->drv
;
2396 bs
->locked
= locked
;
2397 if (drv
&& drv
->bdrv_set_locked
) {
2398 drv
->bdrv_set_locked(bs
, locked
);
2402 /* needed for generic scsi interface */
2404 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
2406 BlockDriver
*drv
= bs
->drv
;
2408 if (drv
&& drv
->bdrv_ioctl
)
2409 return drv
->bdrv_ioctl(bs
, req
, buf
);
2413 BlockDriverAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
2414 unsigned long int req
, void *buf
,
2415 BlockDriverCompletionFunc
*cb
, void *opaque
)
2417 BlockDriver
*drv
= bs
->drv
;
2419 if (drv
&& drv
->bdrv_aio_ioctl
)
2420 return drv
->bdrv_aio_ioctl(bs
, req
, buf
, cb
, opaque
);
2426 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
2428 return qemu_memalign((bs
&& bs
->buffer_alignment
) ? bs
->buffer_alignment
: 512, size
);
2431 void bdrv_set_dirty_tracking(BlockDriverState
*bs
, int enable
)
2433 int64_t bitmap_size
;
2435 bs
->dirty_count
= 0;
2437 if (!bs
->dirty_bitmap
) {
2438 bitmap_size
= (bdrv_getlength(bs
) >> BDRV_SECTOR_BITS
) +
2439 BDRV_SECTORS_PER_DIRTY_CHUNK
* 8 - 1;
2440 bitmap_size
/= BDRV_SECTORS_PER_DIRTY_CHUNK
* 8;
2442 bs
->dirty_bitmap
= qemu_mallocz(bitmap_size
);
2445 if (bs
->dirty_bitmap
) {
2446 qemu_free(bs
->dirty_bitmap
);
2447 bs
->dirty_bitmap
= NULL
;
2452 int bdrv_get_dirty(BlockDriverState
*bs
, int64_t sector
)
2454 int64_t chunk
= sector
/ (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK
;
2456 if (bs
->dirty_bitmap
&&
2457 (sector
<< BDRV_SECTOR_BITS
) < bdrv_getlength(bs
)) {
2458 return bs
->dirty_bitmap
[chunk
/ (sizeof(unsigned long) * 8)] &
2459 (1 << (chunk
% (sizeof(unsigned long) * 8)));
2465 void bdrv_reset_dirty(BlockDriverState
*bs
, int64_t cur_sector
,
2468 set_dirty_bitmap(bs
, cur_sector
, nr_sectors
, 0);
2471 int64_t bdrv_get_dirty_count(BlockDriverState
*bs
)
2473 return bs
->dirty_count
;