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
));
156 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
157 if (device_name
[0] != '\0') {
158 /* insert at the end */
167 BlockDriver
*bdrv_find_format(const char *format_name
)
170 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
171 if (!strcmp(drv1
->format_name
, format_name
))
177 int bdrv_create(BlockDriver
*drv
,
178 const char *filename
, int64_t size_in_sectors
,
179 const char *backing_file
, int flags
)
181 if (!drv
->bdrv_create
)
183 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
, flags
);
187 void get_tmp_filename(char *filename
, int size
)
189 char temp_dir
[MAX_PATH
];
191 GetTempPath(MAX_PATH
, temp_dir
);
192 GetTempFileName(temp_dir
, "qem", 0, filename
);
195 void get_tmp_filename(char *filename
, int size
)
199 /* XXX: race condition possible */
200 tmpdir
= getenv("TMPDIR");
203 snprintf(filename
, size
, "%s/vl.XXXXXX", tmpdir
);
204 fd
= mkstemp(filename
);
210 static int is_windows_drive_prefix(const char *filename
)
212 return (((filename
[0] >= 'a' && filename
[0] <= 'z') ||
213 (filename
[0] >= 'A' && filename
[0] <= 'Z')) &&
217 static int is_windows_drive(const char *filename
)
219 if (is_windows_drive_prefix(filename
) &&
222 if (strstart(filename
, "\\\\.\\", NULL
) ||
223 strstart(filename
, "//./", NULL
))
229 static BlockDriver
*find_protocol(const char *filename
)
237 if (is_windows_drive(filename
) ||
238 is_windows_drive_prefix(filename
))
241 p
= strchr(filename
, ':');
245 if (len
> sizeof(protocol
) - 1)
246 len
= sizeof(protocol
) - 1;
247 memcpy(protocol
, filename
, len
);
248 protocol
[len
] = '\0';
249 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
250 if (drv1
->protocol_name
&&
251 !strcmp(drv1
->protocol_name
, protocol
))
257 /* XXX: force raw format if block or character device ? It would
258 simplify the BSD case */
259 static BlockDriver
*find_image_format(const char *filename
)
261 int ret
, score
, score_max
;
262 BlockDriver
*drv1
, *drv
;
264 BlockDriverState
*bs
;
266 /* detect host devices. By convention, /dev/cdrom[N] is always
267 recognized as a host CDROM */
268 if (strstart(filename
, "/dev/cdrom", NULL
))
269 return &bdrv_host_device
;
271 if (is_windows_drive(filename
))
272 return &bdrv_host_device
;
276 if (stat(filename
, &st
) >= 0 &&
277 (S_ISCHR(st
.st_mode
) || S_ISBLK(st
.st_mode
))) {
278 return &bdrv_host_device
;
283 drv
= find_protocol(filename
);
284 /* no need to test disk image formats for vvfat */
285 if (drv
== &bdrv_vvfat
)
288 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
291 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
298 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
299 if (drv1
->bdrv_probe
) {
300 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
301 if (score
> score_max
) {
310 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
312 BlockDriverState
*bs
;
318 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
327 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
329 return bdrv_open2(bs
, filename
, flags
, NULL
);
332 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
336 char tmp_filename
[PATH_MAX
];
337 char backing_filename
[PATH_MAX
];
340 bs
->is_temporary
= 0;
343 if (flags
& BDRV_O_SNAPSHOT
) {
344 BlockDriverState
*bs1
;
348 /* if snapshot, we create a temporary backing file and open it
349 instead of opening 'filename' directly */
351 /* if there is a backing file, use it */
356 if (bdrv_open(bs1
, filename
, 0) < 0) {
360 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
362 if (bs1
->drv
&& bs1
->drv
->protocol_name
)
367 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
369 /* Real path is meaningless for protocols */
371 snprintf(backing_filename
, sizeof(backing_filename
),
374 realpath(filename
, backing_filename
);
376 if (bdrv_create(&bdrv_qcow2
, tmp_filename
,
377 total_size
, backing_filename
, 0) < 0) {
380 filename
= tmp_filename
;
381 bs
->is_temporary
= 1;
384 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
385 if (flags
& BDRV_O_FILE
) {
386 drv
= find_protocol(filename
);
391 drv
= find_image_format(filename
);
397 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
398 if (bs
->opaque
== NULL
&& drv
->instance_size
> 0)
400 /* Note: for compatibility, we open disk image files as RDWR, and
401 RDONLY as fallback */
402 if (!(flags
& BDRV_O_FILE
))
403 open_flags
= BDRV_O_RDWR
| (flags
& BDRV_O_CACHE_MASK
);
405 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
406 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
407 if ((ret
== -EACCES
|| ret
== -EPERM
) && !(flags
& BDRV_O_FILE
)) {
408 ret
= drv
->bdrv_open(bs
, filename
, open_flags
& ~BDRV_O_RDWR
);
412 qemu_free(bs
->opaque
);
417 if (drv
->bdrv_getlength
) {
418 bs
->total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
421 if (bs
->is_temporary
) {
425 if (bs
->backing_file
[0] != '\0') {
426 /* if there is a backing file, use it */
427 bs
->backing_hd
= bdrv_new("");
428 if (!bs
->backing_hd
) {
433 path_combine(backing_filename
, sizeof(backing_filename
),
434 filename
, bs
->backing_file
);
435 if (bdrv_open(bs
->backing_hd
, backing_filename
, open_flags
) < 0)
439 /* call the change callback */
440 bs
->media_changed
= 1;
442 bs
->change_cb(bs
->change_opaque
);
447 void bdrv_close(BlockDriverState
*bs
)
451 bdrv_delete(bs
->backing_hd
);
452 bs
->drv
->bdrv_close(bs
);
453 qemu_free(bs
->opaque
);
455 if (bs
->is_temporary
) {
456 unlink(bs
->filename
);
462 /* call the change callback */
463 bs
->media_changed
= 1;
465 bs
->change_cb(bs
->change_opaque
);
469 void bdrv_delete(BlockDriverState
*bs
)
471 BlockDriverState
**pbs
;
474 while (*pbs
!= bs
&& *pbs
!= NULL
)
483 /* commit COW file into the raw image */
484 int bdrv_commit(BlockDriverState
*bs
)
486 BlockDriver
*drv
= bs
->drv
;
487 int64_t i
, total_sectors
;
489 unsigned char sector
[512];
498 if (!bs
->backing_hd
) {
502 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
503 for (i
= 0; i
< total_sectors
;) {
504 if (drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
505 for(j
= 0; j
< n
; j
++) {
506 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
510 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
520 if (drv
->bdrv_make_empty
)
521 return drv
->bdrv_make_empty(bs
);
526 /* return < 0 if error. See bdrv_write() for the return codes */
527 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
528 uint8_t *buf
, int nb_sectors
)
530 BlockDriver
*drv
= bs
->drv
;
535 if (drv
->bdrv_pread
) {
537 len
= nb_sectors
* 512;
538 ret
= drv
->bdrv_pread(bs
, sector_num
* 512, buf
, len
);
544 bs
->rd_bytes
+= (unsigned) len
;
549 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
553 /* Return < 0 if error. Important errors are:
554 -EIO generic I/O error (may happen for all errors)
555 -ENOMEDIUM No media inserted.
556 -EINVAL Invalid sector number or nb_sectors
557 -EACCES Trying to write a read-only device
559 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
560 const uint8_t *buf
, int nb_sectors
)
562 BlockDriver
*drv
= bs
->drv
;
567 if (drv
->bdrv_pwrite
) {
569 len
= nb_sectors
* 512;
570 ret
= drv
->bdrv_pwrite(bs
, sector_num
* 512, buf
, len
);
576 bs
->wr_bytes
+= (unsigned) len
;
581 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
585 static int bdrv_pread_em(BlockDriverState
*bs
, int64_t offset
,
586 uint8_t *buf
, int count1
)
588 uint8_t tmp_buf
[SECTOR_SIZE
];
589 int len
, nb_sectors
, count
;
593 /* first read to align to sector start */
594 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
597 sector_num
= offset
>> SECTOR_BITS
;
599 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
601 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
609 /* read the sectors "in place" */
610 nb_sectors
= count
>> SECTOR_BITS
;
611 if (nb_sectors
> 0) {
612 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
614 sector_num
+= nb_sectors
;
615 len
= nb_sectors
<< SECTOR_BITS
;
620 /* add data from the last sector */
622 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
624 memcpy(buf
, tmp_buf
, count
);
629 static int bdrv_pwrite_em(BlockDriverState
*bs
, int64_t offset
,
630 const uint8_t *buf
, int count1
)
632 uint8_t tmp_buf
[SECTOR_SIZE
];
633 int len
, nb_sectors
, count
;
637 /* first write to align to sector start */
638 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
641 sector_num
= offset
>> SECTOR_BITS
;
643 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
645 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
646 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
655 /* write the sectors "in place" */
656 nb_sectors
= count
>> SECTOR_BITS
;
657 if (nb_sectors
> 0) {
658 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
660 sector_num
+= nb_sectors
;
661 len
= nb_sectors
<< SECTOR_BITS
;
666 /* add data from the last sector */
668 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
670 memcpy(tmp_buf
, buf
, count
);
671 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
678 * Read with byte offsets (needed only for file protocols)
680 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
681 void *buf1
, int count1
)
683 BlockDriver
*drv
= bs
->drv
;
687 if (!drv
->bdrv_pread
)
688 return bdrv_pread_em(bs
, offset
, buf1
, count1
);
689 return drv
->bdrv_pread(bs
, offset
, buf1
, count1
);
693 * Write with byte offsets (needed only for file protocols)
695 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
696 const void *buf1
, int count1
)
698 BlockDriver
*drv
= bs
->drv
;
702 if (!drv
->bdrv_pwrite
)
703 return bdrv_pwrite_em(bs
, offset
, buf1
, count1
);
704 return drv
->bdrv_pwrite(bs
, offset
, buf1
, count1
);
708 * Truncate file to 'offset' bytes (needed only for file protocols)
710 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
712 BlockDriver
*drv
= bs
->drv
;
715 if (!drv
->bdrv_truncate
)
717 return drv
->bdrv_truncate(bs
, offset
);
721 * Length of a file in bytes. Return < 0 if error or unknown.
723 int64_t bdrv_getlength(BlockDriverState
*bs
)
725 BlockDriver
*drv
= bs
->drv
;
728 if (!drv
->bdrv_getlength
) {
730 return bs
->total_sectors
* SECTOR_SIZE
;
732 return drv
->bdrv_getlength(bs
);
735 /* return 0 as number of sectors if no device present or error */
736 void bdrv_get_geometry(BlockDriverState
*bs
, uint64_t *nb_sectors_ptr
)
739 length
= bdrv_getlength(bs
);
743 length
= length
>> SECTOR_BITS
;
744 *nb_sectors_ptr
= length
;
748 uint8_t boot_ind
; /* 0x80 - active */
749 uint8_t head
; /* starting head */
750 uint8_t sector
; /* starting sector */
751 uint8_t cyl
; /* starting cylinder */
752 uint8_t sys_ind
; /* What partition type */
753 uint8_t end_head
; /* end head */
754 uint8_t end_sector
; /* end sector */
755 uint8_t end_cyl
; /* end cylinder */
756 uint32_t start_sect
; /* starting sector counting from 0 */
757 uint32_t nr_sects
; /* nr of sectors in partition */
758 } __attribute__((packed
));
760 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
761 static int guess_disk_lchs(BlockDriverState
*bs
,
762 int *pcylinders
, int *pheads
, int *psectors
)
765 int ret
, i
, heads
, sectors
, cylinders
;
770 bdrv_get_geometry(bs
, &nb_sectors
);
772 ret
= bdrv_read(bs
, 0, buf
, 1);
775 /* test msdos magic */
776 if (buf
[510] != 0x55 || buf
[511] != 0xaa)
778 for(i
= 0; i
< 4; i
++) {
779 p
= ((struct partition
*)(buf
+ 0x1be)) + i
;
780 nr_sects
= le32_to_cpu(p
->nr_sects
);
781 if (nr_sects
&& p
->end_head
) {
782 /* We make the assumption that the partition terminates on
783 a cylinder boundary */
784 heads
= p
->end_head
+ 1;
785 sectors
= p
->end_sector
& 63;
788 cylinders
= nb_sectors
/ (heads
* sectors
);
789 if (cylinders
< 1 || cylinders
> 16383)
793 *pcylinders
= cylinders
;
795 printf("guessed geometry: LCHS=%d %d %d\n",
796 cylinders
, heads
, sectors
);
804 void bdrv_guess_geometry(BlockDriverState
*bs
, int *pcyls
, int *pheads
, int *psecs
)
806 int translation
, lba_detected
= 0;
807 int cylinders
, heads
, secs
;
810 /* if a geometry hint is available, use it */
811 bdrv_get_geometry(bs
, &nb_sectors
);
812 bdrv_get_geometry_hint(bs
, &cylinders
, &heads
, &secs
);
813 translation
= bdrv_get_translation_hint(bs
);
814 if (cylinders
!= 0) {
819 if (guess_disk_lchs(bs
, &cylinders
, &heads
, &secs
) == 0) {
821 /* if heads > 16, it means that a BIOS LBA
822 translation was active, so the default
823 hardware geometry is OK */
825 goto default_geometry
;
830 /* disable any translation to be in sync with
831 the logical geometry */
832 if (translation
== BIOS_ATA_TRANSLATION_AUTO
) {
833 bdrv_set_translation_hint(bs
,
834 BIOS_ATA_TRANSLATION_NONE
);
839 /* if no geometry, use a standard physical disk geometry */
840 cylinders
= nb_sectors
/ (16 * 63);
842 if (cylinders
> 16383)
844 else if (cylinders
< 2)
849 if ((lba_detected
== 1) && (translation
== BIOS_ATA_TRANSLATION_AUTO
)) {
850 if ((*pcyls
* *pheads
) <= 131072) {
851 bdrv_set_translation_hint(bs
,
852 BIOS_ATA_TRANSLATION_LARGE
);
854 bdrv_set_translation_hint(bs
,
855 BIOS_ATA_TRANSLATION_LBA
);
859 bdrv_set_geometry_hint(bs
, *pcyls
, *pheads
, *psecs
);
863 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
864 int cyls
, int heads
, int secs
)
871 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
874 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
875 type
== BDRV_TYPE_FLOPPY
));
878 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
880 bs
->translation
= translation
;
883 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
884 int *pcyls
, int *pheads
, int *psecs
)
891 int bdrv_get_type_hint(BlockDriverState
*bs
)
896 int bdrv_get_translation_hint(BlockDriverState
*bs
)
898 return bs
->translation
;
901 int bdrv_is_removable(BlockDriverState
*bs
)
903 return bs
->removable
;
906 int bdrv_is_read_only(BlockDriverState
*bs
)
908 return bs
->read_only
;
911 int bdrv_is_sg(BlockDriverState
*bs
)
916 /* XXX: no longer used */
917 void bdrv_set_change_cb(BlockDriverState
*bs
,
918 void (*change_cb
)(void *opaque
), void *opaque
)
920 bs
->change_cb
= change_cb
;
921 bs
->change_opaque
= opaque
;
924 int bdrv_is_encrypted(BlockDriverState
*bs
)
926 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
928 return bs
->encrypted
;
931 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
934 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
935 ret
= bdrv_set_key(bs
->backing_hd
, key
);
941 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
943 return bs
->drv
->bdrv_set_key(bs
, key
);
946 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
951 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
955 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
960 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
961 it(opaque
, drv
->format_name
);
965 BlockDriverState
*bdrv_find(const char *name
)
967 BlockDriverState
*bs
;
969 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
970 if (!strcmp(name
, bs
->device_name
))
976 void bdrv_iterate(void (*it
)(void *opaque
, const char *name
), void *opaque
)
978 BlockDriverState
*bs
;
980 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
981 it(opaque
, bs
->device_name
);
985 const char *bdrv_get_device_name(BlockDriverState
*bs
)
987 return bs
->device_name
;
990 void bdrv_flush(BlockDriverState
*bs
)
992 if (bs
->drv
->bdrv_flush
)
993 bs
->drv
->bdrv_flush(bs
);
995 bdrv_flush(bs
->backing_hd
);
998 void bdrv_flush_all(void)
1000 BlockDriverState
*bs
;
1002 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
)
1003 if (bs
->drv
&& !bdrv_is_read_only(bs
) &&
1004 (!bdrv_is_removable(bs
) || bdrv_is_inserted(bs
)))
1009 * Returns true iff the specified sector is present in the disk image. Drivers
1010 * not implementing the functionality are assumed to not support backing files,
1011 * hence all their sectors are reported as allocated.
1013 * 'pnum' is set to the number of sectors (including and immediately following
1014 * the specified sector) that are known to be in the same
1015 * allocated/unallocated state.
1017 * 'nb_sectors' is the max value 'pnum' should be set to.
1019 int bdrv_is_allocated(BlockDriverState
*bs
, int64_t sector_num
, int nb_sectors
,
1023 if (!bs
->drv
->bdrv_is_allocated
) {
1024 if (sector_num
>= bs
->total_sectors
) {
1028 n
= bs
->total_sectors
- sector_num
;
1029 *pnum
= (n
< nb_sectors
) ? (n
) : (nb_sectors
);
1032 return bs
->drv
->bdrv_is_allocated(bs
, sector_num
, nb_sectors
, pnum
);
1035 void bdrv_info(void)
1037 BlockDriverState
*bs
;
1039 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1040 term_printf("%s:", bs
->device_name
);
1041 term_printf(" type=");
1046 case BDRV_TYPE_CDROM
:
1047 term_printf("cdrom");
1049 case BDRV_TYPE_FLOPPY
:
1050 term_printf("floppy");
1053 term_printf(" removable=%d", bs
->removable
);
1054 if (bs
->removable
) {
1055 term_printf(" locked=%d", bs
->locked
);
1058 term_printf(" file=");
1059 term_print_filename(bs
->filename
);
1060 if (bs
->backing_file
[0] != '\0') {
1061 term_printf(" backing_file=");
1062 term_print_filename(bs
->backing_file
);
1064 term_printf(" ro=%d", bs
->read_only
);
1065 term_printf(" drv=%s", bs
->drv
->format_name
);
1067 term_printf(" encrypted");
1069 term_printf(" [not inserted]");
1075 /* The "info blockstats" command. */
1076 void bdrv_info_stats (void)
1078 BlockDriverState
*bs
;
1080 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
1082 " rd_bytes=%" PRIu64
1083 " wr_bytes=%" PRIu64
1084 " rd_operations=%" PRIu64
1085 " wr_operations=%" PRIu64
1088 bs
->rd_bytes
, bs
->wr_bytes
,
1089 bs
->rd_ops
, bs
->wr_ops
);
1093 void bdrv_get_backing_filename(BlockDriverState
*bs
,
1094 char *filename
, int filename_size
)
1096 if (!bs
->backing_hd
) {
1097 pstrcpy(filename
, filename_size
, "");
1099 pstrcpy(filename
, filename_size
, bs
->backing_file
);
1103 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
1104 const uint8_t *buf
, int nb_sectors
)
1106 BlockDriver
*drv
= bs
->drv
;
1109 if (!drv
->bdrv_write_compressed
)
1111 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
1114 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
1116 BlockDriver
*drv
= bs
->drv
;
1119 if (!drv
->bdrv_get_info
)
1121 memset(bdi
, 0, sizeof(*bdi
));
1122 return drv
->bdrv_get_info(bs
, bdi
);
1125 /**************************************************************/
1126 /* handling of snapshots */
1128 int bdrv_snapshot_create(BlockDriverState
*bs
,
1129 QEMUSnapshotInfo
*sn_info
)
1131 BlockDriver
*drv
= bs
->drv
;
1134 if (!drv
->bdrv_snapshot_create
)
1136 return drv
->bdrv_snapshot_create(bs
, sn_info
);
1139 int bdrv_snapshot_goto(BlockDriverState
*bs
,
1140 const char *snapshot_id
)
1142 BlockDriver
*drv
= bs
->drv
;
1145 if (!drv
->bdrv_snapshot_goto
)
1147 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
1150 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
1152 BlockDriver
*drv
= bs
->drv
;
1155 if (!drv
->bdrv_snapshot_delete
)
1157 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
1160 int bdrv_snapshot_list(BlockDriverState
*bs
,
1161 QEMUSnapshotInfo
**psn_info
)
1163 BlockDriver
*drv
= bs
->drv
;
1166 if (!drv
->bdrv_snapshot_list
)
1168 return drv
->bdrv_snapshot_list(bs
, psn_info
);
1171 #define NB_SUFFIXES 4
1173 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
1175 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
1180 snprintf(buf
, buf_size
, "%" PRId64
, size
);
1183 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
1184 if (size
< (10 * base
)) {
1185 snprintf(buf
, buf_size
, "%0.1f%c",
1186 (double)size
/ base
,
1189 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
1190 snprintf(buf
, buf_size
, "%" PRId64
"%c",
1191 ((size
+ (base
>> 1)) / base
),
1201 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
1203 char buf1
[128], date_buf
[128], clock_buf
[128];
1213 snprintf(buf
, buf_size
,
1214 "%-10s%-20s%7s%20s%15s",
1215 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1219 ptm
= localtime(&ti
);
1220 strftime(date_buf
, sizeof(date_buf
),
1221 "%Y-%m-%d %H:%M:%S", ptm
);
1223 localtime_r(&ti
, &tm
);
1224 strftime(date_buf
, sizeof(date_buf
),
1225 "%Y-%m-%d %H:%M:%S", &tm
);
1227 secs
= sn
->vm_clock_nsec
/ 1000000000;
1228 snprintf(clock_buf
, sizeof(clock_buf
),
1229 "%02d:%02d:%02d.%03d",
1231 (int)((secs
/ 60) % 60),
1233 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
1234 snprintf(buf
, buf_size
,
1235 "%-10s%-20s%7s%20s%15s",
1236 sn
->id_str
, sn
->name
,
1237 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
1245 /**************************************************************/
1248 BlockDriverAIOCB
*bdrv_aio_read(BlockDriverState
*bs
, int64_t sector_num
,
1249 uint8_t *buf
, int nb_sectors
,
1250 BlockDriverCompletionFunc
*cb
, void *opaque
)
1252 BlockDriver
*drv
= bs
->drv
;
1253 BlockDriverAIOCB
*ret
;
1258 ret
= drv
->bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1261 /* Update stats even though technically transfer has not happened. */
1262 bs
->rd_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1269 BlockDriverAIOCB
*bdrv_aio_write(BlockDriverState
*bs
, int64_t sector_num
,
1270 const uint8_t *buf
, int nb_sectors
,
1271 BlockDriverCompletionFunc
*cb
, void *opaque
)
1273 BlockDriver
*drv
= bs
->drv
;
1274 BlockDriverAIOCB
*ret
;
1281 ret
= drv
->bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
, cb
, opaque
);
1284 /* Update stats even though technically transfer has not happened. */
1285 bs
->wr_bytes
+= (unsigned) nb_sectors
* SECTOR_SIZE
;
1292 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1294 BlockDriver
*drv
= acb
->bs
->drv
;
1296 drv
->bdrv_aio_cancel(acb
);
1300 /**************************************************************/
1301 /* async block device emulation */
1303 static void bdrv_aio_bh_cb(void *opaque
)
1305 BlockDriverAIOCBSync
*acb
= opaque
;
1306 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
1307 qemu_aio_release(acb
);
1310 static BlockDriverAIOCB
*bdrv_aio_read_em(BlockDriverState
*bs
,
1311 int64_t sector_num
, uint8_t *buf
, int nb_sectors
,
1312 BlockDriverCompletionFunc
*cb
, void *opaque
)
1314 BlockDriverAIOCBSync
*acb
;
1317 acb
= qemu_aio_get(bs
, cb
, opaque
);
1319 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1320 ret
= bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
1322 qemu_bh_schedule(acb
->bh
);
1323 return &acb
->common
;
1326 static BlockDriverAIOCB
*bdrv_aio_write_em(BlockDriverState
*bs
,
1327 int64_t sector_num
, const uint8_t *buf
, int nb_sectors
,
1328 BlockDriverCompletionFunc
*cb
, void *opaque
)
1330 BlockDriverAIOCBSync
*acb
;
1333 acb
= qemu_aio_get(bs
, cb
, opaque
);
1335 acb
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1336 ret
= bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
1338 qemu_bh_schedule(acb
->bh
);
1339 return &acb
->common
;
1342 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*blockacb
)
1344 BlockDriverAIOCBSync
*acb
= (BlockDriverAIOCBSync
*)blockacb
;
1345 qemu_bh_cancel(acb
->bh
);
1346 qemu_aio_release(acb
);
1349 /**************************************************************/
1350 /* sync block device emulation */
1352 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1354 *(int *)opaque
= ret
;
1357 #define NOT_DONE 0x7fffffff
1359 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1360 uint8_t *buf
, int nb_sectors
)
1363 BlockDriverAIOCB
*acb
;
1365 async_ret
= NOT_DONE
;
1366 acb
= bdrv_aio_read(bs
, sector_num
, buf
, nb_sectors
,
1367 bdrv_rw_em_cb
, &async_ret
);
1371 while (async_ret
== NOT_DONE
) {
1378 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1379 const uint8_t *buf
, int nb_sectors
)
1382 BlockDriverAIOCB
*acb
;
1384 async_ret
= NOT_DONE
;
1385 acb
= bdrv_aio_write(bs
, sector_num
, buf
, nb_sectors
,
1386 bdrv_rw_em_cb
, &async_ret
);
1389 while (async_ret
== NOT_DONE
) {
1395 void bdrv_init(void)
1397 bdrv_register(&bdrv_raw
);
1398 bdrv_register(&bdrv_host_device
);
1400 bdrv_register(&bdrv_cow
);
1402 bdrv_register(&bdrv_qcow
);
1403 bdrv_register(&bdrv_vmdk
);
1404 bdrv_register(&bdrv_cloop
);
1405 bdrv_register(&bdrv_dmg
);
1406 bdrv_register(&bdrv_bochs
);
1407 bdrv_register(&bdrv_vpc
);
1408 bdrv_register(&bdrv_vvfat
);
1409 bdrv_register(&bdrv_qcow2
);
1410 bdrv_register(&bdrv_parallels
);
1411 bdrv_register(&bdrv_nbd
);
1414 void *qemu_aio_get(BlockDriverState
*bs
, BlockDriverCompletionFunc
*cb
,
1418 BlockDriverAIOCB
*acb
;
1421 if (drv
->free_aiocb
) {
1422 acb
= drv
->free_aiocb
;
1423 drv
->free_aiocb
= acb
->next
;
1425 acb
= qemu_mallocz(drv
->aiocb_size
);
1431 acb
->opaque
= opaque
;
1435 void qemu_aio_release(void *p
)
1437 BlockDriverAIOCB
*acb
= p
;
1438 BlockDriver
*drv
= acb
->bs
->drv
;
1439 acb
->next
= drv
->free_aiocb
;
1440 drv
->free_aiocb
= acb
;
1443 /**************************************************************/
1444 /* removable device support */
1447 * Return TRUE if the media is present
1449 int bdrv_is_inserted(BlockDriverState
*bs
)
1451 BlockDriver
*drv
= bs
->drv
;
1455 if (!drv
->bdrv_is_inserted
)
1457 ret
= drv
->bdrv_is_inserted(bs
);
1462 * Return TRUE if the media changed since the last call to this
1463 * function. It is currently only used for floppy disks
1465 int bdrv_media_changed(BlockDriverState
*bs
)
1467 BlockDriver
*drv
= bs
->drv
;
1470 if (!drv
|| !drv
->bdrv_media_changed
)
1473 ret
= drv
->bdrv_media_changed(bs
);
1474 if (ret
== -ENOTSUP
)
1475 ret
= bs
->media_changed
;
1476 bs
->media_changed
= 0;
1481 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1483 void bdrv_eject(BlockDriverState
*bs
, int eject_flag
)
1485 BlockDriver
*drv
= bs
->drv
;
1488 if (!drv
|| !drv
->bdrv_eject
) {
1491 ret
= drv
->bdrv_eject(bs
, eject_flag
);
1493 if (ret
== -ENOTSUP
) {
1499 int bdrv_is_locked(BlockDriverState
*bs
)
1505 * Lock or unlock the media (if it is locked, the user won't be able
1506 * to eject it manually).
1508 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
1510 BlockDriver
*drv
= bs
->drv
;
1512 bs
->locked
= locked
;
1513 if (drv
&& drv
->bdrv_set_locked
) {
1514 drv
->bdrv_set_locked(bs
, locked
);
1518 /* needed for generic scsi interface */
1520 int bdrv_ioctl(BlockDriverState
*bs
, unsigned long int req
, void *buf
)
1522 BlockDriver
*drv
= bs
->drv
;
1524 if (drv
&& drv
->bdrv_ioctl
)
1525 return drv
->bdrv_ioctl(bs
, req
, buf
);