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>
42 #define SECTOR_SIZE (1 << SECTOR_BITS)
44 typedef struct BlockDriverAIOCBSync
{
45 BlockDriverAIOCB common
;
48 } BlockDriverAIOCBSync
;
50 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
51 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
52 BlockDriverCompletionFunc
*cb
, void *opaque
);
53 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
54 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
55 BlockDriverCompletionFunc
*cb
, void *opaque
);
56 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
);
57 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
58 uint8_t *buf
, int nb_sectors
);
59 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
60 const uint8_t *buf
, int nb_sectors
);
62 BlockDriverState
*bdrv_first
;
64 static BlockDriver
*first_drv
;
66 int path_is_absolute(const char *path
)
70 /* specific case for names like: "\\.\d:" */
71 if (*path
== '/' || *path
== '\\')
74 p
= strchr(path
, ':');
80 return (*p
== '/' || *p
== '\\');
86 /* if filename is absolute, just copy it to dest. Otherwise, build a
87 path to it by considering it is relative to base_path. URL are
89 void path_combine(char *dest
, int dest_size
,
90 const char *base_path
,
98 if (path_is_absolute(filename
)) {
99 pstrcpy(dest
, dest_size
, filename
);
101 p
= strchr(base_path
, ':');
106 p1
= strrchr(base_path
, '/');
110 p2
= strrchr(base_path
, '\\');
122 if (len
> dest_size
- 1)
124 memcpy(dest
, base_path
, len
);
126 pstrcat(dest
, dest_size
, filename
);
131 static void bdrv_register(BlockDriver
*bdrv
)
133 if (!bdrv
->bdrv_aio_read
) {
134 /* add AIO emulation layer */
135 bdrv
->bdrv_aio_read
= bdrv_aio_read_em
;
136 bdrv
->bdrv_aio_write
= bdrv_aio_write_em
;
137 bdrv
->bdrv_aio_cancel
= bdrv_aio_cancel_em
;
138 bdrv
->aiocb_size
= sizeof(BlockDriverAIOCBSync
);
139 } else if (!bdrv
->bdrv_read
&& !bdrv
->bdrv_pread
) {
140 /* add synchronous IO emulation layer */
141 bdrv
->bdrv_read
= bdrv_read_em
;
142 bdrv
->bdrv_write
= bdrv_write_em
;
144 bdrv
->next
= first_drv
;
148 /* create a new block device (by default it is empty) */
149 BlockDriverState
*bdrv_new(const char *device_name
)
151 BlockDriverState
**pbs
, *bs
;
153 bs
= qemu_mallocz(sizeof(BlockDriverState
));
154 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
155 if (device_name
[0] != '\0') {
156 /* insert at the end */
165 BlockDriver
*bdrv_find_format(const char *format_name
)
168 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
169 if (!strcmp(drv1
->format_name
, format_name
))
175 int bdrv_create(BlockDriver
*drv
,
176 const char *filename
, int64_t size_in_sectors
,
177 const char *backing_file
, int flags
)
179 if (!drv
->bdrv_create
)
181 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
, flags
);
185 void get_tmp_filename(char *filename
, int size
)
187 char temp_dir
[MAX_PATH
];
189 GetTempPath(MAX_PATH
, temp_dir
);
190 GetTempFileName(temp_dir
, "qem", 0, filename
);
193 void get_tmp_filename(char *filename
, int size
)
197 /* XXX: race condition possible */
198 tmpdir
= getenv("TMPDIR");
201 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
202 fd
= mkstemp(filename
);
208 static int is_windows_drive_prefix(const char *filename
)
210 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
211 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
215 static int is_windows_drive(const char *filename
)
217 if (is_windows_drive_prefix(filename
) &&
220 if (strstart(filename
, "\\\\.\\", NULL
) ||
221 strstart(filename
, "//./", NULL
))
227 static BlockDriver
*find_protocol(const char *filename
)
235 if (is_windows_drive(filename
) ||
236 is_windows_drive_prefix(filename
))
239 p
= strchr(filename
, ':');
243 if (len
> sizeof(protocol
) - 1)
244 len
= sizeof(protocol
) - 1;
245 memcpy(protocol
, filename
, len
);
246 protocol
[len
] = '\0';
247 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
248 if (drv1
->protocol_name
&&
249 !strcmp(drv1
->protocol_name
, protocol
))
255 /* XXX: force raw format if block or character device ? It would
256 simplify the BSD case */
257 static BlockDriver
*find_image_format(const char *filename
)
259 int ret
, score
, score_max
;
260 BlockDriver
*drv1
, *drv
;
262 BlockDriverState
*bs
;
264 /* detect host devices. By convention, /dev/cdrom[N] is always
265 recognized as a host CDROM */
266 if (strstart(filename
, "/dev/cdrom", NULL
))
267 return &bdrv_host_device
;
269 if (is_windows_drive(filename
))
270 return &bdrv_host_device
;
274 if (stat(filename
, &st
) >= 0 &&
275 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
276 return &bdrv_host_device
;
281 drv
= find_protocol(filename
);
282 /* no need to test disk image formats for vvfat */
283 if (drv
== &bdrv_vvfat
)
286 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
289 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
296 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
297 if (drv1
->bdrv_probe
) {
298 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
299 if (score
> score_max
) {
308 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
310 BlockDriverState
*bs
;
316 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
325 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
327 return bdrv_open2(bs
, filename
, flags
, NULL
);
330 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
334 char tmp_filename
[PATH_MAX
];
335 char backing_filename
[PATH_MAX
];
338 bs
->is_temporary
= 0;
341 if (flags
& BDRV_O_SNAPSHOT
) {
342 BlockDriverState
*bs1
;
346 /* if snapshot, we create a temporary backing file and open it
347 instead of opening 'filename' directly */
349 /* if there is a backing file, use it */
354 if (bdrv_open(bs1
, filename
, 0) < 0) {
358 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
360 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
365 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
367 /* Real path is meaningless for protocols */
369 snprintf(backing_filename
, sizeof(backing_filename
),
372 realpath(filename
, backing_filename
);
374 if (bdrv_create(&bdrv_qcow2
, tmp_filename
,
375 total_size
, backing_filename
, 0) < 0) {
378 filename
= tmp_filename
;
379 bs
->is_temporary
= 1;
382 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
383 if (flags
& BDRV_O_FILE
) {
384 drv
= find_protocol(filename
);
389 drv
= find_image_format(filename
);
395 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
396 /* Note: for compatibility, we open disk image files as RDWR, and
397 RDONLY as fallback */
398 if (!(flags
& BDRV_O_FILE
))
399 open_flags
= BDRV_O_RDWR
| (flags
& BDRV_O_CACHE_MASK
);
401 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
402 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
403 if ((ret
== -EACCES
|| ret
== -EPERM
) && !(flags
& BDRV_O_FILE
)) {
404 ret
= drv
->bdrv_open(bs
, filename
, open_flags
& ~BDRV_O_RDWR
);
408 qemu_free(bs
->opaque
);
413 if (drv
->bdrv_getlength
) {
414 bs
->total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
417 if (bs
->is_temporary
) {
421 if (bs
->backing_file
[0] != '\0') {
422 /* if there is a backing file, use it */
423 bs
->backing_hd
= bdrv_new("");
424 if (!bs
->backing_hd
) {
429 path_combine(backing_filename
, sizeof(backing_filename
),
430 filename
, bs
->backing_file
);
431 if (bdrv_open(bs
->backing_hd
, backing_filename
, open_flags
) < 0)
435 /* call the change callback */
436 bs
->media_changed
= 1;
438 bs
->change_cb(bs
->change_opaque
);
443 void bdrv_close(BlockDriverState
*bs
)
447 bdrv_delete(bs
->backing_hd
);
448 bs
->drv
->bdrv_close(bs
);
449 qemu_free(bs
->opaque
);
451 if (bs
->is_temporary
) {
452 unlink(bs
->filename
);
458 /* call the change callback */
459 bs
->media_changed
= 1;
461 bs
->change_cb(bs
->change_opaque
);
465 void bdrv_delete(BlockDriverState
*bs
)
467 BlockDriverState
**pbs
;
470 while (*pbs
!= bs
&& *pbs
!= NULL
)
479 /* commit COW file into the raw image */
480 int bdrv_commit(BlockDriverState
*bs
)
482 BlockDriver
*drv
= bs
->drv
;
483 int64_t i
, total_sectors
;
485 unsigned char sector
[512];
494 if (!bs
->backing_hd
) {
498 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
499 for (i
= 0; i
< total_sectors
;) {
500 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
501 for(j
= 0; j
< n
; j
++) {
502 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
506 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
516 if (drv
->bdrv_make_empty
)
517 return drv
->bdrv_make_empty(bs
);
522 /* return < 0 if error. See bdrv_write() for the return codes */
523 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
524 uint8_t *buf
, int nb_sectors
)
526 BlockDriver
*drv
= bs
->drv
;
531 if (drv
->bdrv_pread
) {
533 len
= nb_sectors
* 512;
534 ret
= drv
->bdrv_pread(bs
, sector_num
* 512, buf
, len
);
540 bs
->rd_bytes
+= (unsigned) len
;
545 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
549 /* Return < 0 if error. Important errors are:
550 -EIO generic I/O error (may happen for all errors)
551 -ENOMEDIUM No media inserted.
552 -EINVAL Invalid sector number or nb_sectors
553 -EACCES Trying to write a read-only device
555 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
556 const uint8_t *buf
, int nb_sectors
)
558 BlockDriver
*drv
= bs
->drv
;
563 if (drv
->bdrv_pwrite
) {
564 int ret
, len
, count
= 0;
565 len
= nb_sectors
* 512;
567 ret
= drv
->bdrv_pwrite(bs
, sector_num
* 512, buf
, len
- count
);
569 printf("bdrv_write ret=%d\n", ret
);
574 } while (count
!= len
);
575 bs
->wr_bytes
+= (unsigned) len
;
579 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
582 static int bdrv_pread_em(BlockDriverState
*bs
, int64_t offset
,
583 uint8_t *buf
, int count1
)
585 uint8_t tmp_buf
[SECTOR_SIZE
];
586 int len
, nb_sectors
, count
;
590 /* first read to align to sector start */
591 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
594 sector_num
= offset
>> SECTOR_BITS
;
596 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
598 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
606 /* read the sectors "in place" */
607 nb_sectors
= count
>> SECTOR_BITS
;
608 if (nb_sectors
> 0) {
609 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
611 sector_num
+= nb_sectors
;
612 len
= nb_sectors
<< SECTOR_BITS
;
617 /* add data from the last sector */
619 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
621 memcpy(buf
, tmp_buf
, count
);
626 static int bdrv_pwrite_em(BlockDriverState
*bs
, int64_t offset
,
627 const uint8_t *buf
, int count1
)
629 uint8_t tmp_buf
[SECTOR_SIZE
];
630 int len
, nb_sectors
, count
;
634 /* first write to align to sector start */
635 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
638 sector_num
= offset
>> SECTOR_BITS
;
640 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
642 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
643 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
652 /* write the sectors "in place" */
653 nb_sectors
= count
>> SECTOR_BITS
;
654 if (nb_sectors
> 0) {
655 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
657 sector_num
+= nb_sectors
;
658 len
= nb_sectors
<< SECTOR_BITS
;
663 /* add data from the last sector */
665 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
667 memcpy(tmp_buf
, buf
, count
);
668 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
675 * Read with byte offsets (needed only for file protocols)
677 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
678 void *buf1
, int count1
)
680 BlockDriver
*drv
= bs
->drv
;
684 if (!drv
->bdrv_pread
)
685 return bdrv_pread_em(bs
, offset
, buf1
, count1
);
686 return drv
->bdrv_pread(bs
, offset
, buf1
, count1
);
690 * Write with byte offsets (needed only for file protocols)
692 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
693 const void *buf1
, int count1
)
695 BlockDriver
*drv
= bs
->drv
;
699 if (!drv
->bdrv_pwrite
)
700 return bdrv_pwrite_em(bs
, offset
, buf1
, count1
);
701 return drv
->bdrv_pwrite(bs
, offset
, buf1
, count1
);
705 * Truncate file to 'offset' bytes (needed only for file protocols)
707 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
709 BlockDriver
*drv
= bs
->drv
;
712 if (!drv
->bdrv_truncate
)
714 return drv
->bdrv_truncate(bs
, offset
);
718 * Length of a file in bytes. Return < 0 if error or unknown.
720 int64_t bdrv_getlength(BlockDriverState
*bs
)
722 BlockDriver
*drv
= bs
->drv
;
725 if (!drv
->bdrv_getlength
) {
727 return bs
->total_sectors
* SECTOR_SIZE
;
729 return drv
->bdrv_getlength(bs
);
732 /* return 0 as number of sectors if no device present or error */
733 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
736 length
= bdrv_getlength(bs
);
740 length
= length
>> SECTOR_BITS
;
741 *nb_sectors_ptr
= length
;
745 uint8_t boot_ind
; /* 0x80 - active */
746 uint8_t head
; /* starting head */
747 uint8_t sector
; /* starting sector */
748 uint8_t cyl
; /* starting cylinder */
749 uint8_t sys_ind
; /* What partition type */
750 uint8_t end_head
; /* end head */
751 uint8_t end_sector
; /* end sector */
752 uint8_t end_cyl
; /* end cylinder */
753 uint32_t start_sect
; /* starting sector counting from 0 */
754 uint32_t nr_sects
; /* nr of sectors in partition */
755 } __attribute__((packed
));
757 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
758 static int guess_disk_lchs(BlockDriverState
*bs
,
759 int *pcylinders
, int *pheads
, int *psectors
)
762 int ret
, i
, heads
, sectors
, cylinders
;
767 bdrv_get_geometry(bs
, &nb_sectors
);
769 ret
= bdrv_read(bs
, 0, buf
, 1);
772 /* test msdos magic */
773 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
775 for(i
= 0; i
< 4; i
++) {
776 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
777 nr_sects
= le32_to_cpu(p
->nr_sects
);
778 if (nr_sects
&& p
->end_head
) {
779 /* We make the assumption that the partition terminates on
780 a cylinder boundary */
781 heads
= p
->end_head
+ 1;
782 sectors
= p
->end_sector
& 63;
785 cylinders
= nb_sectors
/ (heads
* sectors
);
786 if (cylinders
< 1 || cylinders
> 16383)
790 *pcylinders
= cylinders
;
792 printf("guessed geometry: LCHS=%d %d %d\n",
793 cylinders
, heads
, sectors
);
801 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
803 int translation
, lba_detected
= 0;
804 int cylinders
, heads
, secs
;
807 /* if a geometry hint is available, use it */
808 bdrv_get_geometry(bs
, &nb_sectors
);
809 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
810 translation
= bdrv_get_translation_hint(bs
);
811 if (cylinders
!= 0) {
816 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
818 /* if heads > 16, it means that a BIOS LBA
819 translation was active, so the default
820 hardware geometry is OK */
822 goto default_geometry
;
827 /* disable any translation to be in sync with
828 the logical geometry */
829 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
830 bdrv_set_translation_hint(bs
,
831 BIOS_ATA_TRANSLATION_NONE
);
836 /* if no geometry, use a standard physical disk geometry */
837 cylinders
= nb_sectors
/ (16 * 63);
839 if (cylinders
> 16383)
841 else if (cylinders
< 2)
846 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
847 if ((*pcyls
* *pheads
) <= 131072) {
848 bdrv_set_translation_hint(bs
,
849 BIOS_ATA_TRANSLATION_LARGE
);
851 bdrv_set_translation_hint(bs
,
852 BIOS_ATA_TRANSLATION_LBA
);
856 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
860 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
861 int cyls
, int heads
, int secs
)
868 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
871 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
872 type
== BDRV_TYPE_FLOPPY
));
875 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
877 bs
->translation
= translation
;
880 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
881 int *pcyls
, int *pheads
, int *psecs
)
888 int bdrv_get_type_hint(BlockDriverState
*bs
)
893 int bdrv_get_translation_hint(BlockDriverState
*bs
)
895 return bs
->translation
;
898 int bdrv_is_removable(BlockDriverState
*bs
)
900 return bs
->removable
;
903 int bdrv_is_read_only(BlockDriverState
*bs
)
905 return bs
->read_only
;
908 int bdrv_is_sg(BlockDriverState
*bs
)
913 /* XXX: no longer used */
914 void bdrv_set_change_cb(BlockDriverState
*bs
,
915 void (*change_cb
)(void *opaque
), void *opaque
)
917 bs
->change_cb
= change_cb
;
918 bs
->change_opaque
= opaque
;
921 int bdrv_is_encrypted(BlockDriverState
*bs
)
923 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
925 return bs
->encrypted
;
928 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
931 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
932 ret
= bdrv_set_key(bs
->backing_hd
, key
);
938 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
940 return bs
->drv
->bdrv_set_key(bs
, key
);
943 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
948 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
952 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
957 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
958 it(opaque
, drv
->format_name
);
962 BlockDriverState
*bdrv_find(const char *name
)
964 BlockDriverState
*bs
;
966 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
967 if (!strcmp(name
, bs
->device_name
))
973 void bdrv_iterate(void (*it
)(void *opaque
, const char *name
), void *opaque
)
975 BlockDriverState
*bs
;
977 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
978 it(opaque
, bs
->device_name
);
982 const char *bdrv_get_device_name(BlockDriverState
*bs
)
984 return bs
->device_name
;
987 void bdrv_flush(BlockDriverState
*bs
)
989 if (bs
->drv
->bdrv_flush
)
990 bs
->drv
->bdrv_flush(bs
);
992 bdrv_flush(bs
->backing_hd
);
995 void bdrv_flush_all(void)
997 BlockDriverState
*bs
;
999 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
)
1000 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1001 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
)))
1006 * Returns true iff the specified sector is present in the disk image. Drivers
1007 * not implementing the functionality are assumed to not support backing files,
1008 * hence all their sectors are reported as allocated.
1010 * 'pnum' is set to the number of sectors (including and immediately following
1011 * the specified sector) that are known to be in the same
1012 * allocated/unallocated state.
1014 * 'nb_sectors' is the max value 'pnum' should be set to.
1016 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1020 if (!bs
->drv
->bdrv_is_allocated
) {
1021 if (sector_num
>= bs
->total_sectors
) {
1025 n
= bs
->total_sectors
- sector_num
;
1026 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1029 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1032 void bdrv_info(void)
1034 BlockDriverState
*bs
;
1036 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1037 term_printf("%s:", bs
->device_name
);
1038 term_printf(" type=");
1043 case BDRV_TYPE_CDROM
:
1044 term_printf("cdrom");
1046 case BDRV_TYPE_FLOPPY
:
1047 term_printf("floppy");
1050 term_printf(" removable=%d", bs
->removable
);
1051 if (bs
->removable
) {
1052 term_printf(" locked=%d", bs
->locked
);
1055 term_printf(" file=");
1056 term_print_filename(bs
->filename
);
1057 if (bs
->backing_file
[0] != '\0') {
1058 term_printf(" backing_file=");
1059 term_print_filename(bs
->backing_file
);
1061 term_printf(" ro=%d", bs
->read_only
);
1062 term_printf(" drv=%s", bs
->drv
->format_name
);
1064 term_printf(" encrypted");
1066 term_printf(" [not inserted]");
1072 /* The "info blockstats" command. */
1073 void bdrv_info_stats (void)
1075 BlockDriverState
*bs
;
1076 BlockDriverInfo bdi
;
1078 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1080 " rd_bytes=%" PRIu64
1081 " wr_bytes=%" PRIu64
1082 " rd_operations=%" PRIu64
1083 " wr_operations=%" PRIu64
1086 bs
->rd_bytes
, bs
->wr_bytes
,
1087 bs
->rd_ops
, bs
->wr_ops
);
1088 if (bdrv_get_info(bs
, &bdi
) == 0)
1089 term_printf(" high=%" PRId64
1090 " bytes_free=%" PRId64
,
1091 bdi
.highest_alloc
, bdi
.num_free_bytes
);
1096 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1097 char *filename
, int filename_size
)
1099 if (!bs
->backing_hd
) {
1100 pstrcpy(filename
, filename_size
, "");
1102 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1106 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1107 const uint8_t *buf
, int nb_sectors
)
1109 BlockDriver
*drv
= bs
->drv
;
1112 if (!drv
->bdrv_write_compressed
)
1114 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1117 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1119 BlockDriver
*drv
= bs
->drv
;
1122 if (!drv
->bdrv_get_info
)
1124 memset(bdi
, 0, sizeof(*bdi
));
1125 return drv
->bdrv_get_info(bs
, bdi
);
1128 /**************************************************************/
1129 /* handling of snapshots */
1131 int bdrv_snapshot_create(BlockDriverState
*bs
,
1132 QEMUSnapshotInfo
*sn_info
)
1134 BlockDriver
*drv
= bs
->drv
;
1137 if (!drv
->bdrv_snapshot_create
)
1139 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1142 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1143 const char *snapshot_id
)
1145 BlockDriver
*drv
= bs
->drv
;
1148 if (!drv
->bdrv_snapshot_goto
)
1150 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1153 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1155 BlockDriver
*drv
= bs
->drv
;
1158 if (!drv
->bdrv_snapshot_delete
)
1160 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1163 int bdrv_snapshot_list(BlockDriverState
*bs
,
1164 QEMUSnapshotInfo
**psn_info
)
1166 BlockDriver
*drv
= bs
->drv
;
1169 if (!drv
->bdrv_snapshot_list
)
1171 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1174 #define NB_SUFFIXES 4
1176 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1178 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1183 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1186 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1187 if (size
< (10 * base
)) {
1188 snprintf(buf
, buf_size
, "%0.1f%c",
1189 (double)size
/ base
,
1192 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1193 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1194 ((size
+ (base
>> 1)) / base
),
1204 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1206 char buf1
[128], date_buf
[128], clock_buf
[128];
1216 snprintf(buf
, buf_size
,
1217 "%-10s%-20s%7s%20s%15s",
1218 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1222 ptm
= localtime(&ti
);
1223 strftime(date_buf
, sizeof(date_buf
),
1224 "%Y-%m-%d %H:%M:%S", ptm
);
1226 localtime_r(&ti
, &tm
);
1227 strftime(date_buf
, sizeof(date_buf
),
1228 "%Y-%m-%d %H:%M:%S", &tm
);
1230 secs
= sn
->vm_clock_nsec
/ 1000000000;
1231 snprintf(clock_buf
, sizeof(clock_buf
),
1232 "%02d:%02d:%02d.%03d",
1234 (int)((secs
/ 60) % 60),
1236 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1237 snprintf(buf
, buf_size
,
1238 "%-10s%-20s%7s%20s%15s",
1239 sn
->id_str
, sn
->name
,
1240 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1248 /**************************************************************/
1251 typedef struct VectorTranslationState
{
1255 BlockDriverAIOCB
*aiocb
;
1256 BlockDriverAIOCB
*this_aiocb
;
1257 } VectorTranslationState
;
1259 static void bdrv_aio_rw_vector_cb(void *opaque
, int ret
)
1261 VectorTranslationState
*s
= opaque
;
1264 qemu_iovec_from_buffer(s
->iov
, s
->bounce
, s
->iov
->size
);
1266 qemu_free(s
->bounce
);
1267 s
->this_aiocb
->cb(s
->this_aiocb
->opaque
, ret
);
1268 qemu_aio_release(s
->this_aiocb
);
1271 static BlockDriverAIOCB
*bdrv_aio_rw_vector(BlockDriverState
*bs
,
1275 BlockDriverCompletionFunc
*cb
,
1280 VectorTranslationState
*s
= qemu_mallocz(sizeof(*s
));
1281 BlockDriverAIOCB
*aiocb
= qemu_aio_get(bs
, cb
, opaque
);
1283 s
->this_aiocb
= aiocb
;
1285 s
->bounce
= qemu_memalign(512, nb_sectors
* 512);
1286 s
->is_write
= is_write
;
1288 qemu_iovec_to_buffer(s
->iov
, s
->bounce
);
1289 s
->aiocb
= bdrv_aio_write(bs
, sector_num
, s
->bounce
, nb_sectors
,
1290 bdrv_aio_rw_vector_cb
, s
);
1292 s
->aiocb
= bdrv_aio_read(bs
, sector_num
, s
->bounce
, nb_sectors
,
1293 bdrv_aio_rw_vector_cb
, s
);
1298 BlockDriverAIOCB
*bdrv_aio_readv(BlockDriverState
*bs
, int64_t sector_num
,
1299 QEMUIOVector
*iov
, int nb_sectors
,
1300 BlockDriverCompletionFunc
*cb
, void *opaque
)
1302 return bdrv_aio_rw_vector(bs
, sector_num
, iov
, nb_sectors
,
1306 BlockDriverAIOCB
*bdrv_aio_writev(BlockDriverState
*bs
, int64_t sector_num
,
1307 QEMUIOVector
*iov
, int nb_sectors
,
1308 BlockDriverCompletionFunc
*cb
, void *opaque
)
1310 return bdrv_aio_rw_vector(bs
, sector_num
, iov
, nb_sectors
,
1314 BlockDriverAIOCB
*bdrv_aio_read(BlockDriverState
*bs
, int64_t sector_num
,
1315 uint8_t *buf
, int nb_sectors
,
1316 BlockDriverCompletionFunc
*cb
, void *opaque
)
1318 BlockDriver
*drv
= bs
->drv
;
1319 BlockDriverAIOCB
*ret
;
1324 ret
= drv
->bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1327 /* Update stats even though technically transfer has not happened. */
1328 bs
->rd_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1335 BlockDriverAIOCB
*bdrv_aio_write(BlockDriverState
*bs
, int64_t sector_num
,
1336 const uint8_t *buf
, int nb_sectors
,
1337 BlockDriverCompletionFunc
*cb
, void *opaque
)
1339 BlockDriver
*drv
= bs
->drv
;
1340 BlockDriverAIOCB
*ret
;
1347 ret
= drv
->bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1350 /* Update stats even though technically transfer has not happened. */
1351 bs
->wr_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1358 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1360 BlockDriver
*drv
= acb
->bs
->drv
;
1362 if (acb
->cb
== bdrv_aio_rw_vector_cb
) {
1363 VectorTranslationState
*s
= acb
->opaque
;
1367 drv
->bdrv_aio_cancel(acb
);
1371 /**************************************************************/
1372 /* async block device emulation */
1374 static void bdrv_aio_bh_cb(void *opaque
)
1376 BlockDriverAIOCBSync
*acb
= opaque
;
1377 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1378 qemu_aio_release(acb
);
1381 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
1382 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
1383 BlockDriverCompletionFunc
*cb
, void *opaque
)
1385 BlockDriverAIOCBSync
*acb
;
1388 acb
= qemu_aio_get(bs
, cb
, opaque
);
1390 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1391 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1393 qemu_bh_schedule(acb
->bh
);
1394 return &acb
->common
;
1397 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
1398 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
1399 BlockDriverCompletionFunc
*cb
, void *opaque
)
1401 BlockDriverAIOCBSync
*acb
;
1404 acb
= qemu_aio_get(bs
, cb
, opaque
);
1406 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1407 ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1409 qemu_bh_schedule(acb
->bh
);
1410 return &acb
->common
;
1413 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
1415 BlockDriverAIOCBSync
*acb
= (BlockDriverAIOCBSync
*)blockacb
;
1416 qemu_bh_cancel(acb
->bh
);
1417 qemu_aio_release(acb
);
1420 /**************************************************************/
1421 /* sync block device emulation */
1423 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1425 *(int *)opaque
= ret
;
1428 #define NOT_DONE 0x7fffffff
1430 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1431 uint8_t *buf
, int nb_sectors
)
1434 BlockDriverAIOCB
*acb
;
1436 async_ret
= NOT_DONE
;
1437 acb
= bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
,
1438 bdrv_rw_em_cb
, &async_ret
);
1442 while (async_ret
== NOT_DONE
) {
1449 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1450 const uint8_t *buf
, int nb_sectors
)
1453 BlockDriverAIOCB
*acb
;
1455 async_ret
= NOT_DONE
;
1456 acb
= bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
,
1457 bdrv_rw_em_cb
, &async_ret
);
1460 while (async_ret
== NOT_DONE
) {
1466 void bdrv_init(void)
1468 bdrv_register(&bdrv_raw
);
1469 bdrv_register(&bdrv_host_device
);
1471 bdrv_register(&bdrv_cow
);
1473 bdrv_register(&bdrv_qcow
);
1474 bdrv_register(&bdrv_vmdk
);
1475 bdrv_register(&bdrv_cloop
);
1476 bdrv_register(&bdrv_dmg
);
1477 bdrv_register(&bdrv_bochs
);
1478 bdrv_register(&bdrv_vpc
);
1479 bdrv_register(&bdrv_vvfat
);
1480 bdrv_register(&bdrv_qcow2
);
1481 bdrv_register(&bdrv_parallels
);
1482 bdrv_register(&bdrv_nbd
);
1485 void *qemu_aio_get(BlockDriverState
*bs
, BlockDriverCompletionFunc
*cb
,
1489 BlockDriverAIOCB
*acb
;
1492 if (drv
->free_aiocb
) {
1493 acb
= drv
->free_aiocb
;
1494 drv
->free_aiocb
= acb
->next
;
1496 acb
= qemu_mallocz(drv
->aiocb_size
);
1500 acb
->opaque
= opaque
;
1504 void qemu_aio_release(void *p
)
1506 BlockDriverAIOCB
*acb
= p
;
1507 BlockDriver
*drv
= acb
->bs
->drv
;
1508 acb
->next
= drv
->free_aiocb
;
1509 drv
->free_aiocb
= acb
;
1512 /**************************************************************/
1513 /* removable device support */
1516 * Return TRUE if the media is present
1518 int bdrv_is_inserted(BlockDriverState
*bs
)
1520 BlockDriver
*drv
= bs
->drv
;
1524 if (!drv
->bdrv_is_inserted
)
1526 ret
= drv
->bdrv_is_inserted(bs
);
1531 * Return TRUE if the media changed since the last call to this
1532 * function. It is currently only used for floppy disks
1534 int bdrv_media_changed(BlockDriverState
*bs
)
1536 BlockDriver
*drv
= bs
->drv
;
1539 if (!drv
|| !drv
->bdrv_media_changed
)
1542 ret
= drv
->bdrv_media_changed(bs
);
1543 if (ret
== -ENOTSUP
)
1544 ret
= bs
->media_changed
;
1545 bs
->media_changed
= 0;
1550 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1552 void bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
1554 BlockDriver
*drv
= bs
->drv
;
1557 if (!drv
|| !drv
->bdrv_eject
) {
1560 ret
= drv
->bdrv_eject(bs
, eject_flag
);
1562 if (ret
== -ENOTSUP
) {
1568 int bdrv_is_locked(BlockDriverState
*bs
)
1574 * Lock or unlock the media (if it is locked, the user won't be able
1575 * to eject it manually).
1577 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
1579 BlockDriver
*drv
= bs
->drv
;
1581 bs
->locked
= locked
;
1582 if (drv
&& drv
->bdrv_set_locked
) {
1583 drv
->bdrv_set_locked(bs
, locked
);
1587 /* needed for generic scsi interface */
1589 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1591 BlockDriver
*drv
= bs
->drv
;
1593 if (drv
&& drv
->bdrv_ioctl
)
1594 return drv
->bdrv_ioctl(bs
, req
, buf
);