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"
26 /* include native header before sys-queue.h */
27 #include <sys/queue.h>
30 #include "qemu-common.h"
32 #include "block_int.h"
35 #include <sys/types.h>
37 #include <sys/ioctl.h>
48 #define SECTOR_SIZE (1 << SECTOR_BITS)
50 static AIOPool vectored_aio_pool
;
52 typedef struct BlockDriverAIOCBSync
{
53 BlockDriverAIOCB common
;
56 } BlockDriverAIOCBSync
;
58 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
59 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
60 BlockDriverCompletionFunc
*cb
, void *opaque
);
61 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
62 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
63 BlockDriverCompletionFunc
*cb
, void *opaque
);
64 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
);
65 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
66 uint8_t *buf
, int nb_sectors
);
67 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
68 const uint8_t *buf
, int nb_sectors
);
70 BlockDriverState
*bdrv_first
;
72 static BlockDriver
*first_drv
;
74 int path_is_absolute(const char *path
)
78 /* specific case for names like: "\\.\d:" */
79 if (*path
== '/' || *path
== '\\')
82 p
= strchr(path
, ':');
88 return (*p
== '/' || *p
== '\\');
94 /* if filename is absolute, just copy it to dest. Otherwise, build a
95 path to it by considering it is relative to base_path. URL are
97 void path_combine(char *dest
, int dest_size
,
98 const char *base_path
,
106 if (path_is_absolute(filename
)) {
107 pstrcpy(dest
, dest_size
, filename
);
109 p
= strchr(base_path
, ':');
114 p1
= strrchr(base_path
, '/');
118 p2
= strrchr(base_path
, '\\');
130 if (len
> dest_size
- 1)
132 memcpy(dest
, base_path
, len
);
134 pstrcat(dest
, dest_size
, filename
);
139 static void bdrv_register(BlockDriver
*bdrv
)
141 if (!bdrv
->bdrv_aio_read
) {
142 /* add AIO emulation layer */
143 bdrv
->bdrv_aio_read
= bdrv_aio_read_em
;
144 bdrv
->bdrv_aio_write
= bdrv_aio_write_em
;
145 bdrv
->bdrv_aio_cancel
= bdrv_aio_cancel_em
;
146 bdrv
->aiocb_size
= sizeof(BlockDriverAIOCBSync
);
147 } else if (!bdrv
->bdrv_read
) {
148 /* add synchronous IO emulation layer */
149 bdrv
->bdrv_read
= bdrv_read_em
;
150 bdrv
->bdrv_write
= bdrv_write_em
;
152 aio_pool_init(&bdrv
->aio_pool
, bdrv
->aiocb_size
, bdrv
->bdrv_aio_cancel
);
153 bdrv
->next
= first_drv
;
157 /* create a new block device (by default it is empty) */
158 BlockDriverState
*bdrv_new(const char *device_name
)
160 BlockDriverState
**pbs
, *bs
;
162 bs
= qemu_mallocz(sizeof(BlockDriverState
));
163 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
164 if (device_name
[0] != '\0') {
165 /* insert at the end */
174 BlockDriver
*bdrv_find_format(const char *format_name
)
177 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
178 if (!strcmp(drv1
->format_name
, format_name
))
184 int bdrv_create2(BlockDriver
*drv
,
185 const char *filename
, int64_t size_in_sectors
,
186 const char *backing_file
, const char *backing_format
,
189 if (drv
->bdrv_create2
)
190 return drv
->bdrv_create2(filename
, size_in_sectors
, backing_file
,
191 backing_format
, flags
);
192 if (drv
->bdrv_create
)
193 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
,
198 int bdrv_create(BlockDriver
*drv
,
199 const char *filename
, int64_t size_in_sectors
,
200 const char *backing_file
, int flags
)
202 if (!drv
->bdrv_create
)
204 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
, flags
);
208 void get_tmp_filename(char *filename
, int size
)
210 char temp_dir
[MAX_PATH
];
212 GetTempPath(MAX_PATH
, temp_dir
);
213 GetTempFileName(temp_dir
, "qem", 0, filename
);
216 void get_tmp_filename(char *filename
, int size
)
220 /* XXX: race condition possible */
221 tmpdir
= getenv("TMPDIR");
224 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
225 fd
= mkstemp(filename
);
231 static int is_windows_drive_prefix(const char *filename
)
233 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
234 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
238 static int is_windows_drive(const char *filename
)
240 if (is_windows_drive_prefix(filename
) &&
243 if (strstart(filename
, "\\\\.\\", NULL
) ||
244 strstart(filename
, "//./", NULL
))
250 static BlockDriver
*find_protocol(const char *filename
)
258 if (is_windows_drive(filename
) ||
259 is_windows_drive_prefix(filename
))
262 p
= strchr(filename
, ':');
266 if (len
> sizeof(protocol
) - 1)
267 len
= sizeof(protocol
) - 1;
268 memcpy(protocol
, filename
, len
);
269 protocol
[len
] = '\0';
270 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
271 if (drv1
->protocol_name
&&
272 !strcmp(drv1
->protocol_name
, protocol
))
278 /* XXX: force raw format if block or character device ? It would
279 simplify the BSD case */
280 static BlockDriver
*find_image_format(const char *filename
)
282 int ret
, score
, score_max
;
283 BlockDriver
*drv1
, *drv
;
285 BlockDriverState
*bs
;
287 /* detect host devices. By convention, /dev/cdrom[N] is always
288 recognized as a host CDROM */
289 if (strstart(filename
, "/dev/cdrom", NULL
))
290 return &bdrv_host_device
;
292 if (is_windows_drive(filename
))
293 return &bdrv_host_device
;
297 if (stat(filename
, &st
) >= 0 &&
298 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
299 return &bdrv_host_device
;
304 drv
= find_protocol(filename
);
305 /* no need to test disk image formats for vvfat */
306 if (drv
== &bdrv_vvfat
)
309 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
312 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
319 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
320 if (drv1
->bdrv_probe
) {
321 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
322 if (score
> score_max
) {
331 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
333 BlockDriverState
*bs
;
337 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
347 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
349 return bdrv_open2(bs
, filename
, flags
, NULL
);
352 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
356 char tmp_filename
[PATH_MAX
];
357 char backing_filename
[PATH_MAX
];
360 bs
->is_temporary
= 0;
364 if (flags
& BDRV_O_SNAPSHOT
) {
365 BlockDriverState
*bs1
;
369 /* if snapshot, we create a temporary backing file and open it
370 instead of opening 'filename' directly */
372 /* if there is a backing file, use it */
374 ret
= bdrv_open2(bs1
, filename
, 0, drv
);
379 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
381 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
386 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
388 /* Real path is meaningless for protocols */
390 snprintf(backing_filename
, sizeof(backing_filename
),
393 realpath(filename
, backing_filename
);
395 ret
= bdrv_create2(&bdrv_qcow2
, tmp_filename
,
396 total_size
, backing_filename
,
397 (drv
? drv
->format_name
: NULL
), 0);
401 filename
= tmp_filename
;
403 bs
->is_temporary
= 1;
406 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
407 if (flags
& BDRV_O_FILE
) {
408 drv
= find_protocol(filename
);
410 drv
= find_image_format(filename
);
414 goto unlink_and_fail
;
417 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
418 /* Note: for compatibility, we open disk image files as RDWR, and
419 RDONLY as fallback */
420 if (!(flags
& BDRV_O_FILE
))
421 open_flags
= BDRV_O_RDWR
| (flags
& BDRV_O_CACHE_MASK
);
423 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
424 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
425 if ((ret
== -EACCES
|| ret
== -EPERM
) && !(flags
& BDRV_O_FILE
)) {
426 ret
= drv
->bdrv_open(bs
, filename
, open_flags
& ~BDRV_O_RDWR
);
430 qemu_free(bs
->opaque
);
434 if (bs
->is_temporary
)
438 if (drv
->bdrv_getlength
) {
439 bs
->total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
442 if (bs
->is_temporary
) {
446 if (bs
->backing_file
[0] != '\0') {
447 /* if there is a backing file, use it */
448 BlockDriver
*back_drv
= NULL
;
449 bs
->backing_hd
= bdrv_new("");
450 path_combine(backing_filename
, sizeof(backing_filename
),
451 filename
, bs
->backing_file
);
452 if (bs
->backing_format
[0] != '\0')
453 back_drv
= bdrv_find_format(bs
->backing_format
);
454 ret
= bdrv_open2(bs
->backing_hd
, backing_filename
, open_flags
,
462 if (!bdrv_key_required(bs
)) {
463 /* call the change callback */
464 bs
->media_changed
= 1;
466 bs
->change_cb(bs
->change_opaque
);
471 void bdrv_close(BlockDriverState
*bs
)
475 bdrv_delete(bs
->backing_hd
);
476 bs
->drv
->bdrv_close(bs
);
477 qemu_free(bs
->opaque
);
479 if (bs
->is_temporary
) {
480 unlink(bs
->filename
);
486 /* call the change callback */
487 bs
->media_changed
= 1;
489 bs
->change_cb(bs
->change_opaque
);
493 void bdrv_delete(BlockDriverState
*bs
)
495 BlockDriverState
**pbs
;
498 while (*pbs
!= bs
&& *pbs
!= NULL
)
507 /* commit COW file into the raw image */
508 int bdrv_commit(BlockDriverState
*bs
)
510 BlockDriver
*drv
= bs
->drv
;
511 int64_t i
, total_sectors
;
513 unsigned char sector
[512];
522 if (!bs
->backing_hd
) {
526 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
527 for (i
= 0; i
< total_sectors
;) {
528 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
529 for(j
= 0; j
< n
; j
++) {
530 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
534 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
544 if (drv
->bdrv_make_empty
)
545 return drv
->bdrv_make_empty(bs
);
550 static int bdrv_check_byte_request(BlockDriverState
*bs
, int64_t offset
,
555 if (!bdrv_is_inserted(bs
))
561 len
= bdrv_getlength(bs
);
563 if ((offset
+ size
) > len
)
569 static int bdrv_check_request(BlockDriverState
*bs
, int64_t sector_num
,
572 return bdrv_check_byte_request(bs
, sector_num
* 512, nb_sectors
* 512);
575 /* return < 0 if error. See bdrv_write() for the return codes */
576 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
577 uint8_t *buf
, int nb_sectors
)
579 BlockDriver
*drv
= bs
->drv
;
583 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
586 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
589 /* Return < 0 if error. Important errors are:
590 -EIO generic I/O error (may happen for all errors)
591 -ENOMEDIUM No media inserted.
592 -EINVAL Invalid sector number or nb_sectors
593 -EACCES Trying to write a read-only device
595 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
596 const uint8_t *buf
, int nb_sectors
)
598 BlockDriver
*drv
= bs
->drv
;
603 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
606 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
609 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
610 void *buf
, int count1
)
612 uint8_t tmp_buf
[SECTOR_SIZE
];
613 int len
, nb_sectors
, count
;
617 /* first read to align to sector start */
618 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
621 sector_num
= offset
>> SECTOR_BITS
;
623 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
625 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
633 /* read the sectors "in place" */
634 nb_sectors
= count
>> SECTOR_BITS
;
635 if (nb_sectors
> 0) {
636 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
638 sector_num
+= nb_sectors
;
639 len
= nb_sectors
<< SECTOR_BITS
;
644 /* add data from the last sector */
646 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
648 memcpy(buf
, tmp_buf
, count
);
653 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
654 const void *buf
, int count1
)
656 uint8_t tmp_buf
[SECTOR_SIZE
];
657 int len
, nb_sectors
, count
;
661 /* first write to align to sector start */
662 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
665 sector_num
= offset
>> SECTOR_BITS
;
667 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
669 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
670 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
679 /* write the sectors "in place" */
680 nb_sectors
= count
>> SECTOR_BITS
;
681 if (nb_sectors
> 0) {
682 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
684 sector_num
+= nb_sectors
;
685 len
= nb_sectors
<< SECTOR_BITS
;
690 /* add data from the last sector */
692 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
694 memcpy(tmp_buf
, buf
, count
);
695 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
702 * Truncate file to 'offset' bytes (needed only for file protocols)
704 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
706 BlockDriver
*drv
= bs
->drv
;
709 if (!drv
->bdrv_truncate
)
711 return drv
->bdrv_truncate(bs
, offset
);
715 * Length of a file in bytes. Return < 0 if error or unknown.
717 int64_t bdrv_getlength(BlockDriverState
*bs
)
719 BlockDriver
*drv
= bs
->drv
;
722 if (!drv
->bdrv_getlength
) {
724 return bs
->total_sectors
* SECTOR_SIZE
;
726 return drv
->bdrv_getlength(bs
);
729 /* return 0 as number of sectors if no device present or error */
730 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
733 length
= bdrv_getlength(bs
);
737 length
= length
>> SECTOR_BITS
;
738 *nb_sectors_ptr
= length
;
742 uint8_t boot_ind
; /* 0x80 - active */
743 uint8_t head
; /* starting head */
744 uint8_t sector
; /* starting sector */
745 uint8_t cyl
; /* starting cylinder */
746 uint8_t sys_ind
; /* What partition type */
747 uint8_t end_head
; /* end head */
748 uint8_t end_sector
; /* end sector */
749 uint8_t end_cyl
; /* end cylinder */
750 uint32_t start_sect
; /* starting sector counting from 0 */
751 uint32_t nr_sects
; /* nr of sectors in partition */
752 } __attribute__((packed
));
754 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
755 static int guess_disk_lchs(BlockDriverState
*bs
,
756 int *pcylinders
, int *pheads
, int *psectors
)
759 int ret
, i
, heads
, sectors
, cylinders
;
764 bdrv_get_geometry(bs
, &nb_sectors
);
766 ret
= bdrv_read(bs
, 0, buf
, 1);
769 /* test msdos magic */
770 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
772 for(i
= 0; i
< 4; i
++) {
773 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
774 nr_sects
= le32_to_cpu(p
->nr_sects
);
775 if (nr_sects
&& p
->end_head
) {
776 /* We make the assumption that the partition terminates on
777 a cylinder boundary */
778 heads
= p
->end_head
+ 1;
779 sectors
= p
->end_sector
& 63;
782 cylinders
= nb_sectors
/ (heads
* sectors
);
783 if (cylinders
< 1 || cylinders
> 16383)
787 *pcylinders
= cylinders
;
789 printf("guessed geometry: LCHS=%d %d %d\n",
790 cylinders
, heads
, sectors
);
798 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
800 int translation
, lba_detected
= 0;
801 int cylinders
, heads
, secs
;
804 /* if a geometry hint is available, use it */
805 bdrv_get_geometry(bs
, &nb_sectors
);
806 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
807 translation
= bdrv_get_translation_hint(bs
);
808 if (cylinders
!= 0) {
813 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
815 /* if heads > 16, it means that a BIOS LBA
816 translation was active, so the default
817 hardware geometry is OK */
819 goto default_geometry
;
824 /* disable any translation to be in sync with
825 the logical geometry */
826 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
827 bdrv_set_translation_hint(bs
,
828 BIOS_ATA_TRANSLATION_NONE
);
833 /* if no geometry, use a standard physical disk geometry */
834 cylinders
= nb_sectors
/ (16 * 63);
836 if (cylinders
> 16383)
838 else if (cylinders
< 2)
843 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
844 if ((*pcyls
* *pheads
) <= 131072) {
845 bdrv_set_translation_hint(bs
,
846 BIOS_ATA_TRANSLATION_LARGE
);
848 bdrv_set_translation_hint(bs
,
849 BIOS_ATA_TRANSLATION_LBA
);
853 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
857 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
858 int cyls
, int heads
, int secs
)
865 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
868 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
869 type
== BDRV_TYPE_FLOPPY
));
872 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
874 bs
->translation
= translation
;
877 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
878 int *pcyls
, int *pheads
, int *psecs
)
885 int bdrv_get_type_hint(BlockDriverState
*bs
)
890 int bdrv_get_translation_hint(BlockDriverState
*bs
)
892 return bs
->translation
;
895 int bdrv_is_removable(BlockDriverState
*bs
)
897 return bs
->removable
;
900 int bdrv_is_read_only(BlockDriverState
*bs
)
902 return bs
->read_only
;
905 int bdrv_is_sg(BlockDriverState
*bs
)
910 /* XXX: no longer used */
911 void bdrv_set_change_cb(BlockDriverState
*bs
,
912 void (*change_cb
)(void *opaque
), void *opaque
)
914 bs
->change_cb
= change_cb
;
915 bs
->change_opaque
= opaque
;
918 int bdrv_is_encrypted(BlockDriverState
*bs
)
920 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
922 return bs
->encrypted
;
925 int bdrv_key_required(BlockDriverState
*bs
)
927 BlockDriverState
*backing_hd
= bs
->backing_hd
;
929 if (backing_hd
&& backing_hd
->encrypted
&& !backing_hd
->valid_key
)
931 return (bs
->encrypted
&& !bs
->valid_key
);
934 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
937 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
938 ret
= bdrv_set_key(bs
->backing_hd
, key
);
944 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
946 ret
= bs
->drv
->bdrv_set_key(bs
, key
);
949 } else if (!bs
->valid_key
) {
951 /* call the change callback now, we skipped it on open */
952 bs
->media_changed
= 1;
954 bs
->change_cb(bs
->change_opaque
);
959 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
964 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
968 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
973 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
974 it(opaque
, drv
->format_name
);
978 BlockDriverState
*bdrv_find(const char *name
)
980 BlockDriverState
*bs
;
982 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
983 if (!strcmp(name
, bs
->device_name
))
989 void bdrv_iterate(void (*it
)(void *opaque
, BlockDriverState
*bs
), void *opaque
)
991 BlockDriverState
*bs
;
993 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
998 const char *bdrv_get_device_name(BlockDriverState
*bs
)
1000 return bs
->device_name
;
1003 void bdrv_flush(BlockDriverState
*bs
)
1007 if (bs
->drv
->bdrv_flush
)
1008 bs
->drv
->bdrv_flush(bs
);
1010 bdrv_flush(bs
->backing_hd
);
1013 void bdrv_flush_all(void)
1015 BlockDriverState
*bs
;
1017 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
)
1018 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1019 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
)))
1024 * Returns true iff the specified sector is present in the disk image. Drivers
1025 * not implementing the functionality are assumed to not support backing files,
1026 * hence all their sectors are reported as allocated.
1028 * 'pnum' is set to the number of sectors (including and immediately following
1029 * the specified sector) that are known to be in the same
1030 * allocated/unallocated state.
1032 * 'nb_sectors' is the max value 'pnum' should be set to.
1034 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1038 if (!bs
->drv
->bdrv_is_allocated
) {
1039 if (sector_num
>= bs
->total_sectors
) {
1043 n
= bs
->total_sectors
- sector_num
;
1044 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1047 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1050 void bdrv_info(Monitor
*mon
)
1052 BlockDriverState
*bs
;
1054 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1055 monitor_printf(mon
, "%s:", bs
->device_name
);
1056 monitor_printf(mon
, " type=");
1059 monitor_printf(mon
, "hd");
1061 case BDRV_TYPE_CDROM
:
1062 monitor_printf(mon
, "cdrom");
1064 case BDRV_TYPE_FLOPPY
:
1065 monitor_printf(mon
, "floppy");
1068 monitor_printf(mon
, " removable=%d", bs
->removable
);
1069 if (bs
->removable
) {
1070 monitor_printf(mon
, " locked=%d", bs
->locked
);
1073 monitor_printf(mon
, " file=");
1074 monitor_print_filename(mon
, bs
->filename
);
1075 if (bs
->backing_file
[0] != '\0') {
1076 monitor_printf(mon
, " backing_file=");
1077 monitor_print_filename(mon
, bs
->backing_file
);
1079 monitor_printf(mon
, " ro=%d", bs
->read_only
);
1080 monitor_printf(mon
, " drv=%s", bs
->drv
->format_name
);
1081 monitor_printf(mon
, " encrypted=%d", bdrv_is_encrypted(bs
));
1083 monitor_printf(mon
, " [not inserted]");
1085 monitor_printf(mon
, "\n");
1089 /* The "info blockstats" command. */
1090 void bdrv_info_stats(Monitor
*mon
)
1092 BlockDriverState
*bs
;
1094 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1095 monitor_printf(mon
, "%s:"
1096 " rd_bytes=%" PRIu64
1097 " wr_bytes=%" PRIu64
1098 " rd_operations=%" PRIu64
1099 " wr_operations=%" PRIu64
1102 bs
->rd_bytes
, bs
->wr_bytes
,
1103 bs
->rd_ops
, bs
->wr_ops
);
1107 const char *bdrv_get_encrypted_filename(BlockDriverState
*bs
)
1109 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
1110 return bs
->backing_file
;
1111 else if (bs
->encrypted
)
1112 return bs
->filename
;
1117 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1118 char *filename
, int filename_size
)
1120 if (!bs
->backing_hd
) {
1121 pstrcpy(filename
, filename_size
, "");
1123 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1127 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1128 const uint8_t *buf
, int nb_sectors
)
1130 BlockDriver
*drv
= bs
->drv
;
1133 if (!drv
->bdrv_write_compressed
)
1135 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1138 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1140 BlockDriver
*drv
= bs
->drv
;
1143 if (!drv
->bdrv_get_info
)
1145 memset(bdi
, 0, sizeof(*bdi
));
1146 return drv
->bdrv_get_info(bs
, bdi
);
1149 /**************************************************************/
1150 /* handling of snapshots */
1152 int bdrv_snapshot_create(BlockDriverState
*bs
,
1153 QEMUSnapshotInfo
*sn_info
)
1155 BlockDriver
*drv
= bs
->drv
;
1158 if (!drv
->bdrv_snapshot_create
)
1160 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1163 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1164 const char *snapshot_id
)
1166 BlockDriver
*drv
= bs
->drv
;
1169 if (!drv
->bdrv_snapshot_goto
)
1171 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1174 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1176 BlockDriver
*drv
= bs
->drv
;
1179 if (!drv
->bdrv_snapshot_delete
)
1181 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1184 int bdrv_snapshot_list(BlockDriverState
*bs
,
1185 QEMUSnapshotInfo
**psn_info
)
1187 BlockDriver
*drv
= bs
->drv
;
1190 if (!drv
->bdrv_snapshot_list
)
1192 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1195 #define NB_SUFFIXES 4
1197 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1199 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1204 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1207 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1208 if (size
< (10 * base
)) {
1209 snprintf(buf
, buf_size
, "%0.1f%c",
1210 (double)size
/ base
,
1213 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1214 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1215 ((size
+ (base
>> 1)) / base
),
1225 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1227 char buf1
[128], date_buf
[128], clock_buf
[128];
1237 snprintf(buf
, buf_size
,
1238 "%-10s%-20s%7s%20s%15s",
1239 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1243 ptm
= localtime(&ti
);
1244 strftime(date_buf
, sizeof(date_buf
),
1245 "%Y-%m-%d %H:%M:%S", ptm
);
1247 localtime_r(&ti
, &tm
);
1248 strftime(date_buf
, sizeof(date_buf
),
1249 "%Y-%m-%d %H:%M:%S", &tm
);
1251 secs
= sn
->vm_clock_nsec
/ 1000000000;
1252 snprintf(clock_buf
, sizeof(clock_buf
),
1253 "%02d:%02d:%02d.%03d",
1255 (int)((secs
/ 60) % 60),
1257 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1258 snprintf(buf
, buf_size
,
1259 "%-10s%-20s%7s%20s%15s",
1260 sn
->id_str
, sn
->name
,
1261 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1269 /**************************************************************/
1272 typedef struct VectorTranslationAIOCB
{
1273 BlockDriverAIOCB common
;
1277 BlockDriverAIOCB
*aiocb
;
1278 } VectorTranslationAIOCB
;
1280 static void bdrv_aio_cancel_vector(BlockDriverAIOCB
*_acb
)
1282 VectorTranslationAIOCB
*acb
1283 = container_of(_acb
, VectorTranslationAIOCB
, common
);
1285 bdrv_aio_cancel(acb
->aiocb
);
1288 static void bdrv_aio_rw_vector_cb(void *opaque
, int ret
)
1290 VectorTranslationAIOCB
*s
= (VectorTranslationAIOCB
*)opaque
;
1293 qemu_iovec_from_buffer(s
->iov
, s
->bounce
, s
->iov
->size
);
1295 qemu_vfree(s
->bounce
);
1296 s
->common
.cb(s
->common
.opaque
, ret
);
1297 qemu_aio_release(s
);
1300 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
1304 BlockDriverCompletionFunc
*cb
,
1309 VectorTranslationAIOCB
*s
= qemu_aio_get_pool(&vectored_aio_pool
, bs
,
1313 s
->bounce
= qemu_memalign(512, nb_sectors
* 512);
1314 s
->is_write
= is_write
;
1316 qemu_iovec_to_buffer(s
->iov
, s
->bounce
);
1317 s
->aiocb
= bdrv_aio_write(bs
, sector_num
, s
->bounce
, nb_sectors
,
1318 bdrv_aio_rw_vector_cb
, s
);
1320 s
->aiocb
= bdrv_aio_read(bs
, sector_num
, s
->bounce
, nb_sectors
,
1321 bdrv_aio_rw_vector_cb
, s
);
1324 qemu_vfree(s
->bounce
);
1325 qemu_aio_release(s
);
1331 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1332 QEMUIOVector
*iov
, int nb_sectors
,
1333 BlockDriverCompletionFunc
*cb
, void *opaque
)
1335 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1338 return bdrv_aio_rw_vector(bs
, sector_num
, iov
, nb_sectors
,
1342 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1343 QEMUIOVector
*iov
, int nb_sectors
,
1344 BlockDriverCompletionFunc
*cb
, void *opaque
)
1346 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1349 return bdrv_aio_rw_vector(bs
, sector_num
, iov
, nb_sectors
,
1353 BlockDriverAIOCB
*bdrv_aio_read(BlockDriverState
*bs
, int64_t sector_num
,
1354 uint8_t *buf
, int nb_sectors
,
1355 BlockDriverCompletionFunc
*cb
, void *opaque
)
1357 BlockDriver
*drv
= bs
->drv
;
1358 BlockDriverAIOCB
*ret
;
1362 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1365 ret
= drv
->bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1368 /* Update stats even though technically transfer has not happened. */
1369 bs
->rd_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1376 BlockDriverAIOCB
*bdrv_aio_write(BlockDriverState
*bs
, int64_t sector_num
,
1377 const uint8_t *buf
, int nb_sectors
,
1378 BlockDriverCompletionFunc
*cb
, void *opaque
)
1380 BlockDriver
*drv
= bs
->drv
;
1381 BlockDriverAIOCB
*ret
;
1387 if (bdrv_check_request(bs
, sector_num
, nb_sectors
))
1390 ret
= drv
->bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1393 /* Update stats even though technically transfer has not happened. */
1394 bs
->wr_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1401 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1403 acb
->pool
->cancel(acb
);
1407 /**************************************************************/
1408 /* async block device emulation */
1410 static void bdrv_aio_bh_cb(void *opaque
)
1412 BlockDriverAIOCBSync
*acb
= opaque
;
1413 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1414 qemu_aio_release(acb
);
1417 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
1418 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
1419 BlockDriverCompletionFunc
*cb
, void *opaque
)
1421 BlockDriverAIOCBSync
*acb
;
1424 acb
= qemu_aio_get(bs
, cb
, opaque
);
1426 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1427 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1429 qemu_bh_schedule(acb
->bh
);
1430 return &acb
->common
;
1433 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
1434 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
1435 BlockDriverCompletionFunc
*cb
, void *opaque
)
1437 BlockDriverAIOCBSync
*acb
;
1440 acb
= qemu_aio_get(bs
, cb
, opaque
);
1442 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1443 ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1445 qemu_bh_schedule(acb
->bh
);
1446 return &acb
->common
;
1449 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
1451 BlockDriverAIOCBSync
*acb
= (BlockDriverAIOCBSync
*)blockacb
;
1452 qemu_bh_cancel(acb
->bh
);
1453 qemu_aio_release(acb
);
1456 /**************************************************************/
1457 /* sync block device emulation */
1459 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1461 *(int *)opaque
= ret
;
1464 #define NOT_DONE 0x7fffffff
1466 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1467 uint8_t *buf
, int nb_sectors
)
1470 BlockDriverAIOCB
*acb
;
1472 async_ret
= NOT_DONE
;
1473 acb
= bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
,
1474 bdrv_rw_em_cb
, &async_ret
);
1478 while (async_ret
== NOT_DONE
) {
1485 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1486 const uint8_t *buf
, int nb_sectors
)
1489 BlockDriverAIOCB
*acb
;
1491 async_ret
= NOT_DONE
;
1492 acb
= bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
,
1493 bdrv_rw_em_cb
, &async_ret
);
1496 while (async_ret
== NOT_DONE
) {
1502 void bdrv_init(void)
1504 aio_pool_init(&vectored_aio_pool
, sizeof(VectorTranslationAIOCB
),
1505 bdrv_aio_cancel_vector
);
1507 bdrv_register(&bdrv_raw
);
1508 bdrv_register(&bdrv_host_device
);
1510 bdrv_register(&bdrv_cow
);
1512 bdrv_register(&bdrv_qcow
);
1513 bdrv_register(&bdrv_vmdk
);
1514 bdrv_register(&bdrv_cloop
);
1515 bdrv_register(&bdrv_dmg
);
1516 bdrv_register(&bdrv_bochs
);
1517 bdrv_register(&bdrv_vpc
);
1518 bdrv_register(&bdrv_vvfat
);
1519 bdrv_register(&bdrv_qcow2
);
1520 bdrv_register(&bdrv_parallels
);
1521 bdrv_register(&bdrv_nbd
);
1524 void aio_pool_init(AIOPool
*pool
, int aiocb_size
,
1525 void (*cancel
)(BlockDriverAIOCB
*acb
))
1527 pool
->aiocb_size
= aiocb_size
;
1528 pool
->cancel
= cancel
;
1529 pool
->free_aiocb
= NULL
;
1532 void *qemu_aio_get_pool(AIOPool
*pool
, BlockDriverState
*bs
,
1533 BlockDriverCompletionFunc
*cb
, void *opaque
)
1535 BlockDriverAIOCB
*acb
;
1537 if (pool
->free_aiocb
) {
1538 acb
= pool
->free_aiocb
;
1539 pool
->free_aiocb
= acb
->next
;
1541 acb
= qemu_mallocz(pool
->aiocb_size
);
1546 acb
->opaque
= opaque
;
1550 void *qemu_aio_get(BlockDriverState
*bs
, BlockDriverCompletionFunc
*cb
,
1553 return qemu_aio_get_pool(&bs
->drv
->aio_pool
, bs
, cb
, opaque
);
1556 void qemu_aio_release(void *p
)
1558 BlockDriverAIOCB
*acb
= (BlockDriverAIOCB
*)p
;
1559 AIOPool
*pool
= acb
->pool
;
1560 acb
->next
= pool
->free_aiocb
;
1561 pool
->free_aiocb
= acb
;
1564 /**************************************************************/
1565 /* removable device support */
1568 * Return TRUE if the media is present
1570 int bdrv_is_inserted(BlockDriverState
*bs
)
1572 BlockDriver
*drv
= bs
->drv
;
1576 if (!drv
->bdrv_is_inserted
)
1578 ret
= drv
->bdrv_is_inserted(bs
);
1583 * Return TRUE if the media changed since the last call to this
1584 * function. It is currently only used for floppy disks
1586 int bdrv_media_changed(BlockDriverState
*bs
)
1588 BlockDriver
*drv
= bs
->drv
;
1591 if (!drv
|| !drv
->bdrv_media_changed
)
1594 ret
= drv
->bdrv_media_changed(bs
);
1595 if (ret
== -ENOTSUP
)
1596 ret
= bs
->media_changed
;
1597 bs
->media_changed
= 0;
1602 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1604 void bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
1606 BlockDriver
*drv
= bs
->drv
;
1609 if (!drv
|| !drv
->bdrv_eject
) {
1612 ret
= drv
->bdrv_eject(bs
, eject_flag
);
1614 if (ret
== -ENOTSUP
) {
1620 int bdrv_is_locked(BlockDriverState
*bs
)
1626 * Lock or unlock the media (if it is locked, the user won't be able
1627 * to eject it manually).
1629 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
1631 BlockDriver
*drv
= bs
->drv
;
1633 bs
->locked
= locked
;
1634 if (drv
&& drv
->bdrv_set_locked
) {
1635 drv
->bdrv_set_locked(bs
, locked
);
1639 /* needed for generic scsi interface */
1641 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1643 BlockDriver
*drv
= bs
->drv
;
1645 if (drv
&& drv
->bdrv_ioctl
)
1646 return drv
->bdrv_ioctl(bs
, req
, buf
);
1650 BlockDriverAIOCB
*bdrv_aio_ioctl(BlockDriverState
*bs
,
1651 unsigned long int req
, void *buf
,
1652 BlockDriverCompletionFunc
*cb
, void *opaque
)
1654 BlockDriver
*drv
= bs
->drv
;
1656 if (drv
&& drv
->bdrv_aio_ioctl
)
1657 return drv
->bdrv_aio_ioctl(bs
, req
, buf
, cb
, opaque
);