]> git.proxmox.com Git - qemu.git/blob - block.c
Count dirty blocks and expose an API to get dirty count
[qemu.git] / block.c
1 /*
2 * QEMU System Emulator block driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
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:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
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.
23 */
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"
30
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
40
41 #ifdef _WIN32
42 #include <windows.h>
43 #endif
44
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
58 BlockDriverState *bdrv_first;
59
60 static BlockDriver *first_drv;
61
62 /* If non-zero, use only whitelisted block drivers */
63 static int use_bdrv_whitelist;
64
65 int path_is_absolute(const char *path)
66 {
67 const char *p;
68 #ifdef _WIN32
69 /* specific case for names like: "\\.\d:" */
70 if (*path == '/' || *path == '\\')
71 return 1;
72 #endif
73 p = strchr(path, ':');
74 if (p)
75 p++;
76 else
77 p = path;
78 #ifdef _WIN32
79 return (*p == '/' || *p == '\\');
80 #else
81 return (*p == '/');
82 #endif
83 }
84
85 /* if filename is absolute, just copy it to dest. Otherwise, build a
86 path to it by considering it is relative to base_path. URL are
87 supported. */
88 void path_combine(char *dest, int dest_size,
89 const char *base_path,
90 const char *filename)
91 {
92 const char *p, *p1;
93 int len;
94
95 if (dest_size <= 0)
96 return;
97 if (path_is_absolute(filename)) {
98 pstrcpy(dest, dest_size, filename);
99 } else {
100 p = strchr(base_path, ':');
101 if (p)
102 p++;
103 else
104 p = base_path;
105 p1 = strrchr(base_path, '/');
106 #ifdef _WIN32
107 {
108 const char *p2;
109 p2 = strrchr(base_path, '\\');
110 if (!p1 || p2 > p1)
111 p1 = p2;
112 }
113 #endif
114 if (p1)
115 p1++;
116 else
117 p1 = base_path;
118 if (p1 > p)
119 p = p1;
120 len = p - base_path;
121 if (len > dest_size - 1)
122 len = dest_size - 1;
123 memcpy(dest, base_path, len);
124 dest[len] = '\0';
125 pstrcat(dest, dest_size, filename);
126 }
127 }
128
129 void bdrv_register(BlockDriver *bdrv)
130 {
131 if (!bdrv->bdrv_aio_readv) {
132 /* add AIO emulation layer */
133 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
134 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
135 } else if (!bdrv->bdrv_read) {
136 /* add synchronous IO emulation layer */
137 bdrv->bdrv_read = bdrv_read_em;
138 bdrv->bdrv_write = bdrv_write_em;
139 }
140
141 if (!bdrv->bdrv_aio_flush)
142 bdrv->bdrv_aio_flush = bdrv_aio_flush_em;
143
144 bdrv->next = first_drv;
145 first_drv = bdrv;
146 }
147
148 /* create a new block device (by default it is empty) */
149 BlockDriverState *bdrv_new(const char *device_name)
150 {
151 BlockDriverState **pbs, *bs;
152
153 bs = qemu_mallocz(sizeof(BlockDriverState));
154 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
155 if (device_name[0] != '\0') {
156 /* insert at the end */
157 pbs = &bdrv_first;
158 while (*pbs != NULL)
159 pbs = &(*pbs)->next;
160 *pbs = bs;
161 }
162 return bs;
163 }
164
165 BlockDriver *bdrv_find_format(const char *format_name)
166 {
167 BlockDriver *drv1;
168 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
169 if (!strcmp(drv1->format_name, format_name))
170 return drv1;
171 }
172 return NULL;
173 }
174
175 static int bdrv_is_whitelisted(BlockDriver *drv)
176 {
177 static const char *whitelist[] = {
178 CONFIG_BDRV_WHITELIST
179 };
180 const char **p;
181
182 if (!whitelist[0])
183 return 1; /* no whitelist, anything goes */
184
185 for (p = whitelist; *p; p++) {
186 if (!strcmp(drv->format_name, *p)) {
187 return 1;
188 }
189 }
190 return 0;
191 }
192
193 BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
194 {
195 BlockDriver *drv = bdrv_find_format(format_name);
196 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
197 }
198
199 int bdrv_create(BlockDriver *drv, const char* filename,
200 QEMUOptionParameter *options)
201 {
202 if (!drv->bdrv_create)
203 return -ENOTSUP;
204
205 return drv->bdrv_create(filename, options);
206 }
207
208 #ifdef _WIN32
209 void get_tmp_filename(char *filename, int size)
210 {
211 char temp_dir[MAX_PATH];
212
213 GetTempPath(MAX_PATH, temp_dir);
214 GetTempFileName(temp_dir, "qem", 0, filename);
215 }
216 #else
217 void get_tmp_filename(char *filename, int size)
218 {
219 int fd;
220 const char *tmpdir;
221 /* XXX: race condition possible */
222 tmpdir = getenv("TMPDIR");
223 if (!tmpdir)
224 tmpdir = "/tmp";
225 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
226 fd = mkstemp(filename);
227 close(fd);
228 }
229 #endif
230
231 #ifdef _WIN32
232 static int is_windows_drive_prefix(const char *filename)
233 {
234 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
235 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
236 filename[1] == ':');
237 }
238
239 int is_windows_drive(const char *filename)
240 {
241 if (is_windows_drive_prefix(filename) &&
242 filename[2] == '\0')
243 return 1;
244 if (strstart(filename, "\\\\.\\", NULL) ||
245 strstart(filename, "//./", NULL))
246 return 1;
247 return 0;
248 }
249 #endif
250
251 static BlockDriver *find_protocol(const char *filename)
252 {
253 BlockDriver *drv1;
254 char protocol[128];
255 int len;
256 const char *p;
257
258 #ifdef _WIN32
259 if (is_windows_drive(filename) ||
260 is_windows_drive_prefix(filename))
261 return bdrv_find_format("raw");
262 #endif
263 p = strchr(filename, ':');
264 if (!p)
265 return bdrv_find_format("raw");
266 len = p - filename;
267 if (len > sizeof(protocol) - 1)
268 len = sizeof(protocol) - 1;
269 memcpy(protocol, filename, len);
270 protocol[len] = '\0';
271 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
272 if (drv1->protocol_name &&
273 !strcmp(drv1->protocol_name, protocol))
274 return drv1;
275 }
276 return NULL;
277 }
278
279 /*
280 * Detect host devices. By convention, /dev/cdrom[N] is always
281 * recognized as a host CDROM.
282 */
283 static BlockDriver *find_hdev_driver(const char *filename)
284 {
285 int score_max = 0, score;
286 BlockDriver *drv = NULL, *d;
287
288 for (d = first_drv; d; d = d->next) {
289 if (d->bdrv_probe_device) {
290 score = d->bdrv_probe_device(filename);
291 if (score > score_max) {
292 score_max = score;
293 drv = d;
294 }
295 }
296 }
297
298 return drv;
299 }
300
301 static BlockDriver *find_image_format(const char *filename)
302 {
303 int ret, score, score_max;
304 BlockDriver *drv1, *drv;
305 uint8_t buf[2048];
306 BlockDriverState *bs;
307
308 drv = find_protocol(filename);
309 /* no need to test disk image formats for vvfat */
310 if (drv && strcmp(drv->format_name, "vvfat") == 0)
311 return drv;
312
313 ret = bdrv_file_open(&bs, filename, 0);
314 if (ret < 0)
315 return NULL;
316 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
317 bdrv_delete(bs);
318 if (ret < 0) {
319 return NULL;
320 }
321
322 score_max = 0;
323 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
324 if (drv1->bdrv_probe) {
325 score = drv1->bdrv_probe(buf, ret, filename);
326 if (score > score_max) {
327 score_max = score;
328 drv = drv1;
329 }
330 }
331 }
332 return drv;
333 }
334
335 int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
336 {
337 BlockDriverState *bs;
338 int ret;
339
340 bs = bdrv_new("");
341 ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL);
342 if (ret < 0) {
343 bdrv_delete(bs);
344 return ret;
345 }
346 bs->growable = 1;
347 *pbs = bs;
348 return 0;
349 }
350
351 int bdrv_open(BlockDriverState *bs, const char *filename, int flags)
352 {
353 return bdrv_open2(bs, filename, flags, NULL);
354 }
355
356 int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
357 BlockDriver *drv)
358 {
359 int ret, open_flags;
360 char tmp_filename[PATH_MAX];
361 char backing_filename[PATH_MAX];
362
363 bs->is_temporary = 0;
364 bs->encrypted = 0;
365 bs->valid_key = 0;
366 /* buffer_alignment defaulted to 512, drivers can change this value */
367 bs->buffer_alignment = 512;
368
369 if (flags & BDRV_O_SNAPSHOT) {
370 BlockDriverState *bs1;
371 int64_t total_size;
372 int is_protocol = 0;
373 BlockDriver *bdrv_qcow2;
374 QEMUOptionParameter *options;
375
376 /* if snapshot, we create a temporary backing file and open it
377 instead of opening 'filename' directly */
378
379 /* if there is a backing file, use it */
380 bs1 = bdrv_new("");
381 ret = bdrv_open2(bs1, filename, 0, drv);
382 if (ret < 0) {
383 bdrv_delete(bs1);
384 return ret;
385 }
386 total_size = bdrv_getlength(bs1) >> BDRV_SECTOR_BITS;
387
388 if (bs1->drv && bs1->drv->protocol_name)
389 is_protocol = 1;
390
391 bdrv_delete(bs1);
392
393 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
394
395 /* Real path is meaningless for protocols */
396 if (is_protocol)
397 snprintf(backing_filename, sizeof(backing_filename),
398 "%s", filename);
399 else if (!realpath(filename, backing_filename))
400 return -errno;
401
402 bdrv_qcow2 = bdrv_find_format("qcow2");
403 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
404
405 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size * 512);
406 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
407 if (drv) {
408 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
409 drv->format_name);
410 }
411
412 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
413 if (ret < 0) {
414 return ret;
415 }
416
417 filename = tmp_filename;
418 drv = bdrv_qcow2;
419 bs->is_temporary = 1;
420 }
421
422 pstrcpy(bs->filename, sizeof(bs->filename), filename);
423 if (flags & BDRV_O_FILE) {
424 drv = find_protocol(filename);
425 } else if (!drv) {
426 drv = find_hdev_driver(filename);
427 if (!drv) {
428 drv = find_image_format(filename);
429 }
430 }
431
432 if (!drv) {
433 ret = -ENOENT;
434 goto unlink_and_fail;
435 }
436 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
437 ret = -ENOTSUP;
438 goto unlink_and_fail;
439 }
440
441 bs->drv = drv;
442 bs->opaque = qemu_mallocz(drv->instance_size);
443
444 /*
445 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
446 * write cache to the guest. We do need the fdatasync to flush
447 * out transactions for block allocations, and we maybe have a
448 * volatile write cache in our backing device to deal with.
449 */
450 if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
451 bs->enable_write_cache = 1;
452
453 bs->read_only = (flags & BDRV_O_RDWR) == 0;
454 if (!(flags & BDRV_O_FILE)) {
455 open_flags = (flags & (BDRV_O_RDWR | BDRV_O_CACHE_MASK|BDRV_O_NATIVE_AIO));
456 if (bs->is_temporary) { /* snapshot should be writeable */
457 open_flags |= BDRV_O_RDWR;
458 }
459 } else {
460 open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
461 }
462
463 ret = drv->bdrv_open(bs, filename, open_flags);
464 if (ret < 0) {
465 goto free_and_fail;
466 }
467
468 if (drv->bdrv_getlength) {
469 bs->total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
470 }
471 #ifndef _WIN32
472 if (bs->is_temporary) {
473 unlink(filename);
474 }
475 #endif
476 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
477 /* if there is a backing file, use it */
478 BlockDriver *back_drv = NULL;
479 bs->backing_hd = bdrv_new("");
480 path_combine(backing_filename, sizeof(backing_filename),
481 filename, bs->backing_file);
482 if (bs->backing_format[0] != '\0')
483 back_drv = bdrv_find_format(bs->backing_format);
484 ret = bdrv_open2(bs->backing_hd, backing_filename, open_flags,
485 back_drv);
486 bs->backing_hd->read_only = (open_flags & BDRV_O_RDWR) == 0;
487 if (ret < 0) {
488 bdrv_close(bs);
489 return ret;
490 }
491 }
492
493 if (!bdrv_key_required(bs)) {
494 /* call the change callback */
495 bs->media_changed = 1;
496 if (bs->change_cb)
497 bs->change_cb(bs->change_opaque);
498 }
499 return 0;
500
501 free_and_fail:
502 qemu_free(bs->opaque);
503 bs->opaque = NULL;
504 bs->drv = NULL;
505 unlink_and_fail:
506 if (bs->is_temporary)
507 unlink(filename);
508 return ret;
509 }
510
511 void bdrv_close(BlockDriverState *bs)
512 {
513 if (bs->drv) {
514 if (bs->backing_hd)
515 bdrv_delete(bs->backing_hd);
516 bs->drv->bdrv_close(bs);
517 qemu_free(bs->opaque);
518 #ifdef _WIN32
519 if (bs->is_temporary) {
520 unlink(bs->filename);
521 }
522 #endif
523 bs->opaque = NULL;
524 bs->drv = NULL;
525
526 /* call the change callback */
527 bs->media_changed = 1;
528 if (bs->change_cb)
529 bs->change_cb(bs->change_opaque);
530 }
531 }
532
533 void bdrv_delete(BlockDriverState *bs)
534 {
535 BlockDriverState **pbs;
536
537 pbs = &bdrv_first;
538 while (*pbs != bs && *pbs != NULL)
539 pbs = &(*pbs)->next;
540 if (*pbs == bs)
541 *pbs = bs->next;
542
543 bdrv_close(bs);
544 qemu_free(bs);
545 }
546
547 /*
548 * Run consistency checks on an image
549 *
550 * Returns the number of errors or -errno when an internal error occurs
551 */
552 int bdrv_check(BlockDriverState *bs)
553 {
554 if (bs->drv->bdrv_check == NULL) {
555 return -ENOTSUP;
556 }
557
558 return bs->drv->bdrv_check(bs);
559 }
560
561 /* commit COW file into the raw image */
562 int bdrv_commit(BlockDriverState *bs)
563 {
564 BlockDriver *drv = bs->drv;
565 int64_t i, total_sectors;
566 int n, j;
567 int ret = 0;
568 unsigned char sector[512];
569
570 if (!drv)
571 return -ENOMEDIUM;
572
573 if (bs->read_only) {
574 return -EACCES;
575 }
576
577 if (!bs->backing_hd) {
578 return -ENOTSUP;
579 }
580
581 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
582 for (i = 0; i < total_sectors;) {
583 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
584 for(j = 0; j < n; j++) {
585 if (bdrv_read(bs, i, sector, 1) != 0) {
586 return -EIO;
587 }
588
589 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
590 return -EIO;
591 }
592 i++;
593 }
594 } else {
595 i += n;
596 }
597 }
598
599 if (drv->bdrv_make_empty) {
600 ret = drv->bdrv_make_empty(bs);
601 bdrv_flush(bs);
602 }
603
604 /*
605 * Make sure all data we wrote to the backing device is actually
606 * stable on disk.
607 */
608 if (bs->backing_hd)
609 bdrv_flush(bs->backing_hd);
610 return ret;
611 }
612
613 /*
614 * Return values:
615 * 0 - success
616 * -EINVAL - backing format specified, but no file
617 * -ENOSPC - can't update the backing file because no space is left in the
618 * image file header
619 * -ENOTSUP - format driver doesn't support changing the backing file
620 */
621 int bdrv_change_backing_file(BlockDriverState *bs,
622 const char *backing_file, const char *backing_fmt)
623 {
624 BlockDriver *drv = bs->drv;
625
626 if (drv->bdrv_change_backing_file != NULL) {
627 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
628 } else {
629 return -ENOTSUP;
630 }
631 }
632
633 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
634 size_t size)
635 {
636 int64_t len;
637
638 if (!bdrv_is_inserted(bs))
639 return -ENOMEDIUM;
640
641 if (bs->growable)
642 return 0;
643
644 len = bdrv_getlength(bs);
645
646 if (offset < 0)
647 return -EIO;
648
649 if ((offset > len) || (len - offset < size))
650 return -EIO;
651
652 return 0;
653 }
654
655 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
656 int nb_sectors)
657 {
658 return bdrv_check_byte_request(bs, sector_num * 512, nb_sectors * 512);
659 }
660
661 /* return < 0 if error. See bdrv_write() for the return codes */
662 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
663 uint8_t *buf, int nb_sectors)
664 {
665 BlockDriver *drv = bs->drv;
666
667 if (!drv)
668 return -ENOMEDIUM;
669 if (bdrv_check_request(bs, sector_num, nb_sectors))
670 return -EIO;
671
672 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
673 }
674
675 static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
676 int nb_sectors, int dirty)
677 {
678 int64_t start, end;
679 unsigned long val, idx, bit;
680
681 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
682 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
683
684 for (; start <= end; start++) {
685 idx = start / (sizeof(unsigned long) * 8);
686 bit = start % (sizeof(unsigned long) * 8);
687 val = bs->dirty_bitmap[idx];
688 if (dirty) {
689 if (!(val & (1 << bit))) {
690 bs->dirty_count++;
691 val |= 1 << bit;
692 }
693 } else {
694 if (val & (1 << bit)) {
695 bs->dirty_count--;
696 val &= ~(1 << bit);
697 }
698 }
699 bs->dirty_bitmap[idx] = val;
700 }
701 }
702
703 /* Return < 0 if error. Important errors are:
704 -EIO generic I/O error (may happen for all errors)
705 -ENOMEDIUM No media inserted.
706 -EINVAL Invalid sector number or nb_sectors
707 -EACCES Trying to write a read-only device
708 */
709 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
710 const uint8_t *buf, int nb_sectors)
711 {
712 BlockDriver *drv = bs->drv;
713 if (!bs->drv)
714 return -ENOMEDIUM;
715 if (bs->read_only)
716 return -EACCES;
717 if (bdrv_check_request(bs, sector_num, nb_sectors))
718 return -EIO;
719
720 if (bs->dirty_bitmap) {
721 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
722 }
723
724 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
725 }
726
727 int bdrv_pread(BlockDriverState *bs, int64_t offset,
728 void *buf, int count1)
729 {
730 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
731 int len, nb_sectors, count;
732 int64_t sector_num;
733 int ret;
734
735 count = count1;
736 /* first read to align to sector start */
737 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
738 if (len > count)
739 len = count;
740 sector_num = offset >> BDRV_SECTOR_BITS;
741 if (len > 0) {
742 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
743 return ret;
744 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
745 count -= len;
746 if (count == 0)
747 return count1;
748 sector_num++;
749 buf += len;
750 }
751
752 /* read the sectors "in place" */
753 nb_sectors = count >> BDRV_SECTOR_BITS;
754 if (nb_sectors > 0) {
755 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
756 return ret;
757 sector_num += nb_sectors;
758 len = nb_sectors << BDRV_SECTOR_BITS;
759 buf += len;
760 count -= len;
761 }
762
763 /* add data from the last sector */
764 if (count > 0) {
765 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
766 return ret;
767 memcpy(buf, tmp_buf, count);
768 }
769 return count1;
770 }
771
772 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
773 const void *buf, int count1)
774 {
775 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
776 int len, nb_sectors, count;
777 int64_t sector_num;
778 int ret;
779
780 count = count1;
781 /* first write to align to sector start */
782 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
783 if (len > count)
784 len = count;
785 sector_num = offset >> BDRV_SECTOR_BITS;
786 if (len > 0) {
787 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
788 return ret;
789 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
790 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
791 return ret;
792 count -= len;
793 if (count == 0)
794 return count1;
795 sector_num++;
796 buf += len;
797 }
798
799 /* write the sectors "in place" */
800 nb_sectors = count >> BDRV_SECTOR_BITS;
801 if (nb_sectors > 0) {
802 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
803 return ret;
804 sector_num += nb_sectors;
805 len = nb_sectors << BDRV_SECTOR_BITS;
806 buf += len;
807 count -= len;
808 }
809
810 /* add data from the last sector */
811 if (count > 0) {
812 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
813 return ret;
814 memcpy(tmp_buf, buf, count);
815 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
816 return ret;
817 }
818 return count1;
819 }
820
821 /**
822 * Truncate file to 'offset' bytes (needed only for file protocols)
823 */
824 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
825 {
826 BlockDriver *drv = bs->drv;
827 if (!drv)
828 return -ENOMEDIUM;
829 if (!drv->bdrv_truncate)
830 return -ENOTSUP;
831 if (bs->read_only)
832 return -EACCES;
833 return drv->bdrv_truncate(bs, offset);
834 }
835
836 /**
837 * Length of a file in bytes. Return < 0 if error or unknown.
838 */
839 int64_t bdrv_getlength(BlockDriverState *bs)
840 {
841 BlockDriver *drv = bs->drv;
842 if (!drv)
843 return -ENOMEDIUM;
844 if (!drv->bdrv_getlength) {
845 /* legacy mode */
846 return bs->total_sectors * BDRV_SECTOR_SIZE;
847 }
848 return drv->bdrv_getlength(bs);
849 }
850
851 /* return 0 as number of sectors if no device present or error */
852 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
853 {
854 int64_t length;
855 length = bdrv_getlength(bs);
856 if (length < 0)
857 length = 0;
858 else
859 length = length >> BDRV_SECTOR_BITS;
860 *nb_sectors_ptr = length;
861 }
862
863 struct partition {
864 uint8_t boot_ind; /* 0x80 - active */
865 uint8_t head; /* starting head */
866 uint8_t sector; /* starting sector */
867 uint8_t cyl; /* starting cylinder */
868 uint8_t sys_ind; /* What partition type */
869 uint8_t end_head; /* end head */
870 uint8_t end_sector; /* end sector */
871 uint8_t end_cyl; /* end cylinder */
872 uint32_t start_sect; /* starting sector counting from 0 */
873 uint32_t nr_sects; /* nr of sectors in partition */
874 } __attribute__((packed));
875
876 /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
877 static int guess_disk_lchs(BlockDriverState *bs,
878 int *pcylinders, int *pheads, int *psectors)
879 {
880 uint8_t buf[512];
881 int ret, i, heads, sectors, cylinders;
882 struct partition *p;
883 uint32_t nr_sects;
884 uint64_t nb_sectors;
885
886 bdrv_get_geometry(bs, &nb_sectors);
887
888 ret = bdrv_read(bs, 0, buf, 1);
889 if (ret < 0)
890 return -1;
891 /* test msdos magic */
892 if (buf[510] != 0x55 || buf[511] != 0xaa)
893 return -1;
894 for(i = 0; i < 4; i++) {
895 p = ((struct partition *)(buf + 0x1be)) + i;
896 nr_sects = le32_to_cpu(p->nr_sects);
897 if (nr_sects && p->end_head) {
898 /* We make the assumption that the partition terminates on
899 a cylinder boundary */
900 heads = p->end_head + 1;
901 sectors = p->end_sector & 63;
902 if (sectors == 0)
903 continue;
904 cylinders = nb_sectors / (heads * sectors);
905 if (cylinders < 1 || cylinders > 16383)
906 continue;
907 *pheads = heads;
908 *psectors = sectors;
909 *pcylinders = cylinders;
910 #if 0
911 printf("guessed geometry: LCHS=%d %d %d\n",
912 cylinders, heads, sectors);
913 #endif
914 return 0;
915 }
916 }
917 return -1;
918 }
919
920 void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
921 {
922 int translation, lba_detected = 0;
923 int cylinders, heads, secs;
924 uint64_t nb_sectors;
925
926 /* if a geometry hint is available, use it */
927 bdrv_get_geometry(bs, &nb_sectors);
928 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
929 translation = bdrv_get_translation_hint(bs);
930 if (cylinders != 0) {
931 *pcyls = cylinders;
932 *pheads = heads;
933 *psecs = secs;
934 } else {
935 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
936 if (heads > 16) {
937 /* if heads > 16, it means that a BIOS LBA
938 translation was active, so the default
939 hardware geometry is OK */
940 lba_detected = 1;
941 goto default_geometry;
942 } else {
943 *pcyls = cylinders;
944 *pheads = heads;
945 *psecs = secs;
946 /* disable any translation to be in sync with
947 the logical geometry */
948 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
949 bdrv_set_translation_hint(bs,
950 BIOS_ATA_TRANSLATION_NONE);
951 }
952 }
953 } else {
954 default_geometry:
955 /* if no geometry, use a standard physical disk geometry */
956 cylinders = nb_sectors / (16 * 63);
957
958 if (cylinders > 16383)
959 cylinders = 16383;
960 else if (cylinders < 2)
961 cylinders = 2;
962 *pcyls = cylinders;
963 *pheads = 16;
964 *psecs = 63;
965 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
966 if ((*pcyls * *pheads) <= 131072) {
967 bdrv_set_translation_hint(bs,
968 BIOS_ATA_TRANSLATION_LARGE);
969 } else {
970 bdrv_set_translation_hint(bs,
971 BIOS_ATA_TRANSLATION_LBA);
972 }
973 }
974 }
975 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
976 }
977 }
978
979 void bdrv_set_geometry_hint(BlockDriverState *bs,
980 int cyls, int heads, int secs)
981 {
982 bs->cyls = cyls;
983 bs->heads = heads;
984 bs->secs = secs;
985 }
986
987 void bdrv_set_type_hint(BlockDriverState *bs, int type)
988 {
989 bs->type = type;
990 bs->removable = ((type == BDRV_TYPE_CDROM ||
991 type == BDRV_TYPE_FLOPPY));
992 }
993
994 void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
995 {
996 bs->translation = translation;
997 }
998
999 void bdrv_get_geometry_hint(BlockDriverState *bs,
1000 int *pcyls, int *pheads, int *psecs)
1001 {
1002 *pcyls = bs->cyls;
1003 *pheads = bs->heads;
1004 *psecs = bs->secs;
1005 }
1006
1007 int bdrv_get_type_hint(BlockDriverState *bs)
1008 {
1009 return bs->type;
1010 }
1011
1012 int bdrv_get_translation_hint(BlockDriverState *bs)
1013 {
1014 return bs->translation;
1015 }
1016
1017 int bdrv_is_removable(BlockDriverState *bs)
1018 {
1019 return bs->removable;
1020 }
1021
1022 int bdrv_is_read_only(BlockDriverState *bs)
1023 {
1024 return bs->read_only;
1025 }
1026
1027 int bdrv_is_sg(BlockDriverState *bs)
1028 {
1029 return bs->sg;
1030 }
1031
1032 int bdrv_enable_write_cache(BlockDriverState *bs)
1033 {
1034 return bs->enable_write_cache;
1035 }
1036
1037 /* XXX: no longer used */
1038 void bdrv_set_change_cb(BlockDriverState *bs,
1039 void (*change_cb)(void *opaque), void *opaque)
1040 {
1041 bs->change_cb = change_cb;
1042 bs->change_opaque = opaque;
1043 }
1044
1045 int bdrv_is_encrypted(BlockDriverState *bs)
1046 {
1047 if (bs->backing_hd && bs->backing_hd->encrypted)
1048 return 1;
1049 return bs->encrypted;
1050 }
1051
1052 int bdrv_key_required(BlockDriverState *bs)
1053 {
1054 BlockDriverState *backing_hd = bs->backing_hd;
1055
1056 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
1057 return 1;
1058 return (bs->encrypted && !bs->valid_key);
1059 }
1060
1061 int bdrv_set_key(BlockDriverState *bs, const char *key)
1062 {
1063 int ret;
1064 if (bs->backing_hd && bs->backing_hd->encrypted) {
1065 ret = bdrv_set_key(bs->backing_hd, key);
1066 if (ret < 0)
1067 return ret;
1068 if (!bs->encrypted)
1069 return 0;
1070 }
1071 if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key)
1072 return -1;
1073 ret = bs->drv->bdrv_set_key(bs, key);
1074 if (ret < 0) {
1075 bs->valid_key = 0;
1076 } else if (!bs->valid_key) {
1077 bs->valid_key = 1;
1078 /* call the change callback now, we skipped it on open */
1079 bs->media_changed = 1;
1080 if (bs->change_cb)
1081 bs->change_cb(bs->change_opaque);
1082 }
1083 return ret;
1084 }
1085
1086 void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
1087 {
1088 if (!bs->drv) {
1089 buf[0] = '\0';
1090 } else {
1091 pstrcpy(buf, buf_size, bs->drv->format_name);
1092 }
1093 }
1094
1095 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
1096 void *opaque)
1097 {
1098 BlockDriver *drv;
1099
1100 for (drv = first_drv; drv != NULL; drv = drv->next) {
1101 it(opaque, drv->format_name);
1102 }
1103 }
1104
1105 BlockDriverState *bdrv_find(const char *name)
1106 {
1107 BlockDriverState *bs;
1108
1109 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1110 if (!strcmp(name, bs->device_name))
1111 return bs;
1112 }
1113 return NULL;
1114 }
1115
1116 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
1117 {
1118 BlockDriverState *bs;
1119
1120 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1121 it(opaque, bs);
1122 }
1123 }
1124
1125 const char *bdrv_get_device_name(BlockDriverState *bs)
1126 {
1127 return bs->device_name;
1128 }
1129
1130 void bdrv_flush(BlockDriverState *bs)
1131 {
1132 if (bs->drv && bs->drv->bdrv_flush)
1133 bs->drv->bdrv_flush(bs);
1134 }
1135
1136 void bdrv_flush_all(void)
1137 {
1138 BlockDriverState *bs;
1139
1140 for (bs = bdrv_first; bs != NULL; bs = bs->next)
1141 if (bs->drv && !bdrv_is_read_only(bs) &&
1142 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs)))
1143 bdrv_flush(bs);
1144 }
1145
1146 /*
1147 * Returns true iff the specified sector is present in the disk image. Drivers
1148 * not implementing the functionality are assumed to not support backing files,
1149 * hence all their sectors are reported as allocated.
1150 *
1151 * 'pnum' is set to the number of sectors (including and immediately following
1152 * the specified sector) that are known to be in the same
1153 * allocated/unallocated state.
1154 *
1155 * 'nb_sectors' is the max value 'pnum' should be set to.
1156 */
1157 int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1158 int *pnum)
1159 {
1160 int64_t n;
1161 if (!bs->drv->bdrv_is_allocated) {
1162 if (sector_num >= bs->total_sectors) {
1163 *pnum = 0;
1164 return 0;
1165 }
1166 n = bs->total_sectors - sector_num;
1167 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1168 return 1;
1169 }
1170 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1171 }
1172
1173 static void bdrv_print_dict(QObject *obj, void *opaque)
1174 {
1175 QDict *bs_dict;
1176 Monitor *mon = opaque;
1177
1178 bs_dict = qobject_to_qdict(obj);
1179
1180 monitor_printf(mon, "%s: type=%s removable=%d",
1181 qdict_get_str(bs_dict, "device"),
1182 qdict_get_str(bs_dict, "type"),
1183 qdict_get_bool(bs_dict, "removable"));
1184
1185 if (qdict_get_bool(bs_dict, "removable")) {
1186 monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked"));
1187 }
1188
1189 if (qdict_haskey(bs_dict, "inserted")) {
1190 QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted"));
1191
1192 monitor_printf(mon, " file=");
1193 monitor_print_filename(mon, qdict_get_str(qdict, "file"));
1194 if (qdict_haskey(qdict, "backing_file")) {
1195 monitor_printf(mon, " backing_file=");
1196 monitor_print_filename(mon, qdict_get_str(qdict, "backing_file"));
1197 }
1198 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
1199 qdict_get_bool(qdict, "ro"),
1200 qdict_get_str(qdict, "drv"),
1201 qdict_get_bool(qdict, "encrypted"));
1202 } else {
1203 monitor_printf(mon, " [not inserted]");
1204 }
1205
1206 monitor_printf(mon, "\n");
1207 }
1208
1209 void bdrv_info_print(Monitor *mon, const QObject *data)
1210 {
1211 qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon);
1212 }
1213
1214 /**
1215 * bdrv_info(): Block devices information
1216 *
1217 * Each block device information is stored in a QDict and the
1218 * returned QObject is a QList of all devices.
1219 *
1220 * The QDict contains the following:
1221 *
1222 * - "device": device name
1223 * - "type": device type
1224 * - "removable": true if the device is removable, false otherwise
1225 * - "locked": true if the device is locked, false otherwise
1226 * - "inserted": only present if the device is inserted, it is a QDict
1227 * containing the following:
1228 * - "file": device file name
1229 * - "ro": true if read-only, false otherwise
1230 * - "drv": driver format name
1231 * - "backing_file": backing file name if one is used
1232 * - "encrypted": true if encrypted, false otherwise
1233 *
1234 * Example:
1235 *
1236 * [ { "device": "ide0-hd0", "type": "hd", "removable": false, "locked": false,
1237 * "inserted": { "file": "/tmp/foobar", "ro": false, "drv": "qcow2" } },
1238 * { "device": "floppy0", "type": "floppy", "removable": true,
1239 * "locked": false } ]
1240 */
1241 void bdrv_info(Monitor *mon, QObject **ret_data)
1242 {
1243 QList *bs_list;
1244 BlockDriverState *bs;
1245
1246 bs_list = qlist_new();
1247
1248 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1249 QObject *bs_obj;
1250 const char *type = "unknown";
1251
1252 switch(bs->type) {
1253 case BDRV_TYPE_HD:
1254 type = "hd";
1255 break;
1256 case BDRV_TYPE_CDROM:
1257 type = "cdrom";
1258 break;
1259 case BDRV_TYPE_FLOPPY:
1260 type = "floppy";
1261 break;
1262 }
1263
1264 bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1265 "'removable': %i, 'locked': %i }",
1266 bs->device_name, type, bs->removable,
1267 bs->locked);
1268 assert(bs_obj != NULL);
1269
1270 if (bs->drv) {
1271 QObject *obj;
1272 QDict *bs_dict = qobject_to_qdict(bs_obj);
1273
1274 obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1275 "'encrypted': %i }",
1276 bs->filename, bs->read_only,
1277 bs->drv->format_name,
1278 bdrv_is_encrypted(bs));
1279 assert(obj != NULL);
1280 if (bs->backing_file[0] != '\0') {
1281 QDict *qdict = qobject_to_qdict(obj);
1282 qdict_put(qdict, "backing_file",
1283 qstring_from_str(bs->backing_file));
1284 }
1285
1286 qdict_put_obj(bs_dict, "inserted", obj);
1287 }
1288 qlist_append_obj(bs_list, bs_obj);
1289 }
1290
1291 *ret_data = QOBJECT(bs_list);
1292 }
1293
1294 static void bdrv_stats_iter(QObject *data, void *opaque)
1295 {
1296 QDict *qdict;
1297 Monitor *mon = opaque;
1298
1299 qdict = qobject_to_qdict(data);
1300 monitor_printf(mon, "%s:", qdict_get_str(qdict, "device"));
1301
1302 qdict = qobject_to_qdict(qdict_get(qdict, "stats"));
1303 monitor_printf(mon, " rd_bytes=%" PRId64
1304 " wr_bytes=%" PRId64
1305 " rd_operations=%" PRId64
1306 " wr_operations=%" PRId64
1307 "\n",
1308 qdict_get_int(qdict, "rd_bytes"),
1309 qdict_get_int(qdict, "wr_bytes"),
1310 qdict_get_int(qdict, "rd_operations"),
1311 qdict_get_int(qdict, "wr_operations"));
1312 }
1313
1314 void bdrv_stats_print(Monitor *mon, const QObject *data)
1315 {
1316 qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon);
1317 }
1318
1319 /**
1320 * bdrv_info_stats(): show block device statistics
1321 *
1322 * Each device statistic information is stored in a QDict and
1323 * the returned QObject is a QList of all devices.
1324 *
1325 * The QDict contains the following:
1326 *
1327 * - "device": device name
1328 * - "stats": A QDict with the statistics information, it contains:
1329 * - "rd_bytes": bytes read
1330 * - "wr_bytes": bytes written
1331 * - "rd_operations": read operations
1332 * - "wr_operations": write operations
1333 *
1334 * Example:
1335 *
1336 * [ { "device": "ide0-hd0",
1337 * "stats": { "rd_bytes": 512,
1338 * "wr_bytes": 0,
1339 * "rd_operations": 1,
1340 * "wr_operations": 0 } },
1341 * { "device": "ide1-cd0",
1342 * "stats": { "rd_bytes": 0,
1343 * "wr_bytes": 0,
1344 * "rd_operations": 0,
1345 * "wr_operations": 0 } } ]
1346 */
1347 void bdrv_info_stats(Monitor *mon, QObject **ret_data)
1348 {
1349 QObject *obj;
1350 QList *devices;
1351 BlockDriverState *bs;
1352
1353 devices = qlist_new();
1354
1355 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1356 obj = qobject_from_jsonf("{ 'device': %s, 'stats': {"
1357 "'rd_bytes': %" PRId64 ","
1358 "'wr_bytes': %" PRId64 ","
1359 "'rd_operations': %" PRId64 ","
1360 "'wr_operations': %" PRId64
1361 "} }",
1362 bs->device_name,
1363 bs->rd_bytes, bs->wr_bytes,
1364 bs->rd_ops, bs->wr_ops);
1365 assert(obj != NULL);
1366 qlist_append_obj(devices, obj);
1367 }
1368
1369 *ret_data = QOBJECT(devices);
1370 }
1371
1372 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1373 {
1374 if (bs->backing_hd && bs->backing_hd->encrypted)
1375 return bs->backing_file;
1376 else if (bs->encrypted)
1377 return bs->filename;
1378 else
1379 return NULL;
1380 }
1381
1382 void bdrv_get_backing_filename(BlockDriverState *bs,
1383 char *filename, int filename_size)
1384 {
1385 if (!bs->backing_file) {
1386 pstrcpy(filename, filename_size, "");
1387 } else {
1388 pstrcpy(filename, filename_size, bs->backing_file);
1389 }
1390 }
1391
1392 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
1393 const uint8_t *buf, int nb_sectors)
1394 {
1395 BlockDriver *drv = bs->drv;
1396 if (!drv)
1397 return -ENOMEDIUM;
1398 if (!drv->bdrv_write_compressed)
1399 return -ENOTSUP;
1400 if (bdrv_check_request(bs, sector_num, nb_sectors))
1401 return -EIO;
1402
1403 if (bs->dirty_bitmap) {
1404 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1405 }
1406
1407 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1408 }
1409
1410 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1411 {
1412 BlockDriver *drv = bs->drv;
1413 if (!drv)
1414 return -ENOMEDIUM;
1415 if (!drv->bdrv_get_info)
1416 return -ENOTSUP;
1417 memset(bdi, 0, sizeof(*bdi));
1418 return drv->bdrv_get_info(bs, bdi);
1419 }
1420
1421 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1422 int64_t pos, int size)
1423 {
1424 BlockDriver *drv = bs->drv;
1425 if (!drv)
1426 return -ENOMEDIUM;
1427 if (!drv->bdrv_save_vmstate)
1428 return -ENOTSUP;
1429 return drv->bdrv_save_vmstate(bs, buf, pos, size);
1430 }
1431
1432 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1433 int64_t pos, int size)
1434 {
1435 BlockDriver *drv = bs->drv;
1436 if (!drv)
1437 return -ENOMEDIUM;
1438 if (!drv->bdrv_load_vmstate)
1439 return -ENOTSUP;
1440 return drv->bdrv_load_vmstate(bs, buf, pos, size);
1441 }
1442
1443 /**************************************************************/
1444 /* handling of snapshots */
1445
1446 int bdrv_snapshot_create(BlockDriverState *bs,
1447 QEMUSnapshotInfo *sn_info)
1448 {
1449 BlockDriver *drv = bs->drv;
1450 if (!drv)
1451 return -ENOMEDIUM;
1452 if (!drv->bdrv_snapshot_create)
1453 return -ENOTSUP;
1454 return drv->bdrv_snapshot_create(bs, sn_info);
1455 }
1456
1457 int bdrv_snapshot_goto(BlockDriverState *bs,
1458 const char *snapshot_id)
1459 {
1460 BlockDriver *drv = bs->drv;
1461 if (!drv)
1462 return -ENOMEDIUM;
1463 if (!drv->bdrv_snapshot_goto)
1464 return -ENOTSUP;
1465 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1466 }
1467
1468 int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1469 {
1470 BlockDriver *drv = bs->drv;
1471 if (!drv)
1472 return -ENOMEDIUM;
1473 if (!drv->bdrv_snapshot_delete)
1474 return -ENOTSUP;
1475 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1476 }
1477
1478 int bdrv_snapshot_list(BlockDriverState *bs,
1479 QEMUSnapshotInfo **psn_info)
1480 {
1481 BlockDriver *drv = bs->drv;
1482 if (!drv)
1483 return -ENOMEDIUM;
1484 if (!drv->bdrv_snapshot_list)
1485 return -ENOTSUP;
1486 return drv->bdrv_snapshot_list(bs, psn_info);
1487 }
1488
1489 #define NB_SUFFIXES 4
1490
1491 char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1492 {
1493 static const char suffixes[NB_SUFFIXES] = "KMGT";
1494 int64_t base;
1495 int i;
1496
1497 if (size <= 999) {
1498 snprintf(buf, buf_size, "%" PRId64, size);
1499 } else {
1500 base = 1024;
1501 for(i = 0; i < NB_SUFFIXES; i++) {
1502 if (size < (10 * base)) {
1503 snprintf(buf, buf_size, "%0.1f%c",
1504 (double)size / base,
1505 suffixes[i]);
1506 break;
1507 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
1508 snprintf(buf, buf_size, "%" PRId64 "%c",
1509 ((size + (base >> 1)) / base),
1510 suffixes[i]);
1511 break;
1512 }
1513 base = base * 1024;
1514 }
1515 }
1516 return buf;
1517 }
1518
1519 char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1520 {
1521 char buf1[128], date_buf[128], clock_buf[128];
1522 #ifdef _WIN32
1523 struct tm *ptm;
1524 #else
1525 struct tm tm;
1526 #endif
1527 time_t ti;
1528 int64_t secs;
1529
1530 if (!sn) {
1531 snprintf(buf, buf_size,
1532 "%-10s%-20s%7s%20s%15s",
1533 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1534 } else {
1535 ti = sn->date_sec;
1536 #ifdef _WIN32
1537 ptm = localtime(&ti);
1538 strftime(date_buf, sizeof(date_buf),
1539 "%Y-%m-%d %H:%M:%S", ptm);
1540 #else
1541 localtime_r(&ti, &tm);
1542 strftime(date_buf, sizeof(date_buf),
1543 "%Y-%m-%d %H:%M:%S", &tm);
1544 #endif
1545 secs = sn->vm_clock_nsec / 1000000000;
1546 snprintf(clock_buf, sizeof(clock_buf),
1547 "%02d:%02d:%02d.%03d",
1548 (int)(secs / 3600),
1549 (int)((secs / 60) % 60),
1550 (int)(secs % 60),
1551 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1552 snprintf(buf, buf_size,
1553 "%-10s%-20s%7s%20s%15s",
1554 sn->id_str, sn->name,
1555 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1556 date_buf,
1557 clock_buf);
1558 }
1559 return buf;
1560 }
1561
1562
1563 /**************************************************************/
1564 /* async I/Os */
1565
1566 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1567 QEMUIOVector *qiov, int nb_sectors,
1568 BlockDriverCompletionFunc *cb, void *opaque)
1569 {
1570 BlockDriver *drv = bs->drv;
1571 BlockDriverAIOCB *ret;
1572
1573 if (!drv)
1574 return NULL;
1575 if (bdrv_check_request(bs, sector_num, nb_sectors))
1576 return NULL;
1577
1578 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
1579 cb, opaque);
1580
1581 if (ret) {
1582 /* Update stats even though technically transfer has not happened. */
1583 bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
1584 bs->rd_ops ++;
1585 }
1586
1587 return ret;
1588 }
1589
1590 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1591 QEMUIOVector *qiov, int nb_sectors,
1592 BlockDriverCompletionFunc *cb, void *opaque)
1593 {
1594 BlockDriver *drv = bs->drv;
1595 BlockDriverAIOCB *ret;
1596
1597 if (!drv)
1598 return NULL;
1599 if (bs->read_only)
1600 return NULL;
1601 if (bdrv_check_request(bs, sector_num, nb_sectors))
1602 return NULL;
1603
1604 if (bs->dirty_bitmap) {
1605 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1606 }
1607
1608 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
1609 cb, opaque);
1610
1611 if (ret) {
1612 /* Update stats even though technically transfer has not happened. */
1613 bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
1614 bs->wr_ops ++;
1615 }
1616
1617 return ret;
1618 }
1619
1620
1621 typedef struct MultiwriteCB {
1622 int error;
1623 int num_requests;
1624 int num_callbacks;
1625 struct {
1626 BlockDriverCompletionFunc *cb;
1627 void *opaque;
1628 QEMUIOVector *free_qiov;
1629 void *free_buf;
1630 } callbacks[];
1631 } MultiwriteCB;
1632
1633 static void multiwrite_user_cb(MultiwriteCB *mcb)
1634 {
1635 int i;
1636
1637 for (i = 0; i < mcb->num_callbacks; i++) {
1638 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
1639 qemu_free(mcb->callbacks[i].free_qiov);
1640 qemu_vfree(mcb->callbacks[i].free_buf);
1641 }
1642 }
1643
1644 static void multiwrite_cb(void *opaque, int ret)
1645 {
1646 MultiwriteCB *mcb = opaque;
1647
1648 if (ret < 0) {
1649 mcb->error = ret;
1650 multiwrite_user_cb(mcb);
1651 }
1652
1653 mcb->num_requests--;
1654 if (mcb->num_requests == 0) {
1655 if (mcb->error == 0) {
1656 multiwrite_user_cb(mcb);
1657 }
1658 qemu_free(mcb);
1659 }
1660 }
1661
1662 static int multiwrite_req_compare(const void *a, const void *b)
1663 {
1664 return (((BlockRequest*) a)->sector - ((BlockRequest*) b)->sector);
1665 }
1666
1667 /*
1668 * Takes a bunch of requests and tries to merge them. Returns the number of
1669 * requests that remain after merging.
1670 */
1671 static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
1672 int num_reqs, MultiwriteCB *mcb)
1673 {
1674 int i, outidx;
1675
1676 // Sort requests by start sector
1677 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
1678
1679 // Check if adjacent requests touch the same clusters. If so, combine them,
1680 // filling up gaps with zero sectors.
1681 outidx = 0;
1682 for (i = 1; i < num_reqs; i++) {
1683 int merge = 0;
1684 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
1685
1686 // This handles the cases that are valid for all block drivers, namely
1687 // exactly sequential writes and overlapping writes.
1688 if (reqs[i].sector <= oldreq_last) {
1689 merge = 1;
1690 }
1691
1692 // The block driver may decide that it makes sense to combine requests
1693 // even if there is a gap of some sectors between them. In this case,
1694 // the gap is filled with zeros (therefore only applicable for yet
1695 // unused space in format like qcow2).
1696 if (!merge && bs->drv->bdrv_merge_requests) {
1697 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
1698 }
1699
1700 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
1701 merge = 0;
1702 }
1703
1704 if (merge) {
1705 size_t size;
1706 QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
1707 qemu_iovec_init(qiov,
1708 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
1709
1710 // Add the first request to the merged one. If the requests are
1711 // overlapping, drop the last sectors of the first request.
1712 size = (reqs[i].sector - reqs[outidx].sector) << 9;
1713 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
1714
1715 // We might need to add some zeros between the two requests
1716 if (reqs[i].sector > oldreq_last) {
1717 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
1718 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
1719 memset(buf, 0, zero_bytes);
1720 qemu_iovec_add(qiov, buf, zero_bytes);
1721 mcb->callbacks[i].free_buf = buf;
1722 }
1723
1724 // Add the second request
1725 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
1726
1727 reqs[outidx].nb_sectors += reqs[i].nb_sectors;
1728 reqs[outidx].qiov = qiov;
1729
1730 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
1731 } else {
1732 outidx++;
1733 reqs[outidx].sector = reqs[i].sector;
1734 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
1735 reqs[outidx].qiov = reqs[i].qiov;
1736 }
1737 }
1738
1739 return outidx + 1;
1740 }
1741
1742 /*
1743 * Submit multiple AIO write requests at once.
1744 *
1745 * On success, the function returns 0 and all requests in the reqs array have
1746 * been submitted. In error case this function returns -1, and any of the
1747 * requests may or may not be submitted yet. In particular, this means that the
1748 * callback will be called for some of the requests, for others it won't. The
1749 * caller must check the error field of the BlockRequest to wait for the right
1750 * callbacks (if error != 0, no callback will be called).
1751 *
1752 * The implementation may modify the contents of the reqs array, e.g. to merge
1753 * requests. However, the fields opaque and error are left unmodified as they
1754 * are used to signal failure for a single request to the caller.
1755 */
1756 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
1757 {
1758 BlockDriverAIOCB *acb;
1759 MultiwriteCB *mcb;
1760 int i;
1761
1762 if (num_reqs == 0) {
1763 return 0;
1764 }
1765
1766 // Create MultiwriteCB structure
1767 mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
1768 mcb->num_requests = 0;
1769 mcb->num_callbacks = num_reqs;
1770
1771 for (i = 0; i < num_reqs; i++) {
1772 mcb->callbacks[i].cb = reqs[i].cb;
1773 mcb->callbacks[i].opaque = reqs[i].opaque;
1774 }
1775
1776 // Check for mergable requests
1777 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
1778
1779 // Run the aio requests
1780 for (i = 0; i < num_reqs; i++) {
1781 acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
1782 reqs[i].nb_sectors, multiwrite_cb, mcb);
1783
1784 if (acb == NULL) {
1785 // We can only fail the whole thing if no request has been
1786 // submitted yet. Otherwise we'll wait for the submitted AIOs to
1787 // complete and report the error in the callback.
1788 if (mcb->num_requests == 0) {
1789 reqs[i].error = EIO;
1790 goto fail;
1791 } else {
1792 mcb->error = EIO;
1793 break;
1794 }
1795 } else {
1796 mcb->num_requests++;
1797 }
1798 }
1799
1800 return 0;
1801
1802 fail:
1803 free(mcb);
1804 return -1;
1805 }
1806
1807 BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
1808 BlockDriverCompletionFunc *cb, void *opaque)
1809 {
1810 BlockDriver *drv = bs->drv;
1811
1812 if (!drv)
1813 return NULL;
1814 return drv->bdrv_aio_flush(bs, cb, opaque);
1815 }
1816
1817 void bdrv_aio_cancel(BlockDriverAIOCB *acb)
1818 {
1819 acb->pool->cancel(acb);
1820 }
1821
1822
1823 /**************************************************************/
1824 /* async block device emulation */
1825
1826 typedef struct BlockDriverAIOCBSync {
1827 BlockDriverAIOCB common;
1828 QEMUBH *bh;
1829 int ret;
1830 /* vector translation state */
1831 QEMUIOVector *qiov;
1832 uint8_t *bounce;
1833 int is_write;
1834 } BlockDriverAIOCBSync;
1835
1836 static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
1837 {
1838 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
1839 qemu_bh_delete(acb->bh);
1840 acb->bh = NULL;
1841 qemu_aio_release(acb);
1842 }
1843
1844 static AIOPool bdrv_em_aio_pool = {
1845 .aiocb_size = sizeof(BlockDriverAIOCBSync),
1846 .cancel = bdrv_aio_cancel_em,
1847 };
1848
1849 static void bdrv_aio_bh_cb(void *opaque)
1850 {
1851 BlockDriverAIOCBSync *acb = opaque;
1852
1853 if (!acb->is_write)
1854 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
1855 qemu_vfree(acb->bounce);
1856 acb->common.cb(acb->common.opaque, acb->ret);
1857 qemu_bh_delete(acb->bh);
1858 acb->bh = NULL;
1859 qemu_aio_release(acb);
1860 }
1861
1862 static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
1863 int64_t sector_num,
1864 QEMUIOVector *qiov,
1865 int nb_sectors,
1866 BlockDriverCompletionFunc *cb,
1867 void *opaque,
1868 int is_write)
1869
1870 {
1871 BlockDriverAIOCBSync *acb;
1872
1873 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
1874 acb->is_write = is_write;
1875 acb->qiov = qiov;
1876 acb->bounce = qemu_blockalign(bs, qiov->size);
1877
1878 if (!acb->bh)
1879 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1880
1881 if (is_write) {
1882 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
1883 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
1884 } else {
1885 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
1886 }
1887
1888 qemu_bh_schedule(acb->bh);
1889
1890 return &acb->common;
1891 }
1892
1893 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
1894 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1895 BlockDriverCompletionFunc *cb, void *opaque)
1896 {
1897 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
1898 }
1899
1900 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
1901 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
1902 BlockDriverCompletionFunc *cb, void *opaque)
1903 {
1904 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
1905 }
1906
1907 static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
1908 BlockDriverCompletionFunc *cb, void *opaque)
1909 {
1910 BlockDriverAIOCBSync *acb;
1911
1912 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
1913 acb->is_write = 1; /* don't bounce in the completion hadler */
1914 acb->qiov = NULL;
1915 acb->bounce = NULL;
1916 acb->ret = 0;
1917
1918 if (!acb->bh)
1919 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1920
1921 bdrv_flush(bs);
1922 qemu_bh_schedule(acb->bh);
1923 return &acb->common;
1924 }
1925
1926 /**************************************************************/
1927 /* sync block device emulation */
1928
1929 static void bdrv_rw_em_cb(void *opaque, int ret)
1930 {
1931 *(int *)opaque = ret;
1932 }
1933
1934 #define NOT_DONE 0x7fffffff
1935
1936 static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
1937 uint8_t *buf, int nb_sectors)
1938 {
1939 int async_ret;
1940 BlockDriverAIOCB *acb;
1941 struct iovec iov;
1942 QEMUIOVector qiov;
1943
1944 async_context_push();
1945
1946 async_ret = NOT_DONE;
1947 iov.iov_base = (void *)buf;
1948 iov.iov_len = nb_sectors * 512;
1949 qemu_iovec_init_external(&qiov, &iov, 1);
1950 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
1951 bdrv_rw_em_cb, &async_ret);
1952 if (acb == NULL) {
1953 async_ret = -1;
1954 goto fail;
1955 }
1956
1957 while (async_ret == NOT_DONE) {
1958 qemu_aio_wait();
1959 }
1960
1961
1962 fail:
1963 async_context_pop();
1964 return async_ret;
1965 }
1966
1967 static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
1968 const uint8_t *buf, int nb_sectors)
1969 {
1970 int async_ret;
1971 BlockDriverAIOCB *acb;
1972 struct iovec iov;
1973 QEMUIOVector qiov;
1974
1975 async_context_push();
1976
1977 async_ret = NOT_DONE;
1978 iov.iov_base = (void *)buf;
1979 iov.iov_len = nb_sectors * 512;
1980 qemu_iovec_init_external(&qiov, &iov, 1);
1981 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
1982 bdrv_rw_em_cb, &async_ret);
1983 if (acb == NULL) {
1984 async_ret = -1;
1985 goto fail;
1986 }
1987 while (async_ret == NOT_DONE) {
1988 qemu_aio_wait();
1989 }
1990
1991 fail:
1992 async_context_pop();
1993 return async_ret;
1994 }
1995
1996 void bdrv_init(void)
1997 {
1998 module_call_init(MODULE_INIT_BLOCK);
1999 }
2000
2001 void bdrv_init_with_whitelist(void)
2002 {
2003 use_bdrv_whitelist = 1;
2004 bdrv_init();
2005 }
2006
2007 void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
2008 BlockDriverCompletionFunc *cb, void *opaque)
2009 {
2010 BlockDriverAIOCB *acb;
2011
2012 if (pool->free_aiocb) {
2013 acb = pool->free_aiocb;
2014 pool->free_aiocb = acb->next;
2015 } else {
2016 acb = qemu_mallocz(pool->aiocb_size);
2017 acb->pool = pool;
2018 }
2019 acb->bs = bs;
2020 acb->cb = cb;
2021 acb->opaque = opaque;
2022 return acb;
2023 }
2024
2025 void qemu_aio_release(void *p)
2026 {
2027 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
2028 AIOPool *pool = acb->pool;
2029 acb->next = pool->free_aiocb;
2030 pool->free_aiocb = acb;
2031 }
2032
2033 /**************************************************************/
2034 /* removable device support */
2035
2036 /**
2037 * Return TRUE if the media is present
2038 */
2039 int bdrv_is_inserted(BlockDriverState *bs)
2040 {
2041 BlockDriver *drv = bs->drv;
2042 int ret;
2043 if (!drv)
2044 return 0;
2045 if (!drv->bdrv_is_inserted)
2046 return 1;
2047 ret = drv->bdrv_is_inserted(bs);
2048 return ret;
2049 }
2050
2051 /**
2052 * Return TRUE if the media changed since the last call to this
2053 * function. It is currently only used for floppy disks
2054 */
2055 int bdrv_media_changed(BlockDriverState *bs)
2056 {
2057 BlockDriver *drv = bs->drv;
2058 int ret;
2059
2060 if (!drv || !drv->bdrv_media_changed)
2061 ret = -ENOTSUP;
2062 else
2063 ret = drv->bdrv_media_changed(bs);
2064 if (ret == -ENOTSUP)
2065 ret = bs->media_changed;
2066 bs->media_changed = 0;
2067 return ret;
2068 }
2069
2070 /**
2071 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2072 */
2073 int bdrv_eject(BlockDriverState *bs, int eject_flag)
2074 {
2075 BlockDriver *drv = bs->drv;
2076 int ret;
2077
2078 if (bs->locked) {
2079 return -EBUSY;
2080 }
2081
2082 if (!drv || !drv->bdrv_eject) {
2083 ret = -ENOTSUP;
2084 } else {
2085 ret = drv->bdrv_eject(bs, eject_flag);
2086 }
2087 if (ret == -ENOTSUP) {
2088 if (eject_flag)
2089 bdrv_close(bs);
2090 ret = 0;
2091 }
2092
2093 return ret;
2094 }
2095
2096 int bdrv_is_locked(BlockDriverState *bs)
2097 {
2098 return bs->locked;
2099 }
2100
2101 /**
2102 * Lock or unlock the media (if it is locked, the user won't be able
2103 * to eject it manually).
2104 */
2105 void bdrv_set_locked(BlockDriverState *bs, int locked)
2106 {
2107 BlockDriver *drv = bs->drv;
2108
2109 bs->locked = locked;
2110 if (drv && drv->bdrv_set_locked) {
2111 drv->bdrv_set_locked(bs, locked);
2112 }
2113 }
2114
2115 /* needed for generic scsi interface */
2116
2117 int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
2118 {
2119 BlockDriver *drv = bs->drv;
2120
2121 if (drv && drv->bdrv_ioctl)
2122 return drv->bdrv_ioctl(bs, req, buf);
2123 return -ENOTSUP;
2124 }
2125
2126 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
2127 unsigned long int req, void *buf,
2128 BlockDriverCompletionFunc *cb, void *opaque)
2129 {
2130 BlockDriver *drv = bs->drv;
2131
2132 if (drv && drv->bdrv_aio_ioctl)
2133 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
2134 return NULL;
2135 }
2136
2137
2138
2139 void *qemu_blockalign(BlockDriverState *bs, size_t size)
2140 {
2141 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
2142 }
2143
2144 void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
2145 {
2146 int64_t bitmap_size;
2147
2148 bs->dirty_count = 0;
2149 if (enable) {
2150 if (!bs->dirty_bitmap) {
2151 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
2152 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
2153 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
2154
2155 bs->dirty_bitmap = qemu_mallocz(bitmap_size);
2156 }
2157 } else {
2158 if (bs->dirty_bitmap) {
2159 qemu_free(bs->dirty_bitmap);
2160 bs->dirty_bitmap = NULL;
2161 }
2162 }
2163 }
2164
2165 int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
2166 {
2167 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
2168
2169 if (bs->dirty_bitmap &&
2170 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
2171 return bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
2172 (1 << (chunk % (sizeof(unsigned long) * 8)));
2173 } else {
2174 return 0;
2175 }
2176 }
2177
2178 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
2179 int nr_sectors)
2180 {
2181 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
2182 }
2183
2184 int64_t bdrv_get_dirty_count(BlockDriverState *bs)
2185 {
2186 return bs->dirty_count;
2187 }