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
);
498 /* not necessary now */
499 static int bdrv_pread_em(BlockDriverState
*bs
, int64_t offset
,
500 void *buf1
, int count1
)
503 uint8_t tmp_buf
[SECTOR_SIZE
];
504 int len
, nb_sectors
, count
;
508 /* first read to align to sector start */
509 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
512 sector_num
= offset
>> SECTOR_BITS
;
514 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
516 memcpy(buf
, tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), len
);
524 /* read the sectors "in place" */
525 nb_sectors
= count
>> SECTOR_BITS
;
526 if (nb_sectors
> 0) {
527 if (bdrv_read(bs
, sector_num
, buf
, nb_sectors
) < 0)
529 sector_num
+= nb_sectors
;
530 len
= nb_sectors
<< SECTOR_BITS
;
535 /* add data from the last sector */
537 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
539 memcpy(buf
, tmp_buf
, count
);
544 static int bdrv_pwrite_em(BlockDriverState
*bs
, int64_t offset
,
545 const void *buf1
, int count1
)
547 const uint8_t *buf
= buf1
;
548 uint8_t tmp_buf
[SECTOR_SIZE
];
549 int len
, nb_sectors
, count
;
553 /* first write to align to sector start */
554 len
= (SECTOR_SIZE
- offset
) & (SECTOR_SIZE
- 1);
557 sector_num
= offset
>> SECTOR_BITS
;
559 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
561 memcpy(tmp_buf
+ (offset
& (SECTOR_SIZE
- 1)), buf
, len
);
562 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
571 /* write the sectors "in place" */
572 nb_sectors
= count
>> SECTOR_BITS
;
573 if (nb_sectors
> 0) {
574 if (bdrv_write(bs
, sector_num
, buf
, nb_sectors
) < 0)
576 sector_num
+= nb_sectors
;
577 len
= nb_sectors
<< SECTOR_BITS
;
582 /* add data from the last sector */
584 if (bdrv_read(bs
, sector_num
, tmp_buf
, 1) < 0)
586 memcpy(tmp_buf
, buf
, count
);
587 if (bdrv_write(bs
, sector_num
, tmp_buf
, 1) < 0)
595 * Read with byte offsets (needed only for file protocols)
597 int bdrv_pread(BlockDriverState
*bs
, int64_t offset
,
598 void *buf1
, int count1
)
600 BlockDriver
*drv
= bs
->drv
;
604 if (!drv
->bdrv_pread
)
606 return drv
->bdrv_pread(bs
, offset
, buf1
, count1
);
610 * Write with byte offsets (needed only for file protocols)
612 int bdrv_pwrite(BlockDriverState
*bs
, int64_t offset
,
613 const void *buf1
, int count1
)
615 BlockDriver
*drv
= bs
->drv
;
619 if (!drv
->bdrv_pwrite
)
621 return drv
->bdrv_pwrite(bs
, offset
, buf1
, count1
);
625 * Truncate file to 'offset' bytes (needed only for file protocols)
627 int bdrv_truncate(BlockDriverState
*bs
, int64_t offset
)
629 BlockDriver
*drv
= bs
->drv
;
632 if (!drv
->bdrv_truncate
)
634 return drv
->bdrv_truncate(bs
, offset
);
638 * Length of a file in bytes. Return < 0 if error or unknown.
640 int64_t bdrv_getlength(BlockDriverState
*bs
)
642 BlockDriver
*drv
= bs
->drv
;
645 if (!drv
->bdrv_getlength
) {
647 return bs
->total_sectors
* SECTOR_SIZE
;
649 return drv
->bdrv_getlength(bs
);
652 void bdrv_get_geometry(BlockDriverState
*bs
, int64_t *nb_sectors_ptr
)
655 size
= bdrv_getlength(bs
);
658 *nb_sectors_ptr
= size
>> SECTOR_BITS
;
661 /* force a given boot sector. */
662 void bdrv_set_boot_sector(BlockDriverState
*bs
, const uint8_t *data
, int size
)
664 bs
->boot_sector_enabled
= 1;
667 memcpy(bs
->boot_sector_data
, data
, size
);
668 memset(bs
->boot_sector_data
+ size
, 0, 512 - size
);
671 void bdrv_set_geometry_hint(BlockDriverState
*bs
,
672 int cyls
, int heads
, int secs
)
679 void bdrv_set_type_hint(BlockDriverState
*bs
, int type
)
682 bs
->removable
= ((type
== BDRV_TYPE_CDROM
||
683 type
== BDRV_TYPE_FLOPPY
));
686 void bdrv_set_translation_hint(BlockDriverState
*bs
, int translation
)
688 bs
->translation
= translation
;
691 void bdrv_get_geometry_hint(BlockDriverState
*bs
,
692 int *pcyls
, int *pheads
, int *psecs
)
699 int bdrv_get_type_hint(BlockDriverState
*bs
)
704 int bdrv_get_translation_hint(BlockDriverState
*bs
)
706 return bs
->translation
;
709 int bdrv_is_removable(BlockDriverState
*bs
)
711 return bs
->removable
;
714 int bdrv_is_read_only(BlockDriverState
*bs
)
716 return bs
->read_only
;
719 int bdrv_is_inserted(BlockDriverState
*bs
)
724 int bdrv_is_locked(BlockDriverState
*bs
)
729 void bdrv_set_locked(BlockDriverState
*bs
, int locked
)
734 void bdrv_set_change_cb(BlockDriverState
*bs
,
735 void (*change_cb
)(void *opaque
), void *opaque
)
737 bs
->change_cb
= change_cb
;
738 bs
->change_opaque
= opaque
;
741 int bdrv_is_encrypted(BlockDriverState
*bs
)
743 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
)
745 return bs
->encrypted
;
748 int bdrv_set_key(BlockDriverState
*bs
, const char *key
)
751 if (bs
->backing_hd
&& bs
->backing_hd
->encrypted
) {
752 ret
= bdrv_set_key(bs
->backing_hd
, key
);
758 if (!bs
->encrypted
|| !bs
->drv
|| !bs
->drv
->bdrv_set_key
)
760 return bs
->drv
->bdrv_set_key(bs
, key
);
763 void bdrv_get_format(BlockDriverState
*bs
, char *buf
, int buf_size
)
765 if (!bs
->inserted
|| !bs
->drv
) {
768 pstrcpy(buf
, buf_size
, bs
->drv
->format_name
);
772 void bdrv_iterate_format(void (*it
)(void *opaque
, const char *name
),
777 for (drv
= first_drv
; drv
!= NULL
; drv
= drv
->next
) {
778 it(opaque
, drv
->format_name
);
782 BlockDriverState
*bdrv_find(const char *name
)
784 BlockDriverState
*bs
;
786 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
787 if (!strcmp(name
, bs
->device_name
))
793 void bdrv_iterate(void (*it
)(void *opaque
, const char *name
), void *opaque
)
795 BlockDriverState
*bs
;
797 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
798 it(opaque
, bs
->device_name
);
802 const char *bdrv_get_device_name(BlockDriverState
*bs
)
804 return bs
->device_name
;
807 void bdrv_flush(BlockDriverState
*bs
)
809 if (bs
->drv
->bdrv_flush
)
810 bs
->drv
->bdrv_flush(bs
);
812 bdrv_flush(bs
->backing_hd
);
817 BlockDriverState
*bs
;
819 for (bs
= bdrv_first
; bs
!= NULL
; bs
= bs
->next
) {
820 term_printf("%s:", bs
->device_name
);
821 term_printf(" type=");
826 case BDRV_TYPE_CDROM
:
827 term_printf("cdrom");
829 case BDRV_TYPE_FLOPPY
:
830 term_printf("floppy");
833 term_printf(" removable=%d", bs
->removable
);
835 term_printf(" locked=%d", bs
->locked
);
838 term_printf(" file=%s", bs
->filename
);
839 if (bs
->backing_file
[0] != '\0')
840 term_printf(" backing_file=%s", bs
->backing_file
);
841 term_printf(" ro=%d", bs
->read_only
);
842 term_printf(" drv=%s", bs
->drv
->format_name
);
844 term_printf(" encrypted");
846 term_printf(" [not inserted]");
852 void bdrv_get_backing_filename(BlockDriverState
*bs
,
853 char *filename
, int filename_size
)
855 if (!bs
->backing_hd
) {
856 pstrcpy(filename
, filename_size
, "");
858 pstrcpy(filename
, filename_size
, bs
->backing_file
);
863 /**************************************************************/
866 BlockDriverAIOCB
*bdrv_aio_new(BlockDriverState
*bs
)
868 BlockDriver
*drv
= bs
->drv
;
869 BlockDriverAIOCB
*acb
;
870 acb
= qemu_mallocz(sizeof(BlockDriverAIOCB
));
875 if (drv
->bdrv_aio_new(acb
) < 0) {
882 int bdrv_aio_read(BlockDriverAIOCB
*acb
, int64_t sector_num
,
883 uint8_t *buf
, int nb_sectors
,
884 BlockDriverCompletionFunc
*cb
, void *opaque
)
886 BlockDriverState
*bs
= acb
->bs
;
887 BlockDriver
*drv
= bs
->drv
;
892 /* XXX: we assume that nb_sectors == 0 is suppored by the async read */
893 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
894 memcpy(buf
, bs
->boot_sector_data
, 512);
901 acb
->cb_opaque
= opaque
;
902 return drv
->bdrv_aio_read(acb
, sector_num
, buf
, nb_sectors
);
905 int bdrv_aio_write(BlockDriverAIOCB
*acb
, int64_t sector_num
,
906 const uint8_t *buf
, int nb_sectors
,
907 BlockDriverCompletionFunc
*cb
, void *opaque
)
909 BlockDriverState
*bs
= acb
->bs
;
910 BlockDriver
*drv
= bs
->drv
;
916 if (sector_num
== 0 && bs
->boot_sector_enabled
&& nb_sectors
> 0) {
917 memcpy(bs
->boot_sector_data
, buf
, 512);
921 acb
->cb_opaque
= opaque
;
922 return drv
->bdrv_aio_write(acb
, sector_num
, buf
, nb_sectors
);
925 void bdrv_aio_cancel(BlockDriverAIOCB
*acb
)
927 BlockDriverState
*bs
= acb
->bs
;
928 BlockDriver
*drv
= bs
->drv
;
930 drv
->bdrv_aio_cancel(acb
);
933 void bdrv_aio_delete(BlockDriverAIOCB
*acb
)
935 BlockDriverState
*bs
= acb
->bs
;
936 BlockDriver
*drv
= bs
->drv
;
938 drv
->bdrv_aio_delete(acb
);
942 /**************************************************************/
943 /* async block device emulation */
946 static int bdrv_aio_new_em(BlockDriverAIOCB
*acb
)
951 static int bdrv_aio_read_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
952 uint8_t *buf
, int nb_sectors
)
955 ret
= bdrv_read(acb
->bs
, sector_num
, buf
, nb_sectors
);
956 acb
->cb(acb
->cb_opaque
, ret
);
960 static int bdrv_aio_write_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
961 const uint8_t *buf
, int nb_sectors
)
964 ret
= bdrv_write(acb
->bs
, sector_num
, buf
, nb_sectors
);
965 acb
->cb(acb
->cb_opaque
, ret
);
969 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
)
973 static void bdrv_aio_delete_em(BlockDriverAIOCB
*acb
)
977 typedef struct BlockDriverAIOCBSync
{
980 } BlockDriverAIOCBSync
;
982 static void bdrv_aio_bh_cb(void *opaque
)
984 BlockDriverAIOCB
*acb
= opaque
;
985 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
986 acb
->cb(acb
->cb_opaque
, acb1
->ret
);
989 static int bdrv_aio_new_em(BlockDriverAIOCB
*acb
)
991 BlockDriverAIOCBSync
*acb1
;
993 acb1
= qemu_mallocz(sizeof(BlockDriverAIOCBSync
));
997 acb1
->bh
= qemu_bh_new(bdrv_aio_bh_cb
, acb
);
1001 static int bdrv_aio_read_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1002 uint8_t *buf
, int nb_sectors
)
1004 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1007 ret
= bdrv_read(acb
->bs
, sector_num
, buf
, nb_sectors
);
1009 qemu_bh_schedule(acb1
->bh
);
1013 static int bdrv_aio_write_em(BlockDriverAIOCB
*acb
, int64_t sector_num
,
1014 const uint8_t *buf
, int nb_sectors
)
1016 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1019 ret
= bdrv_write(acb
->bs
, sector_num
, buf
, nb_sectors
);
1021 qemu_bh_schedule(acb1
->bh
);
1025 static void bdrv_aio_cancel_em(BlockDriverAIOCB
*acb
)
1027 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1028 qemu_bh_cancel(acb1
->bh
);
1031 static void bdrv_aio_delete_em(BlockDriverAIOCB
*acb
)
1033 BlockDriverAIOCBSync
*acb1
= acb
->opaque
;
1034 qemu_bh_delete(acb1
->bh
);
1036 #endif /* !QEMU_TOOL */
1038 /**************************************************************/
1039 /* sync block device emulation */
1041 static void bdrv_rw_em_cb(void *opaque
, int ret
)
1043 *(int *)opaque
= ret
;
1046 #define NOT_DONE 0x7fffffff
1048 static int bdrv_read_em(BlockDriverState
*bs
, int64_t sector_num
,
1049 uint8_t *buf
, int nb_sectors
)
1053 if (!bs
->sync_aiocb
) {
1054 bs
->sync_aiocb
= bdrv_aio_new(bs
);
1055 if (!bs
->sync_aiocb
)
1058 async_ret
= NOT_DONE
;
1059 qemu_aio_wait_start();
1060 ret
= bdrv_aio_read(bs
->sync_aiocb
, sector_num
, buf
, nb_sectors
,
1061 bdrv_rw_em_cb
, &async_ret
);
1063 qemu_aio_wait_end();
1066 while (async_ret
== NOT_DONE
) {
1069 qemu_aio_wait_end();
1073 static int bdrv_write_em(BlockDriverState
*bs
, int64_t sector_num
,
1074 const uint8_t *buf
, int nb_sectors
)
1078 if (!bs
->sync_aiocb
) {
1079 bs
->sync_aiocb
= bdrv_aio_new(bs
);
1080 if (!bs
->sync_aiocb
)
1083 async_ret
= NOT_DONE
;
1084 qemu_aio_wait_start();
1085 ret
= bdrv_aio_write(bs
->sync_aiocb
, sector_num
, buf
, nb_sectors
,
1086 bdrv_rw_em_cb
, &async_ret
);
1088 qemu_aio_wait_end();
1091 while (async_ret
== NOT_DONE
) {
1094 qemu_aio_wait_end();
1098 void bdrv_init(void)
1100 bdrv_register(&bdrv_raw
);
1102 bdrv_register(&bdrv_cow
);
1104 bdrv_register(&bdrv_qcow
);
1105 bdrv_register(&bdrv_vmdk
);
1106 bdrv_register(&bdrv_cloop
);
1107 bdrv_register(&bdrv_dmg
);
1108 bdrv_register(&bdrv_bochs
);
1109 bdrv_register(&bdrv_vpc
);
1110 bdrv_register(&bdrv_vvfat
);