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"
31 #include <sys/types.h>
33 #include <sys/ioctl.h>
34 #include <sys/queue.h>
45 #define SECTOR_SIZE (1 << SECTOR_BITS)
46 #define SECTORS_PER_DIRTY_CHUNK 8
48 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
49 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
50 BlockDriverCompletionFunc
*cb
, void *opaque
);
51 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
52 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
53 BlockDriverCompletionFunc
*cb
, void *opaque
);
54 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
55 BlockDriverCompletionFunc
*cb
, void *opaque
);
56 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
57 uint8_t *buf
, int nb_sectors
);
58 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
59 const uint8_t *buf
, int nb_sectors
);
61 BlockDriverState
*bdrv_first
;
63 static BlockDriver
*first_drv
;
65 /* If non-zero, use only whitelisted block drivers */
66 static int use_bdrv_whitelist
;
68 int path_is_absolute(const char *path
)
72 /* specific case for names like: "\\.\d:" */
73 if (*path
== '/' || *path
== '\\')
76 p
= strchr(path
, ':');
82 return (*p
== '/' || *p
== '\\');
88 /* if filename is absolute, just copy it to dest. Otherwise, build a
89 path to it by considering it is relative to base_path. URL are
91 void path_combine(char *dest
, int dest_size
,
92 const char *base_path
,
100 if (path_is_absolute(filename
)) {
101 pstrcpy(dest
, dest_size
, filename
);
103 p
= strchr(base_path
, ':');
108 p1
= strrchr(base_path
, '/');
112 p2
= strrchr(base_path
, '\\');
124 if (len
> dest_size
- 1)
126 memcpy(dest
, base_path
, len
);
128 pstrcat(dest
, dest_size
, filename
);
132 void bdrv_register(BlockDriver
*bdrv
)
134 if (!bdrv
->bdrv_aio_readv
) {
135 /* add AIO emulation layer */
136 bdrv
->bdrv_aio_readv
= bdrv_aio_readv_em
;
137 bdrv
->bdrv_aio_writev
= bdrv_aio_writev_em
;
138 } else if (!bdrv
->bdrv_read
) {
139 /* add synchronous IO emulation layer */
140 bdrv
->bdrv_read
= bdrv_read_em
;
141 bdrv
->bdrv_write
= bdrv_write_em
;
144 if (!bdrv
->bdrv_aio_flush
)
145 bdrv
->bdrv_aio_flush
= bdrv_aio_flush_em
;
147 bdrv
->next
= first_drv
;
151 /* create a new block device (by default it is empty) */
152 BlockDriverState
*bdrv_new(const char *device_name
)
154 BlockDriverState
**pbs
, *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 /* insert at the end */
168 BlockDriver
*bdrv_find_format(const char *format_name
)
171 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
172 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
);
212 void get_tmp_filename(char *filename
, int size
)
214 char temp_dir
[MAX_PATH
];
216 GetTempPath(MAX_PATH
, temp_dir
);
217 GetTempFileName(temp_dir
, "qem", 0, filename
);
220 void get_tmp_filename(char *filename
, int size
)
224 /* XXX: race condition possible */
225 tmpdir
= getenv("TMPDIR");
228 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
229 fd
= mkstemp(filename
);
235 static int is_windows_drive_prefix(const char *filename
)
237 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
238 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
242 int is_windows_drive(const char *filename
)
244 if (is_windows_drive_prefix(filename
) &&
247 if (strstart(filename
, "\\\\.\\", NULL
) ||
248 strstart(filename
, "//./", NULL
))
254 static BlockDriver
*find_protocol(const char *filename
)
262 if (is_windows_drive(filename
) ||
263 is_windows_drive_prefix(filename
))
264 return bdrv_find_format("raw");
266 p
= strchr(filename
, ':');
268 return bdrv_find_format("raw");
270 if (len
> sizeof(protocol
) - 1)
271 len
= sizeof(protocol
) - 1;
272 memcpy(protocol
, filename
, len
);
273 protocol
[len
] = '\0';
274 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
275 if (drv1
->protocol_name
&&
276 !strcmp(drv1
->protocol_name
, protocol
))
283 * Detect host devices. By convention, /dev/cdrom[N] is always
284 * recognized as a host CDROM.
286 static BlockDriver
*find_hdev_driver(const char *filename
)
288 int score_max
= 0, score
;
289 BlockDriver
*drv
= NULL
, *d
;
291 for (d
= first_drv
; d
; d
= d
->next
) {
292 if (d
->bdrv_probe_device
) {
293 score
= d
->bdrv_probe_device(filename
);
294 if (score
> score_max
) {
304 static BlockDriver
*find_image_format(const char *filename
)
306 int ret
, score
, score_max
;
307 BlockDriver
*drv1
, *drv
;
309 BlockDriverState
*bs
;
311 drv
= find_protocol(filename
);
312 /* no need to test disk image formats for vvfat */
313 if (drv
&& strcmp(drv
->format_name
, "vvfat") == 0)
316 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
319 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
326 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
327 if (drv1
->bdrv_probe
) {
328 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
329 if (score
> score_max
) {
338 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
340 BlockDriverState
*bs
;
344 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
354 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
356 return bdrv_open2(bs
, filename
, flags
, NULL
);
359 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
362 int ret
, open_flags
, try_rw
;
363 char tmp_filename
[PATH_MAX
];
364 char backing_filename
[PATH_MAX
];
366 bs
->is_temporary
= 0;
369 /* buffer_alignment defaulted to 512, drivers can change this value */
370 bs
->buffer_alignment
= 512;
372 if (flags
& BDRV_O_SNAPSHOT
) {
373 BlockDriverState
*bs1
;
376 BlockDriver
*bdrv_qcow2
;
377 QEMUOptionParameter
*options
;
379 /* if snapshot, we create a temporary backing file and open it
380 instead of opening 'filename' directly */
382 /* if there is a backing file, use it */
384 ret
= bdrv_open2(bs1
, filename
, 0, drv
);
389 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
391 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
396 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
398 /* Real path is meaningless for protocols */
400 snprintf(backing_filename
, sizeof(backing_filename
),
403 realpath(filename
, backing_filename
);
405 bdrv_qcow2
= bdrv_find_format("qcow2");
406 options
= parse_option_parameters("", bdrv_qcow2
->create_options
, NULL
);
408 set_option_parameter_int(options
, BLOCK_OPT_SIZE
, total_size
* 512);
409 set_option_parameter(options
, BLOCK_OPT_BACKING_FILE
, backing_filename
);
411 set_option_parameter(options
, BLOCK_OPT_BACKING_FMT
,
415 ret
= bdrv_create(bdrv_qcow2
, tmp_filename
, options
);
420 filename
= tmp_filename
;
422 bs
->is_temporary
= 1;
425 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
426 if (flags
& BDRV_O_FILE
) {
427 drv
= find_protocol(filename
);
429 drv
= find_hdev_driver(filename
);
431 drv
= find_image_format(filename
);
436 goto unlink_and_fail
;
439 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
442 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
443 * write cache to the guest. We do need the fdatasync to flush
444 * out transactions for block allocations, and we maybe have a
445 * volatile write cache in our backing device to deal with.
447 if (flags
& (BDRV_O_CACHE_WB
|BDRV_O_NOCACHE
))
448 bs
->enable_write_cache
= 1;
450 /* Note: for compatibility, we open disk image files as RDWR, and
451 RDONLY as fallback */
452 try_rw
= !bs
->read_only
|| bs
->is_temporary
;
453 if (!(flags
& BDRV_O_FILE
))
454 open_flags
= (try_rw
? BDRV_O_RDWR
: 0) |
455 (flags
& (BDRV_O_CACHE_MASK
|BDRV_O_NATIVE_AIO
));
457 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
458 if (use_bdrv_whitelist
&& !bdrv_is_whitelisted(drv
))
461 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
462 if ((ret
== -EACCES
|| ret
== -EPERM
) && !(flags
& BDRV_O_FILE
)) {
463 ret
= drv
->bdrv_open(bs
, filename
, open_flags
& ~BDRV_O_RDWR
);
467 qemu_free(bs
->opaque
);
471 if (bs
->is_temporary
)
475 if (drv
->bdrv_getlength
) {
476 bs
->total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
479 if (bs
->is_temporary
) {
483 if (bs
->backing_file
[0] != '\0') {
484 /* if there is a backing file, use it */
485 BlockDriver
*back_drv
= NULL
;
486 bs
->backing_hd
= bdrv_new("");
487 /* pass on read_only property to the backing_hd */
488 bs
->backing_hd
->read_only
= bs
->read_only
;
489 path_combine(backing_filename
, sizeof(backing_filename
),
490 filename
, bs
->backing_file
);
491 if (bs
->backing_format
[0] != '\0')
492 back_drv
= bdrv_find_format(bs
->backing_format
);
493 ret
= bdrv_open2(bs
->backing_hd
, backing_filename
, open_flags
,
501 if (!bdrv_key_required(bs
)) {
502 /* call the change callback */
503 bs
->media_changed
= 1;
505 bs
->change_cb(bs
->change_opaque
);
510 void bdrv_close(BlockDriverState
*bs
)
514 bdrv_delete(bs
->backing_hd
);
515 bs
->drv
->bdrv_close(bs
);
516 qemu_free(bs
->opaque
);
518 if (bs
->is_temporary
) {
519 unlink(bs
->filename
);
525 /* call the change callback */
526 bs
->media_changed
= 1;
528 bs
->change_cb(bs
->change_opaque
);
532 void bdrv_delete(BlockDriverState
*bs
)
534 BlockDriverState
**pbs
;
537 while (*pbs
!= bs
&& *pbs
!= NULL
)
547 * Run consistency checks on an image
549 * Returns the number of errors or -errno when an internal error occurs
551 int bdrv_check(BlockDriverState
*bs
)
553 if (bs
->drv
->bdrv_check
== NULL
) {
557 return bs
->drv
->bdrv_check(bs
);
560 /* commit COW file into the raw image */
561 int bdrv_commit(BlockDriverState
*bs
)
563 BlockDriver
*drv
= bs
->drv
;
564 int64_t i
, total_sectors
;
566 unsigned char sector
[512];
575 if (!bs
->backing_hd
) {
579 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
580 for (i
= 0; i
< total_sectors
;) {
581 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
582 for(j
= 0; j
< n
; j
++) {
583 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
587 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
597 if (drv
->bdrv_make_empty
)
598 return drv
->bdrv_make_empty(bs
);
603 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
608 if (!bdrv_is_inserted(bs
))
614 len
= bdrv_getlength(bs
);
619 if ((offset
> len
) || (len
- offset
< size
))
625 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
628 return bdrv_check_byte_request(bs
, sector_num
* 512, nb_sectors
* 512);
631 /* return < 0 if error. See bdrv_write() for the return codes */
632 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
633 uint8_t *buf
, int nb_sectors
)
635 BlockDriver
*drv
= bs
->drv
;
639 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
642 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
645 static void set_dirty_bitmap(BlockDriverState
*bs
, int64_t sector_num
,
646 int nb_sectors
, int dirty
)
649 start
= sector_num
/ SECTORS_PER_DIRTY_CHUNK
;
650 end
= (sector_num
+ nb_sectors
) / SECTORS_PER_DIRTY_CHUNK
;
652 for(; start
<= end
; start
++) {
653 bs
->dirty_bitmap
[start
] = dirty
;
657 /* Return < 0 if error. Important errors are:
658 -EIO generic I/O error (may happen for all errors)
659 -ENOMEDIUM No media inserted.
660 -EINVAL Invalid sector number or nb_sectors
661 -EACCES Trying to write a read-only device
663 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
664 const uint8_t *buf
, int nb_sectors
)
666 BlockDriver
*drv
= bs
->drv
;
671 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
674 if(bs
->dirty_tracking
) {
675 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
678 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
681 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
682 void *buf
, int count1
)
684 uint8_t tmp_buf
[SECTOR_SIZE
];
685 int len
, nb_sectors
, count
;
689 /* first read to align to sector start */
690 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
693 sector_num
= offset
>> SECTOR_BITS
;
695 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
697 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
705 /* read the sectors "in place" */
706 nb_sectors
= count
>> SECTOR_BITS
;
707 if (nb_sectors
> 0) {
708 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
710 sector_num
+= nb_sectors
;
711 len
= nb_sectors
<< SECTOR_BITS
;
716 /* add data from the last sector */
718 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
720 memcpy(buf
, tmp_buf
, count
);
725 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
726 const void *buf
, int count1
)
728 uint8_t tmp_buf
[SECTOR_SIZE
];
729 int len
, nb_sectors
, count
;
733 /* first write to align to sector start */
734 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
737 sector_num
= offset
>> SECTOR_BITS
;
739 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
741 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
742 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
751 /* write the sectors "in place" */
752 nb_sectors
= count
>> SECTOR_BITS
;
753 if (nb_sectors
> 0) {
754 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
756 sector_num
+= nb_sectors
;
757 len
= nb_sectors
<< SECTOR_BITS
;
762 /* add data from the last sector */
764 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
766 memcpy(tmp_buf
, buf
, count
);
767 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
774 * Truncate file to 'offset' bytes (needed only for file protocols)
776 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
778 BlockDriver
*drv
= bs
->drv
;
781 if (!drv
->bdrv_truncate
)
785 return drv
->bdrv_truncate(bs
, offset
);
789 * Length of a file in bytes. Return < 0 if error or unknown.
791 int64_t bdrv_getlength(BlockDriverState
*bs
)
793 BlockDriver
*drv
= bs
->drv
;
796 if (!drv
->bdrv_getlength
) {
798 return bs
->total_sectors
* SECTOR_SIZE
;
800 return drv
->bdrv_getlength(bs
);
803 /* return 0 as number of sectors if no device present or error */
804 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
807 length
= bdrv_getlength(bs
);
811 length
= length
>> SECTOR_BITS
;
812 *nb_sectors_ptr
= length
;
816 uint8_t boot_ind
; /* 0x80 - active */
817 uint8_t head
; /* starting head */
818 uint8_t sector
; /* starting sector */
819 uint8_t cyl
; /* starting cylinder */
820 uint8_t sys_ind
; /* What partition type */
821 uint8_t end_head
; /* end head */
822 uint8_t end_sector
; /* end sector */
823 uint8_t end_cyl
; /* end cylinder */
824 uint32_t start_sect
; /* starting sector counting from 0 */
825 uint32_t nr_sects
; /* nr of sectors in partition */
826 } __attribute__((packed
));
828 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
829 static int guess_disk_lchs(BlockDriverState
*bs
,
830 int *pcylinders
, int *pheads
, int *psectors
)
833 int ret
, i
, heads
, sectors
, cylinders
;
838 bdrv_get_geometry(bs
, &nb_sectors
);
840 ret
= bdrv_read(bs
, 0, buf
, 1);
843 /* test msdos magic */
844 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
846 for(i
= 0; i
< 4; i
++) {
847 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
848 nr_sects
= le32_to_cpu(p
->nr_sects
);
849 if (nr_sects
&& p
->end_head
) {
850 /* We make the assumption that the partition terminates on
851 a cylinder boundary */
852 heads
= p
->end_head
+ 1;
853 sectors
= p
->end_sector
& 63;
856 cylinders
= nb_sectors
/ (heads
* sectors
);
857 if (cylinders
< 1 || cylinders
> 16383)
861 *pcylinders
= cylinders
;
863 printf("guessed geometry: LCHS=%d %d %d\n",
864 cylinders
, heads
, sectors
);
872 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
874 int translation
, lba_detected
= 0;
875 int cylinders
, heads
, secs
;
878 /* if a geometry hint is available, use it */
879 bdrv_get_geometry(bs
, &nb_sectors
);
880 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
881 translation
= bdrv_get_translation_hint(bs
);
882 if (cylinders
!= 0) {
887 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
889 /* if heads > 16, it means that a BIOS LBA
890 translation was active, so the default
891 hardware geometry is OK */
893 goto default_geometry
;
898 /* disable any translation to be in sync with
899 the logical geometry */
900 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
901 bdrv_set_translation_hint(bs
,
902 BIOS_ATA_TRANSLATION_NONE
);
907 /* if no geometry, use a standard physical disk geometry */
908 cylinders
= nb_sectors
/ (16 * 63);
910 if (cylinders
> 16383)
912 else if (cylinders
< 2)
917 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
918 if ((*pcyls
* *pheads
) <= 131072) {
919 bdrv_set_translation_hint(bs
,
920 BIOS_ATA_TRANSLATION_LARGE
);
922 bdrv_set_translation_hint(bs
,
923 BIOS_ATA_TRANSLATION_LBA
);
927 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
931 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
932 int cyls
, int heads
, int secs
)
939 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
942 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
943 type
== BDRV_TYPE_FLOPPY
));
946 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
948 bs
->translation
= translation
;
951 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
952 int *pcyls
, int *pheads
, int *psecs
)
959 int bdrv_get_type_hint(BlockDriverState
*bs
)
964 int bdrv_get_translation_hint(BlockDriverState
*bs
)
966 return bs
->translation
;
969 int bdrv_is_removable(BlockDriverState
*bs
)
971 return bs
->removable
;
974 int bdrv_is_read_only(BlockDriverState
*bs
)
976 return bs
->read_only
;
979 int bdrv_set_read_only(BlockDriverState
*bs
, int read_only
)
981 int ret
= bs
->read_only
;
982 bs
->read_only
= read_only
;
986 int bdrv_is_sg(BlockDriverState
*bs
)
991 int bdrv_enable_write_cache(BlockDriverState
*bs
)
993 return bs
->enable_write_cache
;
996 /* XXX: no longer used */
997 void bdrv_set_change_cb(BlockDriverState
*bs
,
998 void (*change_cb
)(void *opaque
), void *opaque
)
1000 bs
->change_cb
= change_cb
;
1001 bs
->change_opaque
= opaque
;
1004 int bdrv_is_encrypted(BlockDriverState
*bs
)
1006 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1008 return bs
->encrypted
;
1011 int bdrv_key_required(BlockDriverState
*bs
)
1013 BlockDriverState
*backing_hd
= bs
->backing_hd
;
1015 if (backing_hd
&& backing_hd
->encrypted
&& !backing_hd
->valid_key
)
1017 return (bs
->encrypted
&& !bs
->valid_key
);
1020 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
1023 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
1024 ret
= bdrv_set_key(bs
->backing_hd
, key
);
1030 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
1032 ret
= bs
->drv
->bdrv_set_key(bs
, key
);
1035 } else if (!bs
->valid_key
) {
1037 /* call the change callback now, we skipped it on open */
1038 bs
->media_changed
= 1;
1040 bs
->change_cb(bs
->change_opaque
);
1045 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
1050 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
1054 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
1059 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
1060 it(opaque
, drv
->format_name
);
1064 BlockDriverState
*bdrv_find(const char *name
)
1066 BlockDriverState
*bs
;
1068 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1069 if (!strcmp(name
, bs
->device_name
))
1075 void bdrv_iterate(void (*it
)(void *opaque
, BlockDriverState
*bs
), void *opaque
)
1077 BlockDriverState
*bs
;
1079 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1084 const char *bdrv_get_device_name(BlockDriverState
*bs
)
1086 return bs
->device_name
;
1089 void bdrv_flush(BlockDriverState
*bs
)
1093 if (bs
->drv
->bdrv_flush
)
1094 bs
->drv
->bdrv_flush(bs
);
1096 bdrv_flush(bs
->backing_hd
);
1099 void bdrv_flush_all(void)
1101 BlockDriverState
*bs
;
1103 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
)
1104 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1105 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
)))
1110 * Returns true iff the specified sector is present in the disk image. Drivers
1111 * not implementing the functionality are assumed to not support backing files,
1112 * hence all their sectors are reported as allocated.
1114 * 'pnum' is set to the number of sectors (including and immediately following
1115 * the specified sector) that are known to be in the same
1116 * allocated/unallocated state.
1118 * 'nb_sectors' is the max value 'pnum' should be set to.
1120 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1124 if (!bs
->drv
->bdrv_is_allocated
) {
1125 if (sector_num
>= bs
->total_sectors
) {
1129 n
= bs
->total_sectors
- sector_num
;
1130 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1133 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1136 void bdrv_info(Monitor
*mon
)
1138 BlockDriverState
*bs
;
1140 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1141 monitor_printf(mon
, "%s:", bs
->device_name
);
1142 monitor_printf(mon
, " type=");
1145 monitor_printf(mon
, "hd");
1147 case BDRV_TYPE_CDROM
:
1148 monitor_printf(mon
, "cdrom");
1150 case BDRV_TYPE_FLOPPY
:
1151 monitor_printf(mon
, "floppy");
1154 monitor_printf(mon
, " removable=%d", bs
->removable
);
1155 if (bs
->removable
) {
1156 monitor_printf(mon
, " locked=%d", bs
->locked
);
1159 monitor_printf(mon
, " file=");
1160 monitor_print_filename(mon
, bs
->filename
);
1161 if (bs
->backing_file
[0] != '\0') {
1162 monitor_printf(mon
, " backing_file=");
1163 monitor_print_filename(mon
, bs
->backing_file
);
1165 monitor_printf(mon
, " ro=%d", bs
->read_only
);
1166 monitor_printf(mon
, " drv=%s", bs
->drv
->format_name
);
1167 monitor_printf(mon
, " encrypted=%d", bdrv_is_encrypted(bs
));
1169 monitor_printf(mon
, " [not inserted]");
1171 monitor_printf(mon
, "\n");
1175 /* The "info blockstats" command. */
1176 void bdrv_info_stats(Monitor
*mon
)
1178 BlockDriverState
*bs
;
1180 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1181 monitor_printf(mon
, "%s:"
1182 " rd_bytes=%" PRIu64
1183 " wr_bytes=%" PRIu64
1184 " rd_operations=%" PRIu64
1185 " wr_operations=%" PRIu64
1188 bs
->rd_bytes
, bs
->wr_bytes
,
1189 bs
->rd_ops
, bs
->wr_ops
);
1193 const char *bdrv_get_encrypted_filename(BlockDriverState
*bs
)
1195 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1196 return bs
->backing_file
;
1197 else if (bs
->encrypted
)
1198 return bs
->filename
;
1203 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1204 char *filename
, int filename_size
)
1206 if (!bs
->backing_hd
) {
1207 pstrcpy(filename
, filename_size
, "");
1209 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1213 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1214 const uint8_t *buf
, int nb_sectors
)
1216 BlockDriver
*drv
= bs
->drv
;
1219 if (!drv
->bdrv_write_compressed
)
1221 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1224 if(bs
->dirty_tracking
) {
1225 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1228 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1231 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1233 BlockDriver
*drv
= bs
->drv
;
1236 if (!drv
->bdrv_get_info
)
1238 memset(bdi
, 0, sizeof(*bdi
));
1239 return drv
->bdrv_get_info(bs
, bdi
);
1242 int bdrv_save_vmstate(BlockDriverState
*bs
, const uint8_t *buf
,
1243 int64_t pos
, int size
)
1245 BlockDriver
*drv
= bs
->drv
;
1248 if (!drv
->bdrv_save_vmstate
)
1250 return drv
->bdrv_save_vmstate(bs
, buf
, pos
, size
);
1253 int bdrv_load_vmstate(BlockDriverState
*bs
, uint8_t *buf
,
1254 int64_t pos
, int size
)
1256 BlockDriver
*drv
= bs
->drv
;
1259 if (!drv
->bdrv_load_vmstate
)
1261 return drv
->bdrv_load_vmstate(bs
, buf
, pos
, size
);
1264 /**************************************************************/
1265 /* handling of snapshots */
1267 int bdrv_snapshot_create(BlockDriverState
*bs
,
1268 QEMUSnapshotInfo
*sn_info
)
1270 BlockDriver
*drv
= bs
->drv
;
1273 if (!drv
->bdrv_snapshot_create
)
1275 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1278 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1279 const char *snapshot_id
)
1281 BlockDriver
*drv
= bs
->drv
;
1284 if (!drv
->bdrv_snapshot_goto
)
1286 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1289 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1291 BlockDriver
*drv
= bs
->drv
;
1294 if (!drv
->bdrv_snapshot_delete
)
1296 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1299 int bdrv_snapshot_list(BlockDriverState
*bs
,
1300 QEMUSnapshotInfo
**psn_info
)
1302 BlockDriver
*drv
= bs
->drv
;
1305 if (!drv
->bdrv_snapshot_list
)
1307 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1310 #define NB_SUFFIXES 4
1312 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1314 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1319 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1322 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1323 if (size
< (10 * base
)) {
1324 snprintf(buf
, buf_size
, "%0.1f%c",
1325 (double)size
/ base
,
1328 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1329 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1330 ((size
+ (base
>> 1)) / base
),
1340 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1342 char buf1
[128], date_buf
[128], clock_buf
[128];
1352 snprintf(buf
, buf_size
,
1353 "%-10s%-20s%7s%20s%15s",
1354 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1358 ptm
= localtime(&ti
);
1359 strftime(date_buf
, sizeof(date_buf
),
1360 "%Y-%m-%d %H:%M:%S", ptm
);
1362 localtime_r(&ti
, &tm
);
1363 strftime(date_buf
, sizeof(date_buf
),
1364 "%Y-%m-%d %H:%M:%S", &tm
);
1366 secs
= sn
->vm_clock_nsec
/ 1000000000;
1367 snprintf(clock_buf
, sizeof(clock_buf
),
1368 "%02d:%02d:%02d.%03d",
1370 (int)((secs
/ 60) % 60),
1372 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1373 snprintf(buf
, buf_size
,
1374 "%-10s%-20s%7s%20s%15s",
1375 sn
->id_str
, sn
->name
,
1376 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1384 /**************************************************************/
1387 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1388 QEMUIOVector
*qiov
, int nb_sectors
,
1389 BlockDriverCompletionFunc
*cb
, void *opaque
)
1391 BlockDriver
*drv
= bs
->drv
;
1392 BlockDriverAIOCB
*ret
;
1396 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1399 ret
= drv
->bdrv_aio_readv(bs
, sector_num
, qiov
, nb_sectors
,
1403 /* Update stats even though technically transfer has not happened. */
1404 bs
->rd_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1411 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1412 QEMUIOVector
*qiov
, int nb_sectors
,
1413 BlockDriverCompletionFunc
*cb
, void *opaque
)
1415 BlockDriver
*drv
= bs
->drv
;
1416 BlockDriverAIOCB
*ret
;
1422 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1425 if(bs
->dirty_tracking
) {
1426 set_dirty_bitmap(bs
, sector_num
, nb_sectors
, 1);
1429 ret
= drv
->bdrv_aio_writev(bs
, sector_num
, qiov
, nb_sectors
,
1433 /* Update stats even though technically transfer has not happened. */
1434 bs
->wr_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1442 typedef struct MultiwriteCB
{
1447 BlockDriverCompletionFunc
*cb
;
1449 QEMUIOVector
*free_qiov
;
1454 static void multiwrite_user_cb(MultiwriteCB
*mcb
)
1458 for (i
= 0; i
< mcb
->num_callbacks
; i
++) {
1459 mcb
->callbacks
[i
].cb(mcb
->callbacks
[i
].opaque
, mcb
->error
);
1460 qemu_free(mcb
->callbacks
[i
].free_qiov
);
1461 qemu_free(mcb
->callbacks
[i
].free_buf
);
1465 static void multiwrite_cb(void *opaque
, int ret
)
1467 MultiwriteCB
*mcb
= opaque
;
1471 multiwrite_user_cb(mcb
);
1474 mcb
->num_requests
--;
1475 if (mcb
->num_requests
== 0) {
1476 if (mcb
->error
== 0) {
1477 multiwrite_user_cb(mcb
);
1483 static int multiwrite_req_compare(const void *a
, const void *b
)
1485 return (((BlockRequest
*) a
)->sector
- ((BlockRequest
*) b
)->sector
);
1489 * Takes a bunch of requests and tries to merge them. Returns the number of
1490 * requests that remain after merging.
1492 static int multiwrite_merge(BlockDriverState
*bs
, BlockRequest
*reqs
,
1493 int num_reqs
, MultiwriteCB
*mcb
)
1497 // Sort requests by start sector
1498 qsort(reqs
, num_reqs
, sizeof(*reqs
), &multiwrite_req_compare
);
1500 // Check if adjacent requests touch the same clusters. If so, combine them,
1501 // filling up gaps with zero sectors.
1503 for (i
= 1; i
< num_reqs
; i
++) {
1505 int64_t oldreq_last
= reqs
[outidx
].sector
+ reqs
[outidx
].nb_sectors
;
1507 // This handles the cases that are valid for all block drivers, namely
1508 // exactly sequential writes and overlapping writes.
1509 if (reqs
[i
].sector
<= oldreq_last
) {
1513 // The block driver may decide that it makes sense to combine requests
1514 // even if there is a gap of some sectors between them. In this case,
1515 // the gap is filled with zeros (therefore only applicable for yet
1516 // unused space in format like qcow2).
1517 if (!merge
&& bs
->drv
->bdrv_merge_requests
) {
1518 merge
= bs
->drv
->bdrv_merge_requests(bs
, &reqs
[outidx
], &reqs
[i
]);
1523 QEMUIOVector
*qiov
= qemu_mallocz(sizeof(*qiov
));
1524 qemu_iovec_init(qiov
,
1525 reqs
[outidx
].qiov
->niov
+ reqs
[i
].qiov
->niov
+ 1);
1527 // Add the first request to the merged one. If the requests are
1528 // overlapping, drop the last sectors of the first request.
1529 size
= (reqs
[i
].sector
- reqs
[outidx
].sector
) << 9;
1530 qemu_iovec_concat(qiov
, reqs
[outidx
].qiov
, size
);
1532 // We might need to add some zeros between the two requests
1533 if (reqs
[i
].sector
> oldreq_last
) {
1534 size_t zero_bytes
= (reqs
[i
].sector
- oldreq_last
) << 9;
1535 uint8_t *buf
= qemu_blockalign(bs
, zero_bytes
);
1536 memset(buf
, 0, zero_bytes
);
1537 qemu_iovec_add(qiov
, buf
, zero_bytes
);
1538 mcb
->callbacks
[i
].free_buf
= buf
;
1541 // Add the second request
1542 qemu_iovec_concat(qiov
, reqs
[i
].qiov
, reqs
[i
].qiov
->size
);
1544 reqs
[outidx
].nb_sectors
+= reqs
[i
].nb_sectors
;
1545 reqs
[outidx
].qiov
= qiov
;
1547 mcb
->callbacks
[i
].free_qiov
= reqs
[outidx
].qiov
;
1550 reqs
[outidx
].sector
= reqs
[i
].sector
;
1551 reqs
[outidx
].nb_sectors
= reqs
[i
].nb_sectors
;
1552 reqs
[outidx
].qiov
= reqs
[i
].qiov
;
1560 * Submit multiple AIO write requests at once.
1562 * On success, the function returns 0 and all requests in the reqs array have
1563 * been submitted. In error case this function returns -1, and any of the
1564 * requests may or may not be submitted yet. In particular, this means that the
1565 * callback will be called for some of the requests, for others it won't. The
1566 * caller must check the error field of the BlockRequest to wait for the right
1567 * callbacks (if error != 0, no callback will be called).
1569 * The implementation may modify the contents of the reqs array, e.g. to merge
1570 * requests. However, the fields opaque and error are left unmodified as they
1571 * are used to signal failure for a single request to the caller.
1573 int bdrv_aio_multiwrite(BlockDriverState
*bs
, BlockRequest
*reqs
, int num_reqs
)
1575 BlockDriverAIOCB
*acb
;
1579 if (num_reqs
== 0) {
1583 // Create MultiwriteCB structure
1584 mcb
= qemu_mallocz(sizeof(*mcb
) + num_reqs
* sizeof(*mcb
->callbacks
));
1585 mcb
->num_requests
= 0;
1586 mcb
->num_callbacks
= num_reqs
;
1588 for (i
= 0; i
< num_reqs
; i
++) {
1589 mcb
->callbacks
[i
].cb
= reqs
[i
].cb
;
1590 mcb
->callbacks
[i
].opaque
= reqs
[i
].opaque
;
1593 // Check for mergable requests
1594 num_reqs
= multiwrite_merge(bs
, reqs
, num_reqs
, mcb
);
1596 // Run the aio requests
1597 for (i
= 0; i
< num_reqs
; i
++) {
1598 acb
= bdrv_aio_writev(bs
, reqs
[i
].sector
, reqs
[i
].qiov
,
1599 reqs
[i
].nb_sectors
, multiwrite_cb
, mcb
);
1602 // We can only fail the whole thing if no request has been
1603 // submitted yet. Otherwise we'll wait for the submitted AIOs to
1604 // complete and report the error in the callback.
1605 if (mcb
->num_requests
== 0) {
1606 reqs
[i
].error
= EIO
;
1613 mcb
->num_requests
++;
1624 BlockDriverAIOCB
*bdrv_aio_flush(BlockDriverState
*bs
,
1625 BlockDriverCompletionFunc
*cb
, void *opaque
)
1627 BlockDriver
*drv
= bs
->drv
;
1633 * Note that unlike bdrv_flush the driver is reponsible for flushing a
1634 * backing image if it exists.
1636 return drv
->bdrv_aio_flush(bs
, cb
, opaque
);
1639 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1641 acb
->pool
->cancel(acb
);
1645 /**************************************************************/
1646 /* async block device emulation */
1648 typedef struct BlockDriverAIOCBSync
{
1649 BlockDriverAIOCB common
;
1652 /* vector translation state */
1656 } BlockDriverAIOCBSync
;
1658 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
1660 BlockDriverAIOCBSync
*acb
= (BlockDriverAIOCBSync
*)blockacb
;
1661 qemu_bh_delete(acb
->bh
);
1663 qemu_aio_release(acb
);
1666 static AIOPool bdrv_em_aio_pool
= {
1667 .aiocb_size
= sizeof(BlockDriverAIOCBSync
),
1668 .cancel
= bdrv_aio_cancel_em
,
1671 static void bdrv_aio_bh_cb(void *opaque
)
1673 BlockDriverAIOCBSync
*acb
= opaque
;
1676 qemu_iovec_from_buffer(acb
->qiov
, acb
->bounce
, acb
->qiov
->size
);
1677 qemu_vfree(acb
->bounce
);
1678 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1679 qemu_bh_delete(acb
->bh
);
1681 qemu_aio_release(acb
);
1684 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
1688 BlockDriverCompletionFunc
*cb
,
1693 BlockDriverAIOCBSync
*acb
;
1695 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
1696 acb
->is_write
= is_write
;
1698 acb
->bounce
= qemu_blockalign(bs
, qiov
->size
);
1701 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1704 qemu_iovec_to_buffer(acb
->qiov
, acb
->bounce
);
1705 acb
->ret
= bdrv_write(bs
, sector_num
, acb
->bounce
, nb_sectors
);
1707 acb
->ret
= bdrv_read(bs
, sector_num
, acb
->bounce
, nb_sectors
);
1710 qemu_bh_schedule(acb
->bh
);
1712 return &acb
->common
;
1715 static BlockDriverAIOCB
*bdrv_aio_readv_em(BlockDriverState
*bs
,
1716 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
1717 BlockDriverCompletionFunc
*cb
, void *opaque
)
1719 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 0);
1722 static BlockDriverAIOCB
*bdrv_aio_writev_em(BlockDriverState
*bs
,
1723 int64_t sector_num
, QEMUIOVector
*qiov
, int nb_sectors
,
1724 BlockDriverCompletionFunc
*cb
, void *opaque
)
1726 return bdrv_aio_rw_vector(bs
, sector_num
, qiov
, nb_sectors
, cb
, opaque
, 1);
1729 static BlockDriverAIOCB
*bdrv_aio_flush_em(BlockDriverState
*bs
,
1730 BlockDriverCompletionFunc
*cb
, void *opaque
)
1732 BlockDriverAIOCBSync
*acb
;
1734 acb
= qemu_aio_get(&bdrv_em_aio_pool
, bs
, cb
, opaque
);
1735 acb
->is_write
= 1; /* don't bounce in the completion hadler */
1741 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1744 qemu_bh_schedule(acb
->bh
);
1745 return &acb
->common
;
1748 /**************************************************************/
1749 /* sync block device emulation */
1751 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1753 *(int *)opaque
= ret
;
1756 #define NOT_DONE 0x7fffffff
1758 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1759 uint8_t *buf
, int nb_sectors
)
1762 BlockDriverAIOCB
*acb
;
1766 async_context_push();
1768 async_ret
= NOT_DONE
;
1769 iov
.iov_base
= (void *)buf
;
1770 iov
.iov_len
= nb_sectors
* 512;
1771 qemu_iovec_init_external(&qiov
, &iov
, 1);
1772 acb
= bdrv_aio_readv(bs
, sector_num
, &qiov
, nb_sectors
,
1773 bdrv_rw_em_cb
, &async_ret
);
1779 while (async_ret
== NOT_DONE
) {
1785 async_context_pop();
1789 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1790 const uint8_t *buf
, int nb_sectors
)
1793 BlockDriverAIOCB
*acb
;
1797 async_context_push();
1799 async_ret
= NOT_DONE
;
1800 iov
.iov_base
= (void *)buf
;
1801 iov
.iov_len
= nb_sectors
* 512;
1802 qemu_iovec_init_external(&qiov
, &iov
, 1);
1803 acb
= bdrv_aio_writev(bs
, sector_num
, &qiov
, nb_sectors
,
1804 bdrv_rw_em_cb
, &async_ret
);
1809 while (async_ret
== NOT_DONE
) {
1814 async_context_pop();
1818 void bdrv_init(void)
1820 module_call_init(MODULE_INIT_BLOCK
);
1823 void bdrv_init_with_whitelist(void)
1825 use_bdrv_whitelist
= 1;
1829 void *qemu_aio_get(AIOPool
*pool
, BlockDriverState
*bs
,
1830 BlockDriverCompletionFunc
*cb
, void *opaque
)
1832 BlockDriverAIOCB
*acb
;
1834 if (pool
->free_aiocb
) {
1835 acb
= pool
->free_aiocb
;
1836 pool
->free_aiocb
= acb
->next
;
1838 acb
= qemu_mallocz(pool
->aiocb_size
);
1843 acb
->opaque
= opaque
;
1847 void qemu_aio_release(void *p
)
1849 BlockDriverAIOCB
*acb
= (BlockDriverAIOCB
*)p
;
1850 AIOPool
*pool
= acb
->pool
;
1851 acb
->next
= pool
->free_aiocb
;
1852 pool
->free_aiocb
= acb
;
1855 /**************************************************************/
1856 /* removable device support */
1859 * Return TRUE if the media is present
1861 int bdrv_is_inserted(BlockDriverState
*bs
)
1863 BlockDriver
*drv
= bs
->drv
;
1867 if (!drv
->bdrv_is_inserted
)
1869 ret
= drv
->bdrv_is_inserted(bs
);
1874 * Return TRUE if the media changed since the last call to this
1875 * function. It is currently only used for floppy disks
1877 int bdrv_media_changed(BlockDriverState
*bs
)
1879 BlockDriver
*drv
= bs
->drv
;
1882 if (!drv
|| !drv
->bdrv_media_changed
)
1885 ret
= drv
->bdrv_media_changed(bs
);
1886 if (ret
== -ENOTSUP
)
1887 ret
= bs
->media_changed
;
1888 bs
->media_changed
= 0;
1893 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1895 int bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
1897 BlockDriver
*drv
= bs
->drv
;
1904 if (!drv
|| !drv
->bdrv_eject
) {
1907 ret
= drv
->bdrv_eject(bs
, eject_flag
);
1909 if (ret
== -ENOTSUP
) {
1918 int bdrv_is_locked(BlockDriverState
*bs
)
1924 * Lock or unlock the media (if it is locked, the user won't be able
1925 * to eject it manually).
1927 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
1929 BlockDriver
*drv
= bs
->drv
;
1931 bs
->locked
= locked
;
1932 if (drv
&& drv
->bdrv_set_locked
) {
1933 drv
->bdrv_set_locked(bs
, locked
);
1937 /* needed for generic scsi interface */
1939 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1941 BlockDriver
*drv
= bs
->drv
;
1943 if (drv
&& drv
->bdrv_ioctl
)
1944 return drv
->bdrv_ioctl(bs
, req
, buf
);
1948 BlockDriverAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
1949 unsigned long int req
, void *buf
,
1950 BlockDriverCompletionFunc
*cb
, void *opaque
)
1952 BlockDriver
*drv
= bs
->drv
;
1954 if (drv
&& drv
->bdrv_aio_ioctl
)
1955 return drv
->bdrv_aio_ioctl(bs
, req
, buf
, cb
, opaque
);
1961 void *qemu_blockalign(BlockDriverState
*bs
, size_t size
)
1963 return qemu_memalign((bs
&& bs
->buffer_alignment
) ? bs
->buffer_alignment
: 512, size
);
1966 void bdrv_set_dirty_tracking(BlockDriverState
*bs
, int enable
)
1968 int64_t bitmap_size
;
1970 if(bs
->dirty_tracking
== 0) {
1973 bitmap_size
= (bdrv_getlength(bs
) >> SECTOR_BITS
);
1974 bitmap_size
/= SECTORS_PER_DIRTY_CHUNK
;
1977 bs
->dirty_bitmap
= qemu_mallocz(bitmap_size
);
1979 bs
->dirty_tracking
= enable
;
1980 for(i
= 0; i
< bitmap_size
; i
++) test
= bs
->dirty_bitmap
[i
];
1983 if(bs
->dirty_tracking
!= 0) {
1984 qemu_free(bs
->dirty_bitmap
);
1985 bs
->dirty_tracking
= enable
;
1990 int bdrv_get_dirty(BlockDriverState
*bs
, int64_t sector
)
1992 int64_t chunk
= sector
/ (int64_t)SECTORS_PER_DIRTY_CHUNK
;
1994 if(bs
->dirty_bitmap
!= NULL
&&
1995 (sector
<< SECTOR_BITS
) <= bdrv_getlength(bs
)) {
1996 return bs
->dirty_bitmap
[chunk
];
2002 void bdrv_reset_dirty(BlockDriverState
*bs
, int64_t cur_sector
,
2005 set_dirty_bitmap(bs
, cur_sector
, nr_sectors
, 0);
2008 int bdrv_get_sectors_per_chunk(void)
2010 /* size must be 2^x */
2011 return SECTORS_PER_DIRTY_CHUNK
;