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 "qemu-common.h"
28 #include "block_int.h"
32 #include <sys/types.h>
34 #include <sys/ioctl.h>
35 #include <sys/queue.h>
40 #define SECTOR_SIZE (1 << SECTOR_BITS)
42 typedef struct BlockDriverAIOCBSync
{
43 BlockDriverAIOCB common
;
46 } BlockDriverAIOCBSync
;
48 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
49 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
50 BlockDriverCompletionFunc
*cb
, void *opaque
);
51 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
52 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
53 BlockDriverCompletionFunc
*cb
, void *opaque
);
54 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
);
55 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
56 uint8_t *buf
, int nb_sectors
);
57 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
58 const uint8_t *buf
, int nb_sectors
);
60 BlockDriverState
*bdrv_first
;
61 static BlockDriver
*first_drv
;
63 int path_is_absolute(const char *path
)
67 /* specific case for names like: "\\.\d:" */
68 if (*path
== '/' || *path
== '\\')
71 p
= strchr(path
, ':');
77 return (*p
== '/' || *p
== '\\');
83 /* if filename is absolute, just copy it to dest. Otherwise, build a
84 path to it by considering it is relative to base_path. URL are
86 void path_combine(char *dest
, int dest_size
,
87 const char *base_path
,
95 if (path_is_absolute(filename
)) {
96 pstrcpy(dest
, dest_size
, filename
);
98 p
= strchr(base_path
, ':');
103 p1
= strrchr(base_path
, '/');
107 p2
= strrchr(base_path
, '\\');
119 if (len
> dest_size
- 1)
121 memcpy(dest
, base_path
, len
);
123 pstrcat(dest
, dest_size
, filename
);
128 static void bdrv_register(BlockDriver
*bdrv
)
130 if (!bdrv
->bdrv_aio_read
) {
131 /* add AIO emulation layer */
132 bdrv
->bdrv_aio_read
= bdrv_aio_read_em
;
133 bdrv
->bdrv_aio_write
= bdrv_aio_write_em
;
134 bdrv
->bdrv_aio_cancel
= bdrv_aio_cancel_em
;
135 bdrv
->aiocb_size
= sizeof(BlockDriverAIOCBSync
);
136 } else if (!bdrv
->bdrv_read
&& !bdrv
->bdrv_pread
) {
137 /* add synchronous IO emulation layer */
138 bdrv
->bdrv_read
= bdrv_read_em
;
139 bdrv
->bdrv_write
= bdrv_write_em
;
141 bdrv
->next
= first_drv
;
145 /* create a new block device (by default it is empty) */
146 BlockDriverState
*bdrv_new(const char *device_name
)
148 BlockDriverState
**pbs
, *bs
;
150 bs
= qemu_mallocz(sizeof(BlockDriverState
));
153 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
154 if (device_name
[0] != '\0') {
155 /* insert at the end */
164 BlockDriver
*bdrv_find_format(const char *format_name
)
167 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
168 if (!strcmp(drv1
->format_name
, format_name
))
174 int bdrv_create(BlockDriver
*drv
,
175 const char *filename
, int64_t size_in_sectors
,
176 const char *backing_file
, int flags
)
178 if (!drv
->bdrv_create
)
180 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
, flags
);
184 void get_tmp_filename(char *filename
, int size
)
186 char temp_dir
[MAX_PATH
];
188 GetTempPath(MAX_PATH
, temp_dir
);
189 GetTempFileName(temp_dir
, "qem", 0, filename
);
192 void get_tmp_filename(char *filename
, int size
)
195 /* XXX: race condition possible */
196 pstrcpy(filename
, size
, "/tmp/vl.XXXXXX");
197 fd
= mkstemp(filename
);
203 static int is_windows_drive_prefix(const char *filename
)
205 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
206 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
210 static int is_windows_drive(const char *filename
)
212 if (is_windows_drive_prefix(filename
) &&
215 if (strstart(filename
, "\\\\.\\", NULL
) ||
216 strstart(filename
, "//./", NULL
))
222 static BlockDriver
*find_protocol(const char *filename
)
230 if (is_windows_drive(filename
) ||
231 is_windows_drive_prefix(filename
))
234 p
= strchr(filename
, ':');
238 if (len
> sizeof(protocol
) - 1)
239 len
= sizeof(protocol
) - 1;
240 memcpy(protocol
, filename
, len
);
241 protocol
[len
] = '\0';
242 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
243 if (drv1
->protocol_name
&&
244 !strcmp(drv1
->protocol_name
, protocol
))
250 /* XXX: force raw format if block or character device ? It would
251 simplify the BSD case */
252 static BlockDriver
*find_image_format(const char *filename
)
254 int ret
, score
, score_max
;
255 BlockDriver
*drv1
, *drv
;
257 BlockDriverState
*bs
;
259 /* detect host devices. By convention, /dev/cdrom[N] is always
260 recognized as a host CDROM */
261 if (strstart(filename
, "/dev/cdrom", NULL
))
262 return &bdrv_host_device
;
264 if (is_windows_drive(filename
))
265 return &bdrv_host_device
;
269 if (stat(filename
, &st
) >= 0 &&
270 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
271 return &bdrv_host_device
;
276 drv
= find_protocol(filename
);
277 /* no need to test disk image formats for vvfat */
278 if (drv
== &bdrv_vvfat
)
281 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
284 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
291 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
292 if (drv1
->bdrv_probe
) {
293 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
294 if (score
> score_max
) {
303 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
305 BlockDriverState
*bs
;
311 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
320 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
322 return bdrv_open2(bs
, filename
, flags
, NULL
);
325 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
329 char tmp_filename
[PATH_MAX
];
330 char backing_filename
[PATH_MAX
];
333 bs
->is_temporary
= 0;
336 if (flags
& BDRV_O_SNAPSHOT
) {
337 BlockDriverState
*bs1
;
340 /* if snapshot, we create a temporary backing file and open it
341 instead of opening 'filename' directly */
343 /* if there is a backing file, use it */
348 if (bdrv_open(bs1
, filename
, 0) < 0) {
352 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
355 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
356 realpath(filename
, backing_filename
);
357 if (bdrv_create(&bdrv_qcow2
, tmp_filename
,
358 total_size
, backing_filename
, 0) < 0) {
361 filename
= tmp_filename
;
362 bs
->is_temporary
= 1;
365 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
366 if (flags
& BDRV_O_FILE
) {
367 drv
= find_protocol(filename
);
372 drv
= find_image_format(filename
);
378 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
379 if (bs
->opaque
== NULL
&& drv
->instance_size
> 0)
381 /* Note: for compatibility, we open disk image files as RDWR, and
382 RDONLY as fallback */
383 if (!(flags
& BDRV_O_FILE
))
384 open_flags
= BDRV_O_RDWR
| (flags
& BDRV_O_DIRECT
);
386 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
387 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
388 if (ret
== -EACCES
&& !(flags
& BDRV_O_FILE
)) {
389 ret
= drv
->bdrv_open(bs
, filename
, BDRV_O_RDONLY
);
393 qemu_free(bs
->opaque
);
398 if (drv
->bdrv_getlength
) {
399 bs
->total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
402 if (bs
->is_temporary
) {
406 if (bs
->backing_file
[0] != '\0') {
407 /* if there is a backing file, use it */
408 bs
->backing_hd
= bdrv_new("");
409 if (!bs
->backing_hd
) {
414 path_combine(backing_filename
, sizeof(backing_filename
),
415 filename
, bs
->backing_file
);
416 if (bdrv_open(bs
->backing_hd
, backing_filename
, 0) < 0)
420 /* call the change callback */
421 bs
->media_changed
= 1;
423 bs
->change_cb(bs
->change_opaque
);
428 void bdrv_close(BlockDriverState
*bs
)
432 bdrv_delete(bs
->backing_hd
);
433 bs
->drv
->bdrv_close(bs
);
434 qemu_free(bs
->opaque
);
436 if (bs
->is_temporary
) {
437 unlink(bs
->filename
);
443 /* call the change callback */
444 bs
->media_changed
= 1;
446 bs
->change_cb(bs
->change_opaque
);
450 void bdrv_delete(BlockDriverState
*bs
)
452 /* XXX: remove the driver list */
457 /* commit COW file into the raw image */
458 int bdrv_commit(BlockDriverState
*bs
)
460 BlockDriver
*drv
= bs
->drv
;
461 int64_t i
, total_sectors
;
463 unsigned char sector
[512];
472 if (!bs
->backing_hd
) {
476 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
477 for (i
= 0; i
< total_sectors
;) {
478 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
479 for(j
= 0; j
< n
; j
++) {
480 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
484 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
494 if (drv
->bdrv_make_empty
)
495 return drv
->bdrv_make_empty(bs
);
500 /* return < 0 if error. See bdrv_write() for the return codes */
501 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
502 uint8_t *buf
, int nb_sectors
)
504 BlockDriver
*drv
= bs
->drv
;
509 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
510 memcpy(buf
, bs
->boot_sector_data
, 512);
517 if (drv
->bdrv_pread
) {
519 len
= nb_sectors
* 512;
520 ret
= drv
->bdrv_pread(bs
, sector_num
* 512, buf
, len
);
526 bs
->rd_bytes
+= (unsigned) len
;
531 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
535 /* Return < 0 if error. Important errors are:
536 -EIO generic I/O error (may happen for all errors)
537 -ENOMEDIUM No media inserted.
538 -EINVAL Invalid sector number or nb_sectors
539 -EACCES Trying to write a read-only device
541 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
542 const uint8_t *buf
, int nb_sectors
)
544 BlockDriver
*drv
= bs
->drv
;
549 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
550 memcpy(bs
->boot_sector_data
, buf
, 512);
552 if (drv
->bdrv_pwrite
) {
554 len
= nb_sectors
* 512;
555 ret
= drv
->bdrv_pwrite(bs
, sector_num
* 512, buf
, len
);
561 bs
->wr_bytes
+= (unsigned) len
;
566 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
570 static int bdrv_pread_em(BlockDriverState
*bs
, int64_t offset
,
571 uint8_t *buf
, int count1
)
573 uint8_t tmp_buf
[SECTOR_SIZE
];
574 int len
, nb_sectors
, count
;
578 /* first read to align to sector start */
579 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
582 sector_num
= offset
>> SECTOR_BITS
;
584 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
586 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
594 /* read the sectors "in place" */
595 nb_sectors
= count
>> SECTOR_BITS
;
596 if (nb_sectors
> 0) {
597 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
599 sector_num
+= nb_sectors
;
600 len
= nb_sectors
<< SECTOR_BITS
;
605 /* add data from the last sector */
607 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
609 memcpy(buf
, tmp_buf
, count
);
614 static int bdrv_pwrite_em(BlockDriverState
*bs
, int64_t offset
,
615 const uint8_t *buf
, int count1
)
617 uint8_t tmp_buf
[SECTOR_SIZE
];
618 int len
, nb_sectors
, count
;
622 /* first write to align to sector start */
623 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
626 sector_num
= offset
>> SECTOR_BITS
;
628 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
630 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
631 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
640 /* write the sectors "in place" */
641 nb_sectors
= count
>> SECTOR_BITS
;
642 if (nb_sectors
> 0) {
643 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
645 sector_num
+= nb_sectors
;
646 len
= nb_sectors
<< SECTOR_BITS
;
651 /* add data from the last sector */
653 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
655 memcpy(tmp_buf
, buf
, count
);
656 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
663 * Read with byte offsets (needed only for file protocols)
665 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
666 void *buf1
, int count1
)
668 BlockDriver
*drv
= bs
->drv
;
672 if (!drv
->bdrv_pread
)
673 return bdrv_pread_em(bs
, offset
, buf1
, count1
);
674 return drv
->bdrv_pread(bs
, offset
, buf1
, count1
);
678 * Write with byte offsets (needed only for file protocols)
680 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
681 const void *buf1
, int count1
)
683 BlockDriver
*drv
= bs
->drv
;
687 if (!drv
->bdrv_pwrite
)
688 return bdrv_pwrite_em(bs
, offset
, buf1
, count1
);
689 return drv
->bdrv_pwrite(bs
, offset
, buf1
, count1
);
693 * Truncate file to 'offset' bytes (needed only for file protocols)
695 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
697 BlockDriver
*drv
= bs
->drv
;
700 if (!drv
->bdrv_truncate
)
702 return drv
->bdrv_truncate(bs
, offset
);
706 * Length of a file in bytes. Return < 0 if error or unknown.
708 int64_t bdrv_getlength(BlockDriverState
*bs
)
710 BlockDriver
*drv
= bs
->drv
;
713 if (!drv
->bdrv_getlength
) {
715 return bs
->total_sectors
* SECTOR_SIZE
;
717 return drv
->bdrv_getlength(bs
);
720 /* return 0 as number of sectors if no device present or error */
721 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
724 length
= bdrv_getlength(bs
);
728 length
= length
>> SECTOR_BITS
;
729 *nb_sectors_ptr
= length
;
732 /* force a given boot sector. */
733 void bdrv_set_boot_sector(BlockDriverState
*bs
, const uint8_t *data
, int size
)
735 bs
->boot_sector_enabled
= 1;
738 memcpy(bs
->boot_sector_data
, data
, size
);
739 memset(bs
->boot_sector_data
+ size
, 0, 512 - size
);
743 uint8_t boot_ind
; /* 0x80 - active */
744 uint8_t head
; /* starting head */
745 uint8_t sector
; /* starting sector */
746 uint8_t cyl
; /* starting cylinder */
747 uint8_t sys_ind
; /* What partition type */
748 uint8_t end_head
; /* end head */
749 uint8_t end_sector
; /* end sector */
750 uint8_t end_cyl
; /* end cylinder */
751 uint32_t start_sect
; /* starting sector counting from 0 */
752 uint32_t nr_sects
; /* nr of sectors in partition */
753 } __attribute__((packed
));
755 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
756 static int guess_disk_lchs(BlockDriverState
*bs
,
757 int *pcylinders
, int *pheads
, int *psectors
)
760 int ret
, i
, heads
, sectors
, cylinders
;
765 buf
= qemu_memalign(512, 512);
769 bdrv_get_geometry(bs
, &nb_sectors
);
771 ret
= bdrv_read(bs
, 0, buf
, 1);
774 /* test msdos magic */
775 if (buf
[510] != 0x55 || buf
[511] != 0xaa) {
779 for(i
= 0; i
< 4; i
++) {
780 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
781 nr_sects
= le32_to_cpu(p
->nr_sects
);
782 if (nr_sects
&& p
->end_head
) {
783 /* We make the assumption that the partition terminates on
784 a cylinder boundary */
785 heads
= p
->end_head
+ 1;
786 sectors
= p
->end_sector
& 63;
789 cylinders
= nb_sectors
/ (heads
* sectors
);
790 if (cylinders
< 1 || cylinders
> 16383)
794 *pcylinders
= cylinders
;
796 printf("guessed geometry: LCHS=%d %d %d\n",
797 cylinders
, heads
, sectors
);
807 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
809 int translation
, lba_detected
= 0;
810 int cylinders
, heads
, secs
;
813 /* if a geometry hint is available, use it */
814 bdrv_get_geometry(bs
, &nb_sectors
);
815 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
816 translation
= bdrv_get_translation_hint(bs
);
817 if (cylinders
!= 0) {
822 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
824 /* if heads > 16, it means that a BIOS LBA
825 translation was active, so the default
826 hardware geometry is OK */
828 goto default_geometry
;
833 /* disable any translation to be in sync with
834 the logical geometry */
835 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
836 bdrv_set_translation_hint(bs
,
837 BIOS_ATA_TRANSLATION_NONE
);
842 /* if no geometry, use a standard physical disk geometry */
843 cylinders
= nb_sectors
/ (16 * 63);
845 if (cylinders
> 16383)
847 else if (cylinders
< 2)
852 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
853 if ((*pcyls
* *pheads
) <= 131072) {
854 bdrv_set_translation_hint(bs
,
855 BIOS_ATA_TRANSLATION_LARGE
);
857 bdrv_set_translation_hint(bs
,
858 BIOS_ATA_TRANSLATION_LBA
);
862 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
866 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
867 int cyls
, int heads
, int secs
)
874 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
877 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
878 type
== BDRV_TYPE_FLOPPY
));
881 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
883 bs
->translation
= translation
;
886 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
887 int *pcyls
, int *pheads
, int *psecs
)
894 int bdrv_get_type_hint(BlockDriverState
*bs
)
899 int bdrv_get_translation_hint(BlockDriverState
*bs
)
901 return bs
->translation
;
904 int bdrv_is_removable(BlockDriverState
*bs
)
906 return bs
->removable
;
909 int bdrv_is_read_only(BlockDriverState
*bs
)
911 return bs
->read_only
;
914 int bdrv_is_sg(BlockDriverState
*bs
)
919 /* XXX: no longer used */
920 void bdrv_set_change_cb(BlockDriverState
*bs
,
921 void (*change_cb
)(void *opaque
), void *opaque
)
923 bs
->change_cb
= change_cb
;
924 bs
->change_opaque
= opaque
;
927 int bdrv_is_encrypted(BlockDriverState
*bs
)
929 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
931 return bs
->encrypted
;
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 return bs
->drv
->bdrv_set_key(bs
, key
);
949 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
954 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
958 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
963 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
964 it(opaque
, drv
->format_name
);
968 BlockDriverState
*bdrv_find(const char *name
)
970 BlockDriverState
*bs
;
972 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
973 if (!strcmp(name
, bs
->device_name
))
979 void bdrv_iterate(void (*it
)(void *opaque
, const char *name
), void *opaque
)
981 BlockDriverState
*bs
;
983 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
984 it(opaque
, bs
->device_name
);
988 const char *bdrv_get_device_name(BlockDriverState
*bs
)
990 return bs
->device_name
;
993 void bdrv_flush(BlockDriverState
*bs
)
995 if (bs
->drv
->bdrv_flush
)
996 bs
->drv
->bdrv_flush(bs
);
998 bdrv_flush(bs
->backing_hd
);
1001 void bdrv_iterate_writeable(void (*it
)(BlockDriverState
*bs
))
1003 BlockDriverState
*bs
;
1005 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
)
1006 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1007 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
)))
1011 void bdrv_flush_all(void)
1013 bdrv_iterate_writeable(bdrv_flush
);
1017 void bdrv_info(void)
1019 BlockDriverState
*bs
;
1021 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1022 term_printf("%s:", bs
->device_name
);
1023 term_printf(" type=");
1028 case BDRV_TYPE_CDROM
:
1029 term_printf("cdrom");
1031 case BDRV_TYPE_FLOPPY
:
1032 term_printf("floppy");
1035 term_printf(" removable=%d", bs
->removable
);
1036 if (bs
->removable
) {
1037 term_printf(" locked=%d", bs
->locked
);
1040 term_printf(" file=");
1041 term_print_filename(bs
->filename
);
1042 if (bs
->backing_file
[0] != '\0') {
1043 term_printf(" backing_file=");
1044 term_print_filename(bs
->backing_file
);
1046 term_printf(" ro=%d", bs
->read_only
);
1047 term_printf(" drv=%s", bs
->drv
->format_name
);
1049 term_printf(" encrypted");
1051 term_printf(" [not inserted]");
1057 /* The "info blockstats" command. */
1058 void bdrv_info_stats (void)
1060 BlockDriverState
*bs
;
1062 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1064 " rd_bytes=%" PRIu64
1065 " wr_bytes=%" PRIu64
1066 " rd_operations=%" PRIu64
1067 " wr_operations=%" PRIu64
1070 bs
->rd_bytes
, bs
->wr_bytes
,
1071 bs
->rd_ops
, bs
->wr_ops
);
1076 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1077 char *filename
, int filename_size
)
1079 if (!bs
->backing_hd
) {
1080 pstrcpy(filename
, filename_size
, "");
1082 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1086 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1087 const uint8_t *buf
, int nb_sectors
)
1089 BlockDriver
*drv
= bs
->drv
;
1092 if (!drv
->bdrv_write_compressed
)
1094 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1097 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1099 BlockDriver
*drv
= bs
->drv
;
1102 if (!drv
->bdrv_get_info
)
1104 memset(bdi
, 0, sizeof(*bdi
));
1105 return drv
->bdrv_get_info(bs
, bdi
);
1108 /**************************************************************/
1109 /* handling of snapshots */
1111 int bdrv_snapshot_create(BlockDriverState
*bs
,
1112 QEMUSnapshotInfo
*sn_info
)
1114 BlockDriver
*drv
= bs
->drv
;
1117 if (!drv
->bdrv_snapshot_create
)
1119 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1122 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1123 const char *snapshot_id
)
1125 BlockDriver
*drv
= bs
->drv
;
1128 if (!drv
->bdrv_snapshot_goto
)
1130 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1133 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1135 BlockDriver
*drv
= bs
->drv
;
1138 if (!drv
->bdrv_snapshot_delete
)
1140 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1143 int bdrv_snapshot_list(BlockDriverState
*bs
,
1144 QEMUSnapshotInfo
**psn_info
)
1146 BlockDriver
*drv
= bs
->drv
;
1149 if (!drv
->bdrv_snapshot_list
)
1151 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1154 #define NB_SUFFIXES 4
1156 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1158 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1163 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1166 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1167 if (size
< (10 * base
)) {
1168 snprintf(buf
, buf_size
, "%0.1f%c",
1169 (double)size
/ base
,
1172 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1173 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1174 ((size
+ (base
>> 1)) / base
),
1184 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1186 char buf1
[128], date_buf
[128], clock_buf
[128];
1196 snprintf(buf
, buf_size
,
1197 "%-10s%-20s%7s%20s%15s",
1198 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1202 ptm
= localtime(&ti
);
1203 strftime(date_buf
, sizeof(date_buf
),
1204 "%Y-%m-%d %H:%M:%S", ptm
);
1206 localtime_r(&ti
, &tm
);
1207 strftime(date_buf
, sizeof(date_buf
),
1208 "%Y-%m-%d %H:%M:%S", &tm
);
1210 secs
= sn
->vm_clock_nsec
/ 1000000000;
1211 snprintf(clock_buf
, sizeof(clock_buf
),
1212 "%02d:%02d:%02d.%03d",
1214 (int)((secs
/ 60) % 60),
1216 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1217 snprintf(buf
, buf_size
,
1218 "%-10s%-20s%7s%20s%15s",
1219 sn
->id_str
, sn
->name
,
1220 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1228 /**************************************************************/
1231 BlockDriverAIOCB
*bdrv_aio_read(BlockDriverState
*bs
, int64_t sector_num
,
1232 uint8_t *buf
, int nb_sectors
,
1233 BlockDriverCompletionFunc
*cb
, void *opaque
)
1235 BlockDriver
*drv
= bs
->drv
;
1236 BlockDriverAIOCB
*ret
;
1241 /* XXX: we assume that nb_sectors == 0 is suppored by the async read */
1242 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
1243 memcpy(buf
, bs
->boot_sector_data
, 512);
1249 ret
= drv
->bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1252 /* Update stats even though technically transfer has not happened. */
1253 bs
->rd_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1260 BlockDriverAIOCB
*bdrv_aio_write(BlockDriverState
*bs
, int64_t sector_num
,
1261 const uint8_t *buf
, int nb_sectors
,
1262 BlockDriverCompletionFunc
*cb
, void *opaque
)
1264 BlockDriver
*drv
= bs
->drv
;
1265 BlockDriverAIOCB
*ret
;
1271 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
1272 memcpy(bs
->boot_sector_data
, buf
, 512);
1275 ret
= drv
->bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1278 /* Update stats even though technically transfer has not happened. */
1279 bs
->wr_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1286 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1288 BlockDriver
*drv
= acb
->bs
->drv
;
1290 drv
->bdrv_aio_cancel(acb
);
1294 /**************************************************************/
1295 /* async block device emulation */
1298 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
1299 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
1300 BlockDriverCompletionFunc
*cb
, void *opaque
)
1303 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1308 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
1309 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
1310 BlockDriverCompletionFunc
*cb
, void *opaque
)
1313 ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1318 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
)
1322 static void bdrv_aio_bh_cb(void *opaque
)
1324 BlockDriverAIOCBSync
*acb
= opaque
;
1325 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1326 qemu_aio_release(acb
);
1329 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
1330 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
1331 BlockDriverCompletionFunc
*cb
, void *opaque
)
1333 BlockDriverAIOCBSync
*acb
;
1336 acb
= qemu_aio_get(bs
, cb
, opaque
);
1338 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1339 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1341 qemu_bh_schedule(acb
->bh
);
1342 return &acb
->common
;
1345 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
1346 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
1347 BlockDriverCompletionFunc
*cb
, void *opaque
)
1349 BlockDriverAIOCBSync
*acb
;
1352 acb
= qemu_aio_get(bs
, cb
, opaque
);
1354 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1355 ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1357 qemu_bh_schedule(acb
->bh
);
1358 return &acb
->common
;
1361 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
1363 BlockDriverAIOCBSync
*acb
= (BlockDriverAIOCBSync
*)blockacb
;
1364 qemu_bh_cancel(acb
->bh
);
1365 qemu_aio_release(acb
);
1367 #endif /* !QEMU_IMG */
1369 /**************************************************************/
1370 /* sync block device emulation */
1372 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1374 *(int *)opaque
= ret
;
1377 #define NOT_DONE 0x7fffffff
1379 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1380 uint8_t *buf
, int nb_sectors
)
1383 BlockDriverAIOCB
*acb
;
1385 async_ret
= NOT_DONE
;
1386 qemu_aio_wait_start();
1387 acb
= bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
,
1388 bdrv_rw_em_cb
, &async_ret
);
1390 qemu_aio_wait_end();
1393 while (async_ret
== NOT_DONE
) {
1396 qemu_aio_wait_end();
1400 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1401 const uint8_t *buf
, int nb_sectors
)
1404 BlockDriverAIOCB
*acb
;
1406 async_ret
= NOT_DONE
;
1407 qemu_aio_wait_start();
1408 acb
= bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
,
1409 bdrv_rw_em_cb
, &async_ret
);
1411 qemu_aio_wait_end();
1414 while (async_ret
== NOT_DONE
) {
1417 qemu_aio_wait_end();
1421 void bdrv_init(void)
1423 bdrv_register(&bdrv_raw
);
1424 bdrv_register(&bdrv_host_device
);
1426 bdrv_register(&bdrv_cow
);
1428 bdrv_register(&bdrv_qcow
);
1429 bdrv_register(&bdrv_vmdk
);
1430 bdrv_register(&bdrv_cloop
);
1431 bdrv_register(&bdrv_dmg
);
1432 bdrv_register(&bdrv_bochs
);
1433 bdrv_register(&bdrv_vpc
);
1434 bdrv_register(&bdrv_vvfat
);
1435 bdrv_register(&bdrv_qcow2
);
1436 bdrv_register(&bdrv_parallels
);
1439 void *qemu_aio_get(BlockDriverState
*bs
, BlockDriverCompletionFunc
*cb
,
1443 BlockDriverAIOCB
*acb
;
1446 if (drv
->free_aiocb
) {
1447 acb
= drv
->free_aiocb
;
1448 drv
->free_aiocb
= acb
->next
;
1450 acb
= qemu_mallocz(drv
->aiocb_size
);
1456 acb
->opaque
= opaque
;
1460 void qemu_aio_release(void *p
)
1462 BlockDriverAIOCB
*acb
= p
;
1463 BlockDriver
*drv
= acb
->bs
->drv
;
1464 acb
->next
= drv
->free_aiocb
;
1465 drv
->free_aiocb
= acb
;
1468 /**************************************************************/
1469 /* removable device support */
1472 * Return TRUE if the media is present
1474 int bdrv_is_inserted(BlockDriverState
*bs
)
1476 BlockDriver
*drv
= bs
->drv
;
1480 if (!drv
->bdrv_is_inserted
)
1482 ret
= drv
->bdrv_is_inserted(bs
);
1487 * Return TRUE if the media changed since the last call to this
1488 * function. It is currently only used for floppy disks
1490 int bdrv_media_changed(BlockDriverState
*bs
)
1492 BlockDriver
*drv
= bs
->drv
;
1495 if (!drv
|| !drv
->bdrv_media_changed
)
1498 ret
= drv
->bdrv_media_changed(bs
);
1499 if (ret
== -ENOTSUP
)
1500 ret
= bs
->media_changed
;
1501 bs
->media_changed
= 0;
1506 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1508 void bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
1510 BlockDriver
*drv
= bs
->drv
;
1513 if (!drv
|| !drv
->bdrv_eject
) {
1516 ret
= drv
->bdrv_eject(bs
, eject_flag
);
1518 if (ret
== -ENOTSUP
) {
1524 int bdrv_is_locked(BlockDriverState
*bs
)
1530 * Lock or unlock the media (if it is locked, the user won't be able
1531 * to eject it manually).
1533 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
1535 BlockDriver
*drv
= bs
->drv
;
1537 bs
->locked
= locked
;
1538 if (drv
&& drv
->bdrv_set_locked
) {
1539 drv
->bdrv_set_locked(bs
, locked
);
1543 /* needed for generic scsi interface */
1545 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1547 BlockDriver
*drv
= bs
->drv
;
1549 if (drv
&& drv
->bdrv_ioctl
)
1550 return drv
->bdrv_ioctl(bs
, req
, buf
);