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
25 #include "block_int.h"
28 #include <sys/types.h>
30 #include <sys/ioctl.h>
31 #include <sys/queue.h>
36 #define SECTOR_SIZE (1 << SECTOR_BITS)
38 static int bdrv_aio_new_em(BlockDriverAIOCB
*acb
);
39 static int bdrv_aio_read_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
40 uint8_t *buf
, int nb_sectors
);
41 static int bdrv_aio_write_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
42 const uint8_t *buf
, int nb_sectors
);
43 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
);
44 static void bdrv_aio_delete_em(BlockDriverAIOCB
*acb
);
45 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
46 uint8_t *buf
, int nb_sectors
);
47 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
48 const uint8_t *buf
, int nb_sectors
);
50 static BlockDriverState
*bdrv_first
;
51 static BlockDriver
*first_drv
;
59 int path_is_absolute(const char *path
)
62 p
= strchr(path
, ':');
67 return (*p
== PATH_SEP
);
70 /* if filename is absolute, just copy it to dest. Otherwise, build a
71 path to it by considering it is relative to base_path. URL are
73 void path_combine(char *dest
, int dest_size
,
74 const char *base_path
,
82 if (path_is_absolute(filename
)) {
83 pstrcpy(dest
, dest_size
, filename
);
85 p
= strchr(base_path
, ':');
90 p1
= strrchr(base_path
, PATH_SEP
);
98 if (len
> dest_size
- 1)
100 memcpy(dest
, base_path
, len
);
102 pstrcat(dest
, dest_size
, filename
);
107 void bdrv_register(BlockDriver
*bdrv
)
109 if (!bdrv
->bdrv_aio_new
) {
110 /* add AIO emulation layer */
111 bdrv
->bdrv_aio_new
= bdrv_aio_new_em
;
112 bdrv
->bdrv_aio_read
= bdrv_aio_read_em
;
113 bdrv
->bdrv_aio_write
= bdrv_aio_write_em
;
114 bdrv
->bdrv_aio_cancel
= bdrv_aio_cancel_em
;
115 bdrv
->bdrv_aio_delete
= bdrv_aio_delete_em
;
116 } else if (!bdrv
->bdrv_read
&& !bdrv
->bdrv_pread
) {
117 /* add synchronous IO emulation layer */
118 bdrv
->bdrv_read
= bdrv_read_em
;
119 bdrv
->bdrv_write
= bdrv_write_em
;
121 bdrv
->next
= first_drv
;
125 /* create a new block device (by default it is empty) */
126 BlockDriverState
*bdrv_new(const char *device_name
)
128 BlockDriverState
**pbs
, *bs
;
130 bs
= qemu_mallocz(sizeof(BlockDriverState
));
133 pstrcpy(bs
->device_name
, sizeof(bs
->device_name
), device_name
);
134 if (device_name
[0] != '\0') {
135 /* insert at the end */
144 BlockDriver
*bdrv_find_format(const char *format_name
)
147 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
148 if (!strcmp(drv1
->format_name
, format_name
))
154 int bdrv_create(BlockDriver
*drv
,
155 const char *filename
, int64_t size_in_sectors
,
156 const char *backing_file
, int flags
)
158 if (!drv
->bdrv_create
)
160 return drv
->bdrv_create(filename
, size_in_sectors
, backing_file
, flags
);
164 void get_tmp_filename(char *filename
, int size
)
169 void get_tmp_filename(char *filename
, int size
)
172 /* XXX: race condition possible */
173 pstrcpy(filename
, size
, "/tmp/vl.XXXXXX");
174 fd
= mkstemp(filename
);
179 static BlockDriver
*find_protocol(const char *filename
)
185 p
= strchr(filename
, ':');
189 if (len
> sizeof(protocol
) - 1)
190 len
= sizeof(protocol
) - 1;
193 /* specific win32 case for driver letters */
197 memcpy(protocol
, filename
, len
);
198 protocol
[len
] = '\0';
199 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
200 if (drv1
->protocol_name
&&
201 !strcmp(drv1
->protocol_name
, protocol
))
207 /* XXX: force raw format if block or character device ? It would
208 simplify the BSD case */
209 static BlockDriver
*find_image_format(const char *filename
)
211 int ret
, score
, score_max
;
212 BlockDriver
*drv1
, *drv
;
214 BlockDriverState
*bs
;
216 drv
= find_protocol(filename
);
217 /* no need to test disk image formats for vvfat or host specific
219 if (drv
== &bdrv_vvfat
)
221 if (strstart(filename
, "/dev/", NULL
))
224 ret
= bdrv_file_open(&bs
, filename
, BDRV_O_RDONLY
);
227 ret
= bdrv_pread(bs
, 0, buf
, sizeof(buf
));
234 for(drv1
= first_drv
; drv1
!= NULL
; drv1
= drv1
->next
) {
235 if (drv1
->bdrv_probe
) {
236 score
= drv1
->bdrv_probe(buf
, ret
, filename
);
237 if (score
> score_max
) {
246 int bdrv_file_open(BlockDriverState
**pbs
, const char *filename
, int flags
)
248 BlockDriverState
*bs
;
254 ret
= bdrv_open2(bs
, filename
, flags
| BDRV_O_FILE
, NULL
);
263 int bdrv_open(BlockDriverState
*bs
, const char *filename
, int flags
)
265 return bdrv_open2(bs
, filename
, flags
, NULL
);
268 int bdrv_open2(BlockDriverState
*bs
, const char *filename
, int flags
,
272 char tmp_filename
[1024];
273 char backing_filename
[1024];
276 bs
->is_temporary
= 0;
279 if (flags
& BDRV_O_SNAPSHOT
) {
280 BlockDriverState
*bs1
;
283 /* if snapshot, we create a temporary backing file and open it
284 instead of opening 'filename' directly */
286 /* if there is a backing file, use it */
291 if (bdrv_open(bs1
, filename
, 0) < 0) {
295 total_size
= bdrv_getlength(bs1
) >> SECTOR_BITS
;
298 get_tmp_filename(tmp_filename
, sizeof(tmp_filename
));
299 if (bdrv_create(&bdrv_qcow
, tmp_filename
,
300 total_size
, filename
, 0) < 0) {
303 filename
= tmp_filename
;
304 bs
->is_temporary
= 1;
307 pstrcpy(bs
->filename
, sizeof(bs
->filename
), filename
);
308 if (flags
& BDRV_O_FILE
) {
309 drv
= find_protocol(filename
);
314 drv
= find_image_format(filename
);
320 bs
->opaque
= qemu_mallocz(drv
->instance_size
);
321 if (bs
->opaque
== NULL
&& drv
->instance_size
> 0)
323 /* Note: for compatibility, we open disk image files as RDWR, and
324 RDONLY as fallback */
325 if (!(flags
& BDRV_O_FILE
))
326 open_flags
= BDRV_O_RDWR
;
328 open_flags
= flags
& ~(BDRV_O_FILE
| BDRV_O_SNAPSHOT
);
329 ret
= drv
->bdrv_open(bs
, filename
, open_flags
);
330 if (ret
== -EACCES
&& !(flags
& BDRV_O_FILE
)) {
331 ret
= drv
->bdrv_open(bs
, filename
, BDRV_O_RDONLY
);
335 qemu_free(bs
->opaque
);
340 if (bs
->is_temporary
) {
344 if (bs
->backing_file
[0] != '\0') {
345 /* if there is a backing file, use it */
346 bs
->backing_hd
= bdrv_new("");
347 if (!bs
->backing_hd
) {
352 path_combine(backing_filename
, sizeof(backing_filename
),
353 filename
, bs
->backing_file
);
354 if (bdrv_open(bs
->backing_hd
, backing_filename
, 0) < 0)
360 /* call the change callback */
362 bs
->change_cb(bs
->change_opaque
);
367 void bdrv_close(BlockDriverState
*bs
)
371 bdrv_delete(bs
->backing_hd
);
372 bs
->drv
->bdrv_close(bs
);
373 qemu_free(bs
->opaque
);
375 if (bs
->is_temporary
) {
376 unlink(bs
->filename
);
383 /* call the change callback */
385 bs
->change_cb(bs
->change_opaque
);
389 void bdrv_delete(BlockDriverState
*bs
)
391 /* XXX: remove the driver list */
396 /* commit COW file into the raw image */
397 int bdrv_commit(BlockDriverState
*bs
)
399 int64_t i
, total_sectors
;
401 unsigned char sector
[512];
410 if (!bs
->backing_hd
) {
414 total_sectors
= bdrv_getlength(bs
) >> SECTOR_BITS
;
415 for (i
= 0; i
< total_sectors
;) {
416 if (bs
->drv
->bdrv_is_allocated(bs
, i
, 65536, &n
)) {
417 for(j
= 0; j
< n
; j
++) {
418 if (bdrv_read(bs
, i
, sector
, 1) != 0) {
422 if (bdrv_write(bs
->backing_hd
, i
, sector
, 1) != 0) {
432 if (bs
->drv
->bdrv_make_empty
)
433 return bs
->drv
->bdrv_make_empty(bs
);
438 /* return < 0 if error */
439 int bdrv_read(BlockDriverState
*bs
, int64_t sector_num
,
440 uint8_t *buf
, int nb_sectors
)
442 BlockDriver
*drv
= bs
->drv
;
447 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
448 memcpy(buf
, bs
->boot_sector_data
, 512);
455 if (drv
->bdrv_pread
) {
457 len
= nb_sectors
* 512;
458 ret
= drv
->bdrv_pread(bs
, sector_num
* 512, buf
, len
);
466 return drv
->bdrv_read(bs
, sector_num
, buf
, nb_sectors
);
470 /* return < 0 if error */
471 int bdrv_write(BlockDriverState
*bs
, int64_t sector_num
,
472 const uint8_t *buf
, int nb_sectors
)
474 BlockDriver
*drv
= bs
->drv
;
479 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
480 memcpy(bs
->boot_sector_data
, buf
, 512);
482 if (drv
->bdrv_pwrite
) {
484 len
= nb_sectors
* 512;
485 ret
= drv
->bdrv_pwrite(bs
, sector_num
* 512, buf
, len
);
493 return drv
->bdrv_write(bs
, sector_num
, buf
, nb_sectors
);
497 /* not necessary now */
498 static int bdrv_pread_em(BlockDriverState
*bs
, int64_t offset
,
499 uint8_t *buf
, int count1
)
501 uint8_t tmp_buf
[SECTOR_SIZE
];
502 int len
, nb_sectors
, count
;
506 /* first read to align to sector start */
507 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
510 sector_num
= offset
>> SECTOR_BITS
;
512 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
514 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
522 /* read the sectors "in place" */
523 nb_sectors
= count
>> SECTOR_BITS
;
524 if (nb_sectors
> 0) {
525 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
527 sector_num
+= nb_sectors
;
528 len
= nb_sectors
<< SECTOR_BITS
;
533 /* add data from the last sector */
535 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
537 memcpy(buf
, tmp_buf
, count
);
542 static int bdrv_pwrite_em(BlockDriverState
*bs
, int64_t offset
,
543 const uint8_t *buf
, int count1
)
545 uint8_t tmp_buf
[SECTOR_SIZE
];
546 int len
, nb_sectors
, count
;
550 /* first write to align to sector start */
551 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
554 sector_num
= offset
>> SECTOR_BITS
;
556 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
558 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
559 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
568 /* write the sectors "in place" */
569 nb_sectors
= count
>> SECTOR_BITS
;
570 if (nb_sectors
> 0) {
571 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
573 sector_num
+= nb_sectors
;
574 len
= nb_sectors
<< SECTOR_BITS
;
579 /* add data from the last sector */
581 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
583 memcpy(tmp_buf
, buf
, count
);
584 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
591 * Read with byte offsets (needed only for file protocols)
593 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
594 void *buf1
, int count1
)
596 BlockDriver
*drv
= bs
->drv
;
600 if (!drv
->bdrv_pread
)
601 return bdrv_pread_em(bs
, offset
, buf1
, count1
);
602 return drv
->bdrv_pread(bs
, offset
, buf1
, count1
);
606 * Write with byte offsets (needed only for file protocols)
608 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
609 const void *buf1
, int count1
)
611 BlockDriver
*drv
= bs
->drv
;
615 if (!drv
->bdrv_pwrite
)
616 return bdrv_pwrite_em(bs
, offset
, buf1
, count1
);
617 return drv
->bdrv_pwrite(bs
, offset
, buf1
, count1
);
621 * Truncate file to 'offset' bytes (needed only for file protocols)
623 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
625 BlockDriver
*drv
= bs
->drv
;
628 if (!drv
->bdrv_truncate
)
630 return drv
->bdrv_truncate(bs
, offset
);
634 * Length of a file in bytes. Return < 0 if error or unknown.
636 int64_t bdrv_getlength(BlockDriverState
*bs
)
638 BlockDriver
*drv
= bs
->drv
;
641 if (!drv
->bdrv_getlength
) {
643 return bs
->total_sectors
* SECTOR_SIZE
;
645 return drv
->bdrv_getlength(bs
);
648 void bdrv_get_geometry(BlockDriverState
*bs
, int64_t *nb_sectors_ptr
)
651 size
= bdrv_getlength(bs
);
654 *nb_sectors_ptr
= size
>> SECTOR_BITS
;
657 /* force a given boot sector. */
658 void bdrv_set_boot_sector(BlockDriverState
*bs
, const uint8_t *data
, int size
)
660 bs
->boot_sector_enabled
= 1;
663 memcpy(bs
->boot_sector_data
, data
, size
);
664 memset(bs
->boot_sector_data
+ size
, 0, 512 - size
);
667 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
668 int cyls
, int heads
, int secs
)
675 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
678 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
679 type
== BDRV_TYPE_FLOPPY
));
682 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
684 bs
->translation
= translation
;
687 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
688 int *pcyls
, int *pheads
, int *psecs
)
695 int bdrv_get_type_hint(BlockDriverState
*bs
)
700 int bdrv_get_translation_hint(BlockDriverState
*bs
)
702 return bs
->translation
;
705 int bdrv_is_removable(BlockDriverState
*bs
)
707 return bs
->removable
;
710 int bdrv_is_read_only(BlockDriverState
*bs
)
712 return bs
->read_only
;
715 int bdrv_is_inserted(BlockDriverState
*bs
)
720 int bdrv_is_locked(BlockDriverState
*bs
)
725 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
730 void bdrv_set_change_cb(BlockDriverState
*bs
,
731 void (*change_cb
)(void *opaque
), void *opaque
)
733 bs
->change_cb
= change_cb
;
734 bs
->change_opaque
= opaque
;
737 int bdrv_is_encrypted(BlockDriverState
*bs
)
739 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
741 return bs
->encrypted
;
744 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
747 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
748 ret
= bdrv_set_key(bs
->backing_hd
, key
);
754 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
756 return bs
->drv
->bdrv_set_key(bs
, key
);
759 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
761 if (!bs
->inserted
|| !bs
->drv
) {
764 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
768 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
773 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
774 it(opaque
, drv
->format_name
);
778 BlockDriverState
*bdrv_find(const char *name
)
780 BlockDriverState
*bs
;
782 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
783 if (!strcmp(name
, bs
->device_name
))
789 void bdrv_iterate(void (*it
)(void *opaque
, const char *name
), void *opaque
)
791 BlockDriverState
*bs
;
793 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
794 it(opaque
, bs
->device_name
);
798 const char *bdrv_get_device_name(BlockDriverState
*bs
)
800 return bs
->device_name
;
803 void bdrv_flush(BlockDriverState
*bs
)
805 if (bs
->drv
->bdrv_flush
)
806 bs
->drv
->bdrv_flush(bs
);
808 bdrv_flush(bs
->backing_hd
);
813 BlockDriverState
*bs
;
815 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
816 term_printf("%s:", bs
->device_name
);
817 term_printf(" type=");
822 case BDRV_TYPE_CDROM
:
823 term_printf("cdrom");
825 case BDRV_TYPE_FLOPPY
:
826 term_printf("floppy");
829 term_printf(" removable=%d", bs
->removable
);
831 term_printf(" locked=%d", bs
->locked
);
834 term_printf(" file=%s", bs
->filename
);
835 if (bs
->backing_file
[0] != '\0')
836 term_printf(" backing_file=%s", bs
->backing_file
);
837 term_printf(" ro=%d", bs
->read_only
);
838 term_printf(" drv=%s", bs
->drv
->format_name
);
840 term_printf(" encrypted");
842 term_printf(" [not inserted]");
848 void bdrv_get_backing_filename(BlockDriverState
*bs
,
849 char *filename
, int filename_size
)
851 if (!bs
->backing_hd
) {
852 pstrcpy(filename
, filename_size
, "");
854 pstrcpy(filename
, filename_size
, bs
->backing_file
);
858 int bdrv_write_compressed(BlockDriverState
*bs
, int64_t sector_num
,
859 const uint8_t *buf
, int nb_sectors
)
861 BlockDriver
*drv
= bs
->drv
;
864 if (!drv
->bdrv_write_compressed
)
866 return drv
->bdrv_write_compressed(bs
, sector_num
, buf
, nb_sectors
);
869 int bdrv_get_info(BlockDriverState
*bs
, BlockDriverInfo
*bdi
)
871 BlockDriver
*drv
= bs
->drv
;
874 if (!drv
->bdrv_get_info
)
876 memset(bdi
, 0, sizeof(*bdi
));
877 return drv
->bdrv_get_info(bs
, bdi
);
880 /**************************************************************/
881 /* handling of snapshots */
883 int bdrv_snapshot_create(BlockDriverState
*bs
,
884 QEMUSnapshotInfo
*sn_info
)
886 BlockDriver
*drv
= bs
->drv
;
889 if (!drv
->bdrv_snapshot_create
)
891 return drv
->bdrv_snapshot_create(bs
, sn_info
);
894 int bdrv_snapshot_goto(BlockDriverState
*bs
,
895 const char *snapshot_id
)
897 BlockDriver
*drv
= bs
->drv
;
900 if (!drv
->bdrv_snapshot_goto
)
902 return drv
->bdrv_snapshot_goto(bs
, snapshot_id
);
905 int bdrv_snapshot_delete(BlockDriverState
*bs
, const char *snapshot_id
)
907 BlockDriver
*drv
= bs
->drv
;
910 if (!drv
->bdrv_snapshot_delete
)
912 return drv
->bdrv_snapshot_delete(bs
, snapshot_id
);
915 int bdrv_snapshot_list(BlockDriverState
*bs
,
916 QEMUSnapshotInfo
**psn_info
)
918 BlockDriver
*drv
= bs
->drv
;
921 if (!drv
->bdrv_snapshot_list
)
923 return drv
->bdrv_snapshot_list(bs
, psn_info
);
926 #define NB_SUFFIXES 4
928 char *get_human_readable_size(char *buf
, int buf_size
, int64_t size
)
930 static const char suffixes
[NB_SUFFIXES
] = "KMGT";
935 snprintf(buf
, buf_size
, "%" PRId64
, size
);
938 for(i
= 0; i
< NB_SUFFIXES
; i
++) {
939 if (size
< (10 * base
)) {
940 snprintf(buf
, buf_size
, "%0.1f%c",
944 } else if (size
< (1000 * base
) || i
== (NB_SUFFIXES
- 1)) {
945 snprintf(buf
, buf_size
, "%" PRId64
"%c",
946 ((size
+ (base
>> 1)) / base
),
956 char *bdrv_snapshot_dump(char *buf
, int buf_size
, QEMUSnapshotInfo
*sn
)
958 char buf1
[128], date_buf
[128], clock_buf
[128];
964 snprintf(buf
, buf_size
,
965 "%-10s%-20s%7s%20s%15s",
966 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
969 localtime_r(&ti
, &tm
);
970 strftime(date_buf
, sizeof(date_buf
),
971 "%Y-%m-%d %H:%M:%S", &tm
);
972 secs
= sn
->vm_clock_nsec
/ 1000000000;
973 snprintf(clock_buf
, sizeof(clock_buf
),
974 "%02d:%02d:%02d.%03d",
976 (int)((secs
/ 60) % 60),
978 (int)((sn
->vm_clock_nsec
/ 1000000) % 1000));
979 snprintf(buf
, buf_size
,
980 "%-10s%-20s%7s%20s%15s",
981 sn
->id_str
, sn
->name
,
982 get_human_readable_size(buf1
, sizeof(buf1
), sn
->vm_state_size
),
990 /**************************************************************/
993 BlockDriverAIOCB
*bdrv_aio_new(BlockDriverState
*bs
)
995 BlockDriver
*drv
= bs
->drv
;
996 BlockDriverAIOCB
*acb
;
997 acb
= qemu_mallocz(sizeof(BlockDriverAIOCB
));
1002 if (drv
->bdrv_aio_new(acb
) < 0) {
1009 int bdrv_aio_read(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1010 uint8_t *buf
, int nb_sectors
,
1011 BlockDriverCompletionFunc
*cb
, void *opaque
)
1013 BlockDriverState
*bs
= acb
->bs
;
1014 BlockDriver
*drv
= bs
->drv
;
1019 /* XXX: we assume that nb_sectors == 0 is suppored by the async read */
1020 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
1021 memcpy(buf
, bs
->boot_sector_data
, 512);
1028 acb
->cb_opaque
= opaque
;
1029 return drv
->bdrv_aio_read(acb
, sector_num
, buf
, nb_sectors
);
1032 int bdrv_aio_write(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1033 const uint8_t *buf
, int nb_sectors
,
1034 BlockDriverCompletionFunc
*cb
, void *opaque
)
1036 BlockDriverState
*bs
= acb
->bs
;
1037 BlockDriver
*drv
= bs
->drv
;
1043 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
1044 memcpy(bs
->boot_sector_data
, buf
, 512);
1048 acb
->cb_opaque
= opaque
;
1049 return drv
->bdrv_aio_write(acb
, sector_num
, buf
, nb_sectors
);
1052 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
1054 BlockDriverState
*bs
= acb
->bs
;
1055 BlockDriver
*drv
= bs
->drv
;
1057 drv
->bdrv_aio_cancel(acb
);
1060 void bdrv_aio_delete(BlockDriverAIOCB
*acb
)
1062 BlockDriverState
*bs
= acb
->bs
;
1063 BlockDriver
*drv
= bs
->drv
;
1065 drv
->bdrv_aio_delete(acb
);
1069 /**************************************************************/
1070 /* async block device emulation */
1073 static int bdrv_aio_new_em(BlockDriverAIOCB
*acb
)
1078 static int bdrv_aio_read_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1079 uint8_t *buf
, int nb_sectors
)
1082 ret
= bdrv_read(acb
->bs
, sector_num
, buf
, nb_sectors
);
1083 acb
->cb(acb
->cb_opaque
, ret
);
1087 static int bdrv_aio_write_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1088 const uint8_t *buf
, int nb_sectors
)
1091 ret
= bdrv_write(acb
->bs
, sector_num
, buf
, nb_sectors
);
1092 acb
->cb(acb
->cb_opaque
, ret
);
1096 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
)
1100 static void bdrv_aio_delete_em(BlockDriverAIOCB
*acb
)
1104 typedef struct BlockDriverAIOCBSync
{
1107 } BlockDriverAIOCBSync
;
1109 static void bdrv_aio_bh_cb(void *opaque
)
1111 BlockDriverAIOCB
*acb
= opaque
;
1112 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1113 acb
->cb(acb
->cb_opaque
, acb1
->ret
);
1116 static int bdrv_aio_new_em(BlockDriverAIOCB
*acb
)
1118 BlockDriverAIOCBSync
*acb1
;
1120 acb1
= qemu_mallocz(sizeof(BlockDriverAIOCBSync
));
1124 acb1
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1128 static int bdrv_aio_read_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1129 uint8_t *buf
, int nb_sectors
)
1131 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1134 ret
= bdrv_read(acb
->bs
, sector_num
, buf
, nb_sectors
);
1136 qemu_bh_schedule(acb1
->bh
);
1140 static int bdrv_aio_write_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1141 const uint8_t *buf
, int nb_sectors
)
1143 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1146 ret
= bdrv_write(acb
->bs
, sector_num
, buf
, nb_sectors
);
1148 qemu_bh_schedule(acb1
->bh
);
1152 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
)
1154 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1155 qemu_bh_cancel(acb1
->bh
);
1158 static void bdrv_aio_delete_em(BlockDriverAIOCB
*acb
)
1160 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1161 qemu_bh_delete(acb1
->bh
);
1163 #endif /* !QEMU_TOOL */
1165 /**************************************************************/
1166 /* sync block device emulation */
1168 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1170 *(int *)opaque
= ret
;
1173 #define NOT_DONE 0x7fffffff
1175 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1176 uint8_t *buf
, int nb_sectors
)
1180 if (!bs
->sync_aiocb
) {
1181 bs
->sync_aiocb
= bdrv_aio_new(bs
);
1182 if (!bs
->sync_aiocb
)
1185 async_ret
= NOT_DONE
;
1186 qemu_aio_wait_start();
1187 ret
= bdrv_aio_read(bs
->sync_aiocb
, sector_num
, buf
, nb_sectors
,
1188 bdrv_rw_em_cb
, &async_ret
);
1190 qemu_aio_wait_end();
1193 while (async_ret
== NOT_DONE
) {
1196 qemu_aio_wait_end();
1200 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1201 const uint8_t *buf
, int nb_sectors
)
1205 if (!bs
->sync_aiocb
) {
1206 bs
->sync_aiocb
= bdrv_aio_new(bs
);
1207 if (!bs
->sync_aiocb
)
1210 async_ret
= NOT_DONE
;
1211 qemu_aio_wait_start();
1212 ret
= bdrv_aio_write(bs
->sync_aiocb
, sector_num
, buf
, nb_sectors
,
1213 bdrv_rw_em_cb
, &async_ret
);
1215 qemu_aio_wait_end();
1218 while (async_ret
== NOT_DONE
) {
1221 qemu_aio_wait_end();
1225 void bdrv_init(void)
1227 bdrv_register(&bdrv_raw
);
1229 bdrv_register(&bdrv_cow
);
1231 bdrv_register(&bdrv_qcow
);
1232 bdrv_register(&bdrv_vmdk
);
1233 bdrv_register(&bdrv_cloop
);
1234 bdrv_register(&bdrv_dmg
);
1235 bdrv_register(&bdrv_bochs
);
1236 bdrv_register(&bdrv_vpc
);
1237 bdrv_register(&bdrv_vvfat
);
1238 bdrv_register(&bdrv_qcow2
);