]> git.proxmox.com Git - qemu.git/blame - block.c
block: add block_resize monitor command
[qemu.git] / block.c
CommitLineData
fc01f7e7
FB
1/*
2 * QEMU System Emulator block driver
5fafdf24 3 *
fc01f7e7 4 * Copyright (c) 2003 Fabrice Bellard
5fafdf24 5 *
fc01f7e7
FB
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 */
3990d09a 24#include "config-host.h"
faf07963 25#include "qemu-common.h"
6d519a5f 26#include "trace.h"
376253ec 27#include "monitor.h"
ea2384d3 28#include "block_int.h"
5efa9d5a 29#include "module.h"
d15e5465 30#include "qemu-objects.h"
fc01f7e7 31
71e72a19 32#ifdef CONFIG_BSD
7674e7bf
FB
33#include <sys/types.h>
34#include <sys/stat.h>
35#include <sys/ioctl.h>
72cf2d4f 36#include <sys/queue.h>
c5e97233 37#ifndef __DragonFly__
7674e7bf
FB
38#include <sys/disk.h>
39#endif
c5e97233 40#endif
7674e7bf 41
49dc768d
AL
42#ifdef _WIN32
43#include <windows.h>
44#endif
45
f141eafe
AL
46static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
47 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
c87c0672 48 BlockDriverCompletionFunc *cb, void *opaque);
f141eafe
AL
49static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
50 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 51 BlockDriverCompletionFunc *cb, void *opaque);
b2e12bc6
CH
52static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
53 BlockDriverCompletionFunc *cb, void *opaque);
016f5cf6
AG
54static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
55 BlockDriverCompletionFunc *cb, void *opaque);
5fafdf24 56static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
83f64091
FB
57 uint8_t *buf, int nb_sectors);
58static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
59 const uint8_t *buf, int nb_sectors);
ec530c81 60
1b7bdbc1
SH
61static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
62 QTAILQ_HEAD_INITIALIZER(bdrv_states);
7ee930d0 63
8a22f02a
SH
64static QLIST_HEAD(, BlockDriver) bdrv_drivers =
65 QLIST_HEAD_INITIALIZER(bdrv_drivers);
ea2384d3 66
f9092b10
MA
67/* The device to use for VM snapshots */
68static BlockDriverState *bs_snapshots;
69
eb852011
MA
70/* If non-zero, use only whitelisted block drivers */
71static int use_bdrv_whitelist;
72
9e0b22f4
SH
73#ifdef _WIN32
74static int is_windows_drive_prefix(const char *filename)
75{
76 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
77 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
78 filename[1] == ':');
79}
80
81int is_windows_drive(const char *filename)
82{
83 if (is_windows_drive_prefix(filename) &&
84 filename[2] == '\0')
85 return 1;
86 if (strstart(filename, "\\\\.\\", NULL) ||
87 strstart(filename, "//./", NULL))
88 return 1;
89 return 0;
90}
91#endif
92
93/* check if the path starts with "<protocol>:" */
94static int path_has_protocol(const char *path)
95{
96#ifdef _WIN32
97 if (is_windows_drive(path) ||
98 is_windows_drive_prefix(path)) {
99 return 0;
100 }
101#endif
102
103 return strchr(path, ':') != NULL;
104}
105
83f64091 106int path_is_absolute(const char *path)
3b0d4f61 107{
83f64091 108 const char *p;
21664424
FB
109#ifdef _WIN32
110 /* specific case for names like: "\\.\d:" */
111 if (*path == '/' || *path == '\\')
112 return 1;
113#endif
83f64091
FB
114 p = strchr(path, ':');
115 if (p)
116 p++;
117 else
118 p = path;
3b9f94e1
FB
119#ifdef _WIN32
120 return (*p == '/' || *p == '\\');
121#else
122 return (*p == '/');
123#endif
3b0d4f61
FB
124}
125
83f64091
FB
126/* if filename is absolute, just copy it to dest. Otherwise, build a
127 path to it by considering it is relative to base_path. URL are
128 supported. */
129void path_combine(char *dest, int dest_size,
130 const char *base_path,
131 const char *filename)
3b0d4f61 132{
83f64091
FB
133 const char *p, *p1;
134 int len;
135
136 if (dest_size <= 0)
137 return;
138 if (path_is_absolute(filename)) {
139 pstrcpy(dest, dest_size, filename);
140 } else {
141 p = strchr(base_path, ':');
142 if (p)
143 p++;
144 else
145 p = base_path;
3b9f94e1
FB
146 p1 = strrchr(base_path, '/');
147#ifdef _WIN32
148 {
149 const char *p2;
150 p2 = strrchr(base_path, '\\');
151 if (!p1 || p2 > p1)
152 p1 = p2;
153 }
154#endif
83f64091
FB
155 if (p1)
156 p1++;
157 else
158 p1 = base_path;
159 if (p1 > p)
160 p = p1;
161 len = p - base_path;
162 if (len > dest_size - 1)
163 len = dest_size - 1;
164 memcpy(dest, base_path, len);
165 dest[len] = '\0';
166 pstrcat(dest, dest_size, filename);
3b0d4f61 167 }
3b0d4f61
FB
168}
169
5efa9d5a 170void bdrv_register(BlockDriver *bdrv)
ea2384d3 171{
f141eafe 172 if (!bdrv->bdrv_aio_readv) {
83f64091 173 /* add AIO emulation layer */
f141eafe
AL
174 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
175 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
eda578e5 176 } else if (!bdrv->bdrv_read) {
83f64091
FB
177 /* add synchronous IO emulation layer */
178 bdrv->bdrv_read = bdrv_read_em;
179 bdrv->bdrv_write = bdrv_write_em;
180 }
b2e12bc6
CH
181
182 if (!bdrv->bdrv_aio_flush)
183 bdrv->bdrv_aio_flush = bdrv_aio_flush_em;
184
8a22f02a 185 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
ea2384d3 186}
b338082b
FB
187
188/* create a new block device (by default it is empty) */
189BlockDriverState *bdrv_new(const char *device_name)
190{
1b7bdbc1 191 BlockDriverState *bs;
b338082b
FB
192
193 bs = qemu_mallocz(sizeof(BlockDriverState));
b338082b 194 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
ea2384d3 195 if (device_name[0] != '\0') {
1b7bdbc1 196 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
ea2384d3 197 }
b338082b
FB
198 return bs;
199}
200
ea2384d3
FB
201BlockDriver *bdrv_find_format(const char *format_name)
202{
203 BlockDriver *drv1;
8a22f02a
SH
204 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
205 if (!strcmp(drv1->format_name, format_name)) {
ea2384d3 206 return drv1;
8a22f02a 207 }
ea2384d3
FB
208 }
209 return NULL;
210}
211
eb852011
MA
212static int bdrv_is_whitelisted(BlockDriver *drv)
213{
214 static const char *whitelist[] = {
215 CONFIG_BDRV_WHITELIST
216 };
217 const char **p;
218
219 if (!whitelist[0])
220 return 1; /* no whitelist, anything goes */
221
222 for (p = whitelist; *p; p++) {
223 if (!strcmp(drv->format_name, *p)) {
224 return 1;
225 }
226 }
227 return 0;
228}
229
230BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
231{
232 BlockDriver *drv = bdrv_find_format(format_name);
233 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
234}
235
0e7e1989
KW
236int bdrv_create(BlockDriver *drv, const char* filename,
237 QEMUOptionParameter *options)
ea2384d3
FB
238{
239 if (!drv->bdrv_create)
240 return -ENOTSUP;
0e7e1989
KW
241
242 return drv->bdrv_create(filename, options);
ea2384d3
FB
243}
244
84a12e66
CH
245int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
246{
247 BlockDriver *drv;
248
b50cbabc 249 drv = bdrv_find_protocol(filename);
84a12e66 250 if (drv == NULL) {
16905d71 251 return -ENOENT;
84a12e66
CH
252 }
253
254 return bdrv_create(drv, filename, options);
255}
256
d5249393 257#ifdef _WIN32
95389c86 258void get_tmp_filename(char *filename, int size)
d5249393 259{
3b9f94e1 260 char temp_dir[MAX_PATH];
3b46e624 261
3b9f94e1
FB
262 GetTempPath(MAX_PATH, temp_dir);
263 GetTempFileName(temp_dir, "qem", 0, filename);
d5249393
FB
264}
265#else
95389c86 266void get_tmp_filename(char *filename, int size)
fc01f7e7 267{
67b915a5 268 int fd;
7ccfb2eb 269 const char *tmpdir;
d5249393 270 /* XXX: race condition possible */
0badc1ee
AJ
271 tmpdir = getenv("TMPDIR");
272 if (!tmpdir)
273 tmpdir = "/tmp";
274 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
ea2384d3
FB
275 fd = mkstemp(filename);
276 close(fd);
277}
d5249393 278#endif
fc01f7e7 279
84a12e66
CH
280/*
281 * Detect host devices. By convention, /dev/cdrom[N] is always
282 * recognized as a host CDROM.
283 */
284static BlockDriver *find_hdev_driver(const char *filename)
285{
286 int score_max = 0, score;
287 BlockDriver *drv = NULL, *d;
288
289 QLIST_FOREACH(d, &bdrv_drivers, list) {
290 if (d->bdrv_probe_device) {
291 score = d->bdrv_probe_device(filename);
292 if (score > score_max) {
293 score_max = score;
294 drv = d;
295 }
296 }
297 }
298
299 return drv;
300}
301
b50cbabc 302BlockDriver *bdrv_find_protocol(const char *filename)
83f64091
FB
303{
304 BlockDriver *drv1;
305 char protocol[128];
1cec71e3 306 int len;
83f64091 307 const char *p;
19cb3738 308
66f82cee
KW
309 /* TODO Drivers without bdrv_file_open must be specified explicitly */
310
39508e7a
CH
311 /*
312 * XXX(hch): we really should not let host device detection
313 * override an explicit protocol specification, but moving this
314 * later breaks access to device names with colons in them.
315 * Thanks to the brain-dead persistent naming schemes on udev-
316 * based Linux systems those actually are quite common.
317 */
318 drv1 = find_hdev_driver(filename);
319 if (drv1) {
320 return drv1;
321 }
322
9e0b22f4 323 if (!path_has_protocol(filename)) {
39508e7a 324 return bdrv_find_format("file");
84a12e66 325 }
9e0b22f4
SH
326 p = strchr(filename, ':');
327 assert(p != NULL);
1cec71e3
AL
328 len = p - filename;
329 if (len > sizeof(protocol) - 1)
330 len = sizeof(protocol) - 1;
331 memcpy(protocol, filename, len);
332 protocol[len] = '\0';
8a22f02a 333 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
5fafdf24 334 if (drv1->protocol_name &&
8a22f02a 335 !strcmp(drv1->protocol_name, protocol)) {
83f64091 336 return drv1;
8a22f02a 337 }
83f64091
FB
338 }
339 return NULL;
340}
341
c98ac35d 342static int find_image_format(const char *filename, BlockDriver **pdrv)
f3a5d3f8
CH
343{
344 int ret, score, score_max;
345 BlockDriver *drv1, *drv;
346 uint8_t buf[2048];
347 BlockDriverState *bs;
348
f5edb014 349 ret = bdrv_file_open(&bs, filename, 0);
c98ac35d
SW
350 if (ret < 0) {
351 *pdrv = NULL;
352 return ret;
353 }
f8ea0b00 354
08a00559
KW
355 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
356 if (bs->sg || !bdrv_is_inserted(bs)) {
1a396859 357 bdrv_delete(bs);
c98ac35d
SW
358 drv = bdrv_find_format("raw");
359 if (!drv) {
360 ret = -ENOENT;
361 }
362 *pdrv = drv;
363 return ret;
1a396859 364 }
f8ea0b00 365
83f64091
FB
366 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
367 bdrv_delete(bs);
368 if (ret < 0) {
c98ac35d
SW
369 *pdrv = NULL;
370 return ret;
83f64091
FB
371 }
372
ea2384d3 373 score_max = 0;
84a12e66 374 drv = NULL;
8a22f02a 375 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
83f64091
FB
376 if (drv1->bdrv_probe) {
377 score = drv1->bdrv_probe(buf, ret, filename);
378 if (score > score_max) {
379 score_max = score;
380 drv = drv1;
381 }
0849bf08 382 }
fc01f7e7 383 }
c98ac35d
SW
384 if (!drv) {
385 ret = -ENOENT;
386 }
387 *pdrv = drv;
388 return ret;
ea2384d3
FB
389}
390
51762288
SH
391/**
392 * Set the current 'total_sectors' value
393 */
394static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
395{
396 BlockDriver *drv = bs->drv;
397
396759ad
NB
398 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
399 if (bs->sg)
400 return 0;
401
51762288
SH
402 /* query actual device if possible, otherwise just trust the hint */
403 if (drv->bdrv_getlength) {
404 int64_t length = drv->bdrv_getlength(bs);
405 if (length < 0) {
406 return length;
407 }
408 hint = length >> BDRV_SECTOR_BITS;
409 }
410
411 bs->total_sectors = hint;
412 return 0;
413}
414
57915332
KW
415/*
416 * Common part for opening disk images and files
417 */
418static int bdrv_open_common(BlockDriverState *bs, const char *filename,
419 int flags, BlockDriver *drv)
420{
421 int ret, open_flags;
422
423 assert(drv != NULL);
424
66f82cee 425 bs->file = NULL;
51762288 426 bs->total_sectors = 0;
57915332
KW
427 bs->encrypted = 0;
428 bs->valid_key = 0;
429 bs->open_flags = flags;
430 /* buffer_alignment defaulted to 512, drivers can change this value */
431 bs->buffer_alignment = 512;
432
433 pstrcpy(bs->filename, sizeof(bs->filename), filename);
434
435 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
436 return -ENOTSUP;
437 }
438
439 bs->drv = drv;
440 bs->opaque = qemu_mallocz(drv->instance_size);
441
442 /*
443 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
444 * write cache to the guest. We do need the fdatasync to flush
445 * out transactions for block allocations, and we maybe have a
446 * volatile write cache in our backing device to deal with.
447 */
448 if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
449 bs->enable_write_cache = 1;
450
451 /*
452 * Clear flags that are internal to the block layer before opening the
453 * image.
454 */
455 open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
456
457 /*
458 * Snapshots should be writeable.
459 */
460 if (bs->is_temporary) {
461 open_flags |= BDRV_O_RDWR;
462 }
463
66f82cee
KW
464 /* Open the image, either directly or using a protocol */
465 if (drv->bdrv_file_open) {
466 ret = drv->bdrv_file_open(bs, filename, open_flags);
467 } else {
468 ret = bdrv_file_open(&bs->file, filename, open_flags);
469 if (ret >= 0) {
470 ret = drv->bdrv_open(bs, open_flags);
471 }
472 }
473
57915332
KW
474 if (ret < 0) {
475 goto free_and_fail;
476 }
477
478 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
51762288
SH
479
480 ret = refresh_total_sectors(bs, bs->total_sectors);
481 if (ret < 0) {
482 goto free_and_fail;
57915332 483 }
51762288 484
57915332
KW
485#ifndef _WIN32
486 if (bs->is_temporary) {
487 unlink(filename);
488 }
489#endif
490 return 0;
491
492free_and_fail:
66f82cee
KW
493 if (bs->file) {
494 bdrv_delete(bs->file);
495 bs->file = NULL;
496 }
57915332
KW
497 qemu_free(bs->opaque);
498 bs->opaque = NULL;
499 bs->drv = NULL;
500 return ret;
501}
502
b6ce07aa
KW
503/*
504 * Opens a file using a protocol (file, host_device, nbd, ...)
505 */
83f64091 506int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
ea2384d3 507{
83f64091 508 BlockDriverState *bs;
6db95603 509 BlockDriver *drv;
83f64091
FB
510 int ret;
511
b50cbabc 512 drv = bdrv_find_protocol(filename);
6db95603
CH
513 if (!drv) {
514 return -ENOENT;
515 }
516
83f64091 517 bs = bdrv_new("");
b6ce07aa 518 ret = bdrv_open_common(bs, filename, flags, drv);
83f64091
FB
519 if (ret < 0) {
520 bdrv_delete(bs);
521 return ret;
3b0d4f61 522 }
71d0770c 523 bs->growable = 1;
83f64091
FB
524 *pbs = bs;
525 return 0;
526}
527
b6ce07aa
KW
528/*
529 * Opens a disk image (raw, qcow2, vmdk, ...)
530 */
d6e9098e
KW
531int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
532 BlockDriver *drv)
ea2384d3 533{
b6ce07aa 534 int ret;
712e7874 535
83f64091 536 if (flags & BDRV_O_SNAPSHOT) {
ea2384d3
FB
537 BlockDriverState *bs1;
538 int64_t total_size;
7c96d46e 539 int is_protocol = 0;
91a073a9
KW
540 BlockDriver *bdrv_qcow2;
541 QEMUOptionParameter *options;
b6ce07aa
KW
542 char tmp_filename[PATH_MAX];
543 char backing_filename[PATH_MAX];
3b46e624 544
ea2384d3
FB
545 /* if snapshot, we create a temporary backing file and open it
546 instead of opening 'filename' directly */
33e3963e 547
ea2384d3
FB
548 /* if there is a backing file, use it */
549 bs1 = bdrv_new("");
d6e9098e 550 ret = bdrv_open(bs1, filename, 0, drv);
51d7c00c 551 if (ret < 0) {
ea2384d3 552 bdrv_delete(bs1);
51d7c00c 553 return ret;
ea2384d3 554 }
3e82990b 555 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
7c96d46e
AL
556
557 if (bs1->drv && bs1->drv->protocol_name)
558 is_protocol = 1;
559
ea2384d3 560 bdrv_delete(bs1);
3b46e624 561
ea2384d3 562 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
7c96d46e
AL
563
564 /* Real path is meaningless for protocols */
565 if (is_protocol)
566 snprintf(backing_filename, sizeof(backing_filename),
567 "%s", filename);
114cdfa9
KS
568 else if (!realpath(filename, backing_filename))
569 return -errno;
7c96d46e 570
91a073a9
KW
571 bdrv_qcow2 = bdrv_find_format("qcow2");
572 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
573
3e82990b 574 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
91a073a9
KW
575 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
576 if (drv) {
577 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
578 drv->format_name);
579 }
580
581 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
d748768c 582 free_option_parameters(options);
51d7c00c
AL
583 if (ret < 0) {
584 return ret;
ea2384d3 585 }
91a073a9 586
ea2384d3 587 filename = tmp_filename;
91a073a9 588 drv = bdrv_qcow2;
ea2384d3
FB
589 bs->is_temporary = 1;
590 }
712e7874 591
b6ce07aa 592 /* Find the right image format driver */
6db95603 593 if (!drv) {
c98ac35d 594 ret = find_image_format(filename, &drv);
51d7c00c 595 }
6987307c 596
51d7c00c 597 if (!drv) {
51d7c00c 598 goto unlink_and_fail;
ea2384d3 599 }
b6ce07aa
KW
600
601 /* Open the image */
602 ret = bdrv_open_common(bs, filename, flags, drv);
603 if (ret < 0) {
6987307c
CH
604 goto unlink_and_fail;
605 }
606
b6ce07aa
KW
607 /* If there is a backing file, use it */
608 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
609 char backing_filename[PATH_MAX];
610 int back_flags;
611 BlockDriver *back_drv = NULL;
612
613 bs->backing_hd = bdrv_new("");
df2dbb4a
SH
614
615 if (path_has_protocol(bs->backing_file)) {
616 pstrcpy(backing_filename, sizeof(backing_filename),
617 bs->backing_file);
618 } else {
619 path_combine(backing_filename, sizeof(backing_filename),
620 filename, bs->backing_file);
621 }
622
623 if (bs->backing_format[0] != '\0') {
b6ce07aa 624 back_drv = bdrv_find_format(bs->backing_format);
df2dbb4a 625 }
b6ce07aa
KW
626
627 /* backing files always opened read-only */
628 back_flags =
629 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
630
631 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
632 if (ret < 0) {
633 bdrv_close(bs);
634 return ret;
635 }
636 if (bs->is_temporary) {
637 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
638 } else {
639 /* base image inherits from "parent" */
640 bs->backing_hd->keep_read_only = bs->keep_read_only;
641 }
642 }
643
644 if (!bdrv_key_required(bs)) {
645 /* call the change callback */
646 bs->media_changed = 1;
647 if (bs->change_cb)
648 bs->change_cb(bs->change_opaque);
649 }
650
651 return 0;
652
653unlink_and_fail:
654 if (bs->is_temporary) {
655 unlink(filename);
656 }
657 return ret;
658}
659
fc01f7e7
FB
660void bdrv_close(BlockDriverState *bs)
661{
19cb3738 662 if (bs->drv) {
f9092b10
MA
663 if (bs == bs_snapshots) {
664 bs_snapshots = NULL;
665 }
557df6ac 666 if (bs->backing_hd) {
ea2384d3 667 bdrv_delete(bs->backing_hd);
557df6ac
SH
668 bs->backing_hd = NULL;
669 }
ea2384d3
FB
670 bs->drv->bdrv_close(bs);
671 qemu_free(bs->opaque);
672#ifdef _WIN32
673 if (bs->is_temporary) {
674 unlink(bs->filename);
675 }
67b915a5 676#endif
ea2384d3
FB
677 bs->opaque = NULL;
678 bs->drv = NULL;
b338082b 679
66f82cee
KW
680 if (bs->file != NULL) {
681 bdrv_close(bs->file);
682 }
683
b338082b 684 /* call the change callback */
19cb3738 685 bs->media_changed = 1;
b338082b
FB
686 if (bs->change_cb)
687 bs->change_cb(bs->change_opaque);
688 }
689}
690
2bc93fed
MK
691void bdrv_close_all(void)
692{
693 BlockDriverState *bs;
694
695 QTAILQ_FOREACH(bs, &bdrv_states, list) {
696 bdrv_close(bs);
697 }
698}
699
b338082b
FB
700void bdrv_delete(BlockDriverState *bs)
701{
18846dee
MA
702 assert(!bs->peer);
703
1b7bdbc1
SH
704 /* remove from list, if necessary */
705 if (bs->device_name[0] != '\0') {
706 QTAILQ_REMOVE(&bdrv_states, bs, list);
707 }
34c6f050 708
b338082b 709 bdrv_close(bs);
66f82cee
KW
710 if (bs->file != NULL) {
711 bdrv_delete(bs->file);
712 }
713
f9092b10 714 assert(bs != bs_snapshots);
b338082b 715 qemu_free(bs);
fc01f7e7
FB
716}
717
18846dee
MA
718int bdrv_attach(BlockDriverState *bs, DeviceState *qdev)
719{
720 if (bs->peer) {
721 return -EBUSY;
722 }
723 bs->peer = qdev;
724 return 0;
725}
726
727void bdrv_detach(BlockDriverState *bs, DeviceState *qdev)
728{
729 assert(bs->peer == qdev);
730 bs->peer = NULL;
731}
732
733DeviceState *bdrv_get_attached(BlockDriverState *bs)
734{
735 return bs->peer;
736}
737
e97fc193
AL
738/*
739 * Run consistency checks on an image
740 *
e076f338
KW
741 * Returns 0 if the check could be completed (it doesn't mean that the image is
742 * free of errors) or -errno when an internal error occured. The results of the
743 * check are stored in res.
e97fc193 744 */
e076f338 745int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res)
e97fc193
AL
746{
747 if (bs->drv->bdrv_check == NULL) {
748 return -ENOTSUP;
749 }
750
e076f338 751 memset(res, 0, sizeof(*res));
9ac228e0 752 return bs->drv->bdrv_check(bs, res);
e97fc193
AL
753}
754
8a426614
KW
755#define COMMIT_BUF_SECTORS 2048
756
33e3963e
FB
757/* commit COW file into the raw image */
758int bdrv_commit(BlockDriverState *bs)
759{
19cb3738 760 BlockDriver *drv = bs->drv;
ee181196 761 BlockDriver *backing_drv;
8a426614
KW
762 int64_t sector, total_sectors;
763 int n, ro, open_flags;
4dca4b63 764 int ret = 0, rw_ret = 0;
8a426614 765 uint8_t *buf;
4dca4b63
NS
766 char filename[1024];
767 BlockDriverState *bs_rw, *bs_ro;
33e3963e 768
19cb3738
FB
769 if (!drv)
770 return -ENOMEDIUM;
4dca4b63
NS
771
772 if (!bs->backing_hd) {
773 return -ENOTSUP;
33e3963e
FB
774 }
775
4dca4b63
NS
776 if (bs->backing_hd->keep_read_only) {
777 return -EACCES;
778 }
ee181196
KW
779
780 backing_drv = bs->backing_hd->drv;
4dca4b63
NS
781 ro = bs->backing_hd->read_only;
782 strncpy(filename, bs->backing_hd->filename, sizeof(filename));
783 open_flags = bs->backing_hd->open_flags;
784
785 if (ro) {
786 /* re-open as RW */
787 bdrv_delete(bs->backing_hd);
788 bs->backing_hd = NULL;
789 bs_rw = bdrv_new("");
ee181196
KW
790 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR,
791 backing_drv);
4dca4b63
NS
792 if (rw_ret < 0) {
793 bdrv_delete(bs_rw);
794 /* try to re-open read-only */
795 bs_ro = bdrv_new("");
ee181196
KW
796 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
797 backing_drv);
4dca4b63
NS
798 if (ret < 0) {
799 bdrv_delete(bs_ro);
800 /* drive not functional anymore */
801 bs->drv = NULL;
802 return ret;
803 }
804 bs->backing_hd = bs_ro;
805 return rw_ret;
806 }
807 bs->backing_hd = bs_rw;
ea2384d3 808 }
33e3963e 809
6ea44308 810 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
8a426614
KW
811 buf = qemu_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
812
813 for (sector = 0; sector < total_sectors; sector += n) {
814 if (drv->bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
815
816 if (bdrv_read(bs, sector, buf, n) != 0) {
817 ret = -EIO;
818 goto ro_cleanup;
819 }
820
821 if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
822 ret = -EIO;
823 goto ro_cleanup;
824 }
ea2384d3 825 }
33e3963e 826 }
95389c86 827
1d44952f
CH
828 if (drv->bdrv_make_empty) {
829 ret = drv->bdrv_make_empty(bs);
830 bdrv_flush(bs);
831 }
95389c86 832
3f5075ae
CH
833 /*
834 * Make sure all data we wrote to the backing device is actually
835 * stable on disk.
836 */
837 if (bs->backing_hd)
838 bdrv_flush(bs->backing_hd);
4dca4b63
NS
839
840ro_cleanup:
8a426614 841 qemu_free(buf);
4dca4b63
NS
842
843 if (ro) {
844 /* re-open as RO */
845 bdrv_delete(bs->backing_hd);
846 bs->backing_hd = NULL;
847 bs_ro = bdrv_new("");
ee181196
KW
848 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
849 backing_drv);
4dca4b63
NS
850 if (ret < 0) {
851 bdrv_delete(bs_ro);
852 /* drive not functional anymore */
853 bs->drv = NULL;
854 return ret;
855 }
856 bs->backing_hd = bs_ro;
857 bs->backing_hd->keep_read_only = 0;
858 }
859
1d44952f 860 return ret;
33e3963e
FB
861}
862
6ab4b5ab
MA
863void bdrv_commit_all(void)
864{
865 BlockDriverState *bs;
866
867 QTAILQ_FOREACH(bs, &bdrv_states, list) {
868 bdrv_commit(bs);
869 }
870}
871
756e6736
KW
872/*
873 * Return values:
874 * 0 - success
875 * -EINVAL - backing format specified, but no file
876 * -ENOSPC - can't update the backing file because no space is left in the
877 * image file header
878 * -ENOTSUP - format driver doesn't support changing the backing file
879 */
880int bdrv_change_backing_file(BlockDriverState *bs,
881 const char *backing_file, const char *backing_fmt)
882{
883 BlockDriver *drv = bs->drv;
884
885 if (drv->bdrv_change_backing_file != NULL) {
886 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
887 } else {
888 return -ENOTSUP;
889 }
890}
891
71d0770c
AL
892static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
893 size_t size)
894{
895 int64_t len;
896
897 if (!bdrv_is_inserted(bs))
898 return -ENOMEDIUM;
899
900 if (bs->growable)
901 return 0;
902
903 len = bdrv_getlength(bs);
904
fbb7b4e0
KW
905 if (offset < 0)
906 return -EIO;
907
908 if ((offset > len) || (len - offset < size))
71d0770c
AL
909 return -EIO;
910
911 return 0;
912}
913
914static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
915 int nb_sectors)
916{
eb5a3165
JS
917 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
918 nb_sectors * BDRV_SECTOR_SIZE);
71d0770c
AL
919}
920
19cb3738 921/* return < 0 if error. See bdrv_write() for the return codes */
5fafdf24 922int bdrv_read(BlockDriverState *bs, int64_t sector_num,
fc01f7e7
FB
923 uint8_t *buf, int nb_sectors)
924{
ea2384d3
FB
925 BlockDriver *drv = bs->drv;
926
19cb3738
FB
927 if (!drv)
928 return -ENOMEDIUM;
71d0770c
AL
929 if (bdrv_check_request(bs, sector_num, nb_sectors))
930 return -EIO;
b338082b 931
eda578e5 932 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
fc01f7e7
FB
933}
934
7cd1e32a 935static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
a55eb92c 936 int nb_sectors, int dirty)
7cd1e32a 937{
938 int64_t start, end;
c6d22830 939 unsigned long val, idx, bit;
a55eb92c 940
6ea44308 941 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
c6d22830 942 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
a55eb92c
JK
943
944 for (; start <= end; start++) {
c6d22830
JK
945 idx = start / (sizeof(unsigned long) * 8);
946 bit = start % (sizeof(unsigned long) * 8);
947 val = bs->dirty_bitmap[idx];
948 if (dirty) {
6d59fec1 949 if (!(val & (1UL << bit))) {
aaa0eb75 950 bs->dirty_count++;
6d59fec1 951 val |= 1UL << bit;
aaa0eb75 952 }
c6d22830 953 } else {
6d59fec1 954 if (val & (1UL << bit)) {
aaa0eb75 955 bs->dirty_count--;
6d59fec1 956 val &= ~(1UL << bit);
aaa0eb75 957 }
c6d22830
JK
958 }
959 bs->dirty_bitmap[idx] = val;
7cd1e32a 960 }
961}
962
5fafdf24 963/* Return < 0 if error. Important errors are:
19cb3738
FB
964 -EIO generic I/O error (may happen for all errors)
965 -ENOMEDIUM No media inserted.
966 -EINVAL Invalid sector number or nb_sectors
967 -EACCES Trying to write a read-only device
968*/
5fafdf24 969int bdrv_write(BlockDriverState *bs, int64_t sector_num,
fc01f7e7
FB
970 const uint8_t *buf, int nb_sectors)
971{
83f64091 972 BlockDriver *drv = bs->drv;
19cb3738
FB
973 if (!bs->drv)
974 return -ENOMEDIUM;
0849bf08 975 if (bs->read_only)
19cb3738 976 return -EACCES;
71d0770c
AL
977 if (bdrv_check_request(bs, sector_num, nb_sectors))
978 return -EIO;
a55eb92c 979
c6d22830 980 if (bs->dirty_bitmap) {
7cd1e32a 981 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
982 }
a55eb92c 983
294cc35f
KW
984 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
985 bs->wr_highest_sector = sector_num + nb_sectors - 1;
986 }
987
42fb2807 988 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
83f64091
FB
989}
990
eda578e5
AL
991int bdrv_pread(BlockDriverState *bs, int64_t offset,
992 void *buf, int count1)
83f64091 993{
6ea44308 994 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
83f64091
FB
995 int len, nb_sectors, count;
996 int64_t sector_num;
9a8c4cce 997 int ret;
83f64091
FB
998
999 count = count1;
1000 /* first read to align to sector start */
6ea44308 1001 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
83f64091
FB
1002 if (len > count)
1003 len = count;
6ea44308 1004 sector_num = offset >> BDRV_SECTOR_BITS;
83f64091 1005 if (len > 0) {
9a8c4cce
KW
1006 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1007 return ret;
6ea44308 1008 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
83f64091
FB
1009 count -= len;
1010 if (count == 0)
1011 return count1;
1012 sector_num++;
1013 buf += len;
1014 }
1015
1016 /* read the sectors "in place" */
6ea44308 1017 nb_sectors = count >> BDRV_SECTOR_BITS;
83f64091 1018 if (nb_sectors > 0) {
9a8c4cce
KW
1019 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
1020 return ret;
83f64091 1021 sector_num += nb_sectors;
6ea44308 1022 len = nb_sectors << BDRV_SECTOR_BITS;
83f64091
FB
1023 buf += len;
1024 count -= len;
1025 }
1026
1027 /* add data from the last sector */
1028 if (count > 0) {
9a8c4cce
KW
1029 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1030 return ret;
83f64091
FB
1031 memcpy(buf, tmp_buf, count);
1032 }
1033 return count1;
1034}
1035
eda578e5
AL
1036int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
1037 const void *buf, int count1)
83f64091 1038{
6ea44308 1039 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
83f64091
FB
1040 int len, nb_sectors, count;
1041 int64_t sector_num;
9a8c4cce 1042 int ret;
83f64091
FB
1043
1044 count = count1;
1045 /* first write to align to sector start */
6ea44308 1046 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
83f64091
FB
1047 if (len > count)
1048 len = count;
6ea44308 1049 sector_num = offset >> BDRV_SECTOR_BITS;
83f64091 1050 if (len > 0) {
9a8c4cce
KW
1051 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1052 return ret;
6ea44308 1053 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
9a8c4cce
KW
1054 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1055 return ret;
83f64091
FB
1056 count -= len;
1057 if (count == 0)
1058 return count1;
1059 sector_num++;
1060 buf += len;
1061 }
1062
1063 /* write the sectors "in place" */
6ea44308 1064 nb_sectors = count >> BDRV_SECTOR_BITS;
83f64091 1065 if (nb_sectors > 0) {
9a8c4cce
KW
1066 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
1067 return ret;
83f64091 1068 sector_num += nb_sectors;
6ea44308 1069 len = nb_sectors << BDRV_SECTOR_BITS;
83f64091
FB
1070 buf += len;
1071 count -= len;
1072 }
1073
1074 /* add data from the last sector */
1075 if (count > 0) {
9a8c4cce
KW
1076 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1077 return ret;
83f64091 1078 memcpy(tmp_buf, buf, count);
9a8c4cce
KW
1079 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1080 return ret;
83f64091
FB
1081 }
1082 return count1;
1083}
83f64091 1084
f08145fe
KW
1085/*
1086 * Writes to the file and ensures that no writes are reordered across this
1087 * request (acts as a barrier)
1088 *
1089 * Returns 0 on success, -errno in error cases.
1090 */
1091int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
1092 const void *buf, int count)
1093{
1094 int ret;
1095
1096 ret = bdrv_pwrite(bs, offset, buf, count);
1097 if (ret < 0) {
1098 return ret;
1099 }
1100
1101 /* No flush needed for cache=writethrough, it uses O_DSYNC */
1102 if ((bs->open_flags & BDRV_O_CACHE_MASK) != 0) {
1103 bdrv_flush(bs);
1104 }
1105
1106 return 0;
1107}
1108
1109/*
1110 * Writes to the file and ensures that no writes are reordered across this
1111 * request (acts as a barrier)
1112 *
1113 * Returns 0 on success, -errno in error cases.
1114 */
1115int bdrv_write_sync(BlockDriverState *bs, int64_t sector_num,
1116 const uint8_t *buf, int nb_sectors)
1117{
1118 return bdrv_pwrite_sync(bs, BDRV_SECTOR_SIZE * sector_num,
1119 buf, BDRV_SECTOR_SIZE * nb_sectors);
1120}
1121
83f64091
FB
1122/**
1123 * Truncate file to 'offset' bytes (needed only for file protocols)
1124 */
1125int bdrv_truncate(BlockDriverState *bs, int64_t offset)
1126{
1127 BlockDriver *drv = bs->drv;
51762288 1128 int ret;
83f64091 1129 if (!drv)
19cb3738 1130 return -ENOMEDIUM;
83f64091
FB
1131 if (!drv->bdrv_truncate)
1132 return -ENOTSUP;
59f2689d
NS
1133 if (bs->read_only)
1134 return -EACCES;
51762288
SH
1135 ret = drv->bdrv_truncate(bs, offset);
1136 if (ret == 0) {
1137 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
1138 }
1139 return ret;
83f64091
FB
1140}
1141
1142/**
1143 * Length of a file in bytes. Return < 0 if error or unknown.
1144 */
1145int64_t bdrv_getlength(BlockDriverState *bs)
1146{
1147 BlockDriver *drv = bs->drv;
1148 if (!drv)
19cb3738 1149 return -ENOMEDIUM;
51762288
SH
1150
1151 /* Fixed size devices use the total_sectors value for speed instead of
1152 issuing a length query (like lseek) on each call. Also, legacy block
1153 drivers don't provide a bdrv_getlength function and must use
1154 total_sectors. */
1155 if (!bs->growable || !drv->bdrv_getlength) {
6ea44308 1156 return bs->total_sectors * BDRV_SECTOR_SIZE;
83f64091
FB
1157 }
1158 return drv->bdrv_getlength(bs);
fc01f7e7
FB
1159}
1160
19cb3738 1161/* return 0 as number of sectors if no device present or error */
96b8f136 1162void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
fc01f7e7 1163{
19cb3738
FB
1164 int64_t length;
1165 length = bdrv_getlength(bs);
1166 if (length < 0)
1167 length = 0;
1168 else
6ea44308 1169 length = length >> BDRV_SECTOR_BITS;
19cb3738 1170 *nb_sectors_ptr = length;
fc01f7e7 1171}
cf98951b 1172
f3d54fc4
AL
1173struct partition {
1174 uint8_t boot_ind; /* 0x80 - active */
1175 uint8_t head; /* starting head */
1176 uint8_t sector; /* starting sector */
1177 uint8_t cyl; /* starting cylinder */
1178 uint8_t sys_ind; /* What partition type */
1179 uint8_t end_head; /* end head */
1180 uint8_t end_sector; /* end sector */
1181 uint8_t end_cyl; /* end cylinder */
1182 uint32_t start_sect; /* starting sector counting from 0 */
1183 uint32_t nr_sects; /* nr of sectors in partition */
1184} __attribute__((packed));
1185
1186/* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1187static int guess_disk_lchs(BlockDriverState *bs,
1188 int *pcylinders, int *pheads, int *psectors)
1189{
eb5a3165 1190 uint8_t buf[BDRV_SECTOR_SIZE];
f3d54fc4
AL
1191 int ret, i, heads, sectors, cylinders;
1192 struct partition *p;
1193 uint32_t nr_sects;
a38131b6 1194 uint64_t nb_sectors;
f3d54fc4
AL
1195
1196 bdrv_get_geometry(bs, &nb_sectors);
1197
1198 ret = bdrv_read(bs, 0, buf, 1);
1199 if (ret < 0)
1200 return -1;
1201 /* test msdos magic */
1202 if (buf[510] != 0x55 || buf[511] != 0xaa)
1203 return -1;
1204 for(i = 0; i < 4; i++) {
1205 p = ((struct partition *)(buf + 0x1be)) + i;
1206 nr_sects = le32_to_cpu(p->nr_sects);
1207 if (nr_sects && p->end_head) {
1208 /* We make the assumption that the partition terminates on
1209 a cylinder boundary */
1210 heads = p->end_head + 1;
1211 sectors = p->end_sector & 63;
1212 if (sectors == 0)
1213 continue;
1214 cylinders = nb_sectors / (heads * sectors);
1215 if (cylinders < 1 || cylinders > 16383)
1216 continue;
1217 *pheads = heads;
1218 *psectors = sectors;
1219 *pcylinders = cylinders;
1220#if 0
1221 printf("guessed geometry: LCHS=%d %d %d\n",
1222 cylinders, heads, sectors);
1223#endif
1224 return 0;
1225 }
1226 }
1227 return -1;
1228}
1229
1230void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
1231{
1232 int translation, lba_detected = 0;
1233 int cylinders, heads, secs;
a38131b6 1234 uint64_t nb_sectors;
f3d54fc4
AL
1235
1236 /* if a geometry hint is available, use it */
1237 bdrv_get_geometry(bs, &nb_sectors);
1238 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
1239 translation = bdrv_get_translation_hint(bs);
1240 if (cylinders != 0) {
1241 *pcyls = cylinders;
1242 *pheads = heads;
1243 *psecs = secs;
1244 } else {
1245 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
1246 if (heads > 16) {
1247 /* if heads > 16, it means that a BIOS LBA
1248 translation was active, so the default
1249 hardware geometry is OK */
1250 lba_detected = 1;
1251 goto default_geometry;
1252 } else {
1253 *pcyls = cylinders;
1254 *pheads = heads;
1255 *psecs = secs;
1256 /* disable any translation to be in sync with
1257 the logical geometry */
1258 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
1259 bdrv_set_translation_hint(bs,
1260 BIOS_ATA_TRANSLATION_NONE);
1261 }
1262 }
1263 } else {
1264 default_geometry:
1265 /* if no geometry, use a standard physical disk geometry */
1266 cylinders = nb_sectors / (16 * 63);
1267
1268 if (cylinders > 16383)
1269 cylinders = 16383;
1270 else if (cylinders < 2)
1271 cylinders = 2;
1272 *pcyls = cylinders;
1273 *pheads = 16;
1274 *psecs = 63;
1275 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
1276 if ((*pcyls * *pheads) <= 131072) {
1277 bdrv_set_translation_hint(bs,
1278 BIOS_ATA_TRANSLATION_LARGE);
1279 } else {
1280 bdrv_set_translation_hint(bs,
1281 BIOS_ATA_TRANSLATION_LBA);
1282 }
1283 }
1284 }
1285 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
1286 }
1287}
1288
5fafdf24 1289void bdrv_set_geometry_hint(BlockDriverState *bs,
b338082b
FB
1290 int cyls, int heads, int secs)
1291{
1292 bs->cyls = cyls;
1293 bs->heads = heads;
1294 bs->secs = secs;
1295}
1296
1297void bdrv_set_type_hint(BlockDriverState *bs, int type)
1298{
1299 bs->type = type;
1300 bs->removable = ((type == BDRV_TYPE_CDROM ||
1301 type == BDRV_TYPE_FLOPPY));
1302}
1303
46d4767d
FB
1304void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
1305{
1306 bs->translation = translation;
1307}
1308
5fafdf24 1309void bdrv_get_geometry_hint(BlockDriverState *bs,
b338082b
FB
1310 int *pcyls, int *pheads, int *psecs)
1311{
1312 *pcyls = bs->cyls;
1313 *pheads = bs->heads;
1314 *psecs = bs->secs;
1315}
1316
1317int bdrv_get_type_hint(BlockDriverState *bs)
1318{
1319 return bs->type;
1320}
1321
46d4767d
FB
1322int bdrv_get_translation_hint(BlockDriverState *bs)
1323{
1324 return bs->translation;
1325}
1326
abd7f68d
MA
1327void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
1328 BlockErrorAction on_write_error)
1329{
1330 bs->on_read_error = on_read_error;
1331 bs->on_write_error = on_write_error;
1332}
1333
1334BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read)
1335{
1336 return is_read ? bs->on_read_error : bs->on_write_error;
1337}
1338
7d0d6950
MA
1339void bdrv_set_removable(BlockDriverState *bs, int removable)
1340{
1341 bs->removable = removable;
1342 if (removable && bs == bs_snapshots) {
1343 bs_snapshots = NULL;
1344 }
1345}
1346
b338082b
FB
1347int bdrv_is_removable(BlockDriverState *bs)
1348{
1349 return bs->removable;
1350}
1351
1352int bdrv_is_read_only(BlockDriverState *bs)
1353{
1354 return bs->read_only;
1355}
1356
985a03b0
TS
1357int bdrv_is_sg(BlockDriverState *bs)
1358{
1359 return bs->sg;
1360}
1361
e900a7b7
CH
1362int bdrv_enable_write_cache(BlockDriverState *bs)
1363{
1364 return bs->enable_write_cache;
1365}
1366
19cb3738 1367/* XXX: no longer used */
5fafdf24 1368void bdrv_set_change_cb(BlockDriverState *bs,
b338082b
FB
1369 void (*change_cb)(void *opaque), void *opaque)
1370{
1371 bs->change_cb = change_cb;
1372 bs->change_opaque = opaque;
1373}
1374
ea2384d3
FB
1375int bdrv_is_encrypted(BlockDriverState *bs)
1376{
1377 if (bs->backing_hd && bs->backing_hd->encrypted)
1378 return 1;
1379 return bs->encrypted;
1380}
1381
c0f4ce77
AL
1382int bdrv_key_required(BlockDriverState *bs)
1383{
1384 BlockDriverState *backing_hd = bs->backing_hd;
1385
1386 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
1387 return 1;
1388 return (bs->encrypted && !bs->valid_key);
1389}
1390
ea2384d3
FB
1391int bdrv_set_key(BlockDriverState *bs, const char *key)
1392{
1393 int ret;
1394 if (bs->backing_hd && bs->backing_hd->encrypted) {
1395 ret = bdrv_set_key(bs->backing_hd, key);
1396 if (ret < 0)
1397 return ret;
1398 if (!bs->encrypted)
1399 return 0;
1400 }
fd04a2ae
SH
1401 if (!bs->encrypted) {
1402 return -EINVAL;
1403 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
1404 return -ENOMEDIUM;
1405 }
c0f4ce77 1406 ret = bs->drv->bdrv_set_key(bs, key);
bb5fc20f
AL
1407 if (ret < 0) {
1408 bs->valid_key = 0;
1409 } else if (!bs->valid_key) {
1410 bs->valid_key = 1;
1411 /* call the change callback now, we skipped it on open */
1412 bs->media_changed = 1;
1413 if (bs->change_cb)
1414 bs->change_cb(bs->change_opaque);
1415 }
c0f4ce77 1416 return ret;
ea2384d3
FB
1417}
1418
1419void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
1420{
19cb3738 1421 if (!bs->drv) {
ea2384d3
FB
1422 buf[0] = '\0';
1423 } else {
1424 pstrcpy(buf, buf_size, bs->drv->format_name);
1425 }
1426}
1427
5fafdf24 1428void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
ea2384d3
FB
1429 void *opaque)
1430{
1431 BlockDriver *drv;
1432
8a22f02a 1433 QLIST_FOREACH(drv, &bdrv_drivers, list) {
ea2384d3
FB
1434 it(opaque, drv->format_name);
1435 }
1436}
1437
b338082b
FB
1438BlockDriverState *bdrv_find(const char *name)
1439{
1440 BlockDriverState *bs;
1441
1b7bdbc1
SH
1442 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1443 if (!strcmp(name, bs->device_name)) {
b338082b 1444 return bs;
1b7bdbc1 1445 }
b338082b
FB
1446 }
1447 return NULL;
1448}
1449
2f399b0a
MA
1450BlockDriverState *bdrv_next(BlockDriverState *bs)
1451{
1452 if (!bs) {
1453 return QTAILQ_FIRST(&bdrv_states);
1454 }
1455 return QTAILQ_NEXT(bs, list);
1456}
1457
51de9760 1458void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
81d0912d
FB
1459{
1460 BlockDriverState *bs;
1461
1b7bdbc1 1462 QTAILQ_FOREACH(bs, &bdrv_states, list) {
51de9760 1463 it(opaque, bs);
81d0912d
FB
1464 }
1465}
1466
ea2384d3
FB
1467const char *bdrv_get_device_name(BlockDriverState *bs)
1468{
1469 return bs->device_name;
1470}
1471
205ef796 1472int bdrv_flush(BlockDriverState *bs)
7a6cba61 1473{
016f5cf6 1474 if (bs->open_flags & BDRV_O_NO_FLUSH) {
205ef796
KW
1475 return 0;
1476 }
1477
1478 if (bs->drv && bs->drv->bdrv_flush) {
1479 return bs->drv->bdrv_flush(bs);
016f5cf6
AG
1480 }
1481
205ef796
KW
1482 /*
1483 * Some block drivers always operate in either writethrough or unsafe mode
1484 * and don't support bdrv_flush therefore. Usually qemu doesn't know how
1485 * the server works (because the behaviour is hardcoded or depends on
1486 * server-side configuration), so we can't ensure that everything is safe
1487 * on disk. Returning an error doesn't work because that would break guests
1488 * even if the server operates in writethrough mode.
1489 *
1490 * Let's hope the user knows what he's doing.
1491 */
1492 return 0;
7a6cba61
PB
1493}
1494
c6ca28d6
AL
1495void bdrv_flush_all(void)
1496{
1497 BlockDriverState *bs;
1498
1b7bdbc1
SH
1499 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1500 if (bs->drv && !bdrv_is_read_only(bs) &&
1501 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) {
c6ca28d6 1502 bdrv_flush(bs);
1b7bdbc1
SH
1503 }
1504 }
c6ca28d6
AL
1505}
1506
f2feebbd
KW
1507int bdrv_has_zero_init(BlockDriverState *bs)
1508{
1509 assert(bs->drv);
1510
336c1c12
KW
1511 if (bs->drv->bdrv_has_zero_init) {
1512 return bs->drv->bdrv_has_zero_init(bs);
f2feebbd
KW
1513 }
1514
1515 return 1;
1516}
1517
bb8bf76f
CH
1518int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
1519{
1520 if (!bs->drv) {
1521 return -ENOMEDIUM;
1522 }
1523 if (!bs->drv->bdrv_discard) {
1524 return 0;
1525 }
1526 return bs->drv->bdrv_discard(bs, sector_num, nb_sectors);
1527}
1528
f58c7b35
TS
1529/*
1530 * Returns true iff the specified sector is present in the disk image. Drivers
1531 * not implementing the functionality are assumed to not support backing files,
1532 * hence all their sectors are reported as allocated.
1533 *
1534 * 'pnum' is set to the number of sectors (including and immediately following
1535 * the specified sector) that are known to be in the same
1536 * allocated/unallocated state.
1537 *
1538 * 'nb_sectors' is the max value 'pnum' should be set to.
1539 */
1540int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1541 int *pnum)
1542{
1543 int64_t n;
1544 if (!bs->drv->bdrv_is_allocated) {
1545 if (sector_num >= bs->total_sectors) {
1546 *pnum = 0;
1547 return 0;
1548 }
1549 n = bs->total_sectors - sector_num;
1550 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1551 return 1;
1552 }
1553 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1554}
1555
2582bfed
LC
1556void bdrv_mon_event(const BlockDriverState *bdrv,
1557 BlockMonEventAction action, int is_read)
1558{
1559 QObject *data;
1560 const char *action_str;
1561
1562 switch (action) {
1563 case BDRV_ACTION_REPORT:
1564 action_str = "report";
1565 break;
1566 case BDRV_ACTION_IGNORE:
1567 action_str = "ignore";
1568 break;
1569 case BDRV_ACTION_STOP:
1570 action_str = "stop";
1571 break;
1572 default:
1573 abort();
1574 }
1575
1576 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1577 bdrv->device_name,
1578 action_str,
1579 is_read ? "read" : "write");
1580 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
1581
1582 qobject_decref(data);
1583}
1584
d15e5465 1585static void bdrv_print_dict(QObject *obj, void *opaque)
b338082b 1586{
d15e5465
LC
1587 QDict *bs_dict;
1588 Monitor *mon = opaque;
1589
1590 bs_dict = qobject_to_qdict(obj);
1591
1592 monitor_printf(mon, "%s: type=%s removable=%d",
1593 qdict_get_str(bs_dict, "device"),
1594 qdict_get_str(bs_dict, "type"),
1595 qdict_get_bool(bs_dict, "removable"));
1596
1597 if (qdict_get_bool(bs_dict, "removable")) {
1598 monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked"));
1599 }
1600
1601 if (qdict_haskey(bs_dict, "inserted")) {
1602 QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted"));
1603
1604 monitor_printf(mon, " file=");
1605 monitor_print_filename(mon, qdict_get_str(qdict, "file"));
1606 if (qdict_haskey(qdict, "backing_file")) {
1607 monitor_printf(mon, " backing_file=");
1608 monitor_print_filename(mon, qdict_get_str(qdict, "backing_file"));
1609 }
1610 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
1611 qdict_get_bool(qdict, "ro"),
1612 qdict_get_str(qdict, "drv"),
1613 qdict_get_bool(qdict, "encrypted"));
1614 } else {
1615 monitor_printf(mon, " [not inserted]");
1616 }
1617
1618 monitor_printf(mon, "\n");
1619}
1620
1621void bdrv_info_print(Monitor *mon, const QObject *data)
1622{
1623 qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon);
1624}
1625
d15e5465
LC
1626void bdrv_info(Monitor *mon, QObject **ret_data)
1627{
1628 QList *bs_list;
b338082b
FB
1629 BlockDriverState *bs;
1630
d15e5465
LC
1631 bs_list = qlist_new();
1632
1b7bdbc1 1633 QTAILQ_FOREACH(bs, &bdrv_states, list) {
d15e5465
LC
1634 QObject *bs_obj;
1635 const char *type = "unknown";
1636
b338082b
FB
1637 switch(bs->type) {
1638 case BDRV_TYPE_HD:
d15e5465 1639 type = "hd";
b338082b
FB
1640 break;
1641 case BDRV_TYPE_CDROM:
d15e5465 1642 type = "cdrom";
b338082b
FB
1643 break;
1644 case BDRV_TYPE_FLOPPY:
d15e5465 1645 type = "floppy";
b338082b
FB
1646 break;
1647 }
d15e5465
LC
1648
1649 bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1650 "'removable': %i, 'locked': %i }",
1651 bs->device_name, type, bs->removable,
1652 bs->locked);
d15e5465 1653
19cb3738 1654 if (bs->drv) {
d15e5465
LC
1655 QObject *obj;
1656 QDict *bs_dict = qobject_to_qdict(bs_obj);
1657
1658 obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1659 "'encrypted': %i }",
1660 bs->filename, bs->read_only,
1661 bs->drv->format_name,
1662 bdrv_is_encrypted(bs));
fef30743 1663 if (bs->backing_file[0] != '\0') {
d15e5465
LC
1664 QDict *qdict = qobject_to_qdict(obj);
1665 qdict_put(qdict, "backing_file",
1666 qstring_from_str(bs->backing_file));
376253ec 1667 }
d15e5465
LC
1668
1669 qdict_put_obj(bs_dict, "inserted", obj);
b338082b 1670 }
d15e5465 1671 qlist_append_obj(bs_list, bs_obj);
b338082b 1672 }
d15e5465
LC
1673
1674 *ret_data = QOBJECT(bs_list);
b338082b 1675}
a36e69dd 1676
218a536a 1677static void bdrv_stats_iter(QObject *data, void *opaque)
a36e69dd 1678{
218a536a
LC
1679 QDict *qdict;
1680 Monitor *mon = opaque;
1681
1682 qdict = qobject_to_qdict(data);
1683 monitor_printf(mon, "%s:", qdict_get_str(qdict, "device"));
1684
1685 qdict = qobject_to_qdict(qdict_get(qdict, "stats"));
1686 monitor_printf(mon, " rd_bytes=%" PRId64
1687 " wr_bytes=%" PRId64
1688 " rd_operations=%" PRId64
1689 " wr_operations=%" PRId64
1690 "\n",
1691 qdict_get_int(qdict, "rd_bytes"),
1692 qdict_get_int(qdict, "wr_bytes"),
1693 qdict_get_int(qdict, "rd_operations"),
1694 qdict_get_int(qdict, "wr_operations"));
1695}
1696
1697void bdrv_stats_print(Monitor *mon, const QObject *data)
1698{
1699 qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon);
1700}
1701
294cc35f
KW
1702static QObject* bdrv_info_stats_bs(BlockDriverState *bs)
1703{
1704 QObject *res;
1705 QDict *dict;
1706
1707 res = qobject_from_jsonf("{ 'stats': {"
1708 "'rd_bytes': %" PRId64 ","
1709 "'wr_bytes': %" PRId64 ","
1710 "'rd_operations': %" PRId64 ","
1711 "'wr_operations': %" PRId64 ","
1712 "'wr_highest_offset': %" PRId64
1713 "} }",
1714 bs->rd_bytes, bs->wr_bytes,
1715 bs->rd_ops, bs->wr_ops,
5ffbbc67
BS
1716 bs->wr_highest_sector *
1717 (uint64_t)BDRV_SECTOR_SIZE);
294cc35f
KW
1718 dict = qobject_to_qdict(res);
1719
1720 if (*bs->device_name) {
1721 qdict_put(dict, "device", qstring_from_str(bs->device_name));
1722 }
1723
1724 if (bs->file) {
1725 QObject *parent = bdrv_info_stats_bs(bs->file);
1726 qdict_put_obj(dict, "parent", parent);
1727 }
1728
1729 return res;
1730}
1731
218a536a
LC
1732void bdrv_info_stats(Monitor *mon, QObject **ret_data)
1733{
1734 QObject *obj;
1735 QList *devices;
a36e69dd
TS
1736 BlockDriverState *bs;
1737
218a536a
LC
1738 devices = qlist_new();
1739
1b7bdbc1 1740 QTAILQ_FOREACH(bs, &bdrv_states, list) {
294cc35f 1741 obj = bdrv_info_stats_bs(bs);
218a536a 1742 qlist_append_obj(devices, obj);
a36e69dd 1743 }
218a536a
LC
1744
1745 *ret_data = QOBJECT(devices);
a36e69dd 1746}
ea2384d3 1747
045df330
AL
1748const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1749{
1750 if (bs->backing_hd && bs->backing_hd->encrypted)
1751 return bs->backing_file;
1752 else if (bs->encrypted)
1753 return bs->filename;
1754 else
1755 return NULL;
1756}
1757
5fafdf24 1758void bdrv_get_backing_filename(BlockDriverState *bs,
83f64091
FB
1759 char *filename, int filename_size)
1760{
b783e409 1761 if (!bs->backing_file) {
83f64091
FB
1762 pstrcpy(filename, filename_size, "");
1763 } else {
1764 pstrcpy(filename, filename_size, bs->backing_file);
1765 }
1766}
1767
5fafdf24 1768int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
faea38e7
FB
1769 const uint8_t *buf, int nb_sectors)
1770{
1771 BlockDriver *drv = bs->drv;
1772 if (!drv)
19cb3738 1773 return -ENOMEDIUM;
faea38e7
FB
1774 if (!drv->bdrv_write_compressed)
1775 return -ENOTSUP;
fbb7b4e0
KW
1776 if (bdrv_check_request(bs, sector_num, nb_sectors))
1777 return -EIO;
a55eb92c 1778
c6d22830 1779 if (bs->dirty_bitmap) {
7cd1e32a 1780 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1781 }
a55eb92c 1782
faea38e7
FB
1783 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1784}
3b46e624 1785
faea38e7
FB
1786int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1787{
1788 BlockDriver *drv = bs->drv;
1789 if (!drv)
19cb3738 1790 return -ENOMEDIUM;
faea38e7
FB
1791 if (!drv->bdrv_get_info)
1792 return -ENOTSUP;
1793 memset(bdi, 0, sizeof(*bdi));
1794 return drv->bdrv_get_info(bs, bdi);
1795}
1796
45566e9c
CH
1797int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1798 int64_t pos, int size)
178e08a5
AL
1799{
1800 BlockDriver *drv = bs->drv;
1801 if (!drv)
1802 return -ENOMEDIUM;
7cdb1f6d
MK
1803 if (drv->bdrv_save_vmstate)
1804 return drv->bdrv_save_vmstate(bs, buf, pos, size);
1805 if (bs->file)
1806 return bdrv_save_vmstate(bs->file, buf, pos, size);
1807 return -ENOTSUP;
178e08a5
AL
1808}
1809
45566e9c
CH
1810int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1811 int64_t pos, int size)
178e08a5
AL
1812{
1813 BlockDriver *drv = bs->drv;
1814 if (!drv)
1815 return -ENOMEDIUM;
7cdb1f6d
MK
1816 if (drv->bdrv_load_vmstate)
1817 return drv->bdrv_load_vmstate(bs, buf, pos, size);
1818 if (bs->file)
1819 return bdrv_load_vmstate(bs->file, buf, pos, size);
1820 return -ENOTSUP;
178e08a5
AL
1821}
1822
8b9b0cc2
KW
1823void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
1824{
1825 BlockDriver *drv = bs->drv;
1826
1827 if (!drv || !drv->bdrv_debug_event) {
1828 return;
1829 }
1830
1831 return drv->bdrv_debug_event(bs, event);
1832
1833}
1834
faea38e7
FB
1835/**************************************************************/
1836/* handling of snapshots */
1837
feeee5ac
MDCF
1838int bdrv_can_snapshot(BlockDriverState *bs)
1839{
1840 BlockDriver *drv = bs->drv;
1841 if (!drv || bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1842 return 0;
1843 }
1844
1845 if (!drv->bdrv_snapshot_create) {
1846 if (bs->file != NULL) {
1847 return bdrv_can_snapshot(bs->file);
1848 }
1849 return 0;
1850 }
1851
1852 return 1;
1853}
1854
199630b6
BS
1855int bdrv_is_snapshot(BlockDriverState *bs)
1856{
1857 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
1858}
1859
f9092b10
MA
1860BlockDriverState *bdrv_snapshots(void)
1861{
1862 BlockDriverState *bs;
1863
3ac906f7 1864 if (bs_snapshots) {
f9092b10 1865 return bs_snapshots;
3ac906f7 1866 }
f9092b10
MA
1867
1868 bs = NULL;
1869 while ((bs = bdrv_next(bs))) {
1870 if (bdrv_can_snapshot(bs)) {
3ac906f7
MA
1871 bs_snapshots = bs;
1872 return bs;
f9092b10
MA
1873 }
1874 }
1875 return NULL;
f9092b10
MA
1876}
1877
5fafdf24 1878int bdrv_snapshot_create(BlockDriverState *bs,
faea38e7
FB
1879 QEMUSnapshotInfo *sn_info)
1880{
1881 BlockDriver *drv = bs->drv;
1882 if (!drv)
19cb3738 1883 return -ENOMEDIUM;
7cdb1f6d
MK
1884 if (drv->bdrv_snapshot_create)
1885 return drv->bdrv_snapshot_create(bs, sn_info);
1886 if (bs->file)
1887 return bdrv_snapshot_create(bs->file, sn_info);
1888 return -ENOTSUP;
faea38e7
FB
1889}
1890
5fafdf24 1891int bdrv_snapshot_goto(BlockDriverState *bs,
faea38e7
FB
1892 const char *snapshot_id)
1893{
1894 BlockDriver *drv = bs->drv;
7cdb1f6d
MK
1895 int ret, open_ret;
1896
faea38e7 1897 if (!drv)
19cb3738 1898 return -ENOMEDIUM;
7cdb1f6d
MK
1899 if (drv->bdrv_snapshot_goto)
1900 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1901
1902 if (bs->file) {
1903 drv->bdrv_close(bs);
1904 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
1905 open_ret = drv->bdrv_open(bs, bs->open_flags);
1906 if (open_ret < 0) {
1907 bdrv_delete(bs->file);
1908 bs->drv = NULL;
1909 return open_ret;
1910 }
1911 return ret;
1912 }
1913
1914 return -ENOTSUP;
faea38e7
FB
1915}
1916
1917int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1918{
1919 BlockDriver *drv = bs->drv;
1920 if (!drv)
19cb3738 1921 return -ENOMEDIUM;
7cdb1f6d
MK
1922 if (drv->bdrv_snapshot_delete)
1923 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1924 if (bs->file)
1925 return bdrv_snapshot_delete(bs->file, snapshot_id);
1926 return -ENOTSUP;
faea38e7
FB
1927}
1928
5fafdf24 1929int bdrv_snapshot_list(BlockDriverState *bs,
faea38e7
FB
1930 QEMUSnapshotInfo **psn_info)
1931{
1932 BlockDriver *drv = bs->drv;
1933 if (!drv)
19cb3738 1934 return -ENOMEDIUM;
7cdb1f6d
MK
1935 if (drv->bdrv_snapshot_list)
1936 return drv->bdrv_snapshot_list(bs, psn_info);
1937 if (bs->file)
1938 return bdrv_snapshot_list(bs->file, psn_info);
1939 return -ENOTSUP;
faea38e7
FB
1940}
1941
51ef6727 1942int bdrv_snapshot_load_tmp(BlockDriverState *bs,
1943 const char *snapshot_name)
1944{
1945 BlockDriver *drv = bs->drv;
1946 if (!drv) {
1947 return -ENOMEDIUM;
1948 }
1949 if (!bs->read_only) {
1950 return -EINVAL;
1951 }
1952 if (drv->bdrv_snapshot_load_tmp) {
1953 return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
1954 }
1955 return -ENOTSUP;
1956}
1957
faea38e7
FB
1958#define NB_SUFFIXES 4
1959
1960char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1961{
1962 static const char suffixes[NB_SUFFIXES] = "KMGT";
1963 int64_t base;
1964 int i;
1965
1966 if (size <= 999) {
1967 snprintf(buf, buf_size, "%" PRId64, size);
1968 } else {
1969 base = 1024;
1970 for(i = 0; i < NB_SUFFIXES; i++) {
1971 if (size < (10 * base)) {
5fafdf24 1972 snprintf(buf, buf_size, "%0.1f%c",
faea38e7
FB
1973 (double)size / base,
1974 suffixes[i]);
1975 break;
1976 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
5fafdf24 1977 snprintf(buf, buf_size, "%" PRId64 "%c",
faea38e7
FB
1978 ((size + (base >> 1)) / base),
1979 suffixes[i]);
1980 break;
1981 }
1982 base = base * 1024;
1983 }
1984 }
1985 return buf;
1986}
1987
1988char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1989{
1990 char buf1[128], date_buf[128], clock_buf[128];
3b9f94e1
FB
1991#ifdef _WIN32
1992 struct tm *ptm;
1993#else
faea38e7 1994 struct tm tm;
3b9f94e1 1995#endif
faea38e7
FB
1996 time_t ti;
1997 int64_t secs;
1998
1999 if (!sn) {
5fafdf24
TS
2000 snprintf(buf, buf_size,
2001 "%-10s%-20s%7s%20s%15s",
faea38e7
FB
2002 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
2003 } else {
2004 ti = sn->date_sec;
3b9f94e1
FB
2005#ifdef _WIN32
2006 ptm = localtime(&ti);
2007 strftime(date_buf, sizeof(date_buf),
2008 "%Y-%m-%d %H:%M:%S", ptm);
2009#else
faea38e7
FB
2010 localtime_r(&ti, &tm);
2011 strftime(date_buf, sizeof(date_buf),
2012 "%Y-%m-%d %H:%M:%S", &tm);
3b9f94e1 2013#endif
faea38e7
FB
2014 secs = sn->vm_clock_nsec / 1000000000;
2015 snprintf(clock_buf, sizeof(clock_buf),
2016 "%02d:%02d:%02d.%03d",
2017 (int)(secs / 3600),
2018 (int)((secs / 60) % 60),
5fafdf24 2019 (int)(secs % 60),
faea38e7
FB
2020 (int)((sn->vm_clock_nsec / 1000000) % 1000));
2021 snprintf(buf, buf_size,
5fafdf24 2022 "%-10s%-20s%7s%20s%15s",
faea38e7
FB
2023 sn->id_str, sn->name,
2024 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
2025 date_buf,
2026 clock_buf);
2027 }
2028 return buf;
2029}
2030
83f64091 2031
ea2384d3 2032/**************************************************************/
83f64091 2033/* async I/Os */
ea2384d3 2034
3b69e4b9 2035BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
f141eafe 2036 QEMUIOVector *qiov, int nb_sectors,
3b69e4b9 2037 BlockDriverCompletionFunc *cb, void *opaque)
83f64091
FB
2038{
2039 BlockDriver *drv = bs->drv;
a36e69dd 2040 BlockDriverAIOCB *ret;
83f64091 2041
bbf0a440
SH
2042 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
2043
19cb3738 2044 if (!drv)
ce1a14dc 2045 return NULL;
71d0770c
AL
2046 if (bdrv_check_request(bs, sector_num, nb_sectors))
2047 return NULL;
3b46e624 2048
f141eafe
AL
2049 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
2050 cb, opaque);
a36e69dd
TS
2051
2052 if (ret) {
2053 /* Update stats even though technically transfer has not happened. */
6ea44308 2054 bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
a36e69dd
TS
2055 bs->rd_ops ++;
2056 }
2057
2058 return ret;
ea2384d3
FB
2059}
2060
4dcafbb1
MT
2061typedef struct BlockCompleteData {
2062 BlockDriverCompletionFunc *cb;
2063 void *opaque;
2064 BlockDriverState *bs;
2065 int64_t sector_num;
2066 int nb_sectors;
2067} BlockCompleteData;
2068
2069static void block_complete_cb(void *opaque, int ret)
2070{
2071 BlockCompleteData *b = opaque;
2072
2073 if (b->bs->dirty_bitmap) {
2074 set_dirty_bitmap(b->bs, b->sector_num, b->nb_sectors, 1);
2075 }
2076 b->cb(b->opaque, ret);
2077 qemu_free(b);
2078}
2079
2080static BlockCompleteData *blk_dirty_cb_alloc(BlockDriverState *bs,
2081 int64_t sector_num,
2082 int nb_sectors,
2083 BlockDriverCompletionFunc *cb,
2084 void *opaque)
2085{
2086 BlockCompleteData *blkdata = qemu_mallocz(sizeof(BlockCompleteData));
2087
2088 blkdata->bs = bs;
2089 blkdata->cb = cb;
2090 blkdata->opaque = opaque;
2091 blkdata->sector_num = sector_num;
2092 blkdata->nb_sectors = nb_sectors;
2093
2094 return blkdata;
2095}
2096
f141eafe
AL
2097BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
2098 QEMUIOVector *qiov, int nb_sectors,
2099 BlockDriverCompletionFunc *cb, void *opaque)
ea2384d3 2100{
83f64091 2101 BlockDriver *drv = bs->drv;
a36e69dd 2102 BlockDriverAIOCB *ret;
4dcafbb1 2103 BlockCompleteData *blk_cb_data;
ea2384d3 2104
bbf0a440
SH
2105 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
2106
19cb3738 2107 if (!drv)
ce1a14dc 2108 return NULL;
83f64091 2109 if (bs->read_only)
ce1a14dc 2110 return NULL;
71d0770c
AL
2111 if (bdrv_check_request(bs, sector_num, nb_sectors))
2112 return NULL;
83f64091 2113
c6d22830 2114 if (bs->dirty_bitmap) {
4dcafbb1
MT
2115 blk_cb_data = blk_dirty_cb_alloc(bs, sector_num, nb_sectors, cb,
2116 opaque);
2117 cb = &block_complete_cb;
2118 opaque = blk_cb_data;
7cd1e32a 2119 }
a55eb92c 2120
f141eafe
AL
2121 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
2122 cb, opaque);
a36e69dd
TS
2123
2124 if (ret) {
294cc35f
KW
2125 /* Update stats even though technically transfer has not happened. */
2126 bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
2127 bs->wr_ops ++;
2128 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2129 bs->wr_highest_sector = sector_num + nb_sectors - 1;
2130 }
a36e69dd
TS
2131 }
2132
2133 return ret;
83f64091
FB
2134}
2135
40b4f539
KW
2136
2137typedef struct MultiwriteCB {
2138 int error;
2139 int num_requests;
2140 int num_callbacks;
2141 struct {
2142 BlockDriverCompletionFunc *cb;
2143 void *opaque;
2144 QEMUIOVector *free_qiov;
2145 void *free_buf;
2146 } callbacks[];
2147} MultiwriteCB;
2148
2149static void multiwrite_user_cb(MultiwriteCB *mcb)
2150{
2151 int i;
2152
2153 for (i = 0; i < mcb->num_callbacks; i++) {
2154 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
1e1ea48d
SH
2155 if (mcb->callbacks[i].free_qiov) {
2156 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
2157 }
40b4f539 2158 qemu_free(mcb->callbacks[i].free_qiov);
f8a83245 2159 qemu_vfree(mcb->callbacks[i].free_buf);
40b4f539
KW
2160 }
2161}
2162
2163static void multiwrite_cb(void *opaque, int ret)
2164{
2165 MultiwriteCB *mcb = opaque;
2166
6d519a5f
SH
2167 trace_multiwrite_cb(mcb, ret);
2168
cb6d3ca0 2169 if (ret < 0 && !mcb->error) {
40b4f539 2170 mcb->error = ret;
40b4f539
KW
2171 }
2172
2173 mcb->num_requests--;
2174 if (mcb->num_requests == 0) {
de189a1b 2175 multiwrite_user_cb(mcb);
40b4f539
KW
2176 qemu_free(mcb);
2177 }
2178}
2179
2180static int multiwrite_req_compare(const void *a, const void *b)
2181{
77be4366
CH
2182 const BlockRequest *req1 = a, *req2 = b;
2183
2184 /*
2185 * Note that we can't simply subtract req2->sector from req1->sector
2186 * here as that could overflow the return value.
2187 */
2188 if (req1->sector > req2->sector) {
2189 return 1;
2190 } else if (req1->sector < req2->sector) {
2191 return -1;
2192 } else {
2193 return 0;
2194 }
40b4f539
KW
2195}
2196
2197/*
2198 * Takes a bunch of requests and tries to merge them. Returns the number of
2199 * requests that remain after merging.
2200 */
2201static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
2202 int num_reqs, MultiwriteCB *mcb)
2203{
2204 int i, outidx;
2205
2206 // Sort requests by start sector
2207 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
2208
2209 // Check if adjacent requests touch the same clusters. If so, combine them,
2210 // filling up gaps with zero sectors.
2211 outidx = 0;
2212 for (i = 1; i < num_reqs; i++) {
2213 int merge = 0;
2214 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
2215
2216 // This handles the cases that are valid for all block drivers, namely
2217 // exactly sequential writes and overlapping writes.
2218 if (reqs[i].sector <= oldreq_last) {
2219 merge = 1;
2220 }
2221
2222 // The block driver may decide that it makes sense to combine requests
2223 // even if there is a gap of some sectors between them. In this case,
2224 // the gap is filled with zeros (therefore only applicable for yet
2225 // unused space in format like qcow2).
2226 if (!merge && bs->drv->bdrv_merge_requests) {
2227 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
2228 }
2229
e2a305fb
CH
2230 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
2231 merge = 0;
2232 }
2233
40b4f539
KW
2234 if (merge) {
2235 size_t size;
2236 QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
2237 qemu_iovec_init(qiov,
2238 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
2239
2240 // Add the first request to the merged one. If the requests are
2241 // overlapping, drop the last sectors of the first request.
2242 size = (reqs[i].sector - reqs[outidx].sector) << 9;
2243 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
2244
2245 // We might need to add some zeros between the two requests
2246 if (reqs[i].sector > oldreq_last) {
2247 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
2248 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
2249 memset(buf, 0, zero_bytes);
2250 qemu_iovec_add(qiov, buf, zero_bytes);
2251 mcb->callbacks[i].free_buf = buf;
2252 }
2253
2254 // Add the second request
2255 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
2256
cbf1dff2 2257 reqs[outidx].nb_sectors = qiov->size >> 9;
40b4f539
KW
2258 reqs[outidx].qiov = qiov;
2259
2260 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
2261 } else {
2262 outidx++;
2263 reqs[outidx].sector = reqs[i].sector;
2264 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
2265 reqs[outidx].qiov = reqs[i].qiov;
2266 }
2267 }
2268
2269 return outidx + 1;
2270}
2271
2272/*
2273 * Submit multiple AIO write requests at once.
2274 *
2275 * On success, the function returns 0 and all requests in the reqs array have
2276 * been submitted. In error case this function returns -1, and any of the
2277 * requests may or may not be submitted yet. In particular, this means that the
2278 * callback will be called for some of the requests, for others it won't. The
2279 * caller must check the error field of the BlockRequest to wait for the right
2280 * callbacks (if error != 0, no callback will be called).
2281 *
2282 * The implementation may modify the contents of the reqs array, e.g. to merge
2283 * requests. However, the fields opaque and error are left unmodified as they
2284 * are used to signal failure for a single request to the caller.
2285 */
2286int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
2287{
2288 BlockDriverAIOCB *acb;
2289 MultiwriteCB *mcb;
2290 int i;
2291
2292 if (num_reqs == 0) {
2293 return 0;
2294 }
2295
2296 // Create MultiwriteCB structure
2297 mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
2298 mcb->num_requests = 0;
2299 mcb->num_callbacks = num_reqs;
2300
2301 for (i = 0; i < num_reqs; i++) {
2302 mcb->callbacks[i].cb = reqs[i].cb;
2303 mcb->callbacks[i].opaque = reqs[i].opaque;
2304 }
2305
2306 // Check for mergable requests
2307 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
2308
6d519a5f
SH
2309 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
2310
453f9a16
KW
2311 /*
2312 * Run the aio requests. As soon as one request can't be submitted
2313 * successfully, fail all requests that are not yet submitted (we must
2314 * return failure for all requests anyway)
2315 *
2316 * num_requests cannot be set to the right value immediately: If
2317 * bdrv_aio_writev fails for some request, num_requests would be too high
2318 * and therefore multiwrite_cb() would never recognize the multiwrite
2319 * request as completed. We also cannot use the loop variable i to set it
2320 * when the first request fails because the callback may already have been
2321 * called for previously submitted requests. Thus, num_requests must be
2322 * incremented for each request that is submitted.
2323 *
2324 * The problem that callbacks may be called early also means that we need
2325 * to take care that num_requests doesn't become 0 before all requests are
2326 * submitted - multiwrite_cb() would consider the multiwrite request
2327 * completed. A dummy request that is "completed" by a manual call to
2328 * multiwrite_cb() takes care of this.
2329 */
2330 mcb->num_requests = 1;
2331
6d519a5f 2332 // Run the aio requests
40b4f539 2333 for (i = 0; i < num_reqs; i++) {
453f9a16 2334 mcb->num_requests++;
40b4f539
KW
2335 acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
2336 reqs[i].nb_sectors, multiwrite_cb, mcb);
2337
2338 if (acb == NULL) {
2339 // We can only fail the whole thing if no request has been
2340 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2341 // complete and report the error in the callback.
453f9a16 2342 if (i == 0) {
6d519a5f 2343 trace_bdrv_aio_multiwrite_earlyfail(mcb);
40b4f539
KW
2344 goto fail;
2345 } else {
6d519a5f 2346 trace_bdrv_aio_multiwrite_latefail(mcb, i);
7eb58a6c 2347 multiwrite_cb(mcb, -EIO);
40b4f539
KW
2348 break;
2349 }
40b4f539
KW
2350 }
2351 }
2352
453f9a16
KW
2353 /* Complete the dummy request */
2354 multiwrite_cb(mcb, 0);
2355
40b4f539
KW
2356 return 0;
2357
2358fail:
453f9a16
KW
2359 for (i = 0; i < mcb->num_callbacks; i++) {
2360 reqs[i].error = -EIO;
2361 }
af474591 2362 qemu_free(mcb);
40b4f539
KW
2363 return -1;
2364}
2365
b2e12bc6
CH
2366BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
2367 BlockDriverCompletionFunc *cb, void *opaque)
2368{
2369 BlockDriver *drv = bs->drv;
2370
016f5cf6
AG
2371 if (bs->open_flags & BDRV_O_NO_FLUSH) {
2372 return bdrv_aio_noop_em(bs, cb, opaque);
2373 }
2374
b2e12bc6
CH
2375 if (!drv)
2376 return NULL;
b2e12bc6
CH
2377 return drv->bdrv_aio_flush(bs, cb, opaque);
2378}
2379
83f64091 2380void bdrv_aio_cancel(BlockDriverAIOCB *acb)
83f64091 2381{
6bbff9a0 2382 acb->pool->cancel(acb);
83f64091
FB
2383}
2384
ce1a14dc 2385
83f64091
FB
2386/**************************************************************/
2387/* async block device emulation */
2388
c16b5a2c
CH
2389typedef struct BlockDriverAIOCBSync {
2390 BlockDriverAIOCB common;
2391 QEMUBH *bh;
2392 int ret;
2393 /* vector translation state */
2394 QEMUIOVector *qiov;
2395 uint8_t *bounce;
2396 int is_write;
2397} BlockDriverAIOCBSync;
2398
2399static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
2400{
b666d239
KW
2401 BlockDriverAIOCBSync *acb =
2402 container_of(blockacb, BlockDriverAIOCBSync, common);
6a7ad299 2403 qemu_bh_delete(acb->bh);
36afc451 2404 acb->bh = NULL;
c16b5a2c
CH
2405 qemu_aio_release(acb);
2406}
2407
2408static AIOPool bdrv_em_aio_pool = {
2409 .aiocb_size = sizeof(BlockDriverAIOCBSync),
2410 .cancel = bdrv_aio_cancel_em,
2411};
2412
ce1a14dc 2413static void bdrv_aio_bh_cb(void *opaque)
83f64091 2414{
ce1a14dc 2415 BlockDriverAIOCBSync *acb = opaque;
f141eafe 2416
f141eafe
AL
2417 if (!acb->is_write)
2418 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
ceb42de8 2419 qemu_vfree(acb->bounce);
ce1a14dc 2420 acb->common.cb(acb->common.opaque, acb->ret);
6a7ad299 2421 qemu_bh_delete(acb->bh);
36afc451 2422 acb->bh = NULL;
ce1a14dc 2423 qemu_aio_release(acb);
83f64091 2424}
beac80cd 2425
f141eafe
AL
2426static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
2427 int64_t sector_num,
2428 QEMUIOVector *qiov,
2429 int nb_sectors,
2430 BlockDriverCompletionFunc *cb,
2431 void *opaque,
2432 int is_write)
2433
83f64091 2434{
ce1a14dc 2435 BlockDriverAIOCBSync *acb;
ce1a14dc 2436
c16b5a2c 2437 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
f141eafe
AL
2438 acb->is_write = is_write;
2439 acb->qiov = qiov;
e268ca52 2440 acb->bounce = qemu_blockalign(bs, qiov->size);
f141eafe 2441
ce1a14dc
PB
2442 if (!acb->bh)
2443 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
f141eafe
AL
2444
2445 if (is_write) {
2446 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
2447 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
2448 } else {
2449 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
2450 }
2451
ce1a14dc 2452 qemu_bh_schedule(acb->bh);
f141eafe 2453
ce1a14dc 2454 return &acb->common;
beac80cd
FB
2455}
2456
f141eafe
AL
2457static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
2458 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 2459 BlockDriverCompletionFunc *cb, void *opaque)
beac80cd 2460{
f141eafe
AL
2461 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
2462}
83f64091 2463
f141eafe
AL
2464static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
2465 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
2466 BlockDriverCompletionFunc *cb, void *opaque)
2467{
2468 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
beac80cd 2469}
beac80cd 2470
b2e12bc6
CH
2471static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
2472 BlockDriverCompletionFunc *cb, void *opaque)
2473{
2474 BlockDriverAIOCBSync *acb;
2475
2476 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2477 acb->is_write = 1; /* don't bounce in the completion hadler */
2478 acb->qiov = NULL;
2479 acb->bounce = NULL;
2480 acb->ret = 0;
2481
2482 if (!acb->bh)
2483 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2484
2485 bdrv_flush(bs);
2486 qemu_bh_schedule(acb->bh);
2487 return &acb->common;
2488}
2489
016f5cf6
AG
2490static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
2491 BlockDriverCompletionFunc *cb, void *opaque)
2492{
2493 BlockDriverAIOCBSync *acb;
2494
2495 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2496 acb->is_write = 1; /* don't bounce in the completion handler */
2497 acb->qiov = NULL;
2498 acb->bounce = NULL;
2499 acb->ret = 0;
2500
2501 if (!acb->bh) {
2502 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2503 }
2504
2505 qemu_bh_schedule(acb->bh);
2506 return &acb->common;
2507}
2508
83f64091
FB
2509/**************************************************************/
2510/* sync block device emulation */
ea2384d3 2511
83f64091
FB
2512static void bdrv_rw_em_cb(void *opaque, int ret)
2513{
2514 *(int *)opaque = ret;
ea2384d3
FB
2515}
2516
83f64091
FB
2517#define NOT_DONE 0x7fffffff
2518
5fafdf24 2519static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
83f64091 2520 uint8_t *buf, int nb_sectors)
7a6cba61 2521{
ce1a14dc
PB
2522 int async_ret;
2523 BlockDriverAIOCB *acb;
f141eafe
AL
2524 struct iovec iov;
2525 QEMUIOVector qiov;
83f64091 2526
65d6b3d8
KW
2527 async_context_push();
2528
83f64091 2529 async_ret = NOT_DONE;
3f4cb3d3 2530 iov.iov_base = (void *)buf;
eb5a3165 2531 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
f141eafe
AL
2532 qemu_iovec_init_external(&qiov, &iov, 1);
2533 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
2534 bdrv_rw_em_cb, &async_ret);
65d6b3d8
KW
2535 if (acb == NULL) {
2536 async_ret = -1;
2537 goto fail;
2538 }
baf35cb9 2539
83f64091
FB
2540 while (async_ret == NOT_DONE) {
2541 qemu_aio_wait();
2542 }
baf35cb9 2543
65d6b3d8
KW
2544
2545fail:
2546 async_context_pop();
83f64091 2547 return async_ret;
7a6cba61
PB
2548}
2549
83f64091
FB
2550static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
2551 const uint8_t *buf, int nb_sectors)
2552{
ce1a14dc
PB
2553 int async_ret;
2554 BlockDriverAIOCB *acb;
f141eafe
AL
2555 struct iovec iov;
2556 QEMUIOVector qiov;
83f64091 2557
65d6b3d8
KW
2558 async_context_push();
2559
83f64091 2560 async_ret = NOT_DONE;
f141eafe 2561 iov.iov_base = (void *)buf;
eb5a3165 2562 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
f141eafe
AL
2563 qemu_iovec_init_external(&qiov, &iov, 1);
2564 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
2565 bdrv_rw_em_cb, &async_ret);
65d6b3d8
KW
2566 if (acb == NULL) {
2567 async_ret = -1;
2568 goto fail;
2569 }
83f64091
FB
2570 while (async_ret == NOT_DONE) {
2571 qemu_aio_wait();
2572 }
65d6b3d8
KW
2573
2574fail:
2575 async_context_pop();
83f64091
FB
2576 return async_ret;
2577}
ea2384d3
FB
2578
2579void bdrv_init(void)
2580{
5efa9d5a 2581 module_call_init(MODULE_INIT_BLOCK);
ea2384d3 2582}
ce1a14dc 2583
eb852011
MA
2584void bdrv_init_with_whitelist(void)
2585{
2586 use_bdrv_whitelist = 1;
2587 bdrv_init();
2588}
2589
c16b5a2c
CH
2590void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
2591 BlockDriverCompletionFunc *cb, void *opaque)
ce1a14dc 2592{
ce1a14dc
PB
2593 BlockDriverAIOCB *acb;
2594
6bbff9a0
AL
2595 if (pool->free_aiocb) {
2596 acb = pool->free_aiocb;
2597 pool->free_aiocb = acb->next;
ce1a14dc 2598 } else {
6bbff9a0
AL
2599 acb = qemu_mallocz(pool->aiocb_size);
2600 acb->pool = pool;
ce1a14dc
PB
2601 }
2602 acb->bs = bs;
2603 acb->cb = cb;
2604 acb->opaque = opaque;
2605 return acb;
2606}
2607
2608void qemu_aio_release(void *p)
2609{
6bbff9a0
AL
2610 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
2611 AIOPool *pool = acb->pool;
2612 acb->next = pool->free_aiocb;
2613 pool->free_aiocb = acb;
ce1a14dc 2614}
19cb3738
FB
2615
2616/**************************************************************/
2617/* removable device support */
2618
2619/**
2620 * Return TRUE if the media is present
2621 */
2622int bdrv_is_inserted(BlockDriverState *bs)
2623{
2624 BlockDriver *drv = bs->drv;
2625 int ret;
2626 if (!drv)
2627 return 0;
2628 if (!drv->bdrv_is_inserted)
4be9762a 2629 return !bs->tray_open;
19cb3738
FB
2630 ret = drv->bdrv_is_inserted(bs);
2631 return ret;
2632}
2633
2634/**
2635 * Return TRUE if the media changed since the last call to this
5fafdf24 2636 * function. It is currently only used for floppy disks
19cb3738
FB
2637 */
2638int bdrv_media_changed(BlockDriverState *bs)
2639{
2640 BlockDriver *drv = bs->drv;
2641 int ret;
2642
2643 if (!drv || !drv->bdrv_media_changed)
2644 ret = -ENOTSUP;
2645 else
2646 ret = drv->bdrv_media_changed(bs);
2647 if (ret == -ENOTSUP)
2648 ret = bs->media_changed;
2649 bs->media_changed = 0;
2650 return ret;
2651}
2652
2653/**
2654 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2655 */
aea2a33c 2656int bdrv_eject(BlockDriverState *bs, int eject_flag)
19cb3738
FB
2657{
2658 BlockDriver *drv = bs->drv;
2659 int ret;
2660
aea2a33c
MM
2661 if (bs->locked) {
2662 return -EBUSY;
2663 }
2664
19cb3738
FB
2665 if (!drv || !drv->bdrv_eject) {
2666 ret = -ENOTSUP;
2667 } else {
2668 ret = drv->bdrv_eject(bs, eject_flag);
2669 }
2670 if (ret == -ENOTSUP) {
aea2a33c 2671 ret = 0;
19cb3738 2672 }
4be9762a
MA
2673 if (ret >= 0) {
2674 bs->tray_open = eject_flag;
2675 }
aea2a33c
MM
2676
2677 return ret;
19cb3738
FB
2678}
2679
2680int bdrv_is_locked(BlockDriverState *bs)
2681{
2682 return bs->locked;
2683}
2684
2685/**
2686 * Lock or unlock the media (if it is locked, the user won't be able
2687 * to eject it manually).
2688 */
2689void bdrv_set_locked(BlockDriverState *bs, int locked)
2690{
2691 BlockDriver *drv = bs->drv;
2692
2693 bs->locked = locked;
2694 if (drv && drv->bdrv_set_locked) {
2695 drv->bdrv_set_locked(bs, locked);
2696 }
2697}
985a03b0
TS
2698
2699/* needed for generic scsi interface */
2700
2701int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
2702{
2703 BlockDriver *drv = bs->drv;
2704
2705 if (drv && drv->bdrv_ioctl)
2706 return drv->bdrv_ioctl(bs, req, buf);
2707 return -ENOTSUP;
2708}
7d780669 2709
221f715d
AL
2710BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
2711 unsigned long int req, void *buf,
2712 BlockDriverCompletionFunc *cb, void *opaque)
7d780669 2713{
221f715d 2714 BlockDriver *drv = bs->drv;
7d780669 2715
221f715d
AL
2716 if (drv && drv->bdrv_aio_ioctl)
2717 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
2718 return NULL;
7d780669 2719}
e268ca52 2720
7cd1e32a 2721
2722
e268ca52
AL
2723void *qemu_blockalign(BlockDriverState *bs, size_t size)
2724{
2725 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
2726}
7cd1e32a 2727
2728void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
2729{
2730 int64_t bitmap_size;
a55eb92c 2731
aaa0eb75 2732 bs->dirty_count = 0;
a55eb92c 2733 if (enable) {
c6d22830
JK
2734 if (!bs->dirty_bitmap) {
2735 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
2736 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
2737 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
a55eb92c 2738
7cd1e32a 2739 bs->dirty_bitmap = qemu_mallocz(bitmap_size);
a55eb92c 2740 }
7cd1e32a 2741 } else {
c6d22830 2742 if (bs->dirty_bitmap) {
7cd1e32a 2743 qemu_free(bs->dirty_bitmap);
c6d22830 2744 bs->dirty_bitmap = NULL;
a55eb92c 2745 }
7cd1e32a 2746 }
2747}
2748
2749int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
2750{
6ea44308 2751 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
a55eb92c 2752
c6d22830
JK
2753 if (bs->dirty_bitmap &&
2754 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
6d59fec1
MT
2755 return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
2756 (1UL << (chunk % (sizeof(unsigned long) * 8))));
7cd1e32a 2757 } else {
2758 return 0;
2759 }
2760}
2761
a55eb92c
JK
2762void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
2763 int nr_sectors)
7cd1e32a 2764{
2765 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
2766}
aaa0eb75
LS
2767
2768int64_t bdrv_get_dirty_count(BlockDriverState *bs)
2769{
2770 return bs->dirty_count;
2771}
f88e1a42
JS
2772
2773int bdrv_img_create(const char *filename, const char *fmt,
2774 const char *base_filename, const char *base_fmt,
2775 char *options, uint64_t img_size, int flags)
2776{
2777 QEMUOptionParameter *param = NULL, *create_options = NULL;
792da93a 2778 QEMUOptionParameter *backing_fmt, *backing_file;
f88e1a42
JS
2779 BlockDriverState *bs = NULL;
2780 BlockDriver *drv, *proto_drv;
96df67d1 2781 BlockDriver *backing_drv = NULL;
f88e1a42
JS
2782 int ret = 0;
2783
2784 /* Find driver and parse its options */
2785 drv = bdrv_find_format(fmt);
2786 if (!drv) {
2787 error_report("Unknown file format '%s'", fmt);
4f70f249 2788 ret = -EINVAL;
f88e1a42
JS
2789 goto out;
2790 }
2791
2792 proto_drv = bdrv_find_protocol(filename);
2793 if (!proto_drv) {
2794 error_report("Unknown protocol '%s'", filename);
4f70f249 2795 ret = -EINVAL;
f88e1a42
JS
2796 goto out;
2797 }
2798
2799 create_options = append_option_parameters(create_options,
2800 drv->create_options);
2801 create_options = append_option_parameters(create_options,
2802 proto_drv->create_options);
2803
2804 /* Create parameter list with default values */
2805 param = parse_option_parameters("", create_options, param);
2806
2807 set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
2808
2809 /* Parse -o options */
2810 if (options) {
2811 param = parse_option_parameters(options, create_options, param);
2812 if (param == NULL) {
2813 error_report("Invalid options for file format '%s'.", fmt);
4f70f249 2814 ret = -EINVAL;
f88e1a42
JS
2815 goto out;
2816 }
2817 }
2818
2819 if (base_filename) {
2820 if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
2821 base_filename)) {
2822 error_report("Backing file not supported for file format '%s'",
2823 fmt);
4f70f249 2824 ret = -EINVAL;
f88e1a42
JS
2825 goto out;
2826 }
2827 }
2828
2829 if (base_fmt) {
2830 if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
2831 error_report("Backing file format not supported for file "
2832 "format '%s'", fmt);
4f70f249 2833 ret = -EINVAL;
f88e1a42
JS
2834 goto out;
2835 }
2836 }
2837
792da93a
JS
2838 backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
2839 if (backing_file && backing_file->value.s) {
2840 if (!strcmp(filename, backing_file->value.s)) {
2841 error_report("Error: Trying to create an image with the "
2842 "same filename as the backing file");
4f70f249 2843 ret = -EINVAL;
792da93a
JS
2844 goto out;
2845 }
2846 }
2847
f88e1a42
JS
2848 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
2849 if (backing_fmt && backing_fmt->value.s) {
96df67d1
SH
2850 backing_drv = bdrv_find_format(backing_fmt->value.s);
2851 if (!backing_drv) {
f88e1a42
JS
2852 error_report("Unknown backing file format '%s'",
2853 backing_fmt->value.s);
4f70f249 2854 ret = -EINVAL;
f88e1a42
JS
2855 goto out;
2856 }
2857 }
2858
2859 // The size for the image must always be specified, with one exception:
2860 // If we are using a backing file, we can obtain the size from there
2861 if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) {
f88e1a42
JS
2862 if (backing_file && backing_file->value.s) {
2863 uint64_t size;
f88e1a42
JS
2864 char buf[32];
2865
f88e1a42
JS
2866 bs = bdrv_new("");
2867
96df67d1 2868 ret = bdrv_open(bs, backing_file->value.s, flags, backing_drv);
f88e1a42 2869 if (ret < 0) {
96df67d1 2870 error_report("Could not open '%s'", backing_file->value.s);
f88e1a42
JS
2871 goto out;
2872 }
2873 bdrv_get_geometry(bs, &size);
2874 size *= 512;
2875
2876 snprintf(buf, sizeof(buf), "%" PRId64, size);
2877 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
2878 } else {
2879 error_report("Image creation needs a size parameter");
4f70f249 2880 ret = -EINVAL;
f88e1a42
JS
2881 goto out;
2882 }
2883 }
2884
2885 printf("Formatting '%s', fmt=%s ", filename, fmt);
2886 print_option_parameters(param);
2887 puts("");
2888
2889 ret = bdrv_create(drv, filename, param);
2890
2891 if (ret < 0) {
2892 if (ret == -ENOTSUP) {
2893 error_report("Formatting or formatting option not supported for "
2894 "file format '%s'", fmt);
2895 } else if (ret == -EFBIG) {
2896 error_report("The image size is too large for file format '%s'",
2897 fmt);
2898 } else {
2899 error_report("%s: error while creating %s: %s", filename, fmt,
2900 strerror(-ret));
2901 }
2902 }
2903
2904out:
2905 free_option_parameters(create_options);
2906 free_option_parameters(param);
2907
2908 if (bs) {
2909 bdrv_delete(bs);
2910 }
4f70f249
JS
2911
2912 return ret;
f88e1a42 2913}