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