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"
25 #include "qemu-common.h"
28 #include "block_int.h"
31 #include "qemu-coroutine.h"
32 #include "qmp-commands.h"
33 #include "qemu-timer.h"
36 #include <sys/types.h>
38 #include <sys/ioctl.h>
39 #include <sys/queue.h>
49 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
52 BDRV_REQ_COPY_ON_READ = 0x1,
55 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
56 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
57 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
58 BlockDriverCompletionFunc *cb, void *opaque);
59 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
60 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
61 BlockDriverCompletionFunc *cb, void *opaque);
62 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
63 int64_t sector_num, int nb_sectors,
65 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
66 int64_t sector_num, int nb_sectors,
68 static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
69 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
70 BdrvRequestFlags flags);
71 static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
72 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov);
73 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
77 BlockDriverCompletionFunc *cb,
80 static void coroutine_fn bdrv_co_do_rw(void *opaque);
82 static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
83 bool is_write, double elapsed_time, uint64_t *wait);
84 static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
85 double elapsed_time, uint64_t *wait);
86 static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
87 bool is_write, int64_t *wait);
89 static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
90 QTAILQ_HEAD_INITIALIZER(bdrv_states);
92 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
93 QLIST_HEAD_INITIALIZER(bdrv_drivers);
95 /* The device to use for VM snapshots */
96 static BlockDriverState *bs_snapshots;
98 /* If non-zero, use only whitelisted block drivers */
99 static int use_bdrv_whitelist;
102 static int is_windows_drive_prefix(const char *filename)
104 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
105 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
109 int is_windows_drive(const char *filename)
111 if (is_windows_drive_prefix(filename) &&
114 if (strstart(filename, "\\\\.\\", NULL) ||
115 strstart(filename, "//./", NULL))
121 /* throttling disk I/O limits */
122 void bdrv_io_limits_disable(BlockDriverState *bs)
124 bs->io_limits_enabled = false;
126 while (qemu_co_queue_next(&bs->throttled_reqs));
128 if (bs->block_timer) {
129 qemu_del_timer(bs->block_timer);
130 qemu_free_timer(bs->block_timer);
131 bs->block_timer = NULL;
137 memset(&bs->io_base, 0, sizeof(bs->io_base));
140 static void bdrv_block_timer(void *opaque)
142 BlockDriverState *bs = opaque;
144 qemu_co_queue_next(&bs->throttled_reqs);
147 void bdrv_io_limits_enable(BlockDriverState *bs)
149 qemu_co_queue_init(&bs->throttled_reqs);
150 bs->block_timer = qemu_new_timer_ns(vm_clock, bdrv_block_timer, bs);
151 bs->slice_time = 5 * BLOCK_IO_SLICE_TIME;
152 bs->slice_start = qemu_get_clock_ns(vm_clock);
153 bs->slice_end = bs->slice_start + bs->slice_time;
154 memset(&bs->io_base, 0, sizeof(bs->io_base));
155 bs->io_limits_enabled = true;
158 bool bdrv_io_limits_enabled(BlockDriverState *bs)
160 BlockIOLimit *io_limits = &bs->io_limits;
161 return io_limits->bps[BLOCK_IO_LIMIT_READ]
162 || io_limits->bps[BLOCK_IO_LIMIT_WRITE]
163 || io_limits->bps[BLOCK_IO_LIMIT_TOTAL]
164 || io_limits->iops[BLOCK_IO_LIMIT_READ]
165 || io_limits->iops[BLOCK_IO_LIMIT_WRITE]
166 || io_limits->iops[BLOCK_IO_LIMIT_TOTAL];
169 static void bdrv_io_limits_intercept(BlockDriverState *bs,
170 bool is_write, int nb_sectors)
172 int64_t wait_time = -1;
174 if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
175 qemu_co_queue_wait(&bs->throttled_reqs);
178 /* In fact, we hope to keep each request's timing, in FIFO mode. The next
179 * throttled requests will not be dequeued until the current request is
180 * allowed to be serviced. So if the current request still exceeds the
181 * limits, it will be inserted to the head. All requests followed it will
182 * be still in throttled_reqs queue.
185 while (bdrv_exceed_io_limits(bs, nb_sectors, is_write, &wait_time)) {
186 qemu_mod_timer(bs->block_timer,
187 wait_time + qemu_get_clock_ns(vm_clock));
188 qemu_co_queue_wait_insert_head(&bs->throttled_reqs);
191 qemu_co_queue_next(&bs->throttled_reqs);
194 /* check if the path starts with "<protocol>:" */
195 static int path_has_protocol(const char *path)
198 if (is_windows_drive(path) ||
199 is_windows_drive_prefix(path)) {
204 return strchr(path, ':') != NULL;
207 int path_is_absolute(const char *path)
211 /* specific case for names like: "\\.\d:" */
212 if (*path == '/' || *path == '\\')
215 p = strchr(path, ':');
221 return (*p == '/' || *p == '\\');
227 /* if filename is absolute, just copy it to dest. Otherwise, build a
228 path to it by considering it is relative to base_path. URL are
230 void path_combine(char *dest, int dest_size,
231 const char *base_path,
232 const char *filename)
239 if (path_is_absolute(filename)) {
240 pstrcpy(dest, dest_size, filename);
242 p = strchr(base_path, ':');
247 p1 = strrchr(base_path, '/');
251 p2 = strrchr(base_path, '\\');
263 if (len > dest_size - 1)
265 memcpy(dest, base_path, len);
267 pstrcat(dest, dest_size, filename);
271 void bdrv_register(BlockDriver *bdrv)
273 /* Block drivers without coroutine functions need emulation */
274 if (!bdrv->bdrv_co_readv) {
275 bdrv->bdrv_co_readv = bdrv_co_readv_em;
276 bdrv->bdrv_co_writev = bdrv_co_writev_em;
278 /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
279 * the block driver lacks aio we need to emulate that too.
281 if (!bdrv->bdrv_aio_readv) {
282 /* add AIO emulation layer */
283 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
284 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
288 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
291 /* create a new block device (by default it is empty) */
292 BlockDriverState *bdrv_new(const char *device_name)
294 BlockDriverState *bs;
296 bs = g_malloc0(sizeof(BlockDriverState));
297 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
298 if (device_name[0] != '\0') {
299 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
301 bdrv_iostatus_disable(bs);
305 BlockDriver *bdrv_find_format(const char *format_name)
308 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
309 if (!strcmp(drv1->format_name, format_name)) {
316 static int bdrv_is_whitelisted(BlockDriver *drv)
318 static const char *whitelist[] = {
319 CONFIG_BDRV_WHITELIST
324 return 1; /* no whitelist, anything goes */
326 for (p = whitelist; *p; p++) {
327 if (!strcmp(drv->format_name, *p)) {
334 BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
336 BlockDriver *drv = bdrv_find_format(format_name);
337 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
340 int bdrv_create(BlockDriver *drv, const char* filename,
341 QEMUOptionParameter *options)
343 if (!drv->bdrv_create)
346 return drv->bdrv_create(filename, options);
349 int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
353 drv = bdrv_find_protocol(filename);
358 return bdrv_create(drv, filename, options);
362 void get_tmp_filename(char *filename, int size)
364 char temp_dir[MAX_PATH];
366 GetTempPath(MAX_PATH, temp_dir);
367 GetTempFileName(temp_dir, "qem", 0, filename);
370 void get_tmp_filename(char *filename, int size)
374 /* XXX: race condition possible */
375 tmpdir = getenv("TMPDIR");
378 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
379 fd = mkstemp(filename);
385 * Detect host devices. By convention, /dev/cdrom[N] is always
386 * recognized as a host CDROM.
388 static BlockDriver *find_hdev_driver(const char *filename)
390 int score_max = 0, score;
391 BlockDriver *drv = NULL, *d;
393 QLIST_FOREACH(d, &bdrv_drivers, list) {
394 if (d->bdrv_probe_device) {
395 score = d->bdrv_probe_device(filename);
396 if (score > score_max) {
406 BlockDriver *bdrv_find_protocol(const char *filename)
413 /* TODO Drivers without bdrv_file_open must be specified explicitly */
416 * XXX(hch): we really should not let host device detection
417 * override an explicit protocol specification, but moving this
418 * later breaks access to device names with colons in them.
419 * Thanks to the brain-dead persistent naming schemes on udev-
420 * based Linux systems those actually are quite common.
422 drv1 = find_hdev_driver(filename);
427 if (!path_has_protocol(filename)) {
428 return bdrv_find_format("file");
430 p = strchr(filename, ':');
433 if (len > sizeof(protocol) - 1)
434 len = sizeof(protocol) - 1;
435 memcpy(protocol, filename, len);
436 protocol[len] = '\0';
437 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
438 if (drv1->protocol_name &&
439 !strcmp(drv1->protocol_name, protocol)) {
446 static int find_image_format(const char *filename, BlockDriver **pdrv)
448 int ret, score, score_max;
449 BlockDriver *drv1, *drv;
451 BlockDriverState *bs;
453 ret = bdrv_file_open(&bs, filename, 0);
459 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
460 if (bs->sg || !bdrv_is_inserted(bs)) {
462 drv = bdrv_find_format("raw");
470 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
479 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
480 if (drv1->bdrv_probe) {
481 score = drv1->bdrv_probe(buf, ret, filename);
482 if (score > score_max) {
496 * Set the current 'total_sectors' value
498 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
500 BlockDriver *drv = bs->drv;
502 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
506 /* query actual device if possible, otherwise just trust the hint */
507 if (drv->bdrv_getlength) {
508 int64_t length = drv->bdrv_getlength(bs);
512 hint = length >> BDRV_SECTOR_BITS;
515 bs->total_sectors = hint;
520 * Set open flags for a given cache mode
522 * Return 0 on success, -1 if the cache mode was invalid.
524 int bdrv_parse_cache_flags(const char *mode, int *flags)
526 *flags &= ~BDRV_O_CACHE_MASK;
528 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
529 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
530 } else if (!strcmp(mode, "directsync")) {
531 *flags |= BDRV_O_NOCACHE;
532 } else if (!strcmp(mode, "writeback")) {
533 *flags |= BDRV_O_CACHE_WB;
534 } else if (!strcmp(mode, "unsafe")) {
535 *flags |= BDRV_O_CACHE_WB;
536 *flags |= BDRV_O_NO_FLUSH;
537 } else if (!strcmp(mode, "writethrough")) {
538 /* this is the default */
547 * The copy-on-read flag is actually a reference count so multiple users may
548 * use the feature without worrying about clobbering its previous state.
549 * Copy-on-read stays enabled until all users have called to disable it.
551 void bdrv_enable_copy_on_read(BlockDriverState *bs)
556 void bdrv_disable_copy_on_read(BlockDriverState *bs)
558 assert(bs->copy_on_read > 0);
563 * Common part for opening disk images and files
565 static int bdrv_open_common(BlockDriverState *bs, const char *filename,
566 int flags, BlockDriver *drv)
572 trace_bdrv_open_common(bs, filename, flags, drv->format_name);
575 bs->total_sectors = 0;
579 bs->open_flags = flags;
581 bs->buffer_alignment = 512;
583 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
584 if ((flags & BDRV_O_RDWR) && (flags & BDRV_O_COPY_ON_READ)) {
585 bdrv_enable_copy_on_read(bs);
588 pstrcpy(bs->filename, sizeof(bs->filename), filename);
589 bs->backing_file[0] = '\0';
591 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
596 bs->opaque = g_malloc0(drv->instance_size);
598 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
601 * Clear flags that are internal to the block layer before opening the
604 open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
607 * Snapshots should be writable.
609 if (bs->is_temporary) {
610 open_flags |= BDRV_O_RDWR;
613 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
615 /* Open the image, either directly or using a protocol */
616 if (drv->bdrv_file_open) {
617 ret = drv->bdrv_file_open(bs, filename, open_flags);
619 ret = bdrv_file_open(&bs->file, filename, open_flags);
621 ret = drv->bdrv_open(bs, open_flags);
629 ret = refresh_total_sectors(bs, bs->total_sectors);
635 if (bs->is_temporary) {
643 bdrv_delete(bs->file);
653 * Opens a file using a protocol (file, host_device, nbd, ...)
655 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
657 BlockDriverState *bs;
661 drv = bdrv_find_protocol(filename);
667 ret = bdrv_open_common(bs, filename, flags, drv);
678 * Opens a disk image (raw, qcow2, vmdk, ...)
680 int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
684 char tmp_filename[PATH_MAX];
686 if (flags & BDRV_O_SNAPSHOT) {
687 BlockDriverState *bs1;
690 BlockDriver *bdrv_qcow2;
691 QEMUOptionParameter *options;
692 char backing_filename[PATH_MAX];
694 /* if snapshot, we create a temporary backing file and open it
695 instead of opening 'filename' directly */
697 /* if there is a backing file, use it */
699 ret = bdrv_open(bs1, filename, 0, drv);
704 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
706 if (bs1->drv && bs1->drv->protocol_name)
711 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
713 /* Real path is meaningless for protocols */
715 snprintf(backing_filename, sizeof(backing_filename),
717 else if (!realpath(filename, backing_filename))
720 bdrv_qcow2 = bdrv_find_format("qcow2");
721 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
723 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
724 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
726 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
730 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
731 free_option_parameters(options);
736 filename = tmp_filename;
738 bs->is_temporary = 1;
741 /* Find the right image format driver */
743 ret = find_image_format(filename, &drv);
747 goto unlink_and_fail;
751 ret = bdrv_open_common(bs, filename, flags, drv);
753 goto unlink_and_fail;
756 /* If there is a backing file, use it */
757 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
758 char backing_filename[PATH_MAX];
760 BlockDriver *back_drv = NULL;
762 bs->backing_hd = bdrv_new("");
764 if (path_has_protocol(bs->backing_file)) {
765 pstrcpy(backing_filename, sizeof(backing_filename),
768 path_combine(backing_filename, sizeof(backing_filename),
769 filename, bs->backing_file);
772 if (bs->backing_format[0] != '\0') {
773 back_drv = bdrv_find_format(bs->backing_format);
776 /* backing files always opened read-only */
778 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
780 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
785 if (bs->is_temporary) {
786 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
788 /* base image inherits from "parent" */
789 bs->backing_hd->keep_read_only = bs->keep_read_only;
793 if (!bdrv_key_required(bs)) {
794 bdrv_dev_change_media_cb(bs, true);
797 /* throttling disk I/O limits */
798 if (bs->io_limits_enabled) {
799 bdrv_io_limits_enable(bs);
805 if (bs->is_temporary) {
811 void bdrv_close(BlockDriverState *bs)
814 if (bs == bs_snapshots) {
817 if (bs->backing_hd) {
818 bdrv_delete(bs->backing_hd);
819 bs->backing_hd = NULL;
821 bs->drv->bdrv_close(bs);
824 if (bs->is_temporary) {
825 unlink(bs->filename);
830 bs->copy_on_read = 0;
832 if (bs->file != NULL) {
833 bdrv_close(bs->file);
836 bdrv_dev_change_media_cb(bs, false);
839 /*throttling disk I/O limits*/
840 if (bs->io_limits_enabled) {
841 bdrv_io_limits_disable(bs);
845 void bdrv_close_all(void)
847 BlockDriverState *bs;
849 QTAILQ_FOREACH(bs, &bdrv_states, list) {
855 * Wait for pending requests to complete across all BlockDriverStates
857 * This function does not flush data to disk, use bdrv_flush_all() for that
858 * after calling this function.
860 void bdrv_drain_all(void)
862 BlockDriverState *bs;
866 /* If requests are still pending there is a bug somewhere */
867 QTAILQ_FOREACH(bs, &bdrv_states, list) {
868 assert(QLIST_EMPTY(&bs->tracked_requests));
869 assert(qemu_co_queue_empty(&bs->throttled_reqs));
873 /* make a BlockDriverState anonymous by removing from bdrv_state list.
874 Also, NULL terminate the device_name to prevent double remove */
875 void bdrv_make_anon(BlockDriverState *bs)
877 if (bs->device_name[0] != '\0') {
878 QTAILQ_REMOVE(&bdrv_states, bs, list);
880 bs->device_name[0] = '\0';
883 void bdrv_delete(BlockDriverState *bs)
887 /* remove from list, if necessary */
891 if (bs->file != NULL) {
892 bdrv_delete(bs->file);
895 assert(bs != bs_snapshots);
899 int bdrv_attach_dev(BlockDriverState *bs, void *dev)
900 /* TODO change to DeviceState *dev when all users are qdevified */
906 bdrv_iostatus_reset(bs);
910 /* TODO qdevified devices don't use this, remove when devices are qdevified */
911 void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
913 if (bdrv_attach_dev(bs, dev) < 0) {
918 void bdrv_detach_dev(BlockDriverState *bs, void *dev)
919 /* TODO change to DeviceState *dev when all users are qdevified */
921 assert(bs->dev == dev);
924 bs->dev_opaque = NULL;
925 bs->buffer_alignment = 512;
928 /* TODO change to return DeviceState * when all users are qdevified */
929 void *bdrv_get_attached_dev(BlockDriverState *bs)
934 void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
938 bs->dev_opaque = opaque;
939 if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) {
944 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
946 if (bs->dev_ops && bs->dev_ops->change_media_cb) {
947 bs->dev_ops->change_media_cb(bs->dev_opaque, load);
951 bool bdrv_dev_has_removable_media(BlockDriverState *bs)
953 return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
956 void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
958 if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
959 bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
963 bool bdrv_dev_is_tray_open(BlockDriverState *bs)
965 if (bs->dev_ops && bs->dev_ops->is_tray_open) {
966 return bs->dev_ops->is_tray_open(bs->dev_opaque);
971 static void bdrv_dev_resize_cb(BlockDriverState *bs)
973 if (bs->dev_ops && bs->dev_ops->resize_cb) {
974 bs->dev_ops->resize_cb(bs->dev_opaque);
978 bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
980 if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
981 return bs->dev_ops->is_medium_locked(bs->dev_opaque);
987 * Run consistency checks on an image
989 * Returns 0 if the check could be completed (it doesn't mean that the image is
990 * free of errors) or -errno when an internal error occurred. The results of the
991 * check are stored in res.
993 int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res)
995 if (bs->drv->bdrv_check == NULL) {
999 memset(res, 0, sizeof(*res));
1000 return bs->drv->bdrv_check(bs, res);
1003 #define COMMIT_BUF_SECTORS 2048
1005 /* commit COW file into the raw image */
1006 int bdrv_commit(BlockDriverState *bs)
1008 BlockDriver *drv = bs->drv;
1009 BlockDriver *backing_drv;
1010 int64_t sector, total_sectors;
1011 int n, ro, open_flags;
1012 int ret = 0, rw_ret = 0;
1014 char filename[1024];
1015 BlockDriverState *bs_rw, *bs_ro;
1020 if (!bs->backing_hd) {
1024 if (bs->backing_hd->keep_read_only) {
1028 if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) {
1032 backing_drv = bs->backing_hd->drv;
1033 ro = bs->backing_hd->read_only;
1034 strncpy(filename, bs->backing_hd->filename, sizeof(filename));
1035 open_flags = bs->backing_hd->open_flags;
1039 bdrv_delete(bs->backing_hd);
1040 bs->backing_hd = NULL;
1041 bs_rw = bdrv_new("");
1042 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR,
1046 /* try to re-open read-only */
1047 bs_ro = bdrv_new("");
1048 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
1052 /* drive not functional anymore */
1056 bs->backing_hd = bs_ro;
1059 bs->backing_hd = bs_rw;
1062 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
1063 buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
1065 for (sector = 0; sector < total_sectors; sector += n) {
1066 if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
1068 if (bdrv_read(bs, sector, buf, n) != 0) {
1073 if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
1080 if (drv->bdrv_make_empty) {
1081 ret = drv->bdrv_make_empty(bs);
1086 * Make sure all data we wrote to the backing device is actually
1090 bdrv_flush(bs->backing_hd);
1097 bdrv_delete(bs->backing_hd);
1098 bs->backing_hd = NULL;
1099 bs_ro = bdrv_new("");
1100 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
1104 /* drive not functional anymore */
1108 bs->backing_hd = bs_ro;
1109 bs->backing_hd->keep_read_only = 0;
1115 void bdrv_commit_all(void)
1117 BlockDriverState *bs;
1119 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1124 struct BdrvTrackedRequest {
1125 BlockDriverState *bs;
1129 QLIST_ENTRY(BdrvTrackedRequest) list;
1130 Coroutine *co; /* owner, used for deadlock detection */
1131 CoQueue wait_queue; /* coroutines blocked on this request */
1135 * Remove an active request from the tracked requests list
1137 * This function should be called when a tracked request is completing.
1139 static void tracked_request_end(BdrvTrackedRequest *req)
1141 QLIST_REMOVE(req, list);
1142 qemu_co_queue_restart_all(&req->wait_queue);
1146 * Add an active request to the tracked requests list
1148 static void tracked_request_begin(BdrvTrackedRequest *req,
1149 BlockDriverState *bs,
1151 int nb_sectors, bool is_write)
1153 *req = (BdrvTrackedRequest){
1155 .sector_num = sector_num,
1156 .nb_sectors = nb_sectors,
1157 .is_write = is_write,
1158 .co = qemu_coroutine_self(),
1161 qemu_co_queue_init(&req->wait_queue);
1163 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
1167 * Round a region to cluster boundaries
1169 static void round_to_clusters(BlockDriverState *bs,
1170 int64_t sector_num, int nb_sectors,
1171 int64_t *cluster_sector_num,
1172 int *cluster_nb_sectors)
1174 BlockDriverInfo bdi;
1176 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
1177 *cluster_sector_num = sector_num;
1178 *cluster_nb_sectors = nb_sectors;
1180 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
1181 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
1182 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
1187 static bool tracked_request_overlaps(BdrvTrackedRequest *req,
1188 int64_t sector_num, int nb_sectors) {
1190 if (sector_num >= req->sector_num + req->nb_sectors) {
1194 if (req->sector_num >= sector_num + nb_sectors) {
1200 static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs,
1201 int64_t sector_num, int nb_sectors)
1203 BdrvTrackedRequest *req;
1204 int64_t cluster_sector_num;
1205 int cluster_nb_sectors;
1208 /* If we touch the same cluster it counts as an overlap. This guarantees
1209 * that allocating writes will be serialized and not race with each other
1210 * for the same cluster. For example, in copy-on-read it ensures that the
1211 * CoR read and write operations are atomic and guest writes cannot
1212 * interleave between them.
1214 round_to_clusters(bs, sector_num, nb_sectors,
1215 &cluster_sector_num, &cluster_nb_sectors);
1219 QLIST_FOREACH(req, &bs->tracked_requests, list) {
1220 if (tracked_request_overlaps(req, cluster_sector_num,
1221 cluster_nb_sectors)) {
1222 /* Hitting this means there was a reentrant request, for
1223 * example, a block driver issuing nested requests. This must
1224 * never happen since it means deadlock.
1226 assert(qemu_coroutine_self() != req->co);
1228 qemu_co_queue_wait(&req->wait_queue);
1239 * -EINVAL - backing format specified, but no file
1240 * -ENOSPC - can't update the backing file because no space is left in the
1242 * -ENOTSUP - format driver doesn't support changing the backing file
1244 int bdrv_change_backing_file(BlockDriverState *bs,
1245 const char *backing_file, const char *backing_fmt)
1247 BlockDriver *drv = bs->drv;
1249 if (drv->bdrv_change_backing_file != NULL) {
1250 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
1256 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
1261 if (!bdrv_is_inserted(bs))
1267 len = bdrv_getlength(bs);
1272 if ((offset > len) || (len - offset < size))
1278 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
1281 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
1282 nb_sectors * BDRV_SECTOR_SIZE);
1285 typedef struct RwCo {
1286 BlockDriverState *bs;
1294 static void coroutine_fn bdrv_rw_co_entry(void *opaque)
1296 RwCo *rwco = opaque;
1298 if (!rwco->is_write) {
1299 rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num,
1300 rwco->nb_sectors, rwco->qiov, 0);
1302 rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num,
1303 rwco->nb_sectors, rwco->qiov);
1308 * Process a synchronous request using coroutines
1310 static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
1311 int nb_sectors, bool is_write)
1314 struct iovec iov = {
1315 .iov_base = (void *)buf,
1316 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
1321 .sector_num = sector_num,
1322 .nb_sectors = nb_sectors,
1324 .is_write = is_write,
1328 qemu_iovec_init_external(&qiov, &iov, 1);
1330 if (qemu_in_coroutine()) {
1331 /* Fast-path if already in coroutine context */
1332 bdrv_rw_co_entry(&rwco);
1334 co = qemu_coroutine_create(bdrv_rw_co_entry);
1335 qemu_coroutine_enter(co, &rwco);
1336 while (rwco.ret == NOT_DONE) {
1343 /* return < 0 if error. See bdrv_write() for the return codes */
1344 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
1345 uint8_t *buf, int nb_sectors)
1347 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false);
1350 static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
1351 int nb_sectors, int dirty)
1354 unsigned long val, idx, bit;
1356 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
1357 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
1359 for (; start <= end; start++) {
1360 idx = start / (sizeof(unsigned long) * 8);
1361 bit = start % (sizeof(unsigned long) * 8);
1362 val = bs->dirty_bitmap[idx];
1364 if (!(val & (1UL << bit))) {
1369 if (val & (1UL << bit)) {
1371 val &= ~(1UL << bit);
1374 bs->dirty_bitmap[idx] = val;
1378 /* Return < 0 if error. Important errors are:
1379 -EIO generic I/O error (may happen for all errors)
1380 -ENOMEDIUM No media inserted.
1381 -EINVAL Invalid sector number or nb_sectors
1382 -EACCES Trying to write a read-only device
1384 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
1385 const uint8_t *buf, int nb_sectors)
1387 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true);
1390 int bdrv_pread(BlockDriverState *bs, int64_t offset,
1391 void *buf, int count1)
1393 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
1394 int len, nb_sectors, count;
1399 /* first read to align to sector start */
1400 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
1403 sector_num = offset >> BDRV_SECTOR_BITS;
1405 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1407 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
1415 /* read the sectors "in place" */
1416 nb_sectors = count >> BDRV_SECTOR_BITS;
1417 if (nb_sectors > 0) {
1418 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
1420 sector_num += nb_sectors;
1421 len = nb_sectors << BDRV_SECTOR_BITS;
1426 /* add data from the last sector */
1428 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1430 memcpy(buf, tmp_buf, count);
1435 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
1436 const void *buf, int count1)
1438 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
1439 int len, nb_sectors, count;
1444 /* first write to align to sector start */
1445 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
1448 sector_num = offset >> BDRV_SECTOR_BITS;
1450 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1452 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
1453 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1462 /* write the sectors "in place" */
1463 nb_sectors = count >> BDRV_SECTOR_BITS;
1464 if (nb_sectors > 0) {
1465 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
1467 sector_num += nb_sectors;
1468 len = nb_sectors << BDRV_SECTOR_BITS;
1473 /* add data from the last sector */
1475 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1477 memcpy(tmp_buf, buf, count);
1478 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1485 * Writes to the file and ensures that no writes are reordered across this
1486 * request (acts as a barrier)
1488 * Returns 0 on success, -errno in error cases.
1490 int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
1491 const void *buf, int count)
1495 ret = bdrv_pwrite(bs, offset, buf, count);
1500 /* No flush needed for cache modes that use O_DSYNC */
1501 if ((bs->open_flags & BDRV_O_CACHE_WB) != 0) {
1508 static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
1509 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
1511 /* Perform I/O through a temporary buffer so that users who scribble over
1512 * their read buffer while the operation is in progress do not end up
1513 * modifying the image file. This is critical for zero-copy guest I/O
1514 * where anything might happen inside guest memory.
1516 void *bounce_buffer;
1519 QEMUIOVector bounce_qiov;
1520 int64_t cluster_sector_num;
1521 int cluster_nb_sectors;
1525 /* Cover entire cluster so no additional backing file I/O is required when
1526 * allocating cluster in the image file.
1528 round_to_clusters(bs, sector_num, nb_sectors,
1529 &cluster_sector_num, &cluster_nb_sectors);
1531 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
1532 cluster_sector_num, cluster_nb_sectors);
1534 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
1535 iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
1536 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
1538 ret = bs->drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
1544 ret = bs->drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
1547 /* It might be okay to ignore write errors for guest requests. If this
1548 * is a deliberate copy-on-read then we don't want to ignore the error.
1549 * Simply report it in all cases.
1554 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
1555 qemu_iovec_from_buffer(qiov, bounce_buffer + skip_bytes,
1556 nb_sectors * BDRV_SECTOR_SIZE);
1559 qemu_vfree(bounce_buffer);
1564 * Handle a read request in coroutine context
1566 static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
1567 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
1568 BdrvRequestFlags flags)
1570 BlockDriver *drv = bs->drv;
1571 BdrvTrackedRequest req;
1577 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
1581 /* throttling disk read I/O */
1582 if (bs->io_limits_enabled) {
1583 bdrv_io_limits_intercept(bs, false, nb_sectors);
1586 if (bs->copy_on_read) {
1587 flags |= BDRV_REQ_COPY_ON_READ;
1589 if (flags & BDRV_REQ_COPY_ON_READ) {
1590 bs->copy_on_read_in_flight++;
1593 if (bs->copy_on_read_in_flight) {
1594 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
1597 tracked_request_begin(&req, bs, sector_num, nb_sectors, false);
1599 if (flags & BDRV_REQ_COPY_ON_READ) {
1602 ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum);
1607 if (!ret || pnum != nb_sectors) {
1608 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
1613 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
1616 tracked_request_end(&req);
1618 if (flags & BDRV_REQ_COPY_ON_READ) {
1619 bs->copy_on_read_in_flight--;
1625 int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
1626 int nb_sectors, QEMUIOVector *qiov)
1628 trace_bdrv_co_readv(bs, sector_num, nb_sectors);
1630 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
1633 int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
1634 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
1636 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
1638 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
1639 BDRV_REQ_COPY_ON_READ);
1643 * Handle a write request in coroutine context
1645 static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
1646 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
1648 BlockDriver *drv = bs->drv;
1649 BdrvTrackedRequest req;
1655 if (bs->read_only) {
1658 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
1662 /* throttling disk write I/O */
1663 if (bs->io_limits_enabled) {
1664 bdrv_io_limits_intercept(bs, true, nb_sectors);
1667 if (bs->copy_on_read_in_flight) {
1668 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
1671 tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
1673 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
1675 if (bs->dirty_bitmap) {
1676 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1679 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
1680 bs->wr_highest_sector = sector_num + nb_sectors - 1;
1683 tracked_request_end(&req);
1688 int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
1689 int nb_sectors, QEMUIOVector *qiov)
1691 trace_bdrv_co_writev(bs, sector_num, nb_sectors);
1693 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov);
1697 * Truncate file to 'offset' bytes (needed only for file protocols)
1699 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
1701 BlockDriver *drv = bs->drv;
1705 if (!drv->bdrv_truncate)
1709 if (bdrv_in_use(bs))
1711 ret = drv->bdrv_truncate(bs, offset);
1713 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
1714 bdrv_dev_resize_cb(bs);
1720 * Length of a allocated file in bytes. Sparse files are counted by actual
1721 * allocated space. Return < 0 if error or unknown.
1723 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
1725 BlockDriver *drv = bs->drv;
1729 if (drv->bdrv_get_allocated_file_size) {
1730 return drv->bdrv_get_allocated_file_size(bs);
1733 return bdrv_get_allocated_file_size(bs->file);
1739 * Length of a file in bytes. Return < 0 if error or unknown.
1741 int64_t bdrv_getlength(BlockDriverState *bs)
1743 BlockDriver *drv = bs->drv;
1747 if (bs->growable || bdrv_dev_has_removable_media(bs)) {
1748 if (drv->bdrv_getlength) {
1749 return drv->bdrv_getlength(bs);
1752 return bs->total_sectors * BDRV_SECTOR_SIZE;
1755 /* return 0 as number of sectors if no device present or error */
1756 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
1759 length = bdrv_getlength(bs);
1763 length = length >> BDRV_SECTOR_BITS;
1764 *nb_sectors_ptr = length;
1768 uint8_t boot_ind; /* 0x80 - active */
1769 uint8_t head; /* starting head */
1770 uint8_t sector; /* starting sector */
1771 uint8_t cyl; /* starting cylinder */
1772 uint8_t sys_ind; /* What partition type */
1773 uint8_t end_head; /* end head */
1774 uint8_t end_sector; /* end sector */
1775 uint8_t end_cyl; /* end cylinder */
1776 uint32_t start_sect; /* starting sector counting from 0 */
1777 uint32_t nr_sects; /* nr of sectors in partition */
1780 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1781 static int guess_disk_lchs(BlockDriverState *bs,
1782 int *pcylinders, int *pheads, int *psectors)
1784 uint8_t buf[BDRV_SECTOR_SIZE];
1785 int ret, i, heads, sectors, cylinders;
1786 struct partition *p;
1788 uint64_t nb_sectors;
1790 bdrv_get_geometry(bs, &nb_sectors);
1792 ret = bdrv_read(bs, 0, buf, 1);
1795 /* test msdos magic */
1796 if (buf[510] != 0x55 || buf[511] != 0xaa)
1798 for(i = 0; i < 4; i++) {
1799 p = ((struct partition *)(buf + 0x1be)) + i;
1800 nr_sects = le32_to_cpu(p->nr_sects);
1801 if (nr_sects && p->end_head) {
1802 /* We make the assumption that the partition terminates on
1803 a cylinder boundary */
1804 heads = p->end_head + 1;
1805 sectors = p->end_sector & 63;
1808 cylinders = nb_sectors / (heads * sectors);
1809 if (cylinders < 1 || cylinders > 16383)
1812 *psectors = sectors;
1813 *pcylinders = cylinders;
1815 printf("guessed geometry: LCHS=%d %d %d\n",
1816 cylinders, heads, sectors);
1824 void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
1826 int translation, lba_detected = 0;
1827 int cylinders, heads, secs;
1828 uint64_t nb_sectors;
1830 /* if a geometry hint is available, use it */
1831 bdrv_get_geometry(bs, &nb_sectors);
1832 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
1833 translation = bdrv_get_translation_hint(bs);
1834 if (cylinders != 0) {
1839 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
1841 /* if heads > 16, it means that a BIOS LBA
1842 translation was active, so the default
1843 hardware geometry is OK */
1845 goto default_geometry;
1850 /* disable any translation to be in sync with
1851 the logical geometry */
1852 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
1853 bdrv_set_translation_hint(bs,
1854 BIOS_ATA_TRANSLATION_NONE);
1859 /* if no geometry, use a standard physical disk geometry */
1860 cylinders = nb_sectors / (16 * 63);
1862 if (cylinders > 16383)
1864 else if (cylinders < 2)
1869 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
1870 if ((*pcyls * *pheads) <= 131072) {
1871 bdrv_set_translation_hint(bs,
1872 BIOS_ATA_TRANSLATION_LARGE);
1874 bdrv_set_translation_hint(bs,
1875 BIOS_ATA_TRANSLATION_LBA);
1879 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
1883 void bdrv_set_geometry_hint(BlockDriverState *bs,
1884 int cyls, int heads, int secs)
1891 void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
1893 bs->translation = translation;
1896 void bdrv_get_geometry_hint(BlockDriverState *bs,
1897 int *pcyls, int *pheads, int *psecs)
1900 *pheads = bs->heads;
1904 /* throttling disk io limits */
1905 void bdrv_set_io_limits(BlockDriverState *bs,
1906 BlockIOLimit *io_limits)
1908 bs->io_limits = *io_limits;
1909 bs->io_limits_enabled = bdrv_io_limits_enabled(bs);
1912 /* Recognize floppy formats */
1913 typedef struct FDFormat {
1920 static const FDFormat fd_formats[] = {
1921 /* First entry is default format */
1922 /* 1.44 MB 3"1/2 floppy disks */
1923 { FDRIVE_DRV_144, 18, 80, 1, },
1924 { FDRIVE_DRV_144, 20, 80, 1, },
1925 { FDRIVE_DRV_144, 21, 80, 1, },
1926 { FDRIVE_DRV_144, 21, 82, 1, },
1927 { FDRIVE_DRV_144, 21, 83, 1, },
1928 { FDRIVE_DRV_144, 22, 80, 1, },
1929 { FDRIVE_DRV_144, 23, 80, 1, },
1930 { FDRIVE_DRV_144, 24, 80, 1, },
1931 /* 2.88 MB 3"1/2 floppy disks */
1932 { FDRIVE_DRV_288, 36, 80, 1, },
1933 { FDRIVE_DRV_288, 39, 80, 1, },
1934 { FDRIVE_DRV_288, 40, 80, 1, },
1935 { FDRIVE_DRV_288, 44, 80, 1, },
1936 { FDRIVE_DRV_288, 48, 80, 1, },
1937 /* 720 kB 3"1/2 floppy disks */
1938 { FDRIVE_DRV_144, 9, 80, 1, },
1939 { FDRIVE_DRV_144, 10, 80, 1, },
1940 { FDRIVE_DRV_144, 10, 82, 1, },
1941 { FDRIVE_DRV_144, 10, 83, 1, },
1942 { FDRIVE_DRV_144, 13, 80, 1, },
1943 { FDRIVE_DRV_144, 14, 80, 1, },
1944 /* 1.2 MB 5"1/4 floppy disks */
1945 { FDRIVE_DRV_120, 15, 80, 1, },
1946 { FDRIVE_DRV_120, 18, 80, 1, },
1947 { FDRIVE_DRV_120, 18, 82, 1, },
1948 { FDRIVE_DRV_120, 18, 83, 1, },
1949 { FDRIVE_DRV_120, 20, 80, 1, },
1950 /* 720 kB 5"1/4 floppy disks */
1951 { FDRIVE_DRV_120, 9, 80, 1, },
1952 { FDRIVE_DRV_120, 11, 80, 1, },
1953 /* 360 kB 5"1/4 floppy disks */
1954 { FDRIVE_DRV_120, 9, 40, 1, },
1955 { FDRIVE_DRV_120, 9, 40, 0, },
1956 { FDRIVE_DRV_120, 10, 41, 1, },
1957 { FDRIVE_DRV_120, 10, 42, 1, },
1958 /* 320 kB 5"1/4 floppy disks */
1959 { FDRIVE_DRV_120, 8, 40, 1, },
1960 { FDRIVE_DRV_120, 8, 40, 0, },
1961 /* 360 kB must match 5"1/4 better than 3"1/2... */
1962 { FDRIVE_DRV_144, 9, 80, 0, },
1964 { FDRIVE_DRV_NONE, -1, -1, 0, },
1967 void bdrv_get_floppy_geometry_hint(BlockDriverState *bs, int *nb_heads,
1968 int *max_track, int *last_sect,
1969 FDriveType drive_in, FDriveType *drive)
1971 const FDFormat *parse;
1972 uint64_t nb_sectors, size;
1973 int i, first_match, match;
1975 bdrv_get_geometry_hint(bs, nb_heads, max_track, last_sect);
1976 if (*nb_heads != 0 && *max_track != 0 && *last_sect != 0) {
1977 /* User defined disk */
1979 bdrv_get_geometry(bs, &nb_sectors);
1982 for (i = 0; ; i++) {
1983 parse = &fd_formats[i];
1984 if (parse->drive == FDRIVE_DRV_NONE) {
1987 if (drive_in == parse->drive ||
1988 drive_in == FDRIVE_DRV_NONE) {
1989 size = (parse->max_head + 1) * parse->max_track *
1991 if (nb_sectors == size) {
1995 if (first_match == -1) {
2001 if (first_match == -1) {
2004 match = first_match;
2006 parse = &fd_formats[match];
2008 *nb_heads = parse->max_head + 1;
2009 *max_track = parse->max_track;
2010 *last_sect = parse->last_sect;
2011 *drive = parse->drive;
2015 int bdrv_get_translation_hint(BlockDriverState *bs)
2017 return bs->translation;
2020 void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
2021 BlockErrorAction on_write_error)
2023 bs->on_read_error = on_read_error;
2024 bs->on_write_error = on_write_error;
2027 BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read)
2029 return is_read ? bs->on_read_error : bs->on_write_error;
2032 int bdrv_is_read_only(BlockDriverState *bs)
2034 return bs->read_only;
2037 int bdrv_is_sg(BlockDriverState *bs)
2042 int bdrv_enable_write_cache(BlockDriverState *bs)
2044 return bs->enable_write_cache;
2047 int bdrv_is_encrypted(BlockDriverState *bs)
2049 if (bs->backing_hd && bs->backing_hd->encrypted)
2051 return bs->encrypted;
2054 int bdrv_key_required(BlockDriverState *bs)
2056 BlockDriverState *backing_hd = bs->backing_hd;
2058 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
2060 return (bs->encrypted && !bs->valid_key);
2063 int bdrv_set_key(BlockDriverState *bs, const char *key)
2066 if (bs->backing_hd && bs->backing_hd->encrypted) {
2067 ret = bdrv_set_key(bs->backing_hd, key);
2073 if (!bs->encrypted) {
2075 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2078 ret = bs->drv->bdrv_set_key(bs, key);
2081 } else if (!bs->valid_key) {
2083 /* call the change callback now, we skipped it on open */
2084 bdrv_dev_change_media_cb(bs, true);
2089 void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
2094 pstrcpy(buf, buf_size, bs->drv->format_name);
2098 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2103 QLIST_FOREACH(drv, &bdrv_drivers, list) {
2104 it(opaque, drv->format_name);
2108 BlockDriverState *bdrv_find(const char *name)
2110 BlockDriverState *bs;
2112 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2113 if (!strcmp(name, bs->device_name)) {
2120 BlockDriverState *bdrv_next(BlockDriverState *bs)
2123 return QTAILQ_FIRST(&bdrv_states);
2125 return QTAILQ_NEXT(bs, list);
2128 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
2130 BlockDriverState *bs;
2132 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2137 const char *bdrv_get_device_name(BlockDriverState *bs)
2139 return bs->device_name;
2142 void bdrv_flush_all(void)
2144 BlockDriverState *bs;
2146 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2147 if (!bdrv_is_read_only(bs) && bdrv_is_inserted(bs)) {
2153 int bdrv_has_zero_init(BlockDriverState *bs)
2157 if (bs->drv->bdrv_has_zero_init) {
2158 return bs->drv->bdrv_has_zero_init(bs);
2164 typedef struct BdrvCoIsAllocatedData {
2165 BlockDriverState *bs;
2171 } BdrvCoIsAllocatedData;
2174 * Returns true iff the specified sector is present in the disk image. Drivers
2175 * not implementing the functionality are assumed to not support backing files,
2176 * hence all their sectors are reported as allocated.
2178 * If 'sector_num' is beyond the end of the disk image the return value is 0
2179 * and 'pnum' is set to 0.
2181 * 'pnum' is set to the number of sectors (including and immediately following
2182 * the specified sector) that are known to be in the same
2183 * allocated/unallocated state.
2185 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
2186 * beyond the end of the disk image it will be clamped.
2188 int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
2189 int nb_sectors, int *pnum)
2193 if (sector_num >= bs->total_sectors) {
2198 n = bs->total_sectors - sector_num;
2199 if (n < nb_sectors) {
2203 if (!bs->drv->bdrv_co_is_allocated) {
2208 return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum);
2211 /* Coroutine wrapper for bdrv_is_allocated() */
2212 static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque)
2214 BdrvCoIsAllocatedData *data = opaque;
2215 BlockDriverState *bs = data->bs;
2217 data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors,
2223 * Synchronous wrapper around bdrv_co_is_allocated().
2225 * See bdrv_co_is_allocated() for details.
2227 int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
2231 BdrvCoIsAllocatedData data = {
2233 .sector_num = sector_num,
2234 .nb_sectors = nb_sectors,
2239 co = qemu_coroutine_create(bdrv_is_allocated_co_entry);
2240 qemu_coroutine_enter(co, &data);
2241 while (!data.done) {
2247 void bdrv_mon_event(const BlockDriverState *bdrv,
2248 BlockMonEventAction action, int is_read)
2251 const char *action_str;
2254 case BDRV_ACTION_REPORT:
2255 action_str = "report";
2257 case BDRV_ACTION_IGNORE:
2258 action_str = "ignore";
2260 case BDRV_ACTION_STOP:
2261 action_str = "stop";
2267 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
2270 is_read ? "read" : "write");
2271 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
2273 qobject_decref(data);
2276 BlockInfoList *qmp_query_block(Error **errp)
2278 BlockInfoList *head = NULL, *cur_item = NULL;
2279 BlockDriverState *bs;
2281 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2282 BlockInfoList *info = g_malloc0(sizeof(*info));
2284 info->value = g_malloc0(sizeof(*info->value));
2285 info->value->device = g_strdup(bs->device_name);
2286 info->value->type = g_strdup("unknown");
2287 info->value->locked = bdrv_dev_is_medium_locked(bs);
2288 info->value->removable = bdrv_dev_has_removable_media(bs);
2290 if (bdrv_dev_has_removable_media(bs)) {
2291 info->value->has_tray_open = true;
2292 info->value->tray_open = bdrv_dev_is_tray_open(bs);
2295 if (bdrv_iostatus_is_enabled(bs)) {
2296 info->value->has_io_status = true;
2297 info->value->io_status = bs->iostatus;
2301 info->value->has_inserted = true;
2302 info->value->inserted = g_malloc0(sizeof(*info->value->inserted));
2303 info->value->inserted->file = g_strdup(bs->filename);
2304 info->value->inserted->ro = bs->read_only;
2305 info->value->inserted->drv = g_strdup(bs->drv->format_name);
2306 info->value->inserted->encrypted = bs->encrypted;
2307 if (bs->backing_file[0]) {
2308 info->value->inserted->has_backing_file = true;
2309 info->value->inserted->backing_file = g_strdup(bs->backing_file);
2312 if (bs->io_limits_enabled) {
2313 info->value->inserted->bps =
2314 bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
2315 info->value->inserted->bps_rd =
2316 bs->io_limits.bps[BLOCK_IO_LIMIT_READ];
2317 info->value->inserted->bps_wr =
2318 bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE];
2319 info->value->inserted->iops =
2320 bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
2321 info->value->inserted->iops_rd =
2322 bs->io_limits.iops[BLOCK_IO_LIMIT_READ];
2323 info->value->inserted->iops_wr =
2324 bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE];
2328 /* XXX: waiting for the qapi to support GSList */
2330 head = cur_item = info;
2332 cur_item->next = info;
2340 /* Consider exposing this as a full fledged QMP command */
2341 static BlockStats *qmp_query_blockstat(const BlockDriverState *bs, Error **errp)
2345 s = g_malloc0(sizeof(*s));
2347 if (bs->device_name[0]) {
2348 s->has_device = true;
2349 s->device = g_strdup(bs->device_name);
2352 s->stats = g_malloc0(sizeof(*s->stats));
2353 s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ];
2354 s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE];
2355 s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ];
2356 s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE];
2357 s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE;
2358 s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH];
2359 s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE];
2360 s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ];
2361 s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH];
2364 s->has_parent = true;
2365 s->parent = qmp_query_blockstat(bs->file, NULL);
2371 BlockStatsList *qmp_query_blockstats(Error **errp)
2373 BlockStatsList *head = NULL, *cur_item = NULL;
2374 BlockDriverState *bs;
2376 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2377 BlockStatsList *info = g_malloc0(sizeof(*info));
2378 info->value = qmp_query_blockstat(bs, NULL);
2380 /* XXX: waiting for the qapi to support GSList */
2382 head = cur_item = info;
2384 cur_item->next = info;
2392 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2394 if (bs->backing_hd && bs->backing_hd->encrypted)
2395 return bs->backing_file;
2396 else if (bs->encrypted)
2397 return bs->filename;
2402 void bdrv_get_backing_filename(BlockDriverState *bs,
2403 char *filename, int filename_size)
2405 pstrcpy(filename, filename_size, bs->backing_file);
2408 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
2409 const uint8_t *buf, int nb_sectors)
2411 BlockDriver *drv = bs->drv;
2414 if (!drv->bdrv_write_compressed)
2416 if (bdrv_check_request(bs, sector_num, nb_sectors))
2419 if (bs->dirty_bitmap) {
2420 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2423 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
2426 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2428 BlockDriver *drv = bs->drv;
2431 if (!drv->bdrv_get_info)
2433 memset(bdi, 0, sizeof(*bdi));
2434 return drv->bdrv_get_info(bs, bdi);
2437 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
2438 int64_t pos, int size)
2440 BlockDriver *drv = bs->drv;
2443 if (drv->bdrv_save_vmstate)
2444 return drv->bdrv_save_vmstate(bs, buf, pos, size);
2446 return bdrv_save_vmstate(bs->file, buf, pos, size);
2450 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2451 int64_t pos, int size)
2453 BlockDriver *drv = bs->drv;
2456 if (drv->bdrv_load_vmstate)
2457 return drv->bdrv_load_vmstate(bs, buf, pos, size);
2459 return bdrv_load_vmstate(bs->file, buf, pos, size);
2463 void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
2465 BlockDriver *drv = bs->drv;
2467 if (!drv || !drv->bdrv_debug_event) {
2471 return drv->bdrv_debug_event(bs, event);
2475 /**************************************************************/
2476 /* handling of snapshots */
2478 int bdrv_can_snapshot(BlockDriverState *bs)
2480 BlockDriver *drv = bs->drv;
2481 if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2485 if (!drv->bdrv_snapshot_create) {
2486 if (bs->file != NULL) {
2487 return bdrv_can_snapshot(bs->file);
2495 int bdrv_is_snapshot(BlockDriverState *bs)
2497 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
2500 BlockDriverState *bdrv_snapshots(void)
2502 BlockDriverState *bs;
2505 return bs_snapshots;
2509 while ((bs = bdrv_next(bs))) {
2510 if (bdrv_can_snapshot(bs)) {
2518 int bdrv_snapshot_create(BlockDriverState *bs,
2519 QEMUSnapshotInfo *sn_info)
2521 BlockDriver *drv = bs->drv;
2524 if (drv->bdrv_snapshot_create)
2525 return drv->bdrv_snapshot_create(bs, sn_info);
2527 return bdrv_snapshot_create(bs->file, sn_info);
2531 int bdrv_snapshot_goto(BlockDriverState *bs,
2532 const char *snapshot_id)
2534 BlockDriver *drv = bs->drv;
2539 if (drv->bdrv_snapshot_goto)
2540 return drv->bdrv_snapshot_goto(bs, snapshot_id);
2543 drv->bdrv_close(bs);
2544 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
2545 open_ret = drv->bdrv_open(bs, bs->open_flags);
2547 bdrv_delete(bs->file);
2557 int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
2559 BlockDriver *drv = bs->drv;
2562 if (drv->bdrv_snapshot_delete)
2563 return drv->bdrv_snapshot_delete(bs, snapshot_id);
2565 return bdrv_snapshot_delete(bs->file, snapshot_id);
2569 int bdrv_snapshot_list(BlockDriverState *bs,
2570 QEMUSnapshotInfo **psn_info)
2572 BlockDriver *drv = bs->drv;
2575 if (drv->bdrv_snapshot_list)
2576 return drv->bdrv_snapshot_list(bs, psn_info);
2578 return bdrv_snapshot_list(bs->file, psn_info);
2582 int bdrv_snapshot_load_tmp(BlockDriverState *bs,
2583 const char *snapshot_name)
2585 BlockDriver *drv = bs->drv;
2589 if (!bs->read_only) {
2592 if (drv->bdrv_snapshot_load_tmp) {
2593 return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
2598 #define NB_SUFFIXES 4
2600 char *get_human_readable_size(char *buf, int buf_size, int64_t size)
2602 static const char suffixes[NB_SUFFIXES] = "KMGT";
2607 snprintf(buf, buf_size, "%" PRId64, size);
2610 for(i = 0; i < NB_SUFFIXES; i++) {
2611 if (size < (10 * base)) {
2612 snprintf(buf, buf_size, "%0.1f%c",
2613 (double)size / base,
2616 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
2617 snprintf(buf, buf_size, "%" PRId64 "%c",
2618 ((size + (base >> 1)) / base),
2628 char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
2630 char buf1[128], date_buf[128], clock_buf[128];
2640 snprintf(buf, buf_size,
2641 "%-10s%-20s%7s%20s%15s",
2642 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
2646 ptm = localtime(&ti);
2647 strftime(date_buf, sizeof(date_buf),
2648 "%Y-%m-%d %H:%M:%S", ptm);
2650 localtime_r(&ti, &tm);
2651 strftime(date_buf, sizeof(date_buf),
2652 "%Y-%m-%d %H:%M:%S", &tm);
2654 secs = sn->vm_clock_nsec / 1000000000;
2655 snprintf(clock_buf, sizeof(clock_buf),
2656 "%02d:%02d:%02d.%03d",
2658 (int)((secs / 60) % 60),
2660 (int)((sn->vm_clock_nsec / 1000000) % 1000));
2661 snprintf(buf, buf_size,
2662 "%-10s%-20s%7s%20s%15s",
2663 sn->id_str, sn->name,
2664 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
2671 /**************************************************************/
2674 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
2675 QEMUIOVector *qiov, int nb_sectors,
2676 BlockDriverCompletionFunc *cb, void *opaque)
2678 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
2680 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
2684 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
2685 QEMUIOVector *qiov, int nb_sectors,
2686 BlockDriverCompletionFunc *cb, void *opaque)
2688 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
2690 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
2695 typedef struct MultiwriteCB {
2700 BlockDriverCompletionFunc *cb;
2702 QEMUIOVector *free_qiov;
2707 static void multiwrite_user_cb(MultiwriteCB *mcb)
2711 for (i = 0; i < mcb->num_callbacks; i++) {
2712 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
2713 if (mcb->callbacks[i].free_qiov) {
2714 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
2716 g_free(mcb->callbacks[i].free_qiov);
2717 qemu_vfree(mcb->callbacks[i].free_buf);
2721 static void multiwrite_cb(void *opaque, int ret)
2723 MultiwriteCB *mcb = opaque;
2725 trace_multiwrite_cb(mcb, ret);
2727 if (ret < 0 && !mcb->error) {
2731 mcb->num_requests--;
2732 if (mcb->num_requests == 0) {
2733 multiwrite_user_cb(mcb);
2738 static int multiwrite_req_compare(const void *a, const void *b)
2740 const BlockRequest *req1 = a, *req2 = b;
2743 * Note that we can't simply subtract req2->sector from req1->sector
2744 * here as that could overflow the return value.
2746 if (req1->sector > req2->sector) {
2748 } else if (req1->sector < req2->sector) {
2756 * Takes a bunch of requests and tries to merge them. Returns the number of
2757 * requests that remain after merging.
2759 static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
2760 int num_reqs, MultiwriteCB *mcb)
2764 // Sort requests by start sector
2765 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
2767 // Check if adjacent requests touch the same clusters. If so, combine them,
2768 // filling up gaps with zero sectors.
2770 for (i = 1; i < num_reqs; i++) {
2772 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
2774 // This handles the cases that are valid for all block drivers, namely
2775 // exactly sequential writes and overlapping writes.
2776 if (reqs[i].sector <= oldreq_last) {
2780 // The block driver may decide that it makes sense to combine requests
2781 // even if there is a gap of some sectors between them. In this case,
2782 // the gap is filled with zeros (therefore only applicable for yet
2783 // unused space in format like qcow2).
2784 if (!merge && bs->drv->bdrv_merge_requests) {
2785 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
2788 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
2794 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
2795 qemu_iovec_init(qiov,
2796 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
2798 // Add the first request to the merged one. If the requests are
2799 // overlapping, drop the last sectors of the first request.
2800 size = (reqs[i].sector - reqs[outidx].sector) << 9;
2801 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
2803 // We might need to add some zeros between the two requests
2804 if (reqs[i].sector > oldreq_last) {
2805 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
2806 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
2807 memset(buf, 0, zero_bytes);
2808 qemu_iovec_add(qiov, buf, zero_bytes);
2809 mcb->callbacks[i].free_buf = buf;
2812 // Add the second request
2813 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
2815 reqs[outidx].nb_sectors = qiov->size >> 9;
2816 reqs[outidx].qiov = qiov;
2818 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
2821 reqs[outidx].sector = reqs[i].sector;
2822 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
2823 reqs[outidx].qiov = reqs[i].qiov;
2831 * Submit multiple AIO write requests at once.
2833 * On success, the function returns 0 and all requests in the reqs array have
2834 * been submitted. In error case this function returns -1, and any of the
2835 * requests may or may not be submitted yet. In particular, this means that the
2836 * callback will be called for some of the requests, for others it won't. The
2837 * caller must check the error field of the BlockRequest to wait for the right
2838 * callbacks (if error != 0, no callback will be called).
2840 * The implementation may modify the contents of the reqs array, e.g. to merge
2841 * requests. However, the fields opaque and error are left unmodified as they
2842 * are used to signal failure for a single request to the caller.
2844 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
2849 /* don't submit writes if we don't have a medium */
2850 if (bs->drv == NULL) {
2851 for (i = 0; i < num_reqs; i++) {
2852 reqs[i].error = -ENOMEDIUM;
2857 if (num_reqs == 0) {
2861 // Create MultiwriteCB structure
2862 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
2863 mcb->num_requests = 0;
2864 mcb->num_callbacks = num_reqs;
2866 for (i = 0; i < num_reqs; i++) {
2867 mcb->callbacks[i].cb = reqs[i].cb;
2868 mcb->callbacks[i].opaque = reqs[i].opaque;
2871 // Check for mergable requests
2872 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
2874 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
2876 /* Run the aio requests. */
2877 mcb->num_requests = num_reqs;
2878 for (i = 0; i < num_reqs; i++) {
2879 bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
2880 reqs[i].nb_sectors, multiwrite_cb, mcb);
2886 void bdrv_aio_cancel(BlockDriverAIOCB *acb)
2888 acb->pool->cancel(acb);
2891 /* block I/O throttling */
2892 static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
2893 bool is_write, double elapsed_time, uint64_t *wait)
2895 uint64_t bps_limit = 0;
2896 double bytes_limit, bytes_base, bytes_res;
2897 double slice_time, wait_time;
2899 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
2900 bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
2901 } else if (bs->io_limits.bps[is_write]) {
2902 bps_limit = bs->io_limits.bps[is_write];
2911 slice_time = bs->slice_end - bs->slice_start;
2912 slice_time /= (NANOSECONDS_PER_SECOND);
2913 bytes_limit = bps_limit * slice_time;
2914 bytes_base = bs->nr_bytes[is_write] - bs->io_base.bytes[is_write];
2915 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
2916 bytes_base += bs->nr_bytes[!is_write] - bs->io_base.bytes[!is_write];
2919 /* bytes_base: the bytes of data which have been read/written; and
2920 * it is obtained from the history statistic info.
2921 * bytes_res: the remaining bytes of data which need to be read/written.
2922 * (bytes_base + bytes_res) / bps_limit: used to calcuate
2923 * the total time for completing reading/writting all data.
2925 bytes_res = (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
2927 if (bytes_base + bytes_res <= bytes_limit) {
2935 /* Calc approx time to dispatch */
2936 wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time;
2938 /* When the I/O rate at runtime exceeds the limits,
2939 * bs->slice_end need to be extended in order that the current statistic
2940 * info can be kept until the timer fire, so it is increased and tuned
2941 * based on the result of experiment.
2943 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
2944 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
2946 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
2952 static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
2953 double elapsed_time, uint64_t *wait)
2955 uint64_t iops_limit = 0;
2956 double ios_limit, ios_base;
2957 double slice_time, wait_time;
2959 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
2960 iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
2961 } else if (bs->io_limits.iops[is_write]) {
2962 iops_limit = bs->io_limits.iops[is_write];
2971 slice_time = bs->slice_end - bs->slice_start;
2972 slice_time /= (NANOSECONDS_PER_SECOND);
2973 ios_limit = iops_limit * slice_time;
2974 ios_base = bs->nr_ops[is_write] - bs->io_base.ios[is_write];
2975 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
2976 ios_base += bs->nr_ops[!is_write] - bs->io_base.ios[!is_write];
2979 if (ios_base + 1 <= ios_limit) {
2987 /* Calc approx time to dispatch */
2988 wait_time = (ios_base + 1) / iops_limit;
2989 if (wait_time > elapsed_time) {
2990 wait_time = wait_time - elapsed_time;
2995 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
2996 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
2998 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
3004 static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
3005 bool is_write, int64_t *wait)
3007 int64_t now, max_wait;
3008 uint64_t bps_wait = 0, iops_wait = 0;
3009 double elapsed_time;
3010 int bps_ret, iops_ret;
3012 now = qemu_get_clock_ns(vm_clock);
3013 if ((bs->slice_start < now)
3014 && (bs->slice_end > now)) {
3015 bs->slice_end = now + bs->slice_time;
3017 bs->slice_time = 5 * BLOCK_IO_SLICE_TIME;
3018 bs->slice_start = now;
3019 bs->slice_end = now + bs->slice_time;
3021 bs->io_base.bytes[is_write] = bs->nr_bytes[is_write];
3022 bs->io_base.bytes[!is_write] = bs->nr_bytes[!is_write];
3024 bs->io_base.ios[is_write] = bs->nr_ops[is_write];
3025 bs->io_base.ios[!is_write] = bs->nr_ops[!is_write];
3028 elapsed_time = now - bs->slice_start;
3029 elapsed_time /= (NANOSECONDS_PER_SECOND);
3031 bps_ret = bdrv_exceed_bps_limits(bs, nb_sectors,
3032 is_write, elapsed_time, &bps_wait);
3033 iops_ret = bdrv_exceed_iops_limits(bs, is_write,
3034 elapsed_time, &iops_wait);
3035 if (bps_ret || iops_ret) {
3036 max_wait = bps_wait > iops_wait ? bps_wait : iops_wait;
3041 now = qemu_get_clock_ns(vm_clock);
3042 if (bs->slice_end < now + max_wait) {
3043 bs->slice_end = now + max_wait;
3056 /**************************************************************/
3057 /* async block device emulation */
3059 typedef struct BlockDriverAIOCBSync {
3060 BlockDriverAIOCB common;
3063 /* vector translation state */
3067 } BlockDriverAIOCBSync;
3069 static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
3071 BlockDriverAIOCBSync *acb =
3072 container_of(blockacb, BlockDriverAIOCBSync, common);
3073 qemu_bh_delete(acb->bh);
3075 qemu_aio_release(acb);
3078 static AIOPool bdrv_em_aio_pool = {
3079 .aiocb_size = sizeof(BlockDriverAIOCBSync),
3080 .cancel = bdrv_aio_cancel_em,
3083 static void bdrv_aio_bh_cb(void *opaque)
3085 BlockDriverAIOCBSync *acb = opaque;
3088 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
3089 qemu_vfree(acb->bounce);
3090 acb->common.cb(acb->common.opaque, acb->ret);
3091 qemu_bh_delete(acb->bh);
3093 qemu_aio_release(acb);
3096 static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
3100 BlockDriverCompletionFunc *cb,
3105 BlockDriverAIOCBSync *acb;
3107 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
3108 acb->is_write = is_write;
3110 acb->bounce = qemu_blockalign(bs, qiov->size);
3111 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
3114 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
3115 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
3117 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
3120 qemu_bh_schedule(acb->bh);
3122 return &acb->common;
3125 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
3126 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3127 BlockDriverCompletionFunc *cb, void *opaque)
3129 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
3132 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
3133 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3134 BlockDriverCompletionFunc *cb, void *opaque)
3136 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
3140 typedef struct BlockDriverAIOCBCoroutine {
3141 BlockDriverAIOCB common;
3145 } BlockDriverAIOCBCoroutine;
3147 static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
3152 static AIOPool bdrv_em_co_aio_pool = {
3153 .aiocb_size = sizeof(BlockDriverAIOCBCoroutine),
3154 .cancel = bdrv_aio_co_cancel_em,
3157 static void bdrv_co_em_bh(void *opaque)
3159 BlockDriverAIOCBCoroutine *acb = opaque;
3161 acb->common.cb(acb->common.opaque, acb->req.error);
3162 qemu_bh_delete(acb->bh);
3163 qemu_aio_release(acb);
3166 /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
3167 static void coroutine_fn bdrv_co_do_rw(void *opaque)
3169 BlockDriverAIOCBCoroutine *acb = opaque;
3170 BlockDriverState *bs = acb->common.bs;
3172 if (!acb->is_write) {
3173 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
3174 acb->req.nb_sectors, acb->req.qiov, 0);
3176 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
3177 acb->req.nb_sectors, acb->req.qiov);
3180 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3181 qemu_bh_schedule(acb->bh);
3184 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
3188 BlockDriverCompletionFunc *cb,
3193 BlockDriverAIOCBCoroutine *acb;
3195 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3196 acb->req.sector = sector_num;
3197 acb->req.nb_sectors = nb_sectors;
3198 acb->req.qiov = qiov;
3199 acb->is_write = is_write;
3201 co = qemu_coroutine_create(bdrv_co_do_rw);
3202 qemu_coroutine_enter(co, acb);
3204 return &acb->common;
3207 static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
3209 BlockDriverAIOCBCoroutine *acb = opaque;
3210 BlockDriverState *bs = acb->common.bs;
3212 acb->req.error = bdrv_co_flush(bs);
3213 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3214 qemu_bh_schedule(acb->bh);
3217 BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
3218 BlockDriverCompletionFunc *cb, void *opaque)
3220 trace_bdrv_aio_flush(bs, opaque);
3223 BlockDriverAIOCBCoroutine *acb;
3225 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3226 co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
3227 qemu_coroutine_enter(co, acb);
3229 return &acb->common;
3232 static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
3234 BlockDriverAIOCBCoroutine *acb = opaque;
3235 BlockDriverState *bs = acb->common.bs;
3237 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
3238 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3239 qemu_bh_schedule(acb->bh);
3242 BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
3243 int64_t sector_num, int nb_sectors,
3244 BlockDriverCompletionFunc *cb, void *opaque)
3247 BlockDriverAIOCBCoroutine *acb;
3249 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
3251 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3252 acb->req.sector = sector_num;
3253 acb->req.nb_sectors = nb_sectors;
3254 co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
3255 qemu_coroutine_enter(co, acb);
3257 return &acb->common;
3260 void bdrv_init(void)
3262 module_call_init(MODULE_INIT_BLOCK);
3265 void bdrv_init_with_whitelist(void)
3267 use_bdrv_whitelist = 1;
3271 void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
3272 BlockDriverCompletionFunc *cb, void *opaque)
3274 BlockDriverAIOCB *acb;
3276 if (pool->free_aiocb) {
3277 acb = pool->free_aiocb;
3278 pool->free_aiocb = acb->next;
3280 acb = g_malloc0(pool->aiocb_size);
3285 acb->opaque = opaque;
3289 void qemu_aio_release(void *p)
3291 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
3292 AIOPool *pool = acb->pool;
3293 acb->next = pool->free_aiocb;
3294 pool->free_aiocb = acb;
3297 /**************************************************************/
3298 /* Coroutine block device emulation */
3300 typedef struct CoroutineIOCompletion {
3301 Coroutine *coroutine;
3303 } CoroutineIOCompletion;
3305 static void bdrv_co_io_em_complete(void *opaque, int ret)
3307 CoroutineIOCompletion *co = opaque;
3310 qemu_coroutine_enter(co->coroutine, NULL);
3313 static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
3314 int nb_sectors, QEMUIOVector *iov,
3317 CoroutineIOCompletion co = {
3318 .coroutine = qemu_coroutine_self(),
3320 BlockDriverAIOCB *acb;
3323 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
3324 bdrv_co_io_em_complete, &co);
3326 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
3327 bdrv_co_io_em_complete, &co);
3330 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
3334 qemu_coroutine_yield();
3339 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
3340 int64_t sector_num, int nb_sectors,
3343 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
3346 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
3347 int64_t sector_num, int nb_sectors,
3350 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
3353 static void coroutine_fn bdrv_flush_co_entry(void *opaque)
3355 RwCo *rwco = opaque;
3357 rwco->ret = bdrv_co_flush(rwco->bs);
3360 int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
3368 /* Write back cached data to the OS even with cache=unsafe */
3369 if (bs->drv->bdrv_co_flush_to_os) {
3370 ret = bs->drv->bdrv_co_flush_to_os(bs);
3376 /* But don't actually force it to the disk with cache=unsafe */
3377 if (bs->open_flags & BDRV_O_NO_FLUSH) {
3381 if (bs->drv->bdrv_co_flush_to_disk) {
3382 return bs->drv->bdrv_co_flush_to_disk(bs);
3383 } else if (bs->drv->bdrv_aio_flush) {
3384 BlockDriverAIOCB *acb;
3385 CoroutineIOCompletion co = {
3386 .coroutine = qemu_coroutine_self(),
3389 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
3393 qemu_coroutine_yield();
3398 * Some block drivers always operate in either writethrough or unsafe
3399 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
3400 * know how the server works (because the behaviour is hardcoded or
3401 * depends on server-side configuration), so we can't ensure that
3402 * everything is safe on disk. Returning an error doesn't work because
3403 * that would break guests even if the server operates in writethrough
3406 * Let's hope the user knows what he's doing.
3412 void bdrv_invalidate_cache(BlockDriverState *bs)
3414 if (bs->drv && bs->drv->bdrv_invalidate_cache) {
3415 bs->drv->bdrv_invalidate_cache(bs);
3419 void bdrv_invalidate_cache_all(void)
3421 BlockDriverState *bs;
3423 QTAILQ_FOREACH(bs, &bdrv_states, list) {
3424 bdrv_invalidate_cache(bs);
3428 int bdrv_flush(BlockDriverState *bs)
3436 if (qemu_in_coroutine()) {
3437 /* Fast-path if already in coroutine context */
3438 bdrv_flush_co_entry(&rwco);
3440 co = qemu_coroutine_create(bdrv_flush_co_entry);
3441 qemu_coroutine_enter(co, &rwco);
3442 while (rwco.ret == NOT_DONE) {
3450 static void coroutine_fn bdrv_discard_co_entry(void *opaque)
3452 RwCo *rwco = opaque;
3454 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
3457 int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
3462 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
3464 } else if (bs->read_only) {
3466 } else if (bs->drv->bdrv_co_discard) {
3467 return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors);
3468 } else if (bs->drv->bdrv_aio_discard) {
3469 BlockDriverAIOCB *acb;
3470 CoroutineIOCompletion co = {
3471 .coroutine = qemu_coroutine_self(),
3474 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
3475 bdrv_co_io_em_complete, &co);
3479 qemu_coroutine_yield();
3487 int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
3492 .sector_num = sector_num,
3493 .nb_sectors = nb_sectors,
3497 if (qemu_in_coroutine()) {
3498 /* Fast-path if already in coroutine context */
3499 bdrv_discard_co_entry(&rwco);
3501 co = qemu_coroutine_create(bdrv_discard_co_entry);
3502 qemu_coroutine_enter(co, &rwco);
3503 while (rwco.ret == NOT_DONE) {
3511 /**************************************************************/
3512 /* removable device support */
3515 * Return TRUE if the media is present
3517 int bdrv_is_inserted(BlockDriverState *bs)
3519 BlockDriver *drv = bs->drv;
3523 if (!drv->bdrv_is_inserted)
3525 return drv->bdrv_is_inserted(bs);
3529 * Return whether the media changed since the last call to this
3530 * function, or -ENOTSUP if we don't know. Most drivers don't know.
3532 int bdrv_media_changed(BlockDriverState *bs)
3534 BlockDriver *drv = bs->drv;
3536 if (drv && drv->bdrv_media_changed) {
3537 return drv->bdrv_media_changed(bs);
3543 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
3545 void bdrv_eject(BlockDriverState *bs, int eject_flag)
3547 BlockDriver *drv = bs->drv;
3549 if (drv && drv->bdrv_eject) {
3550 drv->bdrv_eject(bs, eject_flag);
3555 * Lock or unlock the media (if it is locked, the user won't be able
3556 * to eject it manually).
3558 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
3560 BlockDriver *drv = bs->drv;
3562 trace_bdrv_lock_medium(bs, locked);
3564 if (drv && drv->bdrv_lock_medium) {
3565 drv->bdrv_lock_medium(bs, locked);
3569 /* needed for generic scsi interface */
3571 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
3573 BlockDriver *drv = bs->drv;
3575 if (drv && drv->bdrv_ioctl)
3576 return drv->bdrv_ioctl(bs, req, buf);
3580 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
3581 unsigned long int req, void *buf,
3582 BlockDriverCompletionFunc *cb, void *opaque)
3584 BlockDriver *drv = bs->drv;
3586 if (drv && drv->bdrv_aio_ioctl)
3587 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
3591 void bdrv_set_buffer_alignment(BlockDriverState *bs, int align)
3593 bs->buffer_alignment = align;
3596 void *qemu_blockalign(BlockDriverState *bs, size_t size)
3598 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
3601 void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
3603 int64_t bitmap_size;
3605 bs->dirty_count = 0;
3607 if (!bs->dirty_bitmap) {
3608 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
3609 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
3610 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
3612 bs->dirty_bitmap = g_malloc0(bitmap_size);
3615 if (bs->dirty_bitmap) {
3616 g_free(bs->dirty_bitmap);
3617 bs->dirty_bitmap = NULL;
3622 int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
3624 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
3626 if (bs->dirty_bitmap &&
3627 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
3628 return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
3629 (1UL << (chunk % (sizeof(unsigned long) * 8))));
3635 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
3638 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
3641 int64_t bdrv_get_dirty_count(BlockDriverState *bs)
3643 return bs->dirty_count;
3646 void bdrv_set_in_use(BlockDriverState *bs, int in_use)
3648 assert(bs->in_use != in_use);
3649 bs->in_use = in_use;
3652 int bdrv_in_use(BlockDriverState *bs)
3657 void bdrv_iostatus_enable(BlockDriverState *bs)
3659 bs->iostatus_enabled = true;
3660 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
3663 /* The I/O status is only enabled if the drive explicitly
3664 * enables it _and_ the VM is configured to stop on errors */
3665 bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
3667 return (bs->iostatus_enabled &&
3668 (bs->on_write_error == BLOCK_ERR_STOP_ENOSPC ||
3669 bs->on_write_error == BLOCK_ERR_STOP_ANY ||
3670 bs->on_read_error == BLOCK_ERR_STOP_ANY));
3673 void bdrv_iostatus_disable(BlockDriverState *bs)
3675 bs->iostatus_enabled = false;
3678 void bdrv_iostatus_reset(BlockDriverState *bs)
3680 if (bdrv_iostatus_is_enabled(bs)) {
3681 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
3685 /* XXX: Today this is set by device models because it makes the implementation
3686 quite simple. However, the block layer knows about the error, so it's
3687 possible to implement this without device models being involved */
3688 void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
3690 if (bdrv_iostatus_is_enabled(bs) &&
3691 bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
3693 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
3694 BLOCK_DEVICE_IO_STATUS_FAILED;
3699 bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
3700 enum BlockAcctType type)
3702 assert(type < BDRV_MAX_IOTYPE);
3704 cookie->bytes = bytes;
3705 cookie->start_time_ns = get_clock();
3706 cookie->type = type;
3710 bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
3712 assert(cookie->type < BDRV_MAX_IOTYPE);
3714 bs->nr_bytes[cookie->type] += cookie->bytes;
3715 bs->nr_ops[cookie->type]++;
3716 bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
3719 int bdrv_img_create(const char *filename, const char *fmt,
3720 const char *base_filename, const char *base_fmt,
3721 char *options, uint64_t img_size, int flags)
3723 QEMUOptionParameter *param = NULL, *create_options = NULL;
3724 QEMUOptionParameter *backing_fmt, *backing_file, *size;
3725 BlockDriverState *bs = NULL;
3726 BlockDriver *drv, *proto_drv;
3727 BlockDriver *backing_drv = NULL;
3730 /* Find driver and parse its options */
3731 drv = bdrv_find_format(fmt);
3733 error_report("Unknown file format '%s'", fmt);
3738 proto_drv = bdrv_find_protocol(filename);
3740 error_report("Unknown protocol '%s'", filename);
3745 create_options = append_option_parameters(create_options,
3746 drv->create_options);
3747 create_options = append_option_parameters(create_options,
3748 proto_drv->create_options);
3750 /* Create parameter list with default values */
3751 param = parse_option_parameters("", create_options, param);
3753 set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
3755 /* Parse -o options */
3757 param = parse_option_parameters(options, create_options, param);
3758 if (param == NULL) {
3759 error_report("Invalid options for file format '%s'.", fmt);
3765 if (base_filename) {
3766 if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
3768 error_report("Backing file not supported for file format '%s'",
3776 if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
3777 error_report("Backing file format not supported for file "
3778 "format '%s'", fmt);
3784 backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
3785 if (backing_file && backing_file->value.s) {
3786 if (!strcmp(filename, backing_file->value.s)) {
3787 error_report("Error: Trying to create an image with the "
3788 "same filename as the backing file");
3794 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
3795 if (backing_fmt && backing_fmt->value.s) {
3796 backing_drv = bdrv_find_format(backing_fmt->value.s);
3798 error_report("Unknown backing file format '%s'",
3799 backing_fmt->value.s);
3805 // The size for the image must always be specified, with one exception:
3806 // If we are using a backing file, we can obtain the size from there
3807 size = get_option_parameter(param, BLOCK_OPT_SIZE);
3808 if (size && size->value.n == -1) {
3809 if (backing_file && backing_file->value.s) {
3815 ret = bdrv_open(bs, backing_file->value.s, flags, backing_drv);
3817 error_report("Could not open '%s'", backing_file->value.s);
3820 bdrv_get_geometry(bs, &size);
3823 snprintf(buf, sizeof(buf), "%" PRId64, size);
3824 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
3826 error_report("Image creation needs a size parameter");
3832 printf("Formatting '%s', fmt=%s ", filename, fmt);
3833 print_option_parameters(param);
3836 ret = bdrv_create(drv, filename, param);
3839 if (ret == -ENOTSUP) {
3840 error_report("Formatting or formatting option not supported for "
3841 "file format '%s'", fmt);
3842 } else if (ret == -EFBIG) {
3843 error_report("The image size is too large for file format '%s'",
3846 error_report("%s: error while creating %s: %s", filename, fmt,
3852 free_option_parameters(create_options);
3853 free_option_parameters(param);
3862 void *block_job_create(const BlockJobType *job_type, BlockDriverState *bs,
3863 BlockDriverCompletionFunc *cb, void *opaque)
3867 if (bs->job || bdrv_in_use(bs)) {
3870 bdrv_set_in_use(bs, 1);
3872 job = g_malloc0(job_type->instance_size);
3873 job->job_type = job_type;
3876 job->opaque = opaque;
3881 void block_job_complete(BlockJob *job, int ret)
3883 BlockDriverState *bs = job->bs;
3885 assert(bs->job == job);
3886 job->cb(job->opaque, ret);
3889 bdrv_set_in_use(bs, 0);
3892 int block_job_set_speed(BlockJob *job, int64_t value)
3894 if (!job->job_type->set_speed) {
3897 return job->job_type->set_speed(job, value);
3900 void block_job_cancel(BlockJob *job)
3902 job->cancelled = true;
3905 bool block_job_is_cancelled(BlockJob *job)
3907 return job->cancelled;