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