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