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