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>
48 #define SECTOR_SIZE (1 << SECTOR_BITS)
50 typedef struct BlockDriverAIOCBSync {
51 BlockDriverAIOCB common;
54 /* vector translation state */
58 } BlockDriverAIOCBSync;
60 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
61 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
62 BlockDriverCompletionFunc *cb, void *opaque);
63 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
64 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
65 BlockDriverCompletionFunc *cb, void *opaque);
66 static void bdrv_aio_cancel_em(BlockDriverAIOCB *acb);
67 static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
68 uint8_t *buf, int nb_sectors);
69 static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
70 const uint8_t *buf, int nb_sectors);
72 BlockDriverState *bdrv_first;
74 static BlockDriver *first_drv;
76 int path_is_absolute(const char *path)
80 /* specific case for names like: "\\.\d:" */
81 if (*path == '/' || *path == '\\')
84 p = strchr(path, ':');
90 return (*p == '/' || *p == '\\');
96 /* if filename is absolute, just copy it to dest. Otherwise, build a
97 path to it by considering it is relative to base_path. URL are
99 void path_combine(char *dest, int dest_size,
100 const char *base_path,
101 const char *filename)
108 if (path_is_absolute(filename)) {
109 pstrcpy(dest, dest_size, filename);
111 p = strchr(base_path, ':');
116 p1 = strrchr(base_path, '/');
120 p2 = strrchr(base_path, '\\');
132 if (len > dest_size - 1)
134 memcpy(dest, base_path, len);
136 pstrcat(dest, dest_size, filename);
141 static void bdrv_register(BlockDriver *bdrv)
143 if (!bdrv->bdrv_aio_readv) {
144 /* add AIO emulation layer */
145 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
146 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
147 bdrv->bdrv_aio_cancel = bdrv_aio_cancel_em;
148 bdrv->aiocb_size = sizeof(BlockDriverAIOCBSync);
149 } else if (!bdrv->bdrv_read) {
150 /* add synchronous IO emulation layer */
151 bdrv->bdrv_read = bdrv_read_em;
152 bdrv->bdrv_write = bdrv_write_em;
154 aio_pool_init(&bdrv->aio_pool, bdrv->aiocb_size, bdrv->bdrv_aio_cancel);
155 bdrv->next = first_drv;
159 /* create a new block device (by default it is empty) */
160 BlockDriverState *bdrv_new(const char *device_name)
162 BlockDriverState **pbs, *bs;
164 bs = qemu_mallocz(sizeof(BlockDriverState));
165 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
166 if (device_name[0] != '\0') {
167 /* insert at the end */
176 BlockDriver *bdrv_find_format(const char *format_name)
179 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
180 if (!strcmp(drv1->format_name, format_name))
186 int bdrv_create2(BlockDriver *drv,
187 const char *filename, int64_t size_in_sectors,
188 const char *backing_file, const char *backing_format,
191 if (drv->bdrv_create2)
192 return drv->bdrv_create2(filename, size_in_sectors, backing_file,
193 backing_format, flags);
194 if (drv->bdrv_create)
195 return drv->bdrv_create(filename, size_in_sectors, backing_file,
200 int bdrv_create(BlockDriver *drv,
201 const char *filename, int64_t size_in_sectors,
202 const char *backing_file, int flags)
204 if (!drv->bdrv_create)
206 return drv->bdrv_create(filename, size_in_sectors, backing_file, flags);
210 void get_tmp_filename(char *filename, int size)
212 char temp_dir[MAX_PATH];
214 GetTempPath(MAX_PATH, temp_dir);
215 GetTempFileName(temp_dir, "qem", 0, filename);
218 void get_tmp_filename(char *filename, int size)
222 /* XXX: race condition possible */
223 tmpdir = getenv("TMPDIR");
226 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
227 fd = mkstemp(filename);
233 static int is_windows_drive_prefix(const char *filename)
235 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
236 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
240 static int is_windows_drive(const char *filename)
242 if (is_windows_drive_prefix(filename) &&
245 if (strstart(filename, "\\\\.\\", NULL) ||
246 strstart(filename, "//./", NULL))
252 static BlockDriver *find_protocol(const char *filename)
260 if (is_windows_drive(filename) ||
261 is_windows_drive_prefix(filename))
264 p = strchr(filename, ':');
268 if (len > sizeof(protocol) - 1)
269 len = sizeof(protocol) - 1;
270 memcpy(protocol, filename, len);
271 protocol[len] = '\0';
272 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
273 if (drv1->protocol_name &&
274 !strcmp(drv1->protocol_name, protocol))
280 /* XXX: force raw format if block or character device ? It would
281 simplify the BSD case */
282 static BlockDriver *find_image_format(const char *filename)
284 int ret, score, score_max;
285 BlockDriver *drv1, *drv;
287 BlockDriverState *bs;
289 /* detect host devices. By convention, /dev/cdrom[N] is always
290 recognized as a host CDROM */
291 if (strstart(filename, "/dev/cdrom", NULL))
292 return &bdrv_host_device;
294 if (is_windows_drive(filename))
295 return &bdrv_host_device;
299 if (stat(filename, &st) >= 0 &&
300 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
301 return &bdrv_host_device;
306 drv = find_protocol(filename);
307 /* no need to test disk image formats for vvfat */
308 if (drv == &bdrv_vvfat)
311 ret = bdrv_file_open(&bs, filename, BDRV_O_RDONLY);
314 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
321 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
322 if (drv1->bdrv_probe) {
323 score = drv1->bdrv_probe(buf, ret, filename);
324 if (score > score_max) {
333 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
335 BlockDriverState *bs;
339 ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL);
349 int bdrv_open(BlockDriverState *bs, const char *filename, int flags)
351 return bdrv_open2(bs, filename, flags, NULL);
354 int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
358 char tmp_filename[PATH_MAX];
359 char backing_filename[PATH_MAX];
362 bs->is_temporary = 0;
366 if (flags & BDRV_O_SNAPSHOT) {
367 BlockDriverState *bs1;
371 /* if snapshot, we create a temporary backing file and open it
372 instead of opening 'filename' directly */
374 /* if there is a backing file, use it */
376 ret = bdrv_open2(bs1, filename, 0, drv);
381 total_size = bdrv_getlength(bs1) >> SECTOR_BITS;
383 if (bs1->drv && bs1->drv->protocol_name)
388 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
390 /* Real path is meaningless for protocols */
392 snprintf(backing_filename, sizeof(backing_filename),
395 realpath(filename, backing_filename);
397 ret = bdrv_create2(&bdrv_qcow2, tmp_filename,
398 total_size, backing_filename,
399 (drv ? drv->format_name : NULL), 0);
403 filename = tmp_filename;
405 bs->is_temporary = 1;
408 pstrcpy(bs->filename, sizeof(bs->filename), filename);
409 if (flags & BDRV_O_FILE) {
410 drv = find_protocol(filename);
412 drv = find_image_format(filename);
416 goto unlink_and_fail;
419 bs->opaque = qemu_mallocz(drv->instance_size);
420 /* Note: for compatibility, we open disk image files as RDWR, and
421 RDONLY as fallback */
422 if (!(flags & BDRV_O_FILE))
423 open_flags = BDRV_O_RDWR | (flags & BDRV_O_CACHE_MASK);
425 open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
426 ret = drv->bdrv_open(bs, filename, open_flags);
427 if ((ret == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) {
428 ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR);
432 qemu_free(bs->opaque);
436 if (bs->is_temporary)
440 if (drv->bdrv_getlength) {
441 bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
444 if (bs->is_temporary) {
448 if (bs->backing_file[0] != '\0') {
449 /* if there is a backing file, use it */
450 BlockDriver *back_drv = NULL;
451 bs->backing_hd = bdrv_new("");
452 path_combine(backing_filename, sizeof(backing_filename),
453 filename, bs->backing_file);
454 if (bs->backing_format[0] != '\0')
455 back_drv = bdrv_find_format(bs->backing_format);
456 ret = bdrv_open2(bs->backing_hd, backing_filename, open_flags,
464 if (!bdrv_key_required(bs)) {
465 /* call the change callback */
466 bs->media_changed = 1;
468 bs->change_cb(bs->change_opaque);
473 void bdrv_close(BlockDriverState *bs)
477 bdrv_delete(bs->backing_hd);
478 bs->drv->bdrv_close(bs);
479 qemu_free(bs->opaque);
481 if (bs->is_temporary) {
482 unlink(bs->filename);
488 /* call the change callback */
489 bs->media_changed = 1;
491 bs->change_cb(bs->change_opaque);
495 void bdrv_delete(BlockDriverState *bs)
497 BlockDriverState **pbs;
500 while (*pbs != bs && *pbs != NULL)
509 /* commit COW file into the raw image */
510 int bdrv_commit(BlockDriverState *bs)
512 BlockDriver *drv = bs->drv;
513 int64_t i, total_sectors;
515 unsigned char sector[512];
524 if (!bs->backing_hd) {
528 total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
529 for (i = 0; i < total_sectors;) {
530 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
531 for(j = 0; j < n; j++) {
532 if (bdrv_read(bs, i, sector, 1) != 0) {
536 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
546 if (drv->bdrv_make_empty)
547 return drv->bdrv_make_empty(bs);
552 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
557 if (!bdrv_is_inserted(bs))
563 len = bdrv_getlength(bs);
565 if ((offset + size) > len)
571 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
574 return bdrv_check_byte_request(bs, sector_num * 512, nb_sectors * 512);
577 /* return < 0 if error. See bdrv_write() for the return codes */
578 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
579 uint8_t *buf, int nb_sectors)
581 BlockDriver *drv = bs->drv;
585 if (bdrv_check_request(bs, sector_num, nb_sectors))
588 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
591 /* Return < 0 if error. Important errors are:
592 -EIO generic I/O error (may happen for all errors)
593 -ENOMEDIUM No media inserted.
594 -EINVAL Invalid sector number or nb_sectors
595 -EACCES Trying to write a read-only device
597 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
598 const uint8_t *buf, int nb_sectors)
600 BlockDriver *drv = bs->drv;
605 if (bdrv_check_request(bs, sector_num, nb_sectors))
608 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
611 int bdrv_pread(BlockDriverState *bs, int64_t offset,
612 void *buf, int count1)
614 uint8_t tmp_buf[SECTOR_SIZE];
615 int len, nb_sectors, count;
619 /* first read to align to sector start */
620 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
623 sector_num = offset >> SECTOR_BITS;
625 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
627 memcpy(buf, tmp_buf + (offset & (SECTOR_SIZE - 1)), len);
635 /* read the sectors "in place" */
636 nb_sectors = count >> SECTOR_BITS;
637 if (nb_sectors > 0) {
638 if (bdrv_read(bs, sector_num, buf, nb_sectors) < 0)
640 sector_num += nb_sectors;
641 len = nb_sectors << SECTOR_BITS;
646 /* add data from the last sector */
648 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
650 memcpy(buf, tmp_buf, count);
655 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
656 const void *buf, int count1)
658 uint8_t tmp_buf[SECTOR_SIZE];
659 int len, nb_sectors, count;
663 /* first write to align to sector start */
664 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
667 sector_num = offset >> SECTOR_BITS;
669 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
671 memcpy(tmp_buf + (offset & (SECTOR_SIZE - 1)), buf, len);
672 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
681 /* write the sectors "in place" */
682 nb_sectors = count >> SECTOR_BITS;
683 if (nb_sectors > 0) {
684 if (bdrv_write(bs, sector_num, buf, nb_sectors) < 0)
686 sector_num += nb_sectors;
687 len = nb_sectors << SECTOR_BITS;
692 /* add data from the last sector */
694 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
696 memcpy(tmp_buf, buf, count);
697 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
704 * Truncate file to 'offset' bytes (needed only for file protocols)
706 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
708 BlockDriver *drv = bs->drv;
711 if (!drv->bdrv_truncate)
713 return drv->bdrv_truncate(bs, offset);
717 * Length of a file in bytes. Return < 0 if error or unknown.
719 int64_t bdrv_getlength(BlockDriverState *bs)
721 BlockDriver *drv = bs->drv;
724 if (!drv->bdrv_getlength) {
726 return bs->total_sectors * SECTOR_SIZE;
728 return drv->bdrv_getlength(bs);
731 /* return 0 as number of sectors if no device present or error */
732 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
735 length = bdrv_getlength(bs);
739 length = length >> SECTOR_BITS;
740 *nb_sectors_ptr = length;
744 uint8_t boot_ind; /* 0x80 - active */
745 uint8_t head; /* starting head */
746 uint8_t sector; /* starting sector */
747 uint8_t cyl; /* starting cylinder */
748 uint8_t sys_ind; /* What partition type */
749 uint8_t end_head; /* end head */
750 uint8_t end_sector; /* end sector */
751 uint8_t end_cyl; /* end cylinder */
752 uint32_t start_sect; /* starting sector counting from 0 */
753 uint32_t nr_sects; /* nr of sectors in partition */
754 } __attribute__((packed));
756 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
757 static int guess_disk_lchs(BlockDriverState *bs,
758 int *pcylinders, int *pheads, int *psectors)
761 int ret, i, heads, sectors, cylinders;
766 bdrv_get_geometry(bs, &nb_sectors);
768 ret = bdrv_read(bs, 0, buf, 1);
771 /* test msdos magic */
772 if (buf[510] != 0x55 || buf[511] != 0xaa)
774 for(i = 0; i < 4; i++) {
775 p = ((struct partition *)(buf + 0x1be)) + i;
776 nr_sects = le32_to_cpu(p->nr_sects);
777 if (nr_sects && p->end_head) {
778 /* We make the assumption that the partition terminates on
779 a cylinder boundary */
780 heads = p->end_head + 1;
781 sectors = p->end_sector & 63;
784 cylinders = nb_sectors / (heads * sectors);
785 if (cylinders < 1 || cylinders > 16383)
789 *pcylinders = cylinders;
791 printf("guessed geometry: LCHS=%d %d %d\n",
792 cylinders, heads, sectors);
800 void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
802 int translation, lba_detected = 0;
803 int cylinders, heads, secs;
806 /* if a geometry hint is available, use it */
807 bdrv_get_geometry(bs, &nb_sectors);
808 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
809 translation = bdrv_get_translation_hint(bs);
810 if (cylinders != 0) {
815 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
817 /* if heads > 16, it means that a BIOS LBA
818 translation was active, so the default
819 hardware geometry is OK */
821 goto default_geometry;
826 /* disable any translation to be in sync with
827 the logical geometry */
828 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
829 bdrv_set_translation_hint(bs,
830 BIOS_ATA_TRANSLATION_NONE);
835 /* if no geometry, use a standard physical disk geometry */
836 cylinders = nb_sectors / (16 * 63);
838 if (cylinders > 16383)
840 else if (cylinders < 2)
845 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
846 if ((*pcyls * *pheads) <= 131072) {
847 bdrv_set_translation_hint(bs,
848 BIOS_ATA_TRANSLATION_LARGE);
850 bdrv_set_translation_hint(bs,
851 BIOS_ATA_TRANSLATION_LBA);
855 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
859 void bdrv_set_geometry_hint(BlockDriverState *bs,
860 int cyls, int heads, int secs)
867 void bdrv_set_type_hint(BlockDriverState *bs, int type)
870 bs->removable = ((type == BDRV_TYPE_CDROM ||
871 type == BDRV_TYPE_FLOPPY));
874 void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
876 bs->translation = translation;
879 void bdrv_get_geometry_hint(BlockDriverState *bs,
880 int *pcyls, int *pheads, int *psecs)
887 int bdrv_get_type_hint(BlockDriverState *bs)
892 int bdrv_get_translation_hint(BlockDriverState *bs)
894 return bs->translation;
897 int bdrv_is_removable(BlockDriverState *bs)
899 return bs->removable;
902 int bdrv_is_read_only(BlockDriverState *bs)
904 return bs->read_only;
907 int bdrv_is_sg(BlockDriverState *bs)
912 /* XXX: no longer used */
913 void bdrv_set_change_cb(BlockDriverState *bs,
914 void (*change_cb)(void *opaque), void *opaque)
916 bs->change_cb = change_cb;
917 bs->change_opaque = opaque;
920 int bdrv_is_encrypted(BlockDriverState *bs)
922 if (bs->backing_hd && bs->backing_hd->encrypted)
924 return bs->encrypted;
927 int bdrv_key_required(BlockDriverState *bs)
929 BlockDriverState *backing_hd = bs->backing_hd;
931 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
933 return (bs->encrypted && !bs->valid_key);
936 int bdrv_set_key(BlockDriverState *bs, const char *key)
939 if (bs->backing_hd && bs->backing_hd->encrypted) {
940 ret = bdrv_set_key(bs->backing_hd, key);
946 if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key)
948 ret = bs->drv->bdrv_set_key(bs, key);
951 } else if (!bs->valid_key) {
953 /* call the change callback now, we skipped it on open */
954 bs->media_changed = 1;
956 bs->change_cb(bs->change_opaque);
961 void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
966 pstrcpy(buf, buf_size, bs->drv->format_name);
970 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
975 for (drv = first_drv; drv != NULL; drv = drv->next) {
976 it(opaque, drv->format_name);
980 BlockDriverState *bdrv_find(const char *name)
982 BlockDriverState *bs;
984 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
985 if (!strcmp(name, bs->device_name))
991 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
993 BlockDriverState *bs;
995 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1000 const char *bdrv_get_device_name(BlockDriverState *bs)
1002 return bs->device_name;
1005 void bdrv_flush(BlockDriverState *bs)
1009 if (bs->drv->bdrv_flush)
1010 bs->drv->bdrv_flush(bs);
1012 bdrv_flush(bs->backing_hd);
1015 void bdrv_flush_all(void)
1017 BlockDriverState *bs;
1019 for (bs = bdrv_first; bs != NULL; bs = bs->next)
1020 if (bs->drv && !bdrv_is_read_only(bs) &&
1021 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs)))
1026 * Returns true iff the specified sector is present in the disk image. Drivers
1027 * not implementing the functionality are assumed to not support backing files,
1028 * hence all their sectors are reported as allocated.
1030 * 'pnum' is set to the number of sectors (including and immediately following
1031 * the specified sector) that are known to be in the same
1032 * allocated/unallocated state.
1034 * 'nb_sectors' is the max value 'pnum' should be set to.
1036 int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1040 if (!bs->drv->bdrv_is_allocated) {
1041 if (sector_num >= bs->total_sectors) {
1045 n = bs->total_sectors - sector_num;
1046 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1049 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1052 void bdrv_info(Monitor *mon)
1054 BlockDriverState *bs;
1056 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1057 monitor_printf(mon, "%s:", bs->device_name);
1058 monitor_printf(mon, " type=");
1061 monitor_printf(mon, "hd");
1063 case BDRV_TYPE_CDROM:
1064 monitor_printf(mon, "cdrom");
1066 case BDRV_TYPE_FLOPPY:
1067 monitor_printf(mon, "floppy");
1070 monitor_printf(mon, " removable=%d", bs->removable);
1071 if (bs->removable) {
1072 monitor_printf(mon, " locked=%d", bs->locked);
1075 monitor_printf(mon, " file=");
1076 monitor_print_filename(mon, bs->filename);
1077 if (bs->backing_file[0] != '\0') {
1078 monitor_printf(mon, " backing_file=");
1079 monitor_print_filename(mon, bs->backing_file);
1081 monitor_printf(mon, " ro=%d", bs->read_only);
1082 monitor_printf(mon, " drv=%s", bs->drv->format_name);
1083 monitor_printf(mon, " encrypted=%d", bdrv_is_encrypted(bs));
1085 monitor_printf(mon, " [not inserted]");
1087 monitor_printf(mon, "\n");
1091 /* The "info blockstats" command. */
1092 void bdrv_info_stats(Monitor *mon)
1094 BlockDriverState *bs;
1096 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1097 monitor_printf(mon, "%s:"
1098 " rd_bytes=%" PRIu64
1099 " wr_bytes=%" PRIu64
1100 " rd_operations=%" PRIu64
1101 " wr_operations=%" PRIu64
1104 bs->rd_bytes, bs->wr_bytes,
1105 bs->rd_ops, bs->wr_ops);
1109 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1111 if (bs->backing_hd && bs->backing_hd->encrypted)
1112 return bs->backing_file;
1113 else if (bs->encrypted)
1114 return bs->filename;
1119 void bdrv_get_backing_filename(BlockDriverState *bs,
1120 char *filename, int filename_size)
1122 if (!bs->backing_hd) {
1123 pstrcpy(filename, filename_size, "");
1125 pstrcpy(filename, filename_size, bs->backing_file);
1129 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
1130 const uint8_t *buf, int nb_sectors)
1132 BlockDriver *drv = bs->drv;
1135 if (!drv->bdrv_write_compressed)
1137 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1140 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1142 BlockDriver *drv = bs->drv;
1145 if (!drv->bdrv_get_info)
1147 memset(bdi, 0, sizeof(*bdi));
1148 return drv->bdrv_get_info(bs, bdi);
1151 int bdrv_put_buffer(BlockDriverState *bs, const uint8_t *buf, int64_t pos, int size)
1153 BlockDriver *drv = bs->drv;
1156 if (!drv->bdrv_put_buffer)
1158 return drv->bdrv_put_buffer(bs, buf, pos, size);
1161 int bdrv_get_buffer(BlockDriverState *bs, uint8_t *buf, int64_t pos, int size)
1163 BlockDriver *drv = bs->drv;
1166 if (!drv->bdrv_get_buffer)
1168 return drv->bdrv_get_buffer(bs, buf, pos, size);
1171 /**************************************************************/
1172 /* handling of snapshots */
1174 int bdrv_snapshot_create(BlockDriverState *bs,
1175 QEMUSnapshotInfo *sn_info)
1177 BlockDriver *drv = bs->drv;
1180 if (!drv->bdrv_snapshot_create)
1182 return drv->bdrv_snapshot_create(bs, sn_info);
1185 int bdrv_snapshot_goto(BlockDriverState *bs,
1186 const char *snapshot_id)
1188 BlockDriver *drv = bs->drv;
1191 if (!drv->bdrv_snapshot_goto)
1193 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1196 int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1198 BlockDriver *drv = bs->drv;
1201 if (!drv->bdrv_snapshot_delete)
1203 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1206 int bdrv_snapshot_list(BlockDriverState *bs,
1207 QEMUSnapshotInfo **psn_info)
1209 BlockDriver *drv = bs->drv;
1212 if (!drv->bdrv_snapshot_list)
1214 return drv->bdrv_snapshot_list(bs, psn_info);
1217 #define NB_SUFFIXES 4
1219 char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1221 static const char suffixes[NB_SUFFIXES] = "KMGT";
1226 snprintf(buf, buf_size, "%" PRId64, size);
1229 for(i = 0; i < NB_SUFFIXES; i++) {
1230 if (size < (10 * base)) {
1231 snprintf(buf, buf_size, "%0.1f%c",
1232 (double)size / base,
1235 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
1236 snprintf(buf, buf_size, "%" PRId64 "%c",
1237 ((size + (base >> 1)) / base),
1247 char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1249 char buf1[128], date_buf[128], clock_buf[128];
1259 snprintf(buf, buf_size,
1260 "%-10s%-20s%7s%20s%15s",
1261 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1265 ptm = localtime(&ti);
1266 strftime(date_buf, sizeof(date_buf),
1267 "%Y-%m-%d %H:%M:%S", ptm);
1269 localtime_r(&ti, &tm);
1270 strftime(date_buf, sizeof(date_buf),
1271 "%Y-%m-%d %H:%M:%S", &tm);
1273 secs = sn->vm_clock_nsec / 1000000000;
1274 snprintf(clock_buf, sizeof(clock_buf),
1275 "%02d:%02d:%02d.%03d",
1277 (int)((secs / 60) % 60),
1279 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1280 snprintf(buf, buf_size,
1281 "%-10s%-20s%7s%20s%15s",
1282 sn->id_str, sn->name,
1283 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1291 /**************************************************************/
1294 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1295 QEMUIOVector *qiov, int nb_sectors,
1296 BlockDriverCompletionFunc *cb, void *opaque)
1298 BlockDriver *drv = bs->drv;
1299 BlockDriverAIOCB *ret;
1303 if (bdrv_check_request(bs, sector_num, nb_sectors))
1306 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
1310 /* Update stats even though technically transfer has not happened. */
1311 bs->rd_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1318 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1319 QEMUIOVector *qiov, int nb_sectors,
1320 BlockDriverCompletionFunc *cb, void *opaque)
1322 BlockDriver *drv = bs->drv;
1323 BlockDriverAIOCB *ret;
1329 if (bdrv_check_request(bs, sector_num, nb_sectors))
1332 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
1336 /* Update stats even though technically transfer has not happened. */
1337 bs->wr_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1344 void bdrv_aio_cancel(BlockDriverAIOCB *acb)
1346 acb->pool->cancel(acb);
1350 /**************************************************************/
1351 /* async block device emulation */
1353 static void bdrv_aio_bh_cb(void *opaque)
1355 BlockDriverAIOCBSync *acb = opaque;
1358 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
1359 qemu_vfree(acb->bounce);
1360 acb->common.cb(acb->common.opaque, acb->ret);
1362 qemu_aio_release(acb);
1365 static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
1369 BlockDriverCompletionFunc *cb,
1374 BlockDriverAIOCBSync *acb;
1376 acb = qemu_aio_get(bs, cb, opaque);
1377 acb->is_write = is_write;
1379 acb->bounce = qemu_memalign(512, qiov->size);
1382 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1385 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
1386 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
1388 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
1391 qemu_bh_schedule(acb->bh);
1393 return &acb->common;
1396 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
1397 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1398 BlockDriverCompletionFunc *cb, void *opaque)
1400 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
1403 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
1404 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1405 BlockDriverCompletionFunc *cb, void *opaque)
1407 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
1411 static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
1413 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
1414 qemu_bh_cancel(acb->bh);
1415 qemu_aio_release(acb);
1418 /**************************************************************/
1419 /* sync block device emulation */
1421 static void bdrv_rw_em_cb(void *opaque, int ret)
1423 *(int *)opaque = ret;
1426 #define NOT_DONE 0x7fffffff
1428 static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
1429 uint8_t *buf, int nb_sectors)
1432 BlockDriverAIOCB *acb;
1436 async_ret = NOT_DONE;
1437 iov.iov_base = (void *)buf;
1438 iov.iov_len = nb_sectors * 512;
1439 qemu_iovec_init_external(&qiov, &iov, 1);
1440 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
1441 bdrv_rw_em_cb, &async_ret);
1445 while (async_ret == NOT_DONE) {
1452 static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
1453 const uint8_t *buf, int nb_sectors)
1456 BlockDriverAIOCB *acb;
1460 async_ret = NOT_DONE;
1461 iov.iov_base = (void *)buf;
1462 iov.iov_len = nb_sectors * 512;
1463 qemu_iovec_init_external(&qiov, &iov, 1);
1464 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
1465 bdrv_rw_em_cb, &async_ret);
1468 while (async_ret == NOT_DONE) {
1474 void bdrv_init(void)
1476 bdrv_register(&bdrv_raw);
1477 bdrv_register(&bdrv_host_device);
1479 bdrv_register(&bdrv_cow);
1481 bdrv_register(&bdrv_qcow);
1482 bdrv_register(&bdrv_vmdk);
1483 bdrv_register(&bdrv_cloop);
1484 bdrv_register(&bdrv_dmg);
1485 bdrv_register(&bdrv_bochs);
1486 bdrv_register(&bdrv_vpc);
1487 bdrv_register(&bdrv_vvfat);
1488 bdrv_register(&bdrv_qcow2);
1489 bdrv_register(&bdrv_parallels);
1490 bdrv_register(&bdrv_nbd);
1493 void aio_pool_init(AIOPool *pool, int aiocb_size,
1494 void (*cancel)(BlockDriverAIOCB *acb))
1496 pool->aiocb_size = aiocb_size;
1497 pool->cancel = cancel;
1498 pool->free_aiocb = NULL;
1501 void *qemu_aio_get_pool(AIOPool *pool, BlockDriverState *bs,
1502 BlockDriverCompletionFunc *cb, void *opaque)
1504 BlockDriverAIOCB *acb;
1506 if (pool->free_aiocb) {
1507 acb = pool->free_aiocb;
1508 pool->free_aiocb = acb->next;
1510 acb = qemu_mallocz(pool->aiocb_size);
1515 acb->opaque = opaque;
1519 void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb,
1522 return qemu_aio_get_pool(&bs->drv->aio_pool, bs, cb, opaque);
1525 void qemu_aio_release(void *p)
1527 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
1528 AIOPool *pool = acb->pool;
1529 acb->next = pool->free_aiocb;
1530 pool->free_aiocb = acb;
1533 /**************************************************************/
1534 /* removable device support */
1537 * Return TRUE if the media is present
1539 int bdrv_is_inserted(BlockDriverState *bs)
1541 BlockDriver *drv = bs->drv;
1545 if (!drv->bdrv_is_inserted)
1547 ret = drv->bdrv_is_inserted(bs);
1552 * Return TRUE if the media changed since the last call to this
1553 * function. It is currently only used for floppy disks
1555 int bdrv_media_changed(BlockDriverState *bs)
1557 BlockDriver *drv = bs->drv;
1560 if (!drv || !drv->bdrv_media_changed)
1563 ret = drv->bdrv_media_changed(bs);
1564 if (ret == -ENOTSUP)
1565 ret = bs->media_changed;
1566 bs->media_changed = 0;
1571 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1573 void bdrv_eject(BlockDriverState *bs, int eject_flag)
1575 BlockDriver *drv = bs->drv;
1578 if (!drv || !drv->bdrv_eject) {
1581 ret = drv->bdrv_eject(bs, eject_flag);
1583 if (ret == -ENOTSUP) {
1589 int bdrv_is_locked(BlockDriverState *bs)
1595 * Lock or unlock the media (if it is locked, the user won't be able
1596 * to eject it manually).
1598 void bdrv_set_locked(BlockDriverState *bs, int locked)
1600 BlockDriver *drv = bs->drv;
1602 bs->locked = locked;
1603 if (drv && drv->bdrv_set_locked) {
1604 drv->bdrv_set_locked(bs, locked);
1608 /* needed for generic scsi interface */
1610 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1612 BlockDriver *drv = bs->drv;
1614 if (drv && drv->bdrv_ioctl)
1615 return drv->bdrv_ioctl(bs, req, buf);
1619 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
1620 unsigned long int req, void *buf,
1621 BlockDriverCompletionFunc *cb, void *opaque)
1623 BlockDriver *drv = bs->drv;
1625 if (drv && drv->bdrv_aio_ioctl)
1626 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);