]> git.proxmox.com Git - qemu.git/blame - block.c
monitor: Report encrypted disks in snapshot mode (Jan Kiszka)
[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
BS
24#include "config-host.h"
25#ifdef _BSD
26/* include native header before sys-queue.h */
27#include <sys/queue.h>
28#endif
29
faf07963 30#include "qemu-common.h"
87ecb68b 31#include "console.h"
ea2384d3 32#include "block_int.h"
fc01f7e7 33
7674e7bf
FB
34#ifdef _BSD
35#include <sys/types.h>
36#include <sys/stat.h>
37#include <sys/ioctl.h>
7674e7bf
FB
38#include <sys/disk.h>
39#endif
40
83f64091
FB
41#define SECTOR_BITS 9
42#define SECTOR_SIZE (1 << SECTOR_BITS)
43
90765429
FB
44typedef struct BlockDriverAIOCBSync {
45 BlockDriverAIOCB common;
46 QEMUBH *bh;
47 int ret;
48} BlockDriverAIOCBSync;
49
ce1a14dc
PB
50static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs,
51 int64_t sector_num, uint8_t *buf, int nb_sectors,
52 BlockDriverCompletionFunc *cb, void *opaque);
53static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs,
54 int64_t sector_num, const uint8_t *buf, int nb_sectors,
55 BlockDriverCompletionFunc *cb, void *opaque);
83f64091 56static void bdrv_aio_cancel_em(BlockDriverAIOCB *acb);
5fafdf24 57static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
83f64091
FB
58 uint8_t *buf, int nb_sectors);
59static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
60 const uint8_t *buf, int nb_sectors);
ec530c81 61
7ee930d0
BS
62BlockDriverState *bdrv_first;
63
ea2384d3
FB
64static BlockDriver *first_drv;
65
83f64091 66int path_is_absolute(const char *path)
3b0d4f61 67{
83f64091 68 const char *p;
21664424
FB
69#ifdef _WIN32
70 /* specific case for names like: "\\.\d:" */
71 if (*path == '/' || *path == '\\')
72 return 1;
73#endif
83f64091
FB
74 p = strchr(path, ':');
75 if (p)
76 p++;
77 else
78 p = path;
3b9f94e1
FB
79#ifdef _WIN32
80 return (*p == '/' || *p == '\\');
81#else
82 return (*p == '/');
83#endif
3b0d4f61
FB
84}
85
83f64091
FB
86/* if filename is absolute, just copy it to dest. Otherwise, build a
87 path to it by considering it is relative to base_path. URL are
88 supported. */
89void path_combine(char *dest, int dest_size,
90 const char *base_path,
91 const char *filename)
3b0d4f61 92{
83f64091
FB
93 const char *p, *p1;
94 int len;
95
96 if (dest_size <= 0)
97 return;
98 if (path_is_absolute(filename)) {
99 pstrcpy(dest, dest_size, filename);
100 } else {
101 p = strchr(base_path, ':');
102 if (p)
103 p++;
104 else
105 p = base_path;
3b9f94e1
FB
106 p1 = strrchr(base_path, '/');
107#ifdef _WIN32
108 {
109 const char *p2;
110 p2 = strrchr(base_path, '\\');
111 if (!p1 || p2 > p1)
112 p1 = p2;
113 }
114#endif
83f64091
FB
115 if (p1)
116 p1++;
117 else
118 p1 = base_path;
119 if (p1 > p)
120 p = p1;
121 len = p - base_path;
122 if (len > dest_size - 1)
123 len = dest_size - 1;
124 memcpy(dest, base_path, len);
125 dest[len] = '\0';
126 pstrcat(dest, dest_size, filename);
3b0d4f61 127 }
3b0d4f61
FB
128}
129
3b0d4f61 130
9596ebb7 131static void bdrv_register(BlockDriver *bdrv)
ea2384d3 132{
ce1a14dc 133 if (!bdrv->bdrv_aio_read) {
83f64091 134 /* add AIO emulation layer */
83f64091
FB
135 bdrv->bdrv_aio_read = bdrv_aio_read_em;
136 bdrv->bdrv_aio_write = bdrv_aio_write_em;
137 bdrv->bdrv_aio_cancel = bdrv_aio_cancel_em;
90765429 138 bdrv->aiocb_size = sizeof(BlockDriverAIOCBSync);
83f64091
FB
139 } else if (!bdrv->bdrv_read && !bdrv->bdrv_pread) {
140 /* add synchronous IO emulation layer */
141 bdrv->bdrv_read = bdrv_read_em;
142 bdrv->bdrv_write = bdrv_write_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
5fafdf24 175int bdrv_create(BlockDriver *drv,
ea2384d3
FB
176 const char *filename, int64_t size_in_sectors,
177 const char *backing_file, int flags)
178{
179 if (!drv->bdrv_create)
180 return -ENOTSUP;
181 return drv->bdrv_create(filename, size_in_sectors, backing_file, flags);
182}
183
d5249393 184#ifdef _WIN32
95389c86 185void get_tmp_filename(char *filename, int size)
d5249393 186{
3b9f94e1 187 char temp_dir[MAX_PATH];
3b46e624 188
3b9f94e1
FB
189 GetTempPath(MAX_PATH, temp_dir);
190 GetTempFileName(temp_dir, "qem", 0, filename);
d5249393
FB
191}
192#else
95389c86 193void get_tmp_filename(char *filename, int size)
fc01f7e7 194{
67b915a5 195 int fd;
7ccfb2eb 196 const char *tmpdir;
d5249393 197 /* XXX: race condition possible */
0badc1ee
AJ
198 tmpdir = getenv("TMPDIR");
199 if (!tmpdir)
200 tmpdir = "/tmp";
201 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
ea2384d3
FB
202 fd = mkstemp(filename);
203 close(fd);
204}
d5249393 205#endif
fc01f7e7 206
19cb3738 207#ifdef _WIN32
f45512fe
FB
208static int is_windows_drive_prefix(const char *filename)
209{
210 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
211 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
212 filename[1] == ':');
213}
3b46e624 214
19cb3738
FB
215static int is_windows_drive(const char *filename)
216{
5fafdf24 217 if (is_windows_drive_prefix(filename) &&
f45512fe 218 filename[2] == '\0')
19cb3738
FB
219 return 1;
220 if (strstart(filename, "\\\\.\\", NULL) ||
221 strstart(filename, "//./", NULL))
222 return 1;
223 return 0;
224}
225#endif
226
83f64091
FB
227static BlockDriver *find_protocol(const char *filename)
228{
229 BlockDriver *drv1;
230 char protocol[128];
231 int len;
232 const char *p;
19cb3738
FB
233
234#ifdef _WIN32
f45512fe
FB
235 if (is_windows_drive(filename) ||
236 is_windows_drive_prefix(filename))
19cb3738
FB
237 return &bdrv_raw;
238#endif
83f64091
FB
239 p = strchr(filename, ':');
240 if (!p)
241 return &bdrv_raw;
242 len = p - filename;
243 if (len > sizeof(protocol) - 1)
244 len = sizeof(protocol) - 1;
83f64091
FB
245 memcpy(protocol, filename, len);
246 protocol[len] = '\0';
247 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
5fafdf24 248 if (drv1->protocol_name &&
83f64091
FB
249 !strcmp(drv1->protocol_name, protocol))
250 return drv1;
251 }
252 return NULL;
253}
254
7674e7bf
FB
255/* XXX: force raw format if block or character device ? It would
256 simplify the BSD case */
ea2384d3
FB
257static BlockDriver *find_image_format(const char *filename)
258{
83f64091 259 int ret, score, score_max;
ea2384d3 260 BlockDriver *drv1, *drv;
83f64091
FB
261 uint8_t buf[2048];
262 BlockDriverState *bs;
3b46e624 263
19cb3738
FB
264 /* detect host devices. By convention, /dev/cdrom[N] is always
265 recognized as a host CDROM */
266 if (strstart(filename, "/dev/cdrom", NULL))
267 return &bdrv_host_device;
268#ifdef _WIN32
269 if (is_windows_drive(filename))
270 return &bdrv_host_device;
271#else
272 {
273 struct stat st;
5fafdf24 274 if (stat(filename, &st) >= 0 &&
19cb3738
FB
275 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
276 return &bdrv_host_device;
277 }
278 }
279#endif
3b46e624 280
83f64091 281 drv = find_protocol(filename);
19cb3738 282 /* no need to test disk image formats for vvfat */
83f64091
FB
283 if (drv == &bdrv_vvfat)
284 return drv;
19cb3738 285
83f64091
FB
286 ret = bdrv_file_open(&bs, filename, BDRV_O_RDONLY);
287 if (ret < 0)
288 return NULL;
289 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
290 bdrv_delete(bs);
291 if (ret < 0) {
292 return NULL;
293 }
294
ea2384d3
FB
295 score_max = 0;
296 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
83f64091
FB
297 if (drv1->bdrv_probe) {
298 score = drv1->bdrv_probe(buf, ret, filename);
299 if (score > score_max) {
300 score_max = score;
301 drv = drv1;
302 }
0849bf08 303 }
fc01f7e7 304 }
ea2384d3
FB
305 return drv;
306}
307
83f64091 308int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
ea2384d3 309{
83f64091
FB
310 BlockDriverState *bs;
311 int ret;
312
313 bs = bdrv_new("");
83f64091
FB
314 ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL);
315 if (ret < 0) {
316 bdrv_delete(bs);
317 return ret;
3b0d4f61 318 }
71d0770c 319 bs->growable = 1;
83f64091
FB
320 *pbs = bs;
321 return 0;
322}
323
324int bdrv_open(BlockDriverState *bs, const char *filename, int flags)
325{
326 return bdrv_open2(bs, filename, flags, NULL);
ea2384d3
FB
327}
328
83f64091 329int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
ea2384d3
FB
330 BlockDriver *drv)
331{
83f64091 332 int ret, open_flags;
eb5c851f
TS
333 char tmp_filename[PATH_MAX];
334 char backing_filename[PATH_MAX];
3b46e624 335
ea2384d3
FB
336 bs->read_only = 0;
337 bs->is_temporary = 0;
338 bs->encrypted = 0;
712e7874 339
83f64091 340 if (flags & BDRV_O_SNAPSHOT) {
ea2384d3
FB
341 BlockDriverState *bs1;
342 int64_t total_size;
7c96d46e 343 int is_protocol = 0;
3b46e624 344
ea2384d3
FB
345 /* if snapshot, we create a temporary backing file and open it
346 instead of opening 'filename' directly */
33e3963e 347
ea2384d3
FB
348 /* if there is a backing file, use it */
349 bs1 = bdrv_new("");
51d7c00c
AL
350 ret = bdrv_open(bs1, filename, 0);
351 if (ret < 0) {
ea2384d3 352 bdrv_delete(bs1);
51d7c00c 353 return ret;
ea2384d3 354 }
83f64091 355 total_size = bdrv_getlength(bs1) >> SECTOR_BITS;
7c96d46e
AL
356
357 if (bs1->drv && bs1->drv->protocol_name)
358 is_protocol = 1;
359
ea2384d3 360 bdrv_delete(bs1);
3b46e624 361
ea2384d3 362 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
7c96d46e
AL
363
364 /* Real path is meaningless for protocols */
365 if (is_protocol)
366 snprintf(backing_filename, sizeof(backing_filename),
367 "%s", filename);
368 else
369 realpath(filename, backing_filename);
370
51d7c00c
AL
371 ret = bdrv_create(&bdrv_qcow2, tmp_filename,
372 total_size, backing_filename, 0);
373 if (ret < 0) {
374 return ret;
ea2384d3
FB
375 }
376 filename = tmp_filename;
377 bs->is_temporary = 1;
378 }
712e7874 379
ea2384d3 380 pstrcpy(bs->filename, sizeof(bs->filename), filename);
83f64091
FB
381 if (flags & BDRV_O_FILE) {
382 drv = find_protocol(filename);
51d7c00c
AL
383 } else if (!drv) {
384 drv = find_image_format(filename);
385 }
386 if (!drv) {
387 ret = -ENOENT;
388 goto unlink_and_fail;
ea2384d3
FB
389 }
390 bs->drv = drv;
391 bs->opaque = qemu_mallocz(drv->instance_size);
83f64091
FB
392 /* Note: for compatibility, we open disk image files as RDWR, and
393 RDONLY as fallback */
394 if (!(flags & BDRV_O_FILE))
9f7965c7 395 open_flags = BDRV_O_RDWR | (flags & BDRV_O_CACHE_MASK);
83f64091
FB
396 else
397 open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
398 ret = drv->bdrv_open(bs, filename, open_flags);
a0a83536 399 if ((ret == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) {
9f7965c7 400 ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR);
83f64091
FB
401 bs->read_only = 1;
402 }
ea2384d3
FB
403 if (ret < 0) {
404 qemu_free(bs->opaque);
6b21b973
FB
405 bs->opaque = NULL;
406 bs->drv = NULL;
51d7c00c
AL
407 unlink_and_fail:
408 if (bs->is_temporary)
409 unlink(filename);
83f64091 410 return ret;
33e3963e 411 }
d15a771d
FB
412 if (drv->bdrv_getlength) {
413 bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
414 }
67b915a5 415#ifndef _WIN32
ea2384d3
FB
416 if (bs->is_temporary) {
417 unlink(filename);
418 }
419#endif
83f64091 420 if (bs->backing_file[0] != '\0') {
ea2384d3
FB
421 /* if there is a backing file, use it */
422 bs->backing_hd = bdrv_new("");
83f64091
FB
423 path_combine(backing_filename, sizeof(backing_filename),
424 filename, bs->backing_file);
51d7c00c
AL
425 ret = bdrv_open(bs->backing_hd, backing_filename, open_flags);
426 if (ret < 0) {
427 bdrv_close(bs);
428 return ret;
429 }
33e3963e
FB
430 }
431
b338082b 432 /* call the change callback */
19cb3738 433 bs->media_changed = 1;
b338082b
FB
434 if (bs->change_cb)
435 bs->change_cb(bs->change_opaque);
436
437 return 0;
fc01f7e7
FB
438}
439
440void bdrv_close(BlockDriverState *bs)
441{
19cb3738 442 if (bs->drv) {
ea2384d3
FB
443 if (bs->backing_hd)
444 bdrv_delete(bs->backing_hd);
445 bs->drv->bdrv_close(bs);
446 qemu_free(bs->opaque);
447#ifdef _WIN32
448 if (bs->is_temporary) {
449 unlink(bs->filename);
450 }
67b915a5 451#endif
ea2384d3
FB
452 bs->opaque = NULL;
453 bs->drv = NULL;
b338082b
FB
454
455 /* call the change callback */
19cb3738 456 bs->media_changed = 1;
b338082b
FB
457 if (bs->change_cb)
458 bs->change_cb(bs->change_opaque);
459 }
460}
461
462void bdrv_delete(BlockDriverState *bs)
463{
34c6f050
AJ
464 BlockDriverState **pbs;
465
466 pbs = &bdrv_first;
467 while (*pbs != bs && *pbs != NULL)
468 pbs = &(*pbs)->next;
469 if (*pbs == bs)
470 *pbs = bs->next;
471
b338082b
FB
472 bdrv_close(bs);
473 qemu_free(bs);
fc01f7e7
FB
474}
475
33e3963e
FB
476/* commit COW file into the raw image */
477int bdrv_commit(BlockDriverState *bs)
478{
19cb3738 479 BlockDriver *drv = bs->drv;
83f64091 480 int64_t i, total_sectors;
ea2384d3
FB
481 int n, j;
482 unsigned char sector[512];
33e3963e 483
19cb3738
FB
484 if (!drv)
485 return -ENOMEDIUM;
33e3963e
FB
486
487 if (bs->read_only) {
ea2384d3 488 return -EACCES;
33e3963e
FB
489 }
490
ea2384d3
FB
491 if (!bs->backing_hd) {
492 return -ENOTSUP;
493 }
33e3963e 494
83f64091
FB
495 total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
496 for (i = 0; i < total_sectors;) {
19cb3738 497 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
ea2384d3
FB
498 for(j = 0; j < n; j++) {
499 if (bdrv_read(bs, i, sector, 1) != 0) {
500 return -EIO;
501 }
502
503 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
504 return -EIO;
505 }
506 i++;
33e3963e 507 }
ea2384d3
FB
508 } else {
509 i += n;
510 }
33e3963e 511 }
95389c86 512
19cb3738
FB
513 if (drv->bdrv_make_empty)
514 return drv->bdrv_make_empty(bs);
95389c86 515
33e3963e
FB
516 return 0;
517}
518
71d0770c
AL
519static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
520 size_t size)
521{
522 int64_t len;
523
524 if (!bdrv_is_inserted(bs))
525 return -ENOMEDIUM;
526
527 if (bs->growable)
528 return 0;
529
530 len = bdrv_getlength(bs);
531
532 if ((offset + size) > len)
533 return -EIO;
534
535 return 0;
536}
537
538static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
539 int nb_sectors)
540{
541 int64_t offset;
542
543 /* Deal with byte accesses */
544 if (sector_num < 0)
545 offset = -sector_num;
546 else
547 offset = sector_num * 512;
548
549 return bdrv_check_byte_request(bs, offset, nb_sectors * 512);
550}
551
19cb3738 552/* return < 0 if error. See bdrv_write() for the return codes */
5fafdf24 553int bdrv_read(BlockDriverState *bs, int64_t sector_num,
fc01f7e7
FB
554 uint8_t *buf, int nb_sectors)
555{
ea2384d3
FB
556 BlockDriver *drv = bs->drv;
557
19cb3738
FB
558 if (!drv)
559 return -ENOMEDIUM;
71d0770c
AL
560 if (bdrv_check_request(bs, sector_num, nb_sectors))
561 return -EIO;
b338082b 562
83f64091
FB
563 if (drv->bdrv_pread) {
564 int ret, len;
565 len = nb_sectors * 512;
566 ret = drv->bdrv_pread(bs, sector_num * 512, buf, len);
567 if (ret < 0)
568 return ret;
569 else if (ret != len)
19cb3738 570 return -EINVAL;
a36e69dd
TS
571 else {
572 bs->rd_bytes += (unsigned) len;
573 bs->rd_ops ++;
83f64091 574 return 0;
a36e69dd 575 }
83f64091
FB
576 } else {
577 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
33e3963e 578 }
fc01f7e7
FB
579}
580
5fafdf24 581/* Return < 0 if error. Important errors are:
19cb3738
FB
582 -EIO generic I/O error (may happen for all errors)
583 -ENOMEDIUM No media inserted.
584 -EINVAL Invalid sector number or nb_sectors
585 -EACCES Trying to write a read-only device
586*/
5fafdf24 587int bdrv_write(BlockDriverState *bs, int64_t sector_num,
fc01f7e7
FB
588 const uint8_t *buf, int nb_sectors)
589{
83f64091 590 BlockDriver *drv = bs->drv;
19cb3738
FB
591 if (!bs->drv)
592 return -ENOMEDIUM;
0849bf08 593 if (bs->read_only)
19cb3738 594 return -EACCES;
71d0770c
AL
595 if (bdrv_check_request(bs, sector_num, nb_sectors))
596 return -EIO;
597
83f64091 598 if (drv->bdrv_pwrite) {
42fb2807 599 int ret, len, count = 0;
83f64091 600 len = nb_sectors * 512;
42fb2807
AL
601 do {
602 ret = drv->bdrv_pwrite(bs, sector_num * 512, buf, len - count);
603 if (ret < 0) {
604 printf("bdrv_write ret=%d\n", ret);
605 return ret;
606 }
607 count += ret;
608 buf += ret;
609 } while (count != len);
610 bs->wr_bytes += (unsigned) len;
611 bs->wr_ops ++;
612 return 0;
83f64091 613 }
42fb2807 614 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
83f64091
FB
615}
616
5fafdf24 617static int bdrv_pread_em(BlockDriverState *bs, int64_t offset,
faea38e7 618 uint8_t *buf, int count1)
83f64091 619{
83f64091
FB
620 uint8_t tmp_buf[SECTOR_SIZE];
621 int len, nb_sectors, count;
622 int64_t sector_num;
623
624 count = count1;
625 /* first read to align to sector start */
626 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
627 if (len > count)
628 len = count;
629 sector_num = offset >> SECTOR_BITS;
630 if (len > 0) {
631 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
632 return -EIO;
633 memcpy(buf, tmp_buf + (offset & (SECTOR_SIZE - 1)), len);
634 count -= len;
635 if (count == 0)
636 return count1;
637 sector_num++;
638 buf += len;
639 }
640
641 /* read the sectors "in place" */
642 nb_sectors = count >> SECTOR_BITS;
643 if (nb_sectors > 0) {
644 if (bdrv_read(bs, sector_num, buf, nb_sectors) < 0)
645 return -EIO;
646 sector_num += nb_sectors;
647 len = nb_sectors << SECTOR_BITS;
648 buf += len;
649 count -= len;
650 }
651
652 /* add data from the last sector */
653 if (count > 0) {
654 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
655 return -EIO;
656 memcpy(buf, tmp_buf, count);
657 }
658 return count1;
659}
660
5fafdf24 661static int bdrv_pwrite_em(BlockDriverState *bs, int64_t offset,
faea38e7 662 const uint8_t *buf, int count1)
83f64091 663{
83f64091
FB
664 uint8_t tmp_buf[SECTOR_SIZE];
665 int len, nb_sectors, count;
666 int64_t sector_num;
667
668 count = count1;
669 /* first write to align to sector start */
670 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
671 if (len > count)
672 len = count;
673 sector_num = offset >> SECTOR_BITS;
674 if (len > 0) {
675 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
676 return -EIO;
677 memcpy(tmp_buf + (offset & (SECTOR_SIZE - 1)), buf, len);
678 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
679 return -EIO;
680 count -= len;
681 if (count == 0)
682 return count1;
683 sector_num++;
684 buf += len;
685 }
686
687 /* write the sectors "in place" */
688 nb_sectors = count >> SECTOR_BITS;
689 if (nb_sectors > 0) {
690 if (bdrv_write(bs, sector_num, buf, nb_sectors) < 0)
691 return -EIO;
692 sector_num += nb_sectors;
693 len = nb_sectors << SECTOR_BITS;
694 buf += len;
695 count -= len;
696 }
697
698 /* add data from the last sector */
699 if (count > 0) {
700 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
701 return -EIO;
702 memcpy(tmp_buf, buf, count);
703 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
704 return -EIO;
705 }
706 return count1;
707}
83f64091
FB
708
709/**
5fafdf24 710 * Read with byte offsets (needed only for file protocols)
83f64091 711 */
5fafdf24 712int bdrv_pread(BlockDriverState *bs, int64_t offset,
83f64091
FB
713 void *buf1, int count1)
714{
715 BlockDriver *drv = bs->drv;
716
717 if (!drv)
19cb3738 718 return -ENOMEDIUM;
71d0770c
AL
719 if (bdrv_check_byte_request(bs, offset, count1))
720 return -EIO;
721
83f64091 722 if (!drv->bdrv_pread)
faea38e7 723 return bdrv_pread_em(bs, offset, buf1, count1);
83f64091
FB
724 return drv->bdrv_pread(bs, offset, buf1, count1);
725}
726
5fafdf24
TS
727/**
728 * Write with byte offsets (needed only for file protocols)
83f64091 729 */
5fafdf24 730int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
83f64091
FB
731 const void *buf1, int count1)
732{
733 BlockDriver *drv = bs->drv;
734
735 if (!drv)
19cb3738 736 return -ENOMEDIUM;
71d0770c
AL
737 if (bdrv_check_byte_request(bs, offset, count1))
738 return -EIO;
739
83f64091 740 if (!drv->bdrv_pwrite)
faea38e7 741 return bdrv_pwrite_em(bs, offset, buf1, count1);
83f64091
FB
742 return drv->bdrv_pwrite(bs, offset, buf1, count1);
743}
744
745/**
746 * Truncate file to 'offset' bytes (needed only for file protocols)
747 */
748int bdrv_truncate(BlockDriverState *bs, int64_t offset)
749{
750 BlockDriver *drv = bs->drv;
751 if (!drv)
19cb3738 752 return -ENOMEDIUM;
83f64091
FB
753 if (!drv->bdrv_truncate)
754 return -ENOTSUP;
755 return drv->bdrv_truncate(bs, offset);
756}
757
758/**
759 * Length of a file in bytes. Return < 0 if error or unknown.
760 */
761int64_t bdrv_getlength(BlockDriverState *bs)
762{
763 BlockDriver *drv = bs->drv;
764 if (!drv)
19cb3738 765 return -ENOMEDIUM;
83f64091
FB
766 if (!drv->bdrv_getlength) {
767 /* legacy mode */
768 return bs->total_sectors * SECTOR_SIZE;
769 }
770 return drv->bdrv_getlength(bs);
fc01f7e7
FB
771}
772
19cb3738 773/* return 0 as number of sectors if no device present or error */
96b8f136 774void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
fc01f7e7 775{
19cb3738
FB
776 int64_t length;
777 length = bdrv_getlength(bs);
778 if (length < 0)
779 length = 0;
780 else
781 length = length >> SECTOR_BITS;
782 *nb_sectors_ptr = length;
fc01f7e7 783}
cf98951b 784
f3d54fc4
AL
785struct partition {
786 uint8_t boot_ind; /* 0x80 - active */
787 uint8_t head; /* starting head */
788 uint8_t sector; /* starting sector */
789 uint8_t cyl; /* starting cylinder */
790 uint8_t sys_ind; /* What partition type */
791 uint8_t end_head; /* end head */
792 uint8_t end_sector; /* end sector */
793 uint8_t end_cyl; /* end cylinder */
794 uint32_t start_sect; /* starting sector counting from 0 */
795 uint32_t nr_sects; /* nr of sectors in partition */
796} __attribute__((packed));
797
798/* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
799static int guess_disk_lchs(BlockDriverState *bs,
800 int *pcylinders, int *pheads, int *psectors)
801{
802 uint8_t buf[512];
803 int ret, i, heads, sectors, cylinders;
804 struct partition *p;
805 uint32_t nr_sects;
a38131b6 806 uint64_t nb_sectors;
f3d54fc4
AL
807
808 bdrv_get_geometry(bs, &nb_sectors);
809
810 ret = bdrv_read(bs, 0, buf, 1);
811 if (ret < 0)
812 return -1;
813 /* test msdos magic */
814 if (buf[510] != 0x55 || buf[511] != 0xaa)
815 return -1;
816 for(i = 0; i < 4; i++) {
817 p = ((struct partition *)(buf + 0x1be)) + i;
818 nr_sects = le32_to_cpu(p->nr_sects);
819 if (nr_sects && p->end_head) {
820 /* We make the assumption that the partition terminates on
821 a cylinder boundary */
822 heads = p->end_head + 1;
823 sectors = p->end_sector & 63;
824 if (sectors == 0)
825 continue;
826 cylinders = nb_sectors / (heads * sectors);
827 if (cylinders < 1 || cylinders > 16383)
828 continue;
829 *pheads = heads;
830 *psectors = sectors;
831 *pcylinders = cylinders;
832#if 0
833 printf("guessed geometry: LCHS=%d %d %d\n",
834 cylinders, heads, sectors);
835#endif
836 return 0;
837 }
838 }
839 return -1;
840}
841
842void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
843{
844 int translation, lba_detected = 0;
845 int cylinders, heads, secs;
a38131b6 846 uint64_t nb_sectors;
f3d54fc4
AL
847
848 /* if a geometry hint is available, use it */
849 bdrv_get_geometry(bs, &nb_sectors);
850 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
851 translation = bdrv_get_translation_hint(bs);
852 if (cylinders != 0) {
853 *pcyls = cylinders;
854 *pheads = heads;
855 *psecs = secs;
856 } else {
857 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
858 if (heads > 16) {
859 /* if heads > 16, it means that a BIOS LBA
860 translation was active, so the default
861 hardware geometry is OK */
862 lba_detected = 1;
863 goto default_geometry;
864 } else {
865 *pcyls = cylinders;
866 *pheads = heads;
867 *psecs = secs;
868 /* disable any translation to be in sync with
869 the logical geometry */
870 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
871 bdrv_set_translation_hint(bs,
872 BIOS_ATA_TRANSLATION_NONE);
873 }
874 }
875 } else {
876 default_geometry:
877 /* if no geometry, use a standard physical disk geometry */
878 cylinders = nb_sectors / (16 * 63);
879
880 if (cylinders > 16383)
881 cylinders = 16383;
882 else if (cylinders < 2)
883 cylinders = 2;
884 *pcyls = cylinders;
885 *pheads = 16;
886 *psecs = 63;
887 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
888 if ((*pcyls * *pheads) <= 131072) {
889 bdrv_set_translation_hint(bs,
890 BIOS_ATA_TRANSLATION_LARGE);
891 } else {
892 bdrv_set_translation_hint(bs,
893 BIOS_ATA_TRANSLATION_LBA);
894 }
895 }
896 }
897 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
898 }
899}
900
5fafdf24 901void bdrv_set_geometry_hint(BlockDriverState *bs,
b338082b
FB
902 int cyls, int heads, int secs)
903{
904 bs->cyls = cyls;
905 bs->heads = heads;
906 bs->secs = secs;
907}
908
909void bdrv_set_type_hint(BlockDriverState *bs, int type)
910{
911 bs->type = type;
912 bs->removable = ((type == BDRV_TYPE_CDROM ||
913 type == BDRV_TYPE_FLOPPY));
914}
915
46d4767d
FB
916void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
917{
918 bs->translation = translation;
919}
920
5fafdf24 921void bdrv_get_geometry_hint(BlockDriverState *bs,
b338082b
FB
922 int *pcyls, int *pheads, int *psecs)
923{
924 *pcyls = bs->cyls;
925 *pheads = bs->heads;
926 *psecs = bs->secs;
927}
928
929int bdrv_get_type_hint(BlockDriverState *bs)
930{
931 return bs->type;
932}
933
46d4767d
FB
934int bdrv_get_translation_hint(BlockDriverState *bs)
935{
936 return bs->translation;
937}
938
b338082b
FB
939int bdrv_is_removable(BlockDriverState *bs)
940{
941 return bs->removable;
942}
943
944int bdrv_is_read_only(BlockDriverState *bs)
945{
946 return bs->read_only;
947}
948
985a03b0
TS
949int bdrv_is_sg(BlockDriverState *bs)
950{
951 return bs->sg;
952}
953
19cb3738 954/* XXX: no longer used */
5fafdf24 955void bdrv_set_change_cb(BlockDriverState *bs,
b338082b
FB
956 void (*change_cb)(void *opaque), void *opaque)
957{
958 bs->change_cb = change_cb;
959 bs->change_opaque = opaque;
960}
961
ea2384d3
FB
962int bdrv_is_encrypted(BlockDriverState *bs)
963{
964 if (bs->backing_hd && bs->backing_hd->encrypted)
965 return 1;
966 return bs->encrypted;
967}
968
969int bdrv_set_key(BlockDriverState *bs, const char *key)
970{
971 int ret;
972 if (bs->backing_hd && bs->backing_hd->encrypted) {
973 ret = bdrv_set_key(bs->backing_hd, key);
974 if (ret < 0)
975 return ret;
976 if (!bs->encrypted)
977 return 0;
978 }
979 if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key)
980 return -1;
981 return bs->drv->bdrv_set_key(bs, key);
982}
983
984void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
985{
19cb3738 986 if (!bs->drv) {
ea2384d3
FB
987 buf[0] = '\0';
988 } else {
989 pstrcpy(buf, buf_size, bs->drv->format_name);
990 }
991}
992
5fafdf24 993void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
ea2384d3
FB
994 void *opaque)
995{
996 BlockDriver *drv;
997
998 for (drv = first_drv; drv != NULL; drv = drv->next) {
999 it(opaque, drv->format_name);
1000 }
1001}
1002
b338082b
FB
1003BlockDriverState *bdrv_find(const char *name)
1004{
1005 BlockDriverState *bs;
1006
1007 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1008 if (!strcmp(name, bs->device_name))
1009 return bs;
1010 }
1011 return NULL;
1012}
1013
51de9760 1014void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
81d0912d
FB
1015{
1016 BlockDriverState *bs;
1017
1018 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
51de9760 1019 it(opaque, bs);
81d0912d
FB
1020 }
1021}
1022
ea2384d3
FB
1023const char *bdrv_get_device_name(BlockDriverState *bs)
1024{
1025 return bs->device_name;
1026}
1027
7a6cba61
PB
1028void bdrv_flush(BlockDriverState *bs)
1029{
1030 if (bs->drv->bdrv_flush)
1031 bs->drv->bdrv_flush(bs);
1032 if (bs->backing_hd)
1033 bdrv_flush(bs->backing_hd);
1034}
1035
c6ca28d6
AL
1036void bdrv_flush_all(void)
1037{
1038 BlockDriverState *bs;
1039
1040 for (bs = bdrv_first; bs != NULL; bs = bs->next)
1041 if (bs->drv && !bdrv_is_read_only(bs) &&
1042 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs)))
1043 bdrv_flush(bs);
1044}
1045
f58c7b35
TS
1046/*
1047 * Returns true iff the specified sector is present in the disk image. Drivers
1048 * not implementing the functionality are assumed to not support backing files,
1049 * hence all their sectors are reported as allocated.
1050 *
1051 * 'pnum' is set to the number of sectors (including and immediately following
1052 * the specified sector) that are known to be in the same
1053 * allocated/unallocated state.
1054 *
1055 * 'nb_sectors' is the max value 'pnum' should be set to.
1056 */
1057int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1058 int *pnum)
1059{
1060 int64_t n;
1061 if (!bs->drv->bdrv_is_allocated) {
1062 if (sector_num >= bs->total_sectors) {
1063 *pnum = 0;
1064 return 0;
1065 }
1066 n = bs->total_sectors - sector_num;
1067 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1068 return 1;
1069 }
1070 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1071}
1072
b338082b
FB
1073void bdrv_info(void)
1074{
1075 BlockDriverState *bs;
1076
1077 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1078 term_printf("%s:", bs->device_name);
1079 term_printf(" type=");
1080 switch(bs->type) {
1081 case BDRV_TYPE_HD:
1082 term_printf("hd");
1083 break;
1084 case BDRV_TYPE_CDROM:
1085 term_printf("cdrom");
1086 break;
1087 case BDRV_TYPE_FLOPPY:
1088 term_printf("floppy");
1089 break;
1090 }
1091 term_printf(" removable=%d", bs->removable);
1092 if (bs->removable) {
1093 term_printf(" locked=%d", bs->locked);
1094 }
19cb3738 1095 if (bs->drv) {
fef30743
TS
1096 term_printf(" file=");
1097 term_print_filename(bs->filename);
1098 if (bs->backing_file[0] != '\0') {
1099 term_printf(" backing_file=");
1100 term_print_filename(bs->backing_file);
1101 }
b338082b 1102 term_printf(" ro=%d", bs->read_only);
ea2384d3 1103 term_printf(" drv=%s", bs->drv->format_name);
430eb509 1104 term_printf(" encrypted=%d", bdrv_is_encrypted(bs));
b338082b
FB
1105 } else {
1106 term_printf(" [not inserted]");
1107 }
1108 term_printf("\n");
1109 }
1110}
a36e69dd
TS
1111
1112/* The "info blockstats" command. */
1113void bdrv_info_stats (void)
1114{
1115 BlockDriverState *bs;
a7cbfae0 1116 BlockDriverInfo bdi;
a36e69dd
TS
1117
1118 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1119 term_printf ("%s:"
1120 " rd_bytes=%" PRIu64
1121 " wr_bytes=%" PRIu64
1122 " rd_operations=%" PRIu64
1123 " wr_operations=%" PRIu64
a7cbfae0 1124 ,
a36e69dd
TS
1125 bs->device_name,
1126 bs->rd_bytes, bs->wr_bytes,
1127 bs->rd_ops, bs->wr_ops);
a7cbfae0 1128 if (bdrv_get_info(bs, &bdi) == 0)
1987530f
AL
1129 term_printf(" high=%" PRId64
1130 " bytes_free=%" PRId64,
1131 bdi.highest_alloc, bdi.num_free_bytes);
a7cbfae0 1132 term_printf("\n");
a36e69dd
TS
1133 }
1134}
ea2384d3 1135
045df330
AL
1136const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1137{
1138 if (bs->backing_hd && bs->backing_hd->encrypted)
1139 return bs->backing_file;
1140 else if (bs->encrypted)
1141 return bs->filename;
1142 else
1143 return NULL;
1144}
1145
5fafdf24 1146void bdrv_get_backing_filename(BlockDriverState *bs,
83f64091
FB
1147 char *filename, int filename_size)
1148{
1149 if (!bs->backing_hd) {
1150 pstrcpy(filename, filename_size, "");
1151 } else {
1152 pstrcpy(filename, filename_size, bs->backing_file);
1153 }
1154}
1155
5fafdf24 1156int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
faea38e7
FB
1157 const uint8_t *buf, int nb_sectors)
1158{
1159 BlockDriver *drv = bs->drv;
1160 if (!drv)
19cb3738 1161 return -ENOMEDIUM;
faea38e7
FB
1162 if (!drv->bdrv_write_compressed)
1163 return -ENOTSUP;
1164 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1165}
3b46e624 1166
faea38e7
FB
1167int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1168{
1169 BlockDriver *drv = bs->drv;
1170 if (!drv)
19cb3738 1171 return -ENOMEDIUM;
faea38e7
FB
1172 if (!drv->bdrv_get_info)
1173 return -ENOTSUP;
1174 memset(bdi, 0, sizeof(*bdi));
1175 return drv->bdrv_get_info(bs, bdi);
1176}
1177
1178/**************************************************************/
1179/* handling of snapshots */
1180
5fafdf24 1181int bdrv_snapshot_create(BlockDriverState *bs,
faea38e7
FB
1182 QEMUSnapshotInfo *sn_info)
1183{
1184 BlockDriver *drv = bs->drv;
1185 if (!drv)
19cb3738 1186 return -ENOMEDIUM;
faea38e7
FB
1187 if (!drv->bdrv_snapshot_create)
1188 return -ENOTSUP;
1189 return drv->bdrv_snapshot_create(bs, sn_info);
1190}
1191
5fafdf24 1192int bdrv_snapshot_goto(BlockDriverState *bs,
faea38e7
FB
1193 const char *snapshot_id)
1194{
1195 BlockDriver *drv = bs->drv;
1196 if (!drv)
19cb3738 1197 return -ENOMEDIUM;
faea38e7
FB
1198 if (!drv->bdrv_snapshot_goto)
1199 return -ENOTSUP;
1200 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1201}
1202
1203int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1204{
1205 BlockDriver *drv = bs->drv;
1206 if (!drv)
19cb3738 1207 return -ENOMEDIUM;
faea38e7
FB
1208 if (!drv->bdrv_snapshot_delete)
1209 return -ENOTSUP;
1210 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1211}
1212
5fafdf24 1213int bdrv_snapshot_list(BlockDriverState *bs,
faea38e7
FB
1214 QEMUSnapshotInfo **psn_info)
1215{
1216 BlockDriver *drv = bs->drv;
1217 if (!drv)
19cb3738 1218 return -ENOMEDIUM;
faea38e7
FB
1219 if (!drv->bdrv_snapshot_list)
1220 return -ENOTSUP;
1221 return drv->bdrv_snapshot_list(bs, psn_info);
1222}
1223
1224#define NB_SUFFIXES 4
1225
1226char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1227{
1228 static const char suffixes[NB_SUFFIXES] = "KMGT";
1229 int64_t base;
1230 int i;
1231
1232 if (size <= 999) {
1233 snprintf(buf, buf_size, "%" PRId64, size);
1234 } else {
1235 base = 1024;
1236 for(i = 0; i < NB_SUFFIXES; i++) {
1237 if (size < (10 * base)) {
5fafdf24 1238 snprintf(buf, buf_size, "%0.1f%c",
faea38e7
FB
1239 (double)size / base,
1240 suffixes[i]);
1241 break;
1242 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
5fafdf24 1243 snprintf(buf, buf_size, "%" PRId64 "%c",
faea38e7
FB
1244 ((size + (base >> 1)) / base),
1245 suffixes[i]);
1246 break;
1247 }
1248 base = base * 1024;
1249 }
1250 }
1251 return buf;
1252}
1253
1254char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1255{
1256 char buf1[128], date_buf[128], clock_buf[128];
3b9f94e1
FB
1257#ifdef _WIN32
1258 struct tm *ptm;
1259#else
faea38e7 1260 struct tm tm;
3b9f94e1 1261#endif
faea38e7
FB
1262 time_t ti;
1263 int64_t secs;
1264
1265 if (!sn) {
5fafdf24
TS
1266 snprintf(buf, buf_size,
1267 "%-10s%-20s%7s%20s%15s",
faea38e7
FB
1268 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1269 } else {
1270 ti = sn->date_sec;
3b9f94e1
FB
1271#ifdef _WIN32
1272 ptm = localtime(&ti);
1273 strftime(date_buf, sizeof(date_buf),
1274 "%Y-%m-%d %H:%M:%S", ptm);
1275#else
faea38e7
FB
1276 localtime_r(&ti, &tm);
1277 strftime(date_buf, sizeof(date_buf),
1278 "%Y-%m-%d %H:%M:%S", &tm);
3b9f94e1 1279#endif
faea38e7
FB
1280 secs = sn->vm_clock_nsec / 1000000000;
1281 snprintf(clock_buf, sizeof(clock_buf),
1282 "%02d:%02d:%02d.%03d",
1283 (int)(secs / 3600),
1284 (int)((secs / 60) % 60),
5fafdf24 1285 (int)(secs % 60),
faea38e7
FB
1286 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1287 snprintf(buf, buf_size,
5fafdf24 1288 "%-10s%-20s%7s%20s%15s",
faea38e7
FB
1289 sn->id_str, sn->name,
1290 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1291 date_buf,
1292 clock_buf);
1293 }
1294 return buf;
1295}
1296
83f64091 1297
ea2384d3 1298/**************************************************************/
83f64091 1299/* async I/Os */
ea2384d3 1300
3b69e4b9
AL
1301typedef struct VectorTranslationState {
1302 QEMUIOVector *iov;
1303 uint8_t *bounce;
1304 int is_write;
1305 BlockDriverAIOCB *aiocb;
1306 BlockDriverAIOCB *this_aiocb;
1307} VectorTranslationState;
1308
1309static void bdrv_aio_rw_vector_cb(void *opaque, int ret)
1310{
1311 VectorTranslationState *s = opaque;
1312
1313 if (!s->is_write) {
249aa745 1314 qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size);
3b69e4b9 1315 }
d905dba4 1316 qemu_vfree(s->bounce);
3b69e4b9
AL
1317 s->this_aiocb->cb(s->this_aiocb->opaque, ret);
1318 qemu_aio_release(s->this_aiocb);
1319}
1320
1321static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
1322 int64_t sector_num,
1323 QEMUIOVector *iov,
1324 int nb_sectors,
1325 BlockDriverCompletionFunc *cb,
1326 void *opaque,
1327 int is_write)
1328
1329{
1330 VectorTranslationState *s = qemu_mallocz(sizeof(*s));
1331 BlockDriverAIOCB *aiocb = qemu_aio_get(bs, cb, opaque);
1332
1333 s->this_aiocb = aiocb;
1334 s->iov = iov;
1335 s->bounce = qemu_memalign(512, nb_sectors * 512);
1336 s->is_write = is_write;
1337 if (is_write) {
1338 qemu_iovec_to_buffer(s->iov, s->bounce);
1339 s->aiocb = bdrv_aio_write(bs, sector_num, s->bounce, nb_sectors,
1340 bdrv_aio_rw_vector_cb, s);
1341 } else {
1342 s->aiocb = bdrv_aio_read(bs, sector_num, s->bounce, nb_sectors,
1343 bdrv_aio_rw_vector_cb, s);
1344 }
1345 return aiocb;
1346}
1347
1348BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1349 QEMUIOVector *iov, int nb_sectors,
1350 BlockDriverCompletionFunc *cb, void *opaque)
1351{
71d0770c
AL
1352 if (bdrv_check_request(bs, sector_num, nb_sectors))
1353 return NULL;
1354
3b69e4b9
AL
1355 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1356 cb, opaque, 0);
1357}
1358
1359BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1360 QEMUIOVector *iov, int nb_sectors,
1361 BlockDriverCompletionFunc *cb, void *opaque)
1362{
71d0770c
AL
1363 if (bdrv_check_request(bs, sector_num, nb_sectors))
1364 return NULL;
1365
3b69e4b9
AL
1366 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1367 cb, opaque, 1);
1368}
1369
ce1a14dc
PB
1370BlockDriverAIOCB *bdrv_aio_read(BlockDriverState *bs, int64_t sector_num,
1371 uint8_t *buf, int nb_sectors,
1372 BlockDriverCompletionFunc *cb, void *opaque)
83f64091
FB
1373{
1374 BlockDriver *drv = bs->drv;
a36e69dd 1375 BlockDriverAIOCB *ret;
83f64091 1376
19cb3738 1377 if (!drv)
ce1a14dc 1378 return NULL;
71d0770c
AL
1379 if (bdrv_check_request(bs, sector_num, nb_sectors))
1380 return NULL;
3b46e624 1381
a36e69dd
TS
1382 ret = drv->bdrv_aio_read(bs, sector_num, buf, nb_sectors, cb, opaque);
1383
1384 if (ret) {
1385 /* Update stats even though technically transfer has not happened. */
1386 bs->rd_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1387 bs->rd_ops ++;
1388 }
1389
1390 return ret;
ea2384d3
FB
1391}
1392
ce1a14dc
PB
1393BlockDriverAIOCB *bdrv_aio_write(BlockDriverState *bs, int64_t sector_num,
1394 const uint8_t *buf, int nb_sectors,
1395 BlockDriverCompletionFunc *cb, void *opaque)
ea2384d3 1396{
83f64091 1397 BlockDriver *drv = bs->drv;
a36e69dd 1398 BlockDriverAIOCB *ret;
ea2384d3 1399
19cb3738 1400 if (!drv)
ce1a14dc 1401 return NULL;
83f64091 1402 if (bs->read_only)
ce1a14dc 1403 return NULL;
71d0770c
AL
1404 if (bdrv_check_request(bs, sector_num, nb_sectors))
1405 return NULL;
83f64091 1406
a36e69dd
TS
1407 ret = drv->bdrv_aio_write(bs, sector_num, buf, nb_sectors, cb, opaque);
1408
1409 if (ret) {
1410 /* Update stats even though technically transfer has not happened. */
1411 bs->wr_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1412 bs->wr_ops ++;
1413 }
1414
1415 return ret;
83f64091
FB
1416}
1417
1418void bdrv_aio_cancel(BlockDriverAIOCB *acb)
83f64091 1419{
ce1a14dc 1420 BlockDriver *drv = acb->bs->drv;
83f64091 1421
3b69e4b9
AL
1422 if (acb->cb == bdrv_aio_rw_vector_cb) {
1423 VectorTranslationState *s = acb->opaque;
1424 acb = s->aiocb;
1425 }
1426
ce1a14dc 1427 drv->bdrv_aio_cancel(acb);
83f64091
FB
1428}
1429
ce1a14dc 1430
83f64091
FB
1431/**************************************************************/
1432/* async block device emulation */
1433
ce1a14dc 1434static void bdrv_aio_bh_cb(void *opaque)
83f64091 1435{
ce1a14dc
PB
1436 BlockDriverAIOCBSync *acb = opaque;
1437 acb->common.cb(acb->common.opaque, acb->ret);
1438 qemu_aio_release(acb);
83f64091 1439}
beac80cd 1440
ce1a14dc
PB
1441static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs,
1442 int64_t sector_num, uint8_t *buf, int nb_sectors,
1443 BlockDriverCompletionFunc *cb, void *opaque)
83f64091 1444{
ce1a14dc 1445 BlockDriverAIOCBSync *acb;
83f64091 1446 int ret;
ce1a14dc
PB
1447
1448 acb = qemu_aio_get(bs, cb, opaque);
1449 if (!acb->bh)
1450 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1451 ret = bdrv_read(bs, sector_num, buf, nb_sectors);
1452 acb->ret = ret;
1453 qemu_bh_schedule(acb->bh);
1454 return &acb->common;
beac80cd
FB
1455}
1456
ce1a14dc
PB
1457static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs,
1458 int64_t sector_num, const uint8_t *buf, int nb_sectors,
1459 BlockDriverCompletionFunc *cb, void *opaque)
beac80cd 1460{
ce1a14dc 1461 BlockDriverAIOCBSync *acb;
83f64091 1462 int ret;
83f64091 1463
ce1a14dc
PB
1464 acb = qemu_aio_get(bs, cb, opaque);
1465 if (!acb->bh)
1466 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1467 ret = bdrv_write(bs, sector_num, buf, nb_sectors);
1468 acb->ret = ret;
1469 qemu_bh_schedule(acb->bh);
1470 return &acb->common;
beac80cd 1471}
beac80cd 1472
ce1a14dc 1473static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
ea2384d3 1474{
ce1a14dc
PB
1475 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
1476 qemu_bh_cancel(acb->bh);
1477 qemu_aio_release(acb);
83f64091 1478}
ea2384d3 1479
83f64091
FB
1480/**************************************************************/
1481/* sync block device emulation */
ea2384d3 1482
83f64091
FB
1483static void bdrv_rw_em_cb(void *opaque, int ret)
1484{
1485 *(int *)opaque = ret;
ea2384d3
FB
1486}
1487
83f64091
FB
1488#define NOT_DONE 0x7fffffff
1489
5fafdf24 1490static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
83f64091 1491 uint8_t *buf, int nb_sectors)
7a6cba61 1492{
ce1a14dc
PB
1493 int async_ret;
1494 BlockDriverAIOCB *acb;
83f64091 1495
83f64091 1496 async_ret = NOT_DONE;
5fafdf24 1497 acb = bdrv_aio_read(bs, sector_num, buf, nb_sectors,
83f64091 1498 bdrv_rw_em_cb, &async_ret);
baf35cb9 1499 if (acb == NULL)
ce1a14dc 1500 return -1;
baf35cb9 1501
83f64091
FB
1502 while (async_ret == NOT_DONE) {
1503 qemu_aio_wait();
1504 }
baf35cb9 1505
83f64091 1506 return async_ret;
7a6cba61
PB
1507}
1508
83f64091
FB
1509static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
1510 const uint8_t *buf, int nb_sectors)
1511{
ce1a14dc
PB
1512 int async_ret;
1513 BlockDriverAIOCB *acb;
83f64091 1514
83f64091 1515 async_ret = NOT_DONE;
5fafdf24 1516 acb = bdrv_aio_write(bs, sector_num, buf, nb_sectors,
83f64091 1517 bdrv_rw_em_cb, &async_ret);
baf35cb9 1518 if (acb == NULL)
ce1a14dc 1519 return -1;
83f64091
FB
1520 while (async_ret == NOT_DONE) {
1521 qemu_aio_wait();
1522 }
83f64091
FB
1523 return async_ret;
1524}
ea2384d3
FB
1525
1526void bdrv_init(void)
1527{
1528 bdrv_register(&bdrv_raw);
19cb3738 1529 bdrv_register(&bdrv_host_device);
ea2384d3
FB
1530#ifndef _WIN32
1531 bdrv_register(&bdrv_cow);
1532#endif
1533 bdrv_register(&bdrv_qcow);
1534 bdrv_register(&bdrv_vmdk);
3c56521b 1535 bdrv_register(&bdrv_cloop);
585d0ed9 1536 bdrv_register(&bdrv_dmg);
a8753c34 1537 bdrv_register(&bdrv_bochs);
6a0f9e82 1538 bdrv_register(&bdrv_vpc);
712e7874 1539 bdrv_register(&bdrv_vvfat);
faea38e7 1540 bdrv_register(&bdrv_qcow2);
6ada7453 1541 bdrv_register(&bdrv_parallels);
75818250 1542 bdrv_register(&bdrv_nbd);
ea2384d3 1543}
ce1a14dc
PB
1544
1545void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb,
1546 void *opaque)
1547{
1548 BlockDriver *drv;
1549 BlockDriverAIOCB *acb;
1550
1551 drv = bs->drv;
1552 if (drv->free_aiocb) {
1553 acb = drv->free_aiocb;
1554 drv->free_aiocb = acb->next;
1555 } else {
1556 acb = qemu_mallocz(drv->aiocb_size);
ce1a14dc
PB
1557 }
1558 acb->bs = bs;
1559 acb->cb = cb;
1560 acb->opaque = opaque;
1561 return acb;
1562}
1563
1564void qemu_aio_release(void *p)
1565{
1566 BlockDriverAIOCB *acb = p;
1567 BlockDriver *drv = acb->bs->drv;
1568 acb->next = drv->free_aiocb;
1569 drv->free_aiocb = acb;
1570}
19cb3738
FB
1571
1572/**************************************************************/
1573/* removable device support */
1574
1575/**
1576 * Return TRUE if the media is present
1577 */
1578int bdrv_is_inserted(BlockDriverState *bs)
1579{
1580 BlockDriver *drv = bs->drv;
1581 int ret;
1582 if (!drv)
1583 return 0;
1584 if (!drv->bdrv_is_inserted)
1585 return 1;
1586 ret = drv->bdrv_is_inserted(bs);
1587 return ret;
1588}
1589
1590/**
1591 * Return TRUE if the media changed since the last call to this
5fafdf24 1592 * function. It is currently only used for floppy disks
19cb3738
FB
1593 */
1594int bdrv_media_changed(BlockDriverState *bs)
1595{
1596 BlockDriver *drv = bs->drv;
1597 int ret;
1598
1599 if (!drv || !drv->bdrv_media_changed)
1600 ret = -ENOTSUP;
1601 else
1602 ret = drv->bdrv_media_changed(bs);
1603 if (ret == -ENOTSUP)
1604 ret = bs->media_changed;
1605 bs->media_changed = 0;
1606 return ret;
1607}
1608
1609/**
1610 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1611 */
1612void bdrv_eject(BlockDriverState *bs, int eject_flag)
1613{
1614 BlockDriver *drv = bs->drv;
1615 int ret;
1616
1617 if (!drv || !drv->bdrv_eject) {
1618 ret = -ENOTSUP;
1619 } else {
1620 ret = drv->bdrv_eject(bs, eject_flag);
1621 }
1622 if (ret == -ENOTSUP) {
1623 if (eject_flag)
1624 bdrv_close(bs);
1625 }
1626}
1627
1628int bdrv_is_locked(BlockDriverState *bs)
1629{
1630 return bs->locked;
1631}
1632
1633/**
1634 * Lock or unlock the media (if it is locked, the user won't be able
1635 * to eject it manually).
1636 */
1637void bdrv_set_locked(BlockDriverState *bs, int locked)
1638{
1639 BlockDriver *drv = bs->drv;
1640
1641 bs->locked = locked;
1642 if (drv && drv->bdrv_set_locked) {
1643 drv->bdrv_set_locked(bs, locked);
1644 }
1645}
985a03b0
TS
1646
1647/* needed for generic scsi interface */
1648
1649int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1650{
1651 BlockDriver *drv = bs->drv;
1652
1653 if (drv && drv->bdrv_ioctl)
1654 return drv->bdrv_ioctl(bs, req, buf);
1655 return -ENOTSUP;
1656}