block: Add wr_highest_sector blockstat
[qemu.git] / block.c
blobf463ec477add418c9bb5e0bb54436e57fd7ed32d
1 /*
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
22 * THE SOFTWARE.
24 #include "config-host.h"
25 #include "qemu-common.h"
26 #include "monitor.h"
27 #include "block_int.h"
28 #include "module.h"
29 #include "qemu-objects.h"
31 #ifdef CONFIG_BSD
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <sys/ioctl.h>
35 #include <sys/queue.h>
36 #ifndef __DragonFly__
37 #include <sys/disk.h>
38 #endif
39 #endif
41 #ifdef _WIN32
42 #include <windows.h>
43 #endif
45 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
46 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
47 BlockDriverCompletionFunc *cb, void *opaque);
48 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
49 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
50 BlockDriverCompletionFunc *cb, void *opaque);
51 static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
52 BlockDriverCompletionFunc *cb, void *opaque);
53 static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
54 uint8_t *buf, int nb_sectors);
55 static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
56 const uint8_t *buf, int nb_sectors);
57 static BlockDriver *find_protocol(const char *filename);
59 static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
60 QTAILQ_HEAD_INITIALIZER(bdrv_states);
62 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
63 QLIST_HEAD_INITIALIZER(bdrv_drivers);
65 /* If non-zero, use only whitelisted block drivers */
66 static int use_bdrv_whitelist;
68 int path_is_absolute(const char *path)
70 const char *p;
71 #ifdef _WIN32
72 /* specific case for names like: "\\.\d:" */
73 if (*path == '/' || *path == '\\')
74 return 1;
75 #endif
76 p = strchr(path, ':');
77 if (p)
78 p++;
79 else
80 p = path;
81 #ifdef _WIN32
82 return (*p == '/' || *p == '\\');
83 #else
84 return (*p == '/');
85 #endif
88 /* if filename is absolute, just copy it to dest. Otherwise, build a
89 path to it by considering it is relative to base_path. URL are
90 supported. */
91 void path_combine(char *dest, int dest_size,
92 const char *base_path,
93 const char *filename)
95 const char *p, *p1;
96 int len;
98 if (dest_size <= 0)
99 return;
100 if (path_is_absolute(filename)) {
101 pstrcpy(dest, dest_size, filename);
102 } else {
103 p = strchr(base_path, ':');
104 if (p)
105 p++;
106 else
107 p = base_path;
108 p1 = strrchr(base_path, '/');
109 #ifdef _WIN32
111 const char *p2;
112 p2 = strrchr(base_path, '\\');
113 if (!p1 || p2 > p1)
114 p1 = p2;
116 #endif
117 if (p1)
118 p1++;
119 else
120 p1 = base_path;
121 if (p1 > p)
122 p = p1;
123 len = p - base_path;
124 if (len > dest_size - 1)
125 len = dest_size - 1;
126 memcpy(dest, base_path, len);
127 dest[len] = '\0';
128 pstrcat(dest, dest_size, filename);
132 void bdrv_register(BlockDriver *bdrv)
134 if (!bdrv->bdrv_aio_readv) {
135 /* add AIO emulation layer */
136 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
137 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
138 } else if (!bdrv->bdrv_read) {
139 /* add synchronous IO emulation layer */
140 bdrv->bdrv_read = bdrv_read_em;
141 bdrv->bdrv_write = bdrv_write_em;
144 if (!bdrv->bdrv_aio_flush)
145 bdrv->bdrv_aio_flush = bdrv_aio_flush_em;
147 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
150 /* create a new block device (by default it is empty) */
151 BlockDriverState *bdrv_new(const char *device_name)
153 BlockDriverState *bs;
155 bs = qemu_mallocz(sizeof(BlockDriverState));
156 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
157 if (device_name[0] != '\0') {
158 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
160 return bs;
163 BlockDriver *bdrv_find_format(const char *format_name)
165 BlockDriver *drv1;
166 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
167 if (!strcmp(drv1->format_name, format_name)) {
168 return drv1;
171 return NULL;
174 static int bdrv_is_whitelisted(BlockDriver *drv)
176 static const char *whitelist[] = {
177 CONFIG_BDRV_WHITELIST
179 const char **p;
181 if (!whitelist[0])
182 return 1; /* no whitelist, anything goes */
184 for (p = whitelist; *p; p++) {
185 if (!strcmp(drv->format_name, *p)) {
186 return 1;
189 return 0;
192 BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
194 BlockDriver *drv = bdrv_find_format(format_name);
195 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
198 int bdrv_create(BlockDriver *drv, const char* filename,
199 QEMUOptionParameter *options)
201 if (!drv->bdrv_create)
202 return -ENOTSUP;
204 return drv->bdrv_create(filename, options);
207 int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
209 BlockDriver *drv;
211 drv = find_protocol(filename);
212 if (drv == NULL) {
213 drv = bdrv_find_format("file");
216 return bdrv_create(drv, filename, options);
219 #ifdef _WIN32
220 void get_tmp_filename(char *filename, int size)
222 char temp_dir[MAX_PATH];
224 GetTempPath(MAX_PATH, temp_dir);
225 GetTempFileName(temp_dir, "qem", 0, filename);
227 #else
228 void get_tmp_filename(char *filename, int size)
230 int fd;
231 const char *tmpdir;
232 /* XXX: race condition possible */
233 tmpdir = getenv("TMPDIR");
234 if (!tmpdir)
235 tmpdir = "/tmp";
236 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
237 fd = mkstemp(filename);
238 close(fd);
240 #endif
242 #ifdef _WIN32
243 static int is_windows_drive_prefix(const char *filename)
245 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
246 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
247 filename[1] == ':');
250 int is_windows_drive(const char *filename)
252 if (is_windows_drive_prefix(filename) &&
253 filename[2] == '\0')
254 return 1;
255 if (strstart(filename, "\\\\.\\", NULL) ||
256 strstart(filename, "//./", NULL))
257 return 1;
258 return 0;
260 #endif
263 * Detect host devices. By convention, /dev/cdrom[N] is always
264 * recognized as a host CDROM.
266 static BlockDriver *find_hdev_driver(const char *filename)
268 int score_max = 0, score;
269 BlockDriver *drv = NULL, *d;
271 QLIST_FOREACH(d, &bdrv_drivers, list) {
272 if (d->bdrv_probe_device) {
273 score = d->bdrv_probe_device(filename);
274 if (score > score_max) {
275 score_max = score;
276 drv = d;
281 return drv;
284 static BlockDriver *find_protocol(const char *filename)
286 BlockDriver *drv1;
287 char protocol[128];
288 int len;
289 const char *p;
291 /* TODO Drivers without bdrv_file_open must be specified explicitly */
293 #ifdef _WIN32
294 if (is_windows_drive(filename) ||
295 is_windows_drive_prefix(filename))
296 return bdrv_find_format("file");
297 #endif
298 p = strchr(filename, ':');
299 if (!p) {
300 drv1 = find_hdev_driver(filename);
301 if (!drv1) {
302 drv1 = bdrv_find_format("file");
304 return drv1;
306 len = p - filename;
307 if (len > sizeof(protocol) - 1)
308 len = sizeof(protocol) - 1;
309 memcpy(protocol, filename, len);
310 protocol[len] = '\0';
311 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
312 if (drv1->protocol_name &&
313 !strcmp(drv1->protocol_name, protocol)) {
314 return drv1;
317 return NULL;
320 static BlockDriver *find_image_format(const char *filename)
322 int ret, score, score_max;
323 BlockDriver *drv1, *drv;
324 uint8_t buf[2048];
325 BlockDriverState *bs;
327 drv = find_protocol(filename);
328 /* no need to test disk image formats for vvfat */
329 if (drv && strcmp(drv->format_name, "vvfat") == 0)
330 return drv;
332 ret = bdrv_file_open(&bs, filename, 0);
333 if (ret < 0)
334 return NULL;
335 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
336 bdrv_delete(bs);
337 if (ret < 0) {
338 return NULL;
341 score_max = 0;
342 drv = NULL;
343 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
344 if (drv1->bdrv_probe) {
345 score = drv1->bdrv_probe(buf, ret, filename);
346 if (score > score_max) {
347 score_max = score;
348 drv = drv1;
352 return drv;
356 * Set the current 'total_sectors' value
358 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
360 BlockDriver *drv = bs->drv;
362 /* query actual device if possible, otherwise just trust the hint */
363 if (drv->bdrv_getlength) {
364 int64_t length = drv->bdrv_getlength(bs);
365 if (length < 0) {
366 return length;
368 hint = length >> BDRV_SECTOR_BITS;
371 bs->total_sectors = hint;
372 return 0;
376 * Common part for opening disk images and files
378 static int bdrv_open_common(BlockDriverState *bs, const char *filename,
379 int flags, BlockDriver *drv)
381 int ret, open_flags;
383 assert(drv != NULL);
385 bs->file = NULL;
386 bs->total_sectors = 0;
387 bs->is_temporary = 0;
388 bs->encrypted = 0;
389 bs->valid_key = 0;
390 bs->open_flags = flags;
391 /* buffer_alignment defaulted to 512, drivers can change this value */
392 bs->buffer_alignment = 512;
394 pstrcpy(bs->filename, sizeof(bs->filename), filename);
396 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
397 return -ENOTSUP;
400 bs->drv = drv;
401 bs->opaque = qemu_mallocz(drv->instance_size);
404 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
405 * write cache to the guest. We do need the fdatasync to flush
406 * out transactions for block allocations, and we maybe have a
407 * volatile write cache in our backing device to deal with.
409 if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
410 bs->enable_write_cache = 1;
413 * Clear flags that are internal to the block layer before opening the
414 * image.
416 open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
419 * Snapshots should be writeable.
421 if (bs->is_temporary) {
422 open_flags |= BDRV_O_RDWR;
425 /* Open the image, either directly or using a protocol */
426 if (drv->bdrv_file_open) {
427 ret = drv->bdrv_file_open(bs, filename, open_flags);
428 } else {
429 ret = bdrv_file_open(&bs->file, filename, open_flags);
430 if (ret >= 0) {
431 ret = drv->bdrv_open(bs, open_flags);
435 if (ret < 0) {
436 goto free_and_fail;
439 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
441 ret = refresh_total_sectors(bs, bs->total_sectors);
442 if (ret < 0) {
443 goto free_and_fail;
446 #ifndef _WIN32
447 if (bs->is_temporary) {
448 unlink(filename);
450 #endif
451 return 0;
453 free_and_fail:
454 if (bs->file) {
455 bdrv_delete(bs->file);
456 bs->file = NULL;
458 qemu_free(bs->opaque);
459 bs->opaque = NULL;
460 bs->drv = NULL;
461 return ret;
465 * Opens a file using a protocol (file, host_device, nbd, ...)
467 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
469 BlockDriverState *bs;
470 BlockDriver *drv;
471 int ret;
473 drv = find_protocol(filename);
474 if (!drv) {
475 return -ENOENT;
478 bs = bdrv_new("");
479 ret = bdrv_open_common(bs, filename, flags, drv);
480 if (ret < 0) {
481 bdrv_delete(bs);
482 return ret;
484 bs->growable = 1;
485 *pbs = bs;
486 return 0;
490 * Opens a disk image (raw, qcow2, vmdk, ...)
492 int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
493 BlockDriver *drv)
495 int ret;
497 if (flags & BDRV_O_SNAPSHOT) {
498 BlockDriverState *bs1;
499 int64_t total_size;
500 int is_protocol = 0;
501 BlockDriver *bdrv_qcow2;
502 QEMUOptionParameter *options;
503 char tmp_filename[PATH_MAX];
504 char backing_filename[PATH_MAX];
506 /* if snapshot, we create a temporary backing file and open it
507 instead of opening 'filename' directly */
509 /* if there is a backing file, use it */
510 bs1 = bdrv_new("");
511 ret = bdrv_open(bs1, filename, 0, drv);
512 if (ret < 0) {
513 bdrv_delete(bs1);
514 return ret;
516 total_size = bdrv_getlength(bs1) >> BDRV_SECTOR_BITS;
518 if (bs1->drv && bs1->drv->protocol_name)
519 is_protocol = 1;
521 bdrv_delete(bs1);
523 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
525 /* Real path is meaningless for protocols */
526 if (is_protocol)
527 snprintf(backing_filename, sizeof(backing_filename),
528 "%s", filename);
529 else if (!realpath(filename, backing_filename))
530 return -errno;
532 bdrv_qcow2 = bdrv_find_format("qcow2");
533 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
535 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size * 512);
536 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
537 if (drv) {
538 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
539 drv->format_name);
542 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
543 if (ret < 0) {
544 return ret;
547 filename = tmp_filename;
548 drv = bdrv_qcow2;
549 bs->is_temporary = 1;
552 /* Find the right image format driver */
553 if (!drv) {
554 drv = find_image_format(filename);
557 if (!drv) {
558 ret = -ENOENT;
559 goto unlink_and_fail;
562 /* Open the image */
563 ret = bdrv_open_common(bs, filename, flags, drv);
564 if (ret < 0) {
565 goto unlink_and_fail;
568 /* If there is a backing file, use it */
569 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
570 char backing_filename[PATH_MAX];
571 int back_flags;
572 BlockDriver *back_drv = NULL;
574 bs->backing_hd = bdrv_new("");
575 path_combine(backing_filename, sizeof(backing_filename),
576 filename, bs->backing_file);
577 if (bs->backing_format[0] != '\0')
578 back_drv = bdrv_find_format(bs->backing_format);
580 /* backing files always opened read-only */
581 back_flags =
582 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
584 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
585 if (ret < 0) {
586 bdrv_close(bs);
587 return ret;
589 if (bs->is_temporary) {
590 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
591 } else {
592 /* base image inherits from "parent" */
593 bs->backing_hd->keep_read_only = bs->keep_read_only;
597 if (!bdrv_key_required(bs)) {
598 /* call the change callback */
599 bs->media_changed = 1;
600 if (bs->change_cb)
601 bs->change_cb(bs->change_opaque);
604 return 0;
606 unlink_and_fail:
607 if (bs->is_temporary) {
608 unlink(filename);
610 return ret;
613 void bdrv_close(BlockDriverState *bs)
615 if (bs->drv) {
616 if (bs->backing_hd) {
617 bdrv_delete(bs->backing_hd);
618 bs->backing_hd = NULL;
620 bs->drv->bdrv_close(bs);
621 qemu_free(bs->opaque);
622 #ifdef _WIN32
623 if (bs->is_temporary) {
624 unlink(bs->filename);
626 #endif
627 bs->opaque = NULL;
628 bs->drv = NULL;
630 if (bs->file != NULL) {
631 bdrv_close(bs->file);
634 /* call the change callback */
635 bs->media_changed = 1;
636 if (bs->change_cb)
637 bs->change_cb(bs->change_opaque);
641 void bdrv_delete(BlockDriverState *bs)
643 /* remove from list, if necessary */
644 if (bs->device_name[0] != '\0') {
645 QTAILQ_REMOVE(&bdrv_states, bs, list);
648 bdrv_close(bs);
649 if (bs->file != NULL) {
650 bdrv_delete(bs->file);
653 qemu_free(bs);
657 * Run consistency checks on an image
659 * Returns the number of errors or -errno when an internal error occurs
661 int bdrv_check(BlockDriverState *bs)
663 if (bs->drv->bdrv_check == NULL) {
664 return -ENOTSUP;
667 return bs->drv->bdrv_check(bs);
670 /* commit COW file into the raw image */
671 int bdrv_commit(BlockDriverState *bs)
673 BlockDriver *drv = bs->drv;
674 int64_t i, total_sectors;
675 int n, j, ro, open_flags;
676 int ret = 0, rw_ret = 0;
677 unsigned char sector[512];
678 char filename[1024];
679 BlockDriverState *bs_rw, *bs_ro;
681 if (!drv)
682 return -ENOMEDIUM;
684 if (!bs->backing_hd) {
685 return -ENOTSUP;
688 if (bs->backing_hd->keep_read_only) {
689 return -EACCES;
692 ro = bs->backing_hd->read_only;
693 strncpy(filename, bs->backing_hd->filename, sizeof(filename));
694 open_flags = bs->backing_hd->open_flags;
696 if (ro) {
697 /* re-open as RW */
698 bdrv_delete(bs->backing_hd);
699 bs->backing_hd = NULL;
700 bs_rw = bdrv_new("");
701 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR, NULL);
702 if (rw_ret < 0) {
703 bdrv_delete(bs_rw);
704 /* try to re-open read-only */
705 bs_ro = bdrv_new("");
706 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, NULL);
707 if (ret < 0) {
708 bdrv_delete(bs_ro);
709 /* drive not functional anymore */
710 bs->drv = NULL;
711 return ret;
713 bs->backing_hd = bs_ro;
714 return rw_ret;
716 bs->backing_hd = bs_rw;
719 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
720 for (i = 0; i < total_sectors;) {
721 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
722 for(j = 0; j < n; j++) {
723 if (bdrv_read(bs, i, sector, 1) != 0) {
724 ret = -EIO;
725 goto ro_cleanup;
728 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
729 ret = -EIO;
730 goto ro_cleanup;
732 i++;
734 } else {
735 i += n;
739 if (drv->bdrv_make_empty) {
740 ret = drv->bdrv_make_empty(bs);
741 bdrv_flush(bs);
745 * Make sure all data we wrote to the backing device is actually
746 * stable on disk.
748 if (bs->backing_hd)
749 bdrv_flush(bs->backing_hd);
751 ro_cleanup:
753 if (ro) {
754 /* re-open as RO */
755 bdrv_delete(bs->backing_hd);
756 bs->backing_hd = NULL;
757 bs_ro = bdrv_new("");
758 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, NULL);
759 if (ret < 0) {
760 bdrv_delete(bs_ro);
761 /* drive not functional anymore */
762 bs->drv = NULL;
763 return ret;
765 bs->backing_hd = bs_ro;
766 bs->backing_hd->keep_read_only = 0;
769 return ret;
773 * Return values:
774 * 0 - success
775 * -EINVAL - backing format specified, but no file
776 * -ENOSPC - can't update the backing file because no space is left in the
777 * image file header
778 * -ENOTSUP - format driver doesn't support changing the backing file
780 int bdrv_change_backing_file(BlockDriverState *bs,
781 const char *backing_file, const char *backing_fmt)
783 BlockDriver *drv = bs->drv;
785 if (drv->bdrv_change_backing_file != NULL) {
786 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
787 } else {
788 return -ENOTSUP;
792 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
793 size_t size)
795 int64_t len;
797 if (!bdrv_is_inserted(bs))
798 return -ENOMEDIUM;
800 if (bs->growable)
801 return 0;
803 len = bdrv_getlength(bs);
805 if (offset < 0)
806 return -EIO;
808 if ((offset > len) || (len - offset < size))
809 return -EIO;
811 return 0;
814 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
815 int nb_sectors)
817 return bdrv_check_byte_request(bs, sector_num * 512, nb_sectors * 512);
820 /* return < 0 if error. See bdrv_write() for the return codes */
821 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
822 uint8_t *buf, int nb_sectors)
824 BlockDriver *drv = bs->drv;
826 if (!drv)
827 return -ENOMEDIUM;
828 if (bdrv_check_request(bs, sector_num, nb_sectors))
829 return -EIO;
831 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
834 static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
835 int nb_sectors, int dirty)
837 int64_t start, end;
838 unsigned long val, idx, bit;
840 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
841 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
843 for (; start <= end; start++) {
844 idx = start / (sizeof(unsigned long) * 8);
845 bit = start % (sizeof(unsigned long) * 8);
846 val = bs->dirty_bitmap[idx];
847 if (dirty) {
848 if (!(val & (1 << bit))) {
849 bs->dirty_count++;
850 val |= 1 << bit;
852 } else {
853 if (val & (1 << bit)) {
854 bs->dirty_count--;
855 val &= ~(1 << bit);
858 bs->dirty_bitmap[idx] = val;
862 /* Return < 0 if error. Important errors are:
863 -EIO generic I/O error (may happen for all errors)
864 -ENOMEDIUM No media inserted.
865 -EINVAL Invalid sector number or nb_sectors
866 -EACCES Trying to write a read-only device
868 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
869 const uint8_t *buf, int nb_sectors)
871 BlockDriver *drv = bs->drv;
872 if (!bs->drv)
873 return -ENOMEDIUM;
874 if (bs->read_only)
875 return -EACCES;
876 if (bdrv_check_request(bs, sector_num, nb_sectors))
877 return -EIO;
879 if (bs->dirty_bitmap) {
880 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
883 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
884 bs->wr_highest_sector = sector_num + nb_sectors - 1;
887 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
890 int bdrv_pread(BlockDriverState *bs, int64_t offset,
891 void *buf, int count1)
893 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
894 int len, nb_sectors, count;
895 int64_t sector_num;
896 int ret;
898 count = count1;
899 /* first read to align to sector start */
900 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
901 if (len > count)
902 len = count;
903 sector_num = offset >> BDRV_SECTOR_BITS;
904 if (len > 0) {
905 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
906 return ret;
907 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
908 count -= len;
909 if (count == 0)
910 return count1;
911 sector_num++;
912 buf += len;
915 /* read the sectors "in place" */
916 nb_sectors = count >> BDRV_SECTOR_BITS;
917 if (nb_sectors > 0) {
918 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
919 return ret;
920 sector_num += nb_sectors;
921 len = nb_sectors << BDRV_SECTOR_BITS;
922 buf += len;
923 count -= len;
926 /* add data from the last sector */
927 if (count > 0) {
928 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
929 return ret;
930 memcpy(buf, tmp_buf, count);
932 return count1;
935 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
936 const void *buf, int count1)
938 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
939 int len, nb_sectors, count;
940 int64_t sector_num;
941 int ret;
943 count = count1;
944 /* first write to align to sector start */
945 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
946 if (len > count)
947 len = count;
948 sector_num = offset >> BDRV_SECTOR_BITS;
949 if (len > 0) {
950 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
951 return ret;
952 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
953 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
954 return ret;
955 count -= len;
956 if (count == 0)
957 return count1;
958 sector_num++;
959 buf += len;
962 /* write the sectors "in place" */
963 nb_sectors = count >> BDRV_SECTOR_BITS;
964 if (nb_sectors > 0) {
965 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
966 return ret;
967 sector_num += nb_sectors;
968 len = nb_sectors << BDRV_SECTOR_BITS;
969 buf += len;
970 count -= len;
973 /* add data from the last sector */
974 if (count > 0) {
975 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
976 return ret;
977 memcpy(tmp_buf, buf, count);
978 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
979 return ret;
981 return count1;
985 * Truncate file to 'offset' bytes (needed only for file protocols)
987 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
989 BlockDriver *drv = bs->drv;
990 int ret;
991 if (!drv)
992 return -ENOMEDIUM;
993 if (!drv->bdrv_truncate)
994 return -ENOTSUP;
995 if (bs->read_only)
996 return -EACCES;
997 ret = drv->bdrv_truncate(bs, offset);
998 if (ret == 0) {
999 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
1001 return ret;
1005 * Length of a file in bytes. Return < 0 if error or unknown.
1007 int64_t bdrv_getlength(BlockDriverState *bs)
1009 BlockDriver *drv = bs->drv;
1010 if (!drv)
1011 return -ENOMEDIUM;
1013 /* Fixed size devices use the total_sectors value for speed instead of
1014 issuing a length query (like lseek) on each call. Also, legacy block
1015 drivers don't provide a bdrv_getlength function and must use
1016 total_sectors. */
1017 if (!bs->growable || !drv->bdrv_getlength) {
1018 return bs->total_sectors * BDRV_SECTOR_SIZE;
1020 return drv->bdrv_getlength(bs);
1023 /* return 0 as number of sectors if no device present or error */
1024 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
1026 int64_t length;
1027 length = bdrv_getlength(bs);
1028 if (length < 0)
1029 length = 0;
1030 else
1031 length = length >> BDRV_SECTOR_BITS;
1032 *nb_sectors_ptr = length;
1035 struct partition {
1036 uint8_t boot_ind; /* 0x80 - active */
1037 uint8_t head; /* starting head */
1038 uint8_t sector; /* starting sector */
1039 uint8_t cyl; /* starting cylinder */
1040 uint8_t sys_ind; /* What partition type */
1041 uint8_t end_head; /* end head */
1042 uint8_t end_sector; /* end sector */
1043 uint8_t end_cyl; /* end cylinder */
1044 uint32_t start_sect; /* starting sector counting from 0 */
1045 uint32_t nr_sects; /* nr of sectors in partition */
1046 } __attribute__((packed));
1048 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1049 static int guess_disk_lchs(BlockDriverState *bs,
1050 int *pcylinders, int *pheads, int *psectors)
1052 uint8_t buf[512];
1053 int ret, i, heads, sectors, cylinders;
1054 struct partition *p;
1055 uint32_t nr_sects;
1056 uint64_t nb_sectors;
1058 bdrv_get_geometry(bs, &nb_sectors);
1060 ret = bdrv_read(bs, 0, buf, 1);
1061 if (ret < 0)
1062 return -1;
1063 /* test msdos magic */
1064 if (buf[510] != 0x55 || buf[511] != 0xaa)
1065 return -1;
1066 for(i = 0; i < 4; i++) {
1067 p = ((struct partition *)(buf + 0x1be)) + i;
1068 nr_sects = le32_to_cpu(p->nr_sects);
1069 if (nr_sects && p->end_head) {
1070 /* We make the assumption that the partition terminates on
1071 a cylinder boundary */
1072 heads = p->end_head + 1;
1073 sectors = p->end_sector & 63;
1074 if (sectors == 0)
1075 continue;
1076 cylinders = nb_sectors / (heads * sectors);
1077 if (cylinders < 1 || cylinders > 16383)
1078 continue;
1079 *pheads = heads;
1080 *psectors = sectors;
1081 *pcylinders = cylinders;
1082 #if 0
1083 printf("guessed geometry: LCHS=%d %d %d\n",
1084 cylinders, heads, sectors);
1085 #endif
1086 return 0;
1089 return -1;
1092 void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
1094 int translation, lba_detected = 0;
1095 int cylinders, heads, secs;
1096 uint64_t nb_sectors;
1098 /* if a geometry hint is available, use it */
1099 bdrv_get_geometry(bs, &nb_sectors);
1100 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
1101 translation = bdrv_get_translation_hint(bs);
1102 if (cylinders != 0) {
1103 *pcyls = cylinders;
1104 *pheads = heads;
1105 *psecs = secs;
1106 } else {
1107 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
1108 if (heads > 16) {
1109 /* if heads > 16, it means that a BIOS LBA
1110 translation was active, so the default
1111 hardware geometry is OK */
1112 lba_detected = 1;
1113 goto default_geometry;
1114 } else {
1115 *pcyls = cylinders;
1116 *pheads = heads;
1117 *psecs = secs;
1118 /* disable any translation to be in sync with
1119 the logical geometry */
1120 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
1121 bdrv_set_translation_hint(bs,
1122 BIOS_ATA_TRANSLATION_NONE);
1125 } else {
1126 default_geometry:
1127 /* if no geometry, use a standard physical disk geometry */
1128 cylinders = nb_sectors / (16 * 63);
1130 if (cylinders > 16383)
1131 cylinders = 16383;
1132 else if (cylinders < 2)
1133 cylinders = 2;
1134 *pcyls = cylinders;
1135 *pheads = 16;
1136 *psecs = 63;
1137 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
1138 if ((*pcyls * *pheads) <= 131072) {
1139 bdrv_set_translation_hint(bs,
1140 BIOS_ATA_TRANSLATION_LARGE);
1141 } else {
1142 bdrv_set_translation_hint(bs,
1143 BIOS_ATA_TRANSLATION_LBA);
1147 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
1151 void bdrv_set_geometry_hint(BlockDriverState *bs,
1152 int cyls, int heads, int secs)
1154 bs->cyls = cyls;
1155 bs->heads = heads;
1156 bs->secs = secs;
1159 void bdrv_set_type_hint(BlockDriverState *bs, int type)
1161 bs->type = type;
1162 bs->removable = ((type == BDRV_TYPE_CDROM ||
1163 type == BDRV_TYPE_FLOPPY));
1166 void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
1168 bs->translation = translation;
1171 void bdrv_get_geometry_hint(BlockDriverState *bs,
1172 int *pcyls, int *pheads, int *psecs)
1174 *pcyls = bs->cyls;
1175 *pheads = bs->heads;
1176 *psecs = bs->secs;
1179 int bdrv_get_type_hint(BlockDriverState *bs)
1181 return bs->type;
1184 int bdrv_get_translation_hint(BlockDriverState *bs)
1186 return bs->translation;
1189 int bdrv_is_removable(BlockDriverState *bs)
1191 return bs->removable;
1194 int bdrv_is_read_only(BlockDriverState *bs)
1196 return bs->read_only;
1199 int bdrv_is_sg(BlockDriverState *bs)
1201 return bs->sg;
1204 int bdrv_enable_write_cache(BlockDriverState *bs)
1206 return bs->enable_write_cache;
1209 /* XXX: no longer used */
1210 void bdrv_set_change_cb(BlockDriverState *bs,
1211 void (*change_cb)(void *opaque), void *opaque)
1213 bs->change_cb = change_cb;
1214 bs->change_opaque = opaque;
1217 int bdrv_is_encrypted(BlockDriverState *bs)
1219 if (bs->backing_hd && bs->backing_hd->encrypted)
1220 return 1;
1221 return bs->encrypted;
1224 int bdrv_key_required(BlockDriverState *bs)
1226 BlockDriverState *backing_hd = bs->backing_hd;
1228 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
1229 return 1;
1230 return (bs->encrypted && !bs->valid_key);
1233 int bdrv_set_key(BlockDriverState *bs, const char *key)
1235 int ret;
1236 if (bs->backing_hd && bs->backing_hd->encrypted) {
1237 ret = bdrv_set_key(bs->backing_hd, key);
1238 if (ret < 0)
1239 return ret;
1240 if (!bs->encrypted)
1241 return 0;
1243 if (!bs->encrypted) {
1244 return -EINVAL;
1245 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
1246 return -ENOMEDIUM;
1248 ret = bs->drv->bdrv_set_key(bs, key);
1249 if (ret < 0) {
1250 bs->valid_key = 0;
1251 } else if (!bs->valid_key) {
1252 bs->valid_key = 1;
1253 /* call the change callback now, we skipped it on open */
1254 bs->media_changed = 1;
1255 if (bs->change_cb)
1256 bs->change_cb(bs->change_opaque);
1258 return ret;
1261 void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
1263 if (!bs->drv) {
1264 buf[0] = '\0';
1265 } else {
1266 pstrcpy(buf, buf_size, bs->drv->format_name);
1270 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
1271 void *opaque)
1273 BlockDriver *drv;
1275 QLIST_FOREACH(drv, &bdrv_drivers, list) {
1276 it(opaque, drv->format_name);
1280 BlockDriverState *bdrv_find(const char *name)
1282 BlockDriverState *bs;
1284 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1285 if (!strcmp(name, bs->device_name)) {
1286 return bs;
1289 return NULL;
1292 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
1294 BlockDriverState *bs;
1296 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1297 it(opaque, bs);
1301 const char *bdrv_get_device_name(BlockDriverState *bs)
1303 return bs->device_name;
1306 void bdrv_flush(BlockDriverState *bs)
1308 if (bs->drv && bs->drv->bdrv_flush)
1309 bs->drv->bdrv_flush(bs);
1312 void bdrv_flush_all(void)
1314 BlockDriverState *bs;
1316 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1317 if (bs->drv && !bdrv_is_read_only(bs) &&
1318 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) {
1319 bdrv_flush(bs);
1324 int bdrv_has_zero_init(BlockDriverState *bs)
1326 assert(bs->drv);
1328 if (bs->drv->no_zero_init) {
1329 return 0;
1330 } else if (bs->file) {
1331 return bdrv_has_zero_init(bs->file);
1334 return 1;
1338 * Returns true iff the specified sector is present in the disk image. Drivers
1339 * not implementing the functionality are assumed to not support backing files,
1340 * hence all their sectors are reported as allocated.
1342 * 'pnum' is set to the number of sectors (including and immediately following
1343 * the specified sector) that are known to be in the same
1344 * allocated/unallocated state.
1346 * 'nb_sectors' is the max value 'pnum' should be set to.
1348 int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1349 int *pnum)
1351 int64_t n;
1352 if (!bs->drv->bdrv_is_allocated) {
1353 if (sector_num >= bs->total_sectors) {
1354 *pnum = 0;
1355 return 0;
1357 n = bs->total_sectors - sector_num;
1358 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1359 return 1;
1361 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1364 void bdrv_mon_event(const BlockDriverState *bdrv,
1365 BlockMonEventAction action, int is_read)
1367 QObject *data;
1368 const char *action_str;
1370 switch (action) {
1371 case BDRV_ACTION_REPORT:
1372 action_str = "report";
1373 break;
1374 case BDRV_ACTION_IGNORE:
1375 action_str = "ignore";
1376 break;
1377 case BDRV_ACTION_STOP:
1378 action_str = "stop";
1379 break;
1380 default:
1381 abort();
1384 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1385 bdrv->device_name,
1386 action_str,
1387 is_read ? "read" : "write");
1388 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
1390 qobject_decref(data);
1393 static void bdrv_print_dict(QObject *obj, void *opaque)
1395 QDict *bs_dict;
1396 Monitor *mon = opaque;
1398 bs_dict = qobject_to_qdict(obj);
1400 monitor_printf(mon, "%s: type=%s removable=%d",
1401 qdict_get_str(bs_dict, "device"),
1402 qdict_get_str(bs_dict, "type"),
1403 qdict_get_bool(bs_dict, "removable"));
1405 if (qdict_get_bool(bs_dict, "removable")) {
1406 monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked"));
1409 if (qdict_haskey(bs_dict, "inserted")) {
1410 QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted"));
1412 monitor_printf(mon, " file=");
1413 monitor_print_filename(mon, qdict_get_str(qdict, "file"));
1414 if (qdict_haskey(qdict, "backing_file")) {
1415 monitor_printf(mon, " backing_file=");
1416 monitor_print_filename(mon, qdict_get_str(qdict, "backing_file"));
1418 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
1419 qdict_get_bool(qdict, "ro"),
1420 qdict_get_str(qdict, "drv"),
1421 qdict_get_bool(qdict, "encrypted"));
1422 } else {
1423 monitor_printf(mon, " [not inserted]");
1426 monitor_printf(mon, "\n");
1429 void bdrv_info_print(Monitor *mon, const QObject *data)
1431 qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon);
1435 * bdrv_info(): Block devices information
1437 * Each block device information is stored in a QDict and the
1438 * returned QObject is a QList of all devices.
1440 * The QDict contains the following:
1442 * - "device": device name
1443 * - "type": device type
1444 * - "removable": true if the device is removable, false otherwise
1445 * - "locked": true if the device is locked, false otherwise
1446 * - "inserted": only present if the device is inserted, it is a QDict
1447 * containing the following:
1448 * - "file": device file name
1449 * - "ro": true if read-only, false otherwise
1450 * - "drv": driver format name
1451 * - "backing_file": backing file name if one is used
1452 * - "encrypted": true if encrypted, false otherwise
1454 * Example:
1456 * [ { "device": "ide0-hd0", "type": "hd", "removable": false, "locked": false,
1457 * "inserted": { "file": "/tmp/foobar", "ro": false, "drv": "qcow2" } },
1458 * { "device": "floppy0", "type": "floppy", "removable": true,
1459 * "locked": false } ]
1461 void bdrv_info(Monitor *mon, QObject **ret_data)
1463 QList *bs_list;
1464 BlockDriverState *bs;
1466 bs_list = qlist_new();
1468 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1469 QObject *bs_obj;
1470 const char *type = "unknown";
1472 switch(bs->type) {
1473 case BDRV_TYPE_HD:
1474 type = "hd";
1475 break;
1476 case BDRV_TYPE_CDROM:
1477 type = "cdrom";
1478 break;
1479 case BDRV_TYPE_FLOPPY:
1480 type = "floppy";
1481 break;
1484 bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1485 "'removable': %i, 'locked': %i }",
1486 bs->device_name, type, bs->removable,
1487 bs->locked);
1489 if (bs->drv) {
1490 QObject *obj;
1491 QDict *bs_dict = qobject_to_qdict(bs_obj);
1493 obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1494 "'encrypted': %i }",
1495 bs->filename, bs->read_only,
1496 bs->drv->format_name,
1497 bdrv_is_encrypted(bs));
1498 if (bs->backing_file[0] != '\0') {
1499 QDict *qdict = qobject_to_qdict(obj);
1500 qdict_put(qdict, "backing_file",
1501 qstring_from_str(bs->backing_file));
1504 qdict_put_obj(bs_dict, "inserted", obj);
1506 qlist_append_obj(bs_list, bs_obj);
1509 *ret_data = QOBJECT(bs_list);
1512 static void bdrv_stats_iter(QObject *data, void *opaque)
1514 QDict *qdict;
1515 Monitor *mon = opaque;
1517 qdict = qobject_to_qdict(data);
1518 monitor_printf(mon, "%s:", qdict_get_str(qdict, "device"));
1520 qdict = qobject_to_qdict(qdict_get(qdict, "stats"));
1521 monitor_printf(mon, " rd_bytes=%" PRId64
1522 " wr_bytes=%" PRId64
1523 " rd_operations=%" PRId64
1524 " wr_operations=%" PRId64
1525 "\n",
1526 qdict_get_int(qdict, "rd_bytes"),
1527 qdict_get_int(qdict, "wr_bytes"),
1528 qdict_get_int(qdict, "rd_operations"),
1529 qdict_get_int(qdict, "wr_operations"));
1532 void bdrv_stats_print(Monitor *mon, const QObject *data)
1534 qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon);
1537 static QObject* bdrv_info_stats_bs(BlockDriverState *bs)
1539 QObject *res;
1540 QDict *dict;
1542 res = qobject_from_jsonf("{ 'stats': {"
1543 "'rd_bytes': %" PRId64 ","
1544 "'wr_bytes': %" PRId64 ","
1545 "'rd_operations': %" PRId64 ","
1546 "'wr_operations': %" PRId64 ","
1547 "'wr_highest_offset': %" PRId64
1548 "} }",
1549 bs->rd_bytes, bs->wr_bytes,
1550 bs->rd_ops, bs->wr_ops,
1551 bs->wr_highest_sector * 512);
1552 dict = qobject_to_qdict(res);
1554 if (*bs->device_name) {
1555 qdict_put(dict, "device", qstring_from_str(bs->device_name));
1558 if (bs->file) {
1559 QObject *parent = bdrv_info_stats_bs(bs->file);
1560 qdict_put_obj(dict, "parent", parent);
1563 return res;
1567 * bdrv_info_stats(): show block device statistics
1569 * Each device statistic information is stored in a QDict and
1570 * the returned QObject is a QList of all devices.
1572 * The QDict contains the following:
1574 * - "device": device name
1575 * - "stats": A QDict with the statistics information, it contains:
1576 * - "rd_bytes": bytes read
1577 * - "wr_bytes": bytes written
1578 * - "rd_operations": read operations
1579 * - "wr_operations": write operations
1580 * - "wr_highest_offset": Highest offset of a sector written since the
1581 * BlockDriverState has been opened
1582 * - "parent": Contains recursively the statistics of the underlying
1583 * protocol (e.g. the host file for a qcow2 image). If there is no
1584 * underlying protocol, this field is omitted.
1586 * Example:
1588 * [ { "device": "ide0-hd0",
1589 * "stats": { "rd_bytes": 512,
1590 * "wr_bytes": 0,
1591 * "rd_operations": 1,
1592 * "wr_operations": 0,
1593 * "wr_highest_offset": 0,
1594 * "parent": {
1595 * "stats": { "rd_bytes": 1024,
1596 * "wr_bytes": 0,
1597 * "rd_operations": 2,
1598 * "wr_operations": 0,
1599 * "wr_highest_offset": 0,
1601 * } } },
1602 * { "device": "ide1-cd0",
1603 * "stats": { "rd_bytes": 0,
1604 * "wr_bytes": 0,
1605 * "rd_operations": 0,
1606 * "wr_operations": 0,
1607 * "wr_highest_offset": 0 } },
1609 void bdrv_info_stats(Monitor *mon, QObject **ret_data)
1611 QObject *obj;
1612 QList *devices;
1613 BlockDriverState *bs;
1615 devices = qlist_new();
1617 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1618 obj = bdrv_info_stats_bs(bs);
1619 qlist_append_obj(devices, obj);
1622 *ret_data = QOBJECT(devices);
1625 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1627 if (bs->backing_hd && bs->backing_hd->encrypted)
1628 return bs->backing_file;
1629 else if (bs->encrypted)
1630 return bs->filename;
1631 else
1632 return NULL;
1635 void bdrv_get_backing_filename(BlockDriverState *bs,
1636 char *filename, int filename_size)
1638 if (!bs->backing_file) {
1639 pstrcpy(filename, filename_size, "");
1640 } else {
1641 pstrcpy(filename, filename_size, bs->backing_file);
1645 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
1646 const uint8_t *buf, int nb_sectors)
1648 BlockDriver *drv = bs->drv;
1649 if (!drv)
1650 return -ENOMEDIUM;
1651 if (!drv->bdrv_write_compressed)
1652 return -ENOTSUP;
1653 if (bdrv_check_request(bs, sector_num, nb_sectors))
1654 return -EIO;
1656 if (bs->dirty_bitmap) {
1657 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1660 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1663 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1665 BlockDriver *drv = bs->drv;
1666 if (!drv)
1667 return -ENOMEDIUM;
1668 if (!drv->bdrv_get_info)
1669 return -ENOTSUP;
1670 memset(bdi, 0, sizeof(*bdi));
1671 return drv->bdrv_get_info(bs, bdi);
1674 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1675 int64_t pos, int size)
1677 BlockDriver *drv = bs->drv;
1678 if (!drv)
1679 return -ENOMEDIUM;
1680 if (!drv->bdrv_save_vmstate)
1681 return -ENOTSUP;
1682 return drv->bdrv_save_vmstate(bs, buf, pos, size);
1685 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1686 int64_t pos, int size)
1688 BlockDriver *drv = bs->drv;
1689 if (!drv)
1690 return -ENOMEDIUM;
1691 if (!drv->bdrv_load_vmstate)
1692 return -ENOTSUP;
1693 return drv->bdrv_load_vmstate(bs, buf, pos, size);
1696 void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
1698 BlockDriver *drv = bs->drv;
1700 if (!drv || !drv->bdrv_debug_event) {
1701 return;
1704 return drv->bdrv_debug_event(bs, event);
1708 /**************************************************************/
1709 /* handling of snapshots */
1711 int bdrv_snapshot_create(BlockDriverState *bs,
1712 QEMUSnapshotInfo *sn_info)
1714 BlockDriver *drv = bs->drv;
1715 if (!drv)
1716 return -ENOMEDIUM;
1717 if (!drv->bdrv_snapshot_create)
1718 return -ENOTSUP;
1719 return drv->bdrv_snapshot_create(bs, sn_info);
1722 int bdrv_snapshot_goto(BlockDriverState *bs,
1723 const char *snapshot_id)
1725 BlockDriver *drv = bs->drv;
1726 if (!drv)
1727 return -ENOMEDIUM;
1728 if (!drv->bdrv_snapshot_goto)
1729 return -ENOTSUP;
1730 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1733 int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1735 BlockDriver *drv = bs->drv;
1736 if (!drv)
1737 return -ENOMEDIUM;
1738 if (!drv->bdrv_snapshot_delete)
1739 return -ENOTSUP;
1740 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1743 int bdrv_snapshot_list(BlockDriverState *bs,
1744 QEMUSnapshotInfo **psn_info)
1746 BlockDriver *drv = bs->drv;
1747 if (!drv)
1748 return -ENOMEDIUM;
1749 if (!drv->bdrv_snapshot_list)
1750 return -ENOTSUP;
1751 return drv->bdrv_snapshot_list(bs, psn_info);
1754 #define NB_SUFFIXES 4
1756 char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1758 static const char suffixes[NB_SUFFIXES] = "KMGT";
1759 int64_t base;
1760 int i;
1762 if (size <= 999) {
1763 snprintf(buf, buf_size, "%" PRId64, size);
1764 } else {
1765 base = 1024;
1766 for(i = 0; i < NB_SUFFIXES; i++) {
1767 if (size < (10 * base)) {
1768 snprintf(buf, buf_size, "%0.1f%c",
1769 (double)size / base,
1770 suffixes[i]);
1771 break;
1772 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
1773 snprintf(buf, buf_size, "%" PRId64 "%c",
1774 ((size + (base >> 1)) / base),
1775 suffixes[i]);
1776 break;
1778 base = base * 1024;
1781 return buf;
1784 char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1786 char buf1[128], date_buf[128], clock_buf[128];
1787 #ifdef _WIN32
1788 struct tm *ptm;
1789 #else
1790 struct tm tm;
1791 #endif
1792 time_t ti;
1793 int64_t secs;
1795 if (!sn) {
1796 snprintf(buf, buf_size,
1797 "%-10s%-20s%7s%20s%15s",
1798 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1799 } else {
1800 ti = sn->date_sec;
1801 #ifdef _WIN32
1802 ptm = localtime(&ti);
1803 strftime(date_buf, sizeof(date_buf),
1804 "%Y-%m-%d %H:%M:%S", ptm);
1805 #else
1806 localtime_r(&ti, &tm);
1807 strftime(date_buf, sizeof(date_buf),
1808 "%Y-%m-%d %H:%M:%S", &tm);
1809 #endif
1810 secs = sn->vm_clock_nsec / 1000000000;
1811 snprintf(clock_buf, sizeof(clock_buf),
1812 "%02d:%02d:%02d.%03d",
1813 (int)(secs / 3600),
1814 (int)((secs / 60) % 60),
1815 (int)(secs % 60),
1816 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1817 snprintf(buf, buf_size,
1818 "%-10s%-20s%7s%20s%15s",
1819 sn->id_str, sn->name,
1820 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1821 date_buf,
1822 clock_buf);
1824 return buf;
1828 /**************************************************************/
1829 /* async I/Os */
1831 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1832 QEMUIOVector *qiov, int nb_sectors,
1833 BlockDriverCompletionFunc *cb, void *opaque)
1835 BlockDriver *drv = bs->drv;
1836 BlockDriverAIOCB *ret;
1838 if (!drv)
1839 return NULL;
1840 if (bdrv_check_request(bs, sector_num, nb_sectors))
1841 return NULL;
1843 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
1844 cb, opaque);
1846 if (ret) {
1847 /* Update stats even though technically transfer has not happened. */
1848 bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
1849 bs->rd_ops ++;
1852 return ret;
1855 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1856 QEMUIOVector *qiov, int nb_sectors,
1857 BlockDriverCompletionFunc *cb, void *opaque)
1859 BlockDriver *drv = bs->drv;
1860 BlockDriverAIOCB *ret;
1862 if (!drv)
1863 return NULL;
1864 if (bs->read_only)
1865 return NULL;
1866 if (bdrv_check_request(bs, sector_num, nb_sectors))
1867 return NULL;
1869 if (bs->dirty_bitmap) {
1870 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1873 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
1874 cb, opaque);
1876 if (ret) {
1877 /* Update stats even though technically transfer has not happened. */
1878 bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
1879 bs->wr_ops ++;
1880 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
1881 bs->wr_highest_sector = sector_num + nb_sectors - 1;
1885 return ret;
1889 typedef struct MultiwriteCB {
1890 int error;
1891 int num_requests;
1892 int num_callbacks;
1893 struct {
1894 BlockDriverCompletionFunc *cb;
1895 void *opaque;
1896 QEMUIOVector *free_qiov;
1897 void *free_buf;
1898 } callbacks[];
1899 } MultiwriteCB;
1901 static void multiwrite_user_cb(MultiwriteCB *mcb)
1903 int i;
1905 for (i = 0; i < mcb->num_callbacks; i++) {
1906 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
1907 if (mcb->callbacks[i].free_qiov) {
1908 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
1910 qemu_free(mcb->callbacks[i].free_qiov);
1911 qemu_vfree(mcb->callbacks[i].free_buf);
1915 static void multiwrite_cb(void *opaque, int ret)
1917 MultiwriteCB *mcb = opaque;
1919 if (ret < 0 && !mcb->error) {
1920 mcb->error = ret;
1921 multiwrite_user_cb(mcb);
1924 mcb->num_requests--;
1925 if (mcb->num_requests == 0) {
1926 if (mcb->error == 0) {
1927 multiwrite_user_cb(mcb);
1929 qemu_free(mcb);
1933 static int multiwrite_req_compare(const void *a, const void *b)
1935 return (((BlockRequest*) a)->sector - ((BlockRequest*) b)->sector);
1939 * Takes a bunch of requests and tries to merge them. Returns the number of
1940 * requests that remain after merging.
1942 static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
1943 int num_reqs, MultiwriteCB *mcb)
1945 int i, outidx;
1947 // Sort requests by start sector
1948 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
1950 // Check if adjacent requests touch the same clusters. If so, combine them,
1951 // filling up gaps with zero sectors.
1952 outidx = 0;
1953 for (i = 1; i < num_reqs; i++) {
1954 int merge = 0;
1955 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
1957 // This handles the cases that are valid for all block drivers, namely
1958 // exactly sequential writes and overlapping writes.
1959 if (reqs[i].sector <= oldreq_last) {
1960 merge = 1;
1963 // The block driver may decide that it makes sense to combine requests
1964 // even if there is a gap of some sectors between them. In this case,
1965 // the gap is filled with zeros (therefore only applicable for yet
1966 // unused space in format like qcow2).
1967 if (!merge && bs->drv->bdrv_merge_requests) {
1968 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
1971 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
1972 merge = 0;
1975 if (merge) {
1976 size_t size;
1977 QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
1978 qemu_iovec_init(qiov,
1979 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
1981 // Add the first request to the merged one. If the requests are
1982 // overlapping, drop the last sectors of the first request.
1983 size = (reqs[i].sector - reqs[outidx].sector) << 9;
1984 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
1986 // We might need to add some zeros between the two requests
1987 if (reqs[i].sector > oldreq_last) {
1988 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
1989 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
1990 memset(buf, 0, zero_bytes);
1991 qemu_iovec_add(qiov, buf, zero_bytes);
1992 mcb->callbacks[i].free_buf = buf;
1995 // Add the second request
1996 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
1998 reqs[outidx].nb_sectors += reqs[i].nb_sectors;
1999 reqs[outidx].qiov = qiov;
2001 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
2002 } else {
2003 outidx++;
2004 reqs[outidx].sector = reqs[i].sector;
2005 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
2006 reqs[outidx].qiov = reqs[i].qiov;
2010 return outidx + 1;
2014 * Submit multiple AIO write requests at once.
2016 * On success, the function returns 0 and all requests in the reqs array have
2017 * been submitted. In error case this function returns -1, and any of the
2018 * requests may or may not be submitted yet. In particular, this means that the
2019 * callback will be called for some of the requests, for others it won't. The
2020 * caller must check the error field of the BlockRequest to wait for the right
2021 * callbacks (if error != 0, no callback will be called).
2023 * The implementation may modify the contents of the reqs array, e.g. to merge
2024 * requests. However, the fields opaque and error are left unmodified as they
2025 * are used to signal failure for a single request to the caller.
2027 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
2029 BlockDriverAIOCB *acb;
2030 MultiwriteCB *mcb;
2031 int i;
2033 if (num_reqs == 0) {
2034 return 0;
2037 // Create MultiwriteCB structure
2038 mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
2039 mcb->num_requests = 0;
2040 mcb->num_callbacks = num_reqs;
2042 for (i = 0; i < num_reqs; i++) {
2043 mcb->callbacks[i].cb = reqs[i].cb;
2044 mcb->callbacks[i].opaque = reqs[i].opaque;
2047 // Check for mergable requests
2048 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
2050 // Run the aio requests
2051 for (i = 0; i < num_reqs; i++) {
2052 acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
2053 reqs[i].nb_sectors, multiwrite_cb, mcb);
2055 if (acb == NULL) {
2056 // We can only fail the whole thing if no request has been
2057 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2058 // complete and report the error in the callback.
2059 if (mcb->num_requests == 0) {
2060 reqs[i].error = -EIO;
2061 goto fail;
2062 } else {
2063 mcb->num_requests++;
2064 multiwrite_cb(mcb, -EIO);
2065 break;
2067 } else {
2068 mcb->num_requests++;
2072 return 0;
2074 fail:
2075 free(mcb);
2076 return -1;
2079 BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
2080 BlockDriverCompletionFunc *cb, void *opaque)
2082 BlockDriver *drv = bs->drv;
2084 if (!drv)
2085 return NULL;
2086 return drv->bdrv_aio_flush(bs, cb, opaque);
2089 void bdrv_aio_cancel(BlockDriverAIOCB *acb)
2091 acb->pool->cancel(acb);
2095 /**************************************************************/
2096 /* async block device emulation */
2098 typedef struct BlockDriverAIOCBSync {
2099 BlockDriverAIOCB common;
2100 QEMUBH *bh;
2101 int ret;
2102 /* vector translation state */
2103 QEMUIOVector *qiov;
2104 uint8_t *bounce;
2105 int is_write;
2106 } BlockDriverAIOCBSync;
2108 static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
2110 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
2111 qemu_bh_delete(acb->bh);
2112 acb->bh = NULL;
2113 qemu_aio_release(acb);
2116 static AIOPool bdrv_em_aio_pool = {
2117 .aiocb_size = sizeof(BlockDriverAIOCBSync),
2118 .cancel = bdrv_aio_cancel_em,
2121 static void bdrv_aio_bh_cb(void *opaque)
2123 BlockDriverAIOCBSync *acb = opaque;
2125 if (!acb->is_write)
2126 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
2127 qemu_vfree(acb->bounce);
2128 acb->common.cb(acb->common.opaque, acb->ret);
2129 qemu_bh_delete(acb->bh);
2130 acb->bh = NULL;
2131 qemu_aio_release(acb);
2134 static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
2135 int64_t sector_num,
2136 QEMUIOVector *qiov,
2137 int nb_sectors,
2138 BlockDriverCompletionFunc *cb,
2139 void *opaque,
2140 int is_write)
2143 BlockDriverAIOCBSync *acb;
2145 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2146 acb->is_write = is_write;
2147 acb->qiov = qiov;
2148 acb->bounce = qemu_blockalign(bs, qiov->size);
2150 if (!acb->bh)
2151 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2153 if (is_write) {
2154 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
2155 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
2156 } else {
2157 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
2160 qemu_bh_schedule(acb->bh);
2162 return &acb->common;
2165 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
2166 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
2167 BlockDriverCompletionFunc *cb, void *opaque)
2169 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
2172 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
2173 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
2174 BlockDriverCompletionFunc *cb, void *opaque)
2176 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
2179 static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
2180 BlockDriverCompletionFunc *cb, void *opaque)
2182 BlockDriverAIOCBSync *acb;
2184 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2185 acb->is_write = 1; /* don't bounce in the completion hadler */
2186 acb->qiov = NULL;
2187 acb->bounce = NULL;
2188 acb->ret = 0;
2190 if (!acb->bh)
2191 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2193 bdrv_flush(bs);
2194 qemu_bh_schedule(acb->bh);
2195 return &acb->common;
2198 /**************************************************************/
2199 /* sync block device emulation */
2201 static void bdrv_rw_em_cb(void *opaque, int ret)
2203 *(int *)opaque = ret;
2206 #define NOT_DONE 0x7fffffff
2208 static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
2209 uint8_t *buf, int nb_sectors)
2211 int async_ret;
2212 BlockDriverAIOCB *acb;
2213 struct iovec iov;
2214 QEMUIOVector qiov;
2216 async_context_push();
2218 async_ret = NOT_DONE;
2219 iov.iov_base = (void *)buf;
2220 iov.iov_len = nb_sectors * 512;
2221 qemu_iovec_init_external(&qiov, &iov, 1);
2222 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
2223 bdrv_rw_em_cb, &async_ret);
2224 if (acb == NULL) {
2225 async_ret = -1;
2226 goto fail;
2229 while (async_ret == NOT_DONE) {
2230 qemu_aio_wait();
2234 fail:
2235 async_context_pop();
2236 return async_ret;
2239 static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
2240 const uint8_t *buf, int nb_sectors)
2242 int async_ret;
2243 BlockDriverAIOCB *acb;
2244 struct iovec iov;
2245 QEMUIOVector qiov;
2247 async_context_push();
2249 async_ret = NOT_DONE;
2250 iov.iov_base = (void *)buf;
2251 iov.iov_len = nb_sectors * 512;
2252 qemu_iovec_init_external(&qiov, &iov, 1);
2253 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
2254 bdrv_rw_em_cb, &async_ret);
2255 if (acb == NULL) {
2256 async_ret = -1;
2257 goto fail;
2259 while (async_ret == NOT_DONE) {
2260 qemu_aio_wait();
2263 fail:
2264 async_context_pop();
2265 return async_ret;
2268 void bdrv_init(void)
2270 module_call_init(MODULE_INIT_BLOCK);
2273 void bdrv_init_with_whitelist(void)
2275 use_bdrv_whitelist = 1;
2276 bdrv_init();
2279 void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
2280 BlockDriverCompletionFunc *cb, void *opaque)
2282 BlockDriverAIOCB *acb;
2284 if (pool->free_aiocb) {
2285 acb = pool->free_aiocb;
2286 pool->free_aiocb = acb->next;
2287 } else {
2288 acb = qemu_mallocz(pool->aiocb_size);
2289 acb->pool = pool;
2291 acb->bs = bs;
2292 acb->cb = cb;
2293 acb->opaque = opaque;
2294 return acb;
2297 void qemu_aio_release(void *p)
2299 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
2300 AIOPool *pool = acb->pool;
2301 acb->next = pool->free_aiocb;
2302 pool->free_aiocb = acb;
2305 /**************************************************************/
2306 /* removable device support */
2309 * Return TRUE if the media is present
2311 int bdrv_is_inserted(BlockDriverState *bs)
2313 BlockDriver *drv = bs->drv;
2314 int ret;
2315 if (!drv)
2316 return 0;
2317 if (!drv->bdrv_is_inserted)
2318 return 1;
2319 ret = drv->bdrv_is_inserted(bs);
2320 return ret;
2324 * Return TRUE if the media changed since the last call to this
2325 * function. It is currently only used for floppy disks
2327 int bdrv_media_changed(BlockDriverState *bs)
2329 BlockDriver *drv = bs->drv;
2330 int ret;
2332 if (!drv || !drv->bdrv_media_changed)
2333 ret = -ENOTSUP;
2334 else
2335 ret = drv->bdrv_media_changed(bs);
2336 if (ret == -ENOTSUP)
2337 ret = bs->media_changed;
2338 bs->media_changed = 0;
2339 return ret;
2343 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2345 int bdrv_eject(BlockDriverState *bs, int eject_flag)
2347 BlockDriver *drv = bs->drv;
2348 int ret;
2350 if (bs->locked) {
2351 return -EBUSY;
2354 if (!drv || !drv->bdrv_eject) {
2355 ret = -ENOTSUP;
2356 } else {
2357 ret = drv->bdrv_eject(bs, eject_flag);
2359 if (ret == -ENOTSUP) {
2360 if (eject_flag)
2361 bdrv_close(bs);
2362 ret = 0;
2365 return ret;
2368 int bdrv_is_locked(BlockDriverState *bs)
2370 return bs->locked;
2374 * Lock or unlock the media (if it is locked, the user won't be able
2375 * to eject it manually).
2377 void bdrv_set_locked(BlockDriverState *bs, int locked)
2379 BlockDriver *drv = bs->drv;
2381 bs->locked = locked;
2382 if (drv && drv->bdrv_set_locked) {
2383 drv->bdrv_set_locked(bs, locked);
2387 /* needed for generic scsi interface */
2389 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
2391 BlockDriver *drv = bs->drv;
2393 if (drv && drv->bdrv_ioctl)
2394 return drv->bdrv_ioctl(bs, req, buf);
2395 return -ENOTSUP;
2398 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
2399 unsigned long int req, void *buf,
2400 BlockDriverCompletionFunc *cb, void *opaque)
2402 BlockDriver *drv = bs->drv;
2404 if (drv && drv->bdrv_aio_ioctl)
2405 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
2406 return NULL;
2411 void *qemu_blockalign(BlockDriverState *bs, size_t size)
2413 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
2416 void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
2418 int64_t bitmap_size;
2420 bs->dirty_count = 0;
2421 if (enable) {
2422 if (!bs->dirty_bitmap) {
2423 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
2424 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
2425 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
2427 bs->dirty_bitmap = qemu_mallocz(bitmap_size);
2429 } else {
2430 if (bs->dirty_bitmap) {
2431 qemu_free(bs->dirty_bitmap);
2432 bs->dirty_bitmap = NULL;
2437 int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
2439 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
2441 if (bs->dirty_bitmap &&
2442 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
2443 return bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
2444 (1 << (chunk % (sizeof(unsigned long) * 8)));
2445 } else {
2446 return 0;
2450 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
2451 int nr_sectors)
2453 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
2456 int64_t bdrv_get_dirty_count(BlockDriverState *bs)
2458 return bs->dirty_count;