blob: e35c9a65aa6dc1d105cc8f138af167a5f16e930a [file] [log] [blame]
bellardfc01f7e2003-06-30 10:03:06 +00001/*
2 * QEMU System Emulator block driver
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardfc01f7e2003-06-30 10:03:06 +00004 * Copyright (c) 2003 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardfc01f7e2003-06-30 10:03:06 +00006 * 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 */
blueswir13990d092008-12-05 17:53:21 +000024#include "config-host.h"
25#ifdef _BSD
26/* include native header before sys-queue.h */
27#include <sys/queue.h>
28#endif
29
pbrookfaf07962007-11-11 02:51:17 +000030#include "qemu-common.h"
pbrook87ecb682007-11-17 17:14:51 +000031#include "console.h"
bellardea2384d2004-08-01 21:59:26 +000032#include "block_int.h"
bellardfc01f7e2003-06-30 10:03:06 +000033
bellard7674e7b2005-04-26 21:59:26 +000034#ifdef _BSD
35#include <sys/types.h>
36#include <sys/stat.h>
37#include <sys/ioctl.h>
bellard7674e7b2005-04-26 21:59:26 +000038#include <sys/disk.h>
39#endif
40
bellard83f64092006-08-01 16:21:11 +000041#define SECTOR_BITS 9
42#define SECTOR_SIZE (1 << SECTOR_BITS)
bellard3b0d4f62005-10-30 18:30:10 +000043
bellard90765422006-08-07 19:10:16 +000044typedef struct BlockDriverAIOCBSync {
45 BlockDriverAIOCB common;
46 QEMUBH *bh;
47 int ret;
48} BlockDriverAIOCBSync;
49
pbrookce1a14d2006-08-07 02:38:06 +000050static 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);
bellard83f64092006-08-01 16:21:11 +000056static void bdrv_aio_cancel_em(BlockDriverAIOCB *acb);
ths5fafdf22007-09-16 21:08:06 +000057static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +000058 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);
bellardec530c82006-04-25 22:36:06 +000061
blueswir17ee930d2008-09-17 19:04:14 +000062BlockDriverState *bdrv_first;
63
bellardea2384d2004-08-01 21:59:26 +000064static BlockDriver *first_drv;
65
bellard83f64092006-08-01 16:21:11 +000066int path_is_absolute(const char *path)
67{
68 const char *p;
bellard21664422007-01-07 18:22:37 +000069#ifdef _WIN32
70 /* specific case for names like: "\\.\d:" */
71 if (*path == '/' || *path == '\\')
72 return 1;
73#endif
bellard83f64092006-08-01 16:21:11 +000074 p = strchr(path, ':');
75 if (p)
76 p++;
77 else
78 p = path;
bellard3b9f94e2007-01-07 17:27:07 +000079#ifdef _WIN32
80 return (*p == '/' || *p == '\\');
81#else
82 return (*p == '/');
83#endif
bellard83f64092006-08-01 16:21:11 +000084}
85
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)
92{
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;
bellard3b9f94e2007-01-07 17:27:07 +0000106 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
bellard83f64092006-08-01 16:21:11 +0000115 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);
127 }
128}
129
130
pbrook9596ebb2007-11-18 01:44:38 +0000131static void bdrv_register(BlockDriver *bdrv)
bellardea2384d2004-08-01 21:59:26 +0000132{
pbrookce1a14d2006-08-07 02:38:06 +0000133 if (!bdrv->bdrv_aio_read) {
bellard83f64092006-08-01 16:21:11 +0000134 /* add AIO emulation layer */
bellard83f64092006-08-01 16:21:11 +0000135 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;
bellard90765422006-08-07 19:10:16 +0000138 bdrv->aiocb_size = sizeof(BlockDriverAIOCBSync);
bellard83f64092006-08-01 16:21:11 +0000139 } 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 }
bellardea2384d2004-08-01 21:59:26 +0000144 bdrv->next = first_drv;
145 first_drv = bdrv;
146}
bellardb3380822004-03-14 21:38:54 +0000147
148/* create a new block device (by default it is empty) */
149BlockDriverState *bdrv_new(const char *device_name)
bellardfc01f7e2003-06-30 10:03:06 +0000150{
bellardb3380822004-03-14 21:38:54 +0000151 BlockDriverState **pbs, *bs;
152
153 bs = qemu_mallocz(sizeof(BlockDriverState));
bellardb3380822004-03-14 21:38:54 +0000154 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
bellardea2384d2004-08-01 21:59:26 +0000155 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 }
bellardb3380822004-03-14 21:38:54 +0000162 return bs;
163}
164
bellardea2384d2004-08-01 21:59:26 +0000165BlockDriver *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
ths5fafdf22007-09-16 21:08:06 +0000175int bdrv_create(BlockDriver *drv,
bellardea2384d2004-08-01 21:59:26 +0000176 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
bellardd5249392004-08-03 21:14:23 +0000184#ifdef _WIN32
bellard95389c82005-12-18 18:28:15 +0000185void get_tmp_filename(char *filename, int size)
bellardd5249392004-08-03 21:14:23 +0000186{
bellard3b9f94e2007-01-07 17:27:07 +0000187 char temp_dir[MAX_PATH];
ths3b46e622007-09-17 08:09:54 +0000188
bellard3b9f94e2007-01-07 17:27:07 +0000189 GetTempPath(MAX_PATH, temp_dir);
190 GetTempFileName(temp_dir, "qem", 0, filename);
bellardd5249392004-08-03 21:14:23 +0000191}
192#else
bellard95389c82005-12-18 18:28:15 +0000193void get_tmp_filename(char *filename, int size)
bellardea2384d2004-08-01 21:59:26 +0000194{
195 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000196 const char *tmpdir;
bellardd5249392004-08-03 21:14:23 +0000197 /* XXX: race condition possible */
aurel320badc1e2008-03-10 00:05:34 +0000198 tmpdir = getenv("TMPDIR");
199 if (!tmpdir)
200 tmpdir = "/tmp";
201 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
bellardea2384d2004-08-01 21:59:26 +0000202 fd = mkstemp(filename);
203 close(fd);
204}
bellardd5249392004-08-03 21:14:23 +0000205#endif
bellardea2384d2004-08-01 21:59:26 +0000206
bellard19cb3732006-08-19 11:45:59 +0000207#ifdef _WIN32
bellardf45512f2006-08-23 21:40:13 +0000208static 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}
ths3b46e622007-09-17 08:09:54 +0000214
bellard19cb3732006-08-19 11:45:59 +0000215static int is_windows_drive(const char *filename)
216{
ths5fafdf22007-09-16 21:08:06 +0000217 if (is_windows_drive_prefix(filename) &&
bellardf45512f2006-08-23 21:40:13 +0000218 filename[2] == '\0')
bellard19cb3732006-08-19 11:45:59 +0000219 return 1;
220 if (strstart(filename, "\\\\.\\", NULL) ||
221 strstart(filename, "//./", NULL))
222 return 1;
223 return 0;
224}
225#endif
226
bellard83f64092006-08-01 16:21:11 +0000227static BlockDriver *find_protocol(const char *filename)
228{
229 BlockDriver *drv1;
230 char protocol[128];
231 int len;
232 const char *p;
bellard19cb3732006-08-19 11:45:59 +0000233
234#ifdef _WIN32
bellardf45512f2006-08-23 21:40:13 +0000235 if (is_windows_drive(filename) ||
236 is_windows_drive_prefix(filename))
bellard19cb3732006-08-19 11:45:59 +0000237 return &bdrv_raw;
238#endif
bellard83f64092006-08-01 16:21:11 +0000239 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;
bellard83f64092006-08-01 16:21:11 +0000245 memcpy(protocol, filename, len);
246 protocol[len] = '\0';
247 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
ths5fafdf22007-09-16 21:08:06 +0000248 if (drv1->protocol_name &&
bellard83f64092006-08-01 16:21:11 +0000249 !strcmp(drv1->protocol_name, protocol))
250 return drv1;
251 }
252 return NULL;
253}
254
bellard7674e7b2005-04-26 21:59:26 +0000255/* XXX: force raw format if block or character device ? It would
256 simplify the BSD case */
bellardea2384d2004-08-01 21:59:26 +0000257static BlockDriver *find_image_format(const char *filename)
258{
bellard83f64092006-08-01 16:21:11 +0000259 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000260 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000261 uint8_t buf[2048];
262 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000263
bellard19cb3732006-08-19 11:45:59 +0000264 /* 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;
ths5fafdf22007-09-16 21:08:06 +0000274 if (stat(filename, &st) >= 0 &&
bellard19cb3732006-08-19 11:45:59 +0000275 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
276 return &bdrv_host_device;
277 }
278 }
279#endif
ths3b46e622007-09-17 08:09:54 +0000280
bellard83f64092006-08-01 16:21:11 +0000281 drv = find_protocol(filename);
bellard19cb3732006-08-19 11:45:59 +0000282 /* no need to test disk image formats for vvfat */
bellard83f64092006-08-01 16:21:11 +0000283 if (drv == &bdrv_vvfat)
284 return drv;
bellard19cb3732006-08-19 11:45:59 +0000285
bellard83f64092006-08-01 16:21:11 +0000286 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
bellardea2384d2004-08-01 21:59:26 +0000295 score_max = 0;
296 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
bellard83f64092006-08-01 16:21:11 +0000297 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 }
bellardea2384d2004-08-01 21:59:26 +0000303 }
304 }
305 return drv;
306}
307
bellard83f64092006-08-01 16:21:11 +0000308int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000309{
bellard83f64092006-08-01 16:21:11 +0000310 BlockDriverState *bs;
311 int ret;
312
313 bs = bdrv_new("");
bellard83f64092006-08-01 16:21:11 +0000314 ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL);
315 if (ret < 0) {
316 bdrv_delete(bs);
317 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000318 }
aliguori71d07702009-03-03 17:37:16 +0000319 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000320 *pbs = bs;
321 return 0;
bellardea2384d2004-08-01 21:59:26 +0000322}
bellardfc01f7e2003-06-30 10:03:06 +0000323
bellard83f64092006-08-01 16:21:11 +0000324int bdrv_open(BlockDriverState *bs, const char *filename, int flags)
325{
326 return bdrv_open2(bs, filename, flags, NULL);
327}
328
329int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
bellardea2384d2004-08-01 21:59:26 +0000330 BlockDriver *drv)
331{
bellard83f64092006-08-01 16:21:11 +0000332 int ret, open_flags;
thseb5c8512007-02-11 15:06:09 +0000333 char tmp_filename[PATH_MAX];
334 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000335
bellardea2384d2004-08-01 21:59:26 +0000336 bs->read_only = 0;
337 bs->is_temporary = 0;
338 bs->encrypted = 0;
bellard712e7872005-04-28 21:09:32 +0000339
bellard83f64092006-08-01 16:21:11 +0000340 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000341 BlockDriverState *bs1;
342 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000343 int is_protocol = 0;
ths3b46e622007-09-17 08:09:54 +0000344
bellardea2384d2004-08-01 21:59:26 +0000345 /* if snapshot, we create a temporary backing file and open it
346 instead of opening 'filename' directly */
347
348 /* if there is a backing file, use it */
349 bs1 = bdrv_new("");
aliguori51d7c002009-03-05 23:00:29 +0000350 ret = bdrv_open(bs1, filename, 0);
351 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000352 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000353 return ret;
bellardea2384d2004-08-01 21:59:26 +0000354 }
bellard83f64092006-08-01 16:21:11 +0000355 total_size = bdrv_getlength(bs1) >> SECTOR_BITS;
aliguori7c96d462008-09-12 17:54:13 +0000356
357 if (bs1->drv && bs1->drv->protocol_name)
358 is_protocol = 1;
359
bellardea2384d2004-08-01 21:59:26 +0000360 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000361
bellardea2384d2004-08-01 21:59:26 +0000362 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
aliguori7c96d462008-09-12 17:54:13 +0000363
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
aliguori51d7c002009-03-05 23:00:29 +0000371 ret = bdrv_create(&bdrv_qcow2, tmp_filename,
372 total_size, backing_filename, 0);
373 if (ret < 0) {
374 return ret;
bellardea2384d2004-08-01 21:59:26 +0000375 }
376 filename = tmp_filename;
377 bs->is_temporary = 1;
378 }
bellard712e7872005-04-28 21:09:32 +0000379
bellardea2384d2004-08-01 21:59:26 +0000380 pstrcpy(bs->filename, sizeof(bs->filename), filename);
bellard83f64092006-08-01 16:21:11 +0000381 if (flags & BDRV_O_FILE) {
382 drv = find_protocol(filename);
aliguori51d7c002009-03-05 23:00:29 +0000383 } else if (!drv) {
384 drv = find_image_format(filename);
385 }
386 if (!drv) {
387 ret = -ENOENT;
388 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000389 }
390 bs->drv = drv;
391 bs->opaque = qemu_mallocz(drv->instance_size);
bellard83f64092006-08-01 16:21:11 +0000392 /* Note: for compatibility, we open disk image files as RDWR, and
393 RDONLY as fallback */
394 if (!(flags & BDRV_O_FILE))
aliguori9f7965c2008-10-14 14:42:54 +0000395 open_flags = BDRV_O_RDWR | (flags & BDRV_O_CACHE_MASK);
bellard83f64092006-08-01 16:21:11 +0000396 else
397 open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
398 ret = drv->bdrv_open(bs, filename, open_flags);
aurel32a0a83532008-10-13 21:08:34 +0000399 if ((ret == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) {
aliguori9f7965c2008-10-14 14:42:54 +0000400 ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR);
bellard83f64092006-08-01 16:21:11 +0000401 bs->read_only = 1;
402 }
bellardea2384d2004-08-01 21:59:26 +0000403 if (ret < 0) {
404 qemu_free(bs->opaque);
bellard6b21b972006-08-23 21:14:37 +0000405 bs->opaque = NULL;
406 bs->drv = NULL;
aliguori51d7c002009-03-05 23:00:29 +0000407 unlink_and_fail:
408 if (bs->is_temporary)
409 unlink(filename);
bellard83f64092006-08-01 16:21:11 +0000410 return ret;
bellardea2384d2004-08-01 21:59:26 +0000411 }
bellardd15a7712006-08-06 13:35:09 +0000412 if (drv->bdrv_getlength) {
413 bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
414 }
bellardea2384d2004-08-01 21:59:26 +0000415#ifndef _WIN32
416 if (bs->is_temporary) {
417 unlink(filename);
418 }
419#endif
bellard83f64092006-08-01 16:21:11 +0000420 if (bs->backing_file[0] != '\0') {
bellardea2384d2004-08-01 21:59:26 +0000421 /* if there is a backing file, use it */
422 bs->backing_hd = bdrv_new("");
bellard83f64092006-08-01 16:21:11 +0000423 path_combine(backing_filename, sizeof(backing_filename),
424 filename, bs->backing_file);
aliguori51d7c002009-03-05 23:00:29 +0000425 ret = bdrv_open(bs->backing_hd, backing_filename, open_flags);
426 if (ret < 0) {
427 bdrv_close(bs);
428 return ret;
429 }
bellardea2384d2004-08-01 21:59:26 +0000430 }
431
bellardb3380822004-03-14 21:38:54 +0000432 /* call the change callback */
bellard19cb3732006-08-19 11:45:59 +0000433 bs->media_changed = 1;
bellardb3380822004-03-14 21:38:54 +0000434 if (bs->change_cb)
435 bs->change_cb(bs->change_opaque);
436
437 return 0;
bellardfc01f7e2003-06-30 10:03:06 +0000438}
439
440void bdrv_close(BlockDriverState *bs)
441{
bellard19cb3732006-08-19 11:45:59 +0000442 if (bs->drv) {
bellardea2384d2004-08-01 21:59:26 +0000443 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 }
bellard67b915a2004-03-31 23:37:16 +0000451#endif
bellardea2384d2004-08-01 21:59:26 +0000452 bs->opaque = NULL;
453 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +0000454
455 /* call the change callback */
bellard19cb3732006-08-19 11:45:59 +0000456 bs->media_changed = 1;
bellardb3380822004-03-14 21:38:54 +0000457 if (bs->change_cb)
458 bs->change_cb(bs->change_opaque);
459 }
460}
461
462void bdrv_delete(BlockDriverState *bs)
463{
aurel3234c6f052008-04-08 19:51:21 +0000464 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
bellardb3380822004-03-14 21:38:54 +0000472 bdrv_close(bs);
473 qemu_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000474}
475
bellard33e39632003-07-06 17:15:21 +0000476/* commit COW file into the raw image */
477int bdrv_commit(BlockDriverState *bs)
478{
bellard19cb3732006-08-19 11:45:59 +0000479 BlockDriver *drv = bs->drv;
bellard83f64092006-08-01 16:21:11 +0000480 int64_t i, total_sectors;
bellardea2384d2004-08-01 21:59:26 +0000481 int n, j;
482 unsigned char sector[512];
bellard33e39632003-07-06 17:15:21 +0000483
bellard19cb3732006-08-19 11:45:59 +0000484 if (!drv)
485 return -ENOMEDIUM;
bellard33e39632003-07-06 17:15:21 +0000486
487 if (bs->read_only) {
bellardea2384d2004-08-01 21:59:26 +0000488 return -EACCES;
bellard33e39632003-07-06 17:15:21 +0000489 }
490
bellardea2384d2004-08-01 21:59:26 +0000491 if (!bs->backing_hd) {
492 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +0000493 }
bellardea2384d2004-08-01 21:59:26 +0000494
bellard83f64092006-08-01 16:21:11 +0000495 total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
496 for (i = 0; i < total_sectors;) {
bellard19cb3732006-08-19 11:45:59 +0000497 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
bellardea2384d2004-08-01 21:59:26 +0000498 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++;
507 }
508 } else {
509 i += n;
510 }
511 }
bellard95389c82005-12-18 18:28:15 +0000512
bellard19cb3732006-08-19 11:45:59 +0000513 if (drv->bdrv_make_empty)
514 return drv->bdrv_make_empty(bs);
bellard95389c82005-12-18 18:28:15 +0000515
bellard33e39632003-07-06 17:15:21 +0000516 return 0;
517}
518
aliguori71d07702009-03-03 17:37:16 +0000519static 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
bellard19cb3732006-08-19 11:45:59 +0000552/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +0000553int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000554 uint8_t *buf, int nb_sectors)
555{
bellardea2384d2004-08-01 21:59:26 +0000556 BlockDriver *drv = bs->drv;
557
bellard19cb3732006-08-19 11:45:59 +0000558 if (!drv)
559 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000560 if (bdrv_check_request(bs, sector_num, nb_sectors))
561 return -EIO;
bellardb3380822004-03-14 21:38:54 +0000562
bellard83f64092006-08-01 16:21:11 +0000563 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)
bellard19cb3732006-08-19 11:45:59 +0000570 return -EINVAL;
thsa36e69d2007-12-02 05:18:19 +0000571 else {
572 bs->rd_bytes += (unsigned) len;
573 bs->rd_ops ++;
bellard83f64092006-08-01 16:21:11 +0000574 return 0;
thsa36e69d2007-12-02 05:18:19 +0000575 }
bellard83f64092006-08-01 16:21:11 +0000576 } else {
577 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
578 }
bellardfc01f7e2003-06-30 10:03:06 +0000579}
580
ths5fafdf22007-09-16 21:08:06 +0000581/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +0000582 -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*/
ths5fafdf22007-09-16 21:08:06 +0000587int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000588 const uint8_t *buf, int nb_sectors)
589{
bellard83f64092006-08-01 16:21:11 +0000590 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +0000591 if (!bs->drv)
592 return -ENOMEDIUM;
bellard0849bf02003-06-30 23:17:31 +0000593 if (bs->read_only)
bellard19cb3732006-08-19 11:45:59 +0000594 return -EACCES;
aliguori71d07702009-03-03 17:37:16 +0000595 if (bdrv_check_request(bs, sector_num, nb_sectors))
596 return -EIO;
597
bellard83f64092006-08-01 16:21:11 +0000598 if (drv->bdrv_pwrite) {
aliguori42fb2802009-01-15 20:43:39 +0000599 int ret, len, count = 0;
bellard83f64092006-08-01 16:21:11 +0000600 len = nb_sectors * 512;
aliguori42fb2802009-01-15 20:43:39 +0000601 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;
bellard83f64092006-08-01 16:21:11 +0000613 }
aliguori42fb2802009-01-15 20:43:39 +0000614 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
bellard83f64092006-08-01 16:21:11 +0000615}
616
ths5fafdf22007-09-16 21:08:06 +0000617static int bdrv_pread_em(BlockDriverState *bs, int64_t offset,
bellardfaea38e2006-08-05 21:31:00 +0000618 uint8_t *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000619{
bellard83f64092006-08-01 16:21:11 +0000620 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
ths5fafdf22007-09-16 21:08:06 +0000661static int bdrv_pwrite_em(BlockDriverState *bs, int64_t offset,
bellardfaea38e2006-08-05 21:31:00 +0000662 const uint8_t *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000663{
bellard83f64092006-08-01 16:21:11 +0000664 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}
bellard83f64092006-08-01 16:21:11 +0000708
709/**
ths5fafdf22007-09-16 21:08:06 +0000710 * Read with byte offsets (needed only for file protocols)
bellard83f64092006-08-01 16:21:11 +0000711 */
ths5fafdf22007-09-16 21:08:06 +0000712int bdrv_pread(BlockDriverState *bs, int64_t offset,
bellard83f64092006-08-01 16:21:11 +0000713 void *buf1, int count1)
714{
715 BlockDriver *drv = bs->drv;
716
717 if (!drv)
bellard19cb3732006-08-19 11:45:59 +0000718 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000719 if (bdrv_check_byte_request(bs, offset, count1))
720 return -EIO;
721
bellard83f64092006-08-01 16:21:11 +0000722 if (!drv->bdrv_pread)
bellardfaea38e2006-08-05 21:31:00 +0000723 return bdrv_pread_em(bs, offset, buf1, count1);
bellard83f64092006-08-01 16:21:11 +0000724 return drv->bdrv_pread(bs, offset, buf1, count1);
725}
726
ths5fafdf22007-09-16 21:08:06 +0000727/**
728 * Write with byte offsets (needed only for file protocols)
bellard83f64092006-08-01 16:21:11 +0000729 */
ths5fafdf22007-09-16 21:08:06 +0000730int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
bellard83f64092006-08-01 16:21:11 +0000731 const void *buf1, int count1)
732{
733 BlockDriver *drv = bs->drv;
734
735 if (!drv)
bellard19cb3732006-08-19 11:45:59 +0000736 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000737 if (bdrv_check_byte_request(bs, offset, count1))
738 return -EIO;
739
bellard83f64092006-08-01 16:21:11 +0000740 if (!drv->bdrv_pwrite)
bellardfaea38e2006-08-05 21:31:00 +0000741 return bdrv_pwrite_em(bs, offset, buf1, count1);
bellard83f64092006-08-01 16:21:11 +0000742 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)
bellard19cb3732006-08-19 11:45:59 +0000752 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +0000753 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)
bellard19cb3732006-08-19 11:45:59 +0000765 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +0000766 if (!drv->bdrv_getlength) {
767 /* legacy mode */
768 return bs->total_sectors * SECTOR_SIZE;
769 }
770 return drv->bdrv_getlength(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000771}
772
bellard19cb3732006-08-19 11:45:59 +0000773/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +0000774void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +0000775{
bellard19cb3732006-08-19 11:45:59 +0000776 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;
bellardfc01f7e2003-06-30 10:03:06 +0000783}
bellardcf989512004-02-16 21:56:36 +0000784
aliguorif3d54fc2008-11-25 21:50:24 +0000785struct 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;
blueswir1a38131b2008-12-05 17:56:40 +0000806 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +0000807
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;
blueswir1a38131b2008-12-05 17:56:40 +0000846 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +0000847
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
ths5fafdf22007-09-16 21:08:06 +0000901void bdrv_set_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000902 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
bellard46d47672004-11-16 01:45:27 +0000916void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
917{
918 bs->translation = translation;
919}
920
ths5fafdf22007-09-16 21:08:06 +0000921void bdrv_get_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000922 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
bellard46d47672004-11-16 01:45:27 +0000934int bdrv_get_translation_hint(BlockDriverState *bs)
935{
936 return bs->translation;
937}
938
bellardb3380822004-03-14 21:38:54 +0000939int 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
ths985a03b2007-12-24 16:10:43 +0000949int bdrv_is_sg(BlockDriverState *bs)
950{
951 return bs->sg;
952}
953
bellard19cb3732006-08-19 11:45:59 +0000954/* XXX: no longer used */
ths5fafdf22007-09-16 21:08:06 +0000955void bdrv_set_change_cb(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000956 void (*change_cb)(void *opaque), void *opaque)
957{
958 bs->change_cb = change_cb;
959 bs->change_opaque = opaque;
960}
961
bellardea2384d2004-08-01 21:59:26 +0000962int 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{
bellard19cb3732006-08-19 11:45:59 +0000986 if (!bs->drv) {
bellardea2384d2004-08-01 21:59:26 +0000987 buf[0] = '\0';
988 } else {
989 pstrcpy(buf, buf_size, bs->drv->format_name);
990 }
991}
992
ths5fafdf22007-09-16 21:08:06 +0000993void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +0000994 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
bellardb3380822004-03-14 21:38:54 +00001003BlockDriverState *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
aliguori51de9762009-03-05 23:00:43 +00001014void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +00001015{
1016 BlockDriverState *bs;
1017
1018 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
aliguori51de9762009-03-05 23:00:43 +00001019 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +00001020 }
1021}
1022
bellardea2384d2004-08-01 21:59:26 +00001023const char *bdrv_get_device_name(BlockDriverState *bs)
1024{
1025 return bs->device_name;
1026}
1027
pbrook7a6cba62006-06-04 11:39:07 +00001028void 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
aliguoric6ca28d2008-10-06 13:55:43 +00001036void 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
thsf58c7b32008-06-05 21:53:49 +00001046/*
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
bellardb3380822004-03-14 21:38:54 +00001073void 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 }
bellard19cb3732006-08-19 11:45:59 +00001095 if (bs->drv) {
thsfef30742006-12-22 14:11:32 +00001096 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 }
bellardb3380822004-03-14 21:38:54 +00001102 term_printf(" ro=%d", bs->read_only);
bellardea2384d2004-08-01 21:59:26 +00001103 term_printf(" drv=%s", bs->drv->format_name);
1104 if (bs->encrypted)
1105 term_printf(" encrypted");
bellardb3380822004-03-14 21:38:54 +00001106 } else {
1107 term_printf(" [not inserted]");
1108 }
1109 term_printf("\n");
1110 }
1111}
thsa36e69d2007-12-02 05:18:19 +00001112
1113/* The "info blockstats" command. */
1114void bdrv_info_stats (void)
1115{
1116 BlockDriverState *bs;
aliguoria7cbfae2009-01-22 18:57:30 +00001117 BlockDriverInfo bdi;
thsa36e69d2007-12-02 05:18:19 +00001118
1119 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
1120 term_printf ("%s:"
1121 " rd_bytes=%" PRIu64
1122 " wr_bytes=%" PRIu64
1123 " rd_operations=%" PRIu64
1124 " wr_operations=%" PRIu64
aliguoria7cbfae2009-01-22 18:57:30 +00001125 ,
thsa36e69d2007-12-02 05:18:19 +00001126 bs->device_name,
1127 bs->rd_bytes, bs->wr_bytes,
1128 bs->rd_ops, bs->wr_ops);
aliguoria7cbfae2009-01-22 18:57:30 +00001129 if (bdrv_get_info(bs, &bdi) == 0)
aliguori19875302009-01-22 18:57:34 +00001130 term_printf(" high=%" PRId64
1131 " bytes_free=%" PRId64,
1132 bdi.highest_alloc, bdi.num_free_bytes);
aliguoria7cbfae2009-01-22 18:57:30 +00001133 term_printf("\n");
thsa36e69d2007-12-02 05:18:19 +00001134 }
1135}
bellardea2384d2004-08-01 21:59:26 +00001136
aliguori045df332009-03-05 23:00:48 +00001137const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1138{
1139 if (bs->backing_hd && bs->backing_hd->encrypted)
1140 return bs->backing_file;
1141 else if (bs->encrypted)
1142 return bs->filename;
1143 else
1144 return NULL;
1145}
1146
ths5fafdf22007-09-16 21:08:06 +00001147void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00001148 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00001149{
bellard83f64092006-08-01 16:21:11 +00001150 if (!bs->backing_hd) {
1151 pstrcpy(filename, filename_size, "");
1152 } else {
1153 pstrcpy(filename, filename_size, bs->backing_file);
1154 }
bellardea2384d2004-08-01 21:59:26 +00001155}
1156
ths5fafdf22007-09-16 21:08:06 +00001157int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00001158 const uint8_t *buf, int nb_sectors)
1159{
1160 BlockDriver *drv = bs->drv;
1161 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001162 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001163 if (!drv->bdrv_write_compressed)
1164 return -ENOTSUP;
1165 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1166}
ths3b46e622007-09-17 08:09:54 +00001167
bellardfaea38e2006-08-05 21:31:00 +00001168int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1169{
1170 BlockDriver *drv = bs->drv;
1171 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001172 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001173 if (!drv->bdrv_get_info)
1174 return -ENOTSUP;
1175 memset(bdi, 0, sizeof(*bdi));
1176 return drv->bdrv_get_info(bs, bdi);
1177}
1178
1179/**************************************************************/
1180/* handling of snapshots */
1181
ths5fafdf22007-09-16 21:08:06 +00001182int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001183 QEMUSnapshotInfo *sn_info)
1184{
1185 BlockDriver *drv = bs->drv;
1186 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001187 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001188 if (!drv->bdrv_snapshot_create)
1189 return -ENOTSUP;
1190 return drv->bdrv_snapshot_create(bs, sn_info);
1191}
1192
ths5fafdf22007-09-16 21:08:06 +00001193int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001194 const char *snapshot_id)
1195{
1196 BlockDriver *drv = bs->drv;
1197 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001198 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001199 if (!drv->bdrv_snapshot_goto)
1200 return -ENOTSUP;
1201 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1202}
1203
1204int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1205{
1206 BlockDriver *drv = bs->drv;
1207 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001208 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001209 if (!drv->bdrv_snapshot_delete)
1210 return -ENOTSUP;
1211 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1212}
1213
ths5fafdf22007-09-16 21:08:06 +00001214int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001215 QEMUSnapshotInfo **psn_info)
1216{
1217 BlockDriver *drv = bs->drv;
1218 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001219 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001220 if (!drv->bdrv_snapshot_list)
1221 return -ENOTSUP;
1222 return drv->bdrv_snapshot_list(bs, psn_info);
1223}
1224
1225#define NB_SUFFIXES 4
1226
1227char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1228{
1229 static const char suffixes[NB_SUFFIXES] = "KMGT";
1230 int64_t base;
1231 int i;
1232
1233 if (size <= 999) {
1234 snprintf(buf, buf_size, "%" PRId64, size);
1235 } else {
1236 base = 1024;
1237 for(i = 0; i < NB_SUFFIXES; i++) {
1238 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00001239 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00001240 (double)size / base,
1241 suffixes[i]);
1242 break;
1243 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00001244 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00001245 ((size + (base >> 1)) / base),
1246 suffixes[i]);
1247 break;
1248 }
1249 base = base * 1024;
1250 }
1251 }
1252 return buf;
1253}
1254
1255char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1256{
1257 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00001258#ifdef _WIN32
1259 struct tm *ptm;
1260#else
bellardfaea38e2006-08-05 21:31:00 +00001261 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00001262#endif
bellardfaea38e2006-08-05 21:31:00 +00001263 time_t ti;
1264 int64_t secs;
1265
1266 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00001267 snprintf(buf, buf_size,
1268 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001269 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1270 } else {
1271 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00001272#ifdef _WIN32
1273 ptm = localtime(&ti);
1274 strftime(date_buf, sizeof(date_buf),
1275 "%Y-%m-%d %H:%M:%S", ptm);
1276#else
bellardfaea38e2006-08-05 21:31:00 +00001277 localtime_r(&ti, &tm);
1278 strftime(date_buf, sizeof(date_buf),
1279 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00001280#endif
bellardfaea38e2006-08-05 21:31:00 +00001281 secs = sn->vm_clock_nsec / 1000000000;
1282 snprintf(clock_buf, sizeof(clock_buf),
1283 "%02d:%02d:%02d.%03d",
1284 (int)(secs / 3600),
1285 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00001286 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00001287 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1288 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00001289 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001290 sn->id_str, sn->name,
1291 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1292 date_buf,
1293 clock_buf);
1294 }
1295 return buf;
1296}
1297
bellardea2384d2004-08-01 21:59:26 +00001298
bellard83f64092006-08-01 16:21:11 +00001299/**************************************************************/
1300/* async I/Os */
1301
aliguori3b69e4b2009-01-22 16:59:24 +00001302typedef struct VectorTranslationState {
1303 QEMUIOVector *iov;
1304 uint8_t *bounce;
1305 int is_write;
1306 BlockDriverAIOCB *aiocb;
1307 BlockDriverAIOCB *this_aiocb;
1308} VectorTranslationState;
1309
1310static void bdrv_aio_rw_vector_cb(void *opaque, int ret)
1311{
1312 VectorTranslationState *s = opaque;
1313
1314 if (!s->is_write) {
aliguori249aa742009-01-26 17:17:52 +00001315 qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size);
aliguori3b69e4b2009-01-22 16:59:24 +00001316 }
aurel32d905dba2009-03-03 06:28:26 +00001317 qemu_vfree(s->bounce);
aliguori3b69e4b2009-01-22 16:59:24 +00001318 s->this_aiocb->cb(s->this_aiocb->opaque, ret);
1319 qemu_aio_release(s->this_aiocb);
1320}
1321
1322static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
1323 int64_t sector_num,
1324 QEMUIOVector *iov,
1325 int nb_sectors,
1326 BlockDriverCompletionFunc *cb,
1327 void *opaque,
1328 int is_write)
1329
1330{
1331 VectorTranslationState *s = qemu_mallocz(sizeof(*s));
1332 BlockDriverAIOCB *aiocb = qemu_aio_get(bs, cb, opaque);
1333
1334 s->this_aiocb = aiocb;
1335 s->iov = iov;
1336 s->bounce = qemu_memalign(512, nb_sectors * 512);
1337 s->is_write = is_write;
1338 if (is_write) {
1339 qemu_iovec_to_buffer(s->iov, s->bounce);
1340 s->aiocb = bdrv_aio_write(bs, sector_num, s->bounce, nb_sectors,
1341 bdrv_aio_rw_vector_cb, s);
1342 } else {
1343 s->aiocb = bdrv_aio_read(bs, sector_num, s->bounce, nb_sectors,
1344 bdrv_aio_rw_vector_cb, s);
1345 }
1346 return aiocb;
1347}
1348
1349BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1350 QEMUIOVector *iov, int nb_sectors,
1351 BlockDriverCompletionFunc *cb, void *opaque)
1352{
aliguori71d07702009-03-03 17:37:16 +00001353 if (bdrv_check_request(bs, sector_num, nb_sectors))
1354 return NULL;
1355
aliguori3b69e4b2009-01-22 16:59:24 +00001356 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1357 cb, opaque, 0);
1358}
1359
1360BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1361 QEMUIOVector *iov, int nb_sectors,
1362 BlockDriverCompletionFunc *cb, void *opaque)
1363{
aliguori71d07702009-03-03 17:37:16 +00001364 if (bdrv_check_request(bs, sector_num, nb_sectors))
1365 return NULL;
1366
aliguori3b69e4b2009-01-22 16:59:24 +00001367 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1368 cb, opaque, 1);
1369}
1370
pbrookce1a14d2006-08-07 02:38:06 +00001371BlockDriverAIOCB *bdrv_aio_read(BlockDriverState *bs, int64_t sector_num,
1372 uint8_t *buf, int nb_sectors,
1373 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001374{
1375 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001376 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001377
bellard19cb3732006-08-19 11:45:59 +00001378 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001379 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001380 if (bdrv_check_request(bs, sector_num, nb_sectors))
1381 return NULL;
ths3b46e622007-09-17 08:09:54 +00001382
thsa36e69d2007-12-02 05:18:19 +00001383 ret = drv->bdrv_aio_read(bs, sector_num, buf, nb_sectors, cb, opaque);
1384
1385 if (ret) {
1386 /* Update stats even though technically transfer has not happened. */
1387 bs->rd_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1388 bs->rd_ops ++;
1389 }
1390
1391 return ret;
bellard83f64092006-08-01 16:21:11 +00001392}
1393
pbrookce1a14d2006-08-07 02:38:06 +00001394BlockDriverAIOCB *bdrv_aio_write(BlockDriverState *bs, int64_t sector_num,
1395 const uint8_t *buf, int nb_sectors,
1396 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001397{
bellard83f64092006-08-01 16:21:11 +00001398 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001399 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001400
bellard19cb3732006-08-19 11:45:59 +00001401 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001402 return NULL;
bellard83f64092006-08-01 16:21:11 +00001403 if (bs->read_only)
pbrookce1a14d2006-08-07 02:38:06 +00001404 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001405 if (bdrv_check_request(bs, sector_num, nb_sectors))
1406 return NULL;
bellard83f64092006-08-01 16:21:11 +00001407
thsa36e69d2007-12-02 05:18:19 +00001408 ret = drv->bdrv_aio_write(bs, sector_num, buf, nb_sectors, cb, opaque);
1409
1410 if (ret) {
1411 /* Update stats even though technically transfer has not happened. */
1412 bs->wr_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1413 bs->wr_ops ++;
1414 }
1415
1416 return ret;
bellard83f64092006-08-01 16:21:11 +00001417}
1418
1419void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00001420{
1421 BlockDriver *drv = acb->bs->drv;
bellard83f64092006-08-01 16:21:11 +00001422
aliguori3b69e4b2009-01-22 16:59:24 +00001423 if (acb->cb == bdrv_aio_rw_vector_cb) {
1424 VectorTranslationState *s = acb->opaque;
1425 acb = s->aiocb;
1426 }
1427
bellard83f64092006-08-01 16:21:11 +00001428 drv->bdrv_aio_cancel(acb);
bellard83f64092006-08-01 16:21:11 +00001429}
1430
pbrookce1a14d2006-08-07 02:38:06 +00001431
bellard83f64092006-08-01 16:21:11 +00001432/**************************************************************/
1433/* async block device emulation */
1434
bellard83f64092006-08-01 16:21:11 +00001435static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00001436{
pbrookce1a14d2006-08-07 02:38:06 +00001437 BlockDriverAIOCBSync *acb = opaque;
1438 acb->common.cb(acb->common.opaque, acb->ret);
1439 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00001440}
bellardbeac80c2006-06-26 20:08:57 +00001441
pbrookce1a14d2006-08-07 02:38:06 +00001442static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs,
1443 int64_t sector_num, uint8_t *buf, int nb_sectors,
1444 BlockDriverCompletionFunc *cb, void *opaque)
bellardea2384d2004-08-01 21:59:26 +00001445{
pbrookce1a14d2006-08-07 02:38:06 +00001446 BlockDriverAIOCBSync *acb;
bellard83f64092006-08-01 16:21:11 +00001447 int ret;
pbrookce1a14d2006-08-07 02:38:06 +00001448
1449 acb = qemu_aio_get(bs, cb, opaque);
1450 if (!acb->bh)
1451 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1452 ret = bdrv_read(bs, sector_num, buf, nb_sectors);
1453 acb->ret = ret;
1454 qemu_bh_schedule(acb->bh);
1455 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00001456}
1457
pbrookce1a14d2006-08-07 02:38:06 +00001458static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs,
1459 int64_t sector_num, const uint8_t *buf, int nb_sectors,
1460 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001461{
pbrookce1a14d2006-08-07 02:38:06 +00001462 BlockDriverAIOCBSync *acb;
bellard83f64092006-08-01 16:21:11 +00001463 int ret;
pbrookce1a14d2006-08-07 02:38:06 +00001464
1465 acb = qemu_aio_get(bs, cb, opaque);
1466 if (!acb->bh)
1467 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1468 ret = bdrv_write(bs, sector_num, buf, nb_sectors);
1469 acb->ret = ret;
1470 qemu_bh_schedule(acb->bh);
1471 return &acb->common;
bellard83f64092006-08-01 16:21:11 +00001472}
1473
pbrookce1a14d2006-08-07 02:38:06 +00001474static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
bellard83f64092006-08-01 16:21:11 +00001475{
pbrookce1a14d2006-08-07 02:38:06 +00001476 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
1477 qemu_bh_cancel(acb->bh);
1478 qemu_aio_release(acb);
bellard83f64092006-08-01 16:21:11 +00001479}
bellard83f64092006-08-01 16:21:11 +00001480
1481/**************************************************************/
1482/* sync block device emulation */
1483
1484static void bdrv_rw_em_cb(void *opaque, int ret)
1485{
1486 *(int *)opaque = ret;
1487}
1488
1489#define NOT_DONE 0x7fffffff
1490
ths5fafdf22007-09-16 21:08:06 +00001491static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +00001492 uint8_t *buf, int nb_sectors)
1493{
pbrookce1a14d2006-08-07 02:38:06 +00001494 int async_ret;
1495 BlockDriverAIOCB *acb;
bellard83f64092006-08-01 16:21:11 +00001496
bellard83f64092006-08-01 16:21:11 +00001497 async_ret = NOT_DONE;
ths5fafdf22007-09-16 21:08:06 +00001498 acb = bdrv_aio_read(bs, sector_num, buf, nb_sectors,
bellard83f64092006-08-01 16:21:11 +00001499 bdrv_rw_em_cb, &async_ret);
aliguoribaf35cb2008-09-10 15:45:19 +00001500 if (acb == NULL)
pbrookce1a14d2006-08-07 02:38:06 +00001501 return -1;
aliguoribaf35cb2008-09-10 15:45:19 +00001502
bellard83f64092006-08-01 16:21:11 +00001503 while (async_ret == NOT_DONE) {
1504 qemu_aio_wait();
1505 }
aliguoribaf35cb2008-09-10 15:45:19 +00001506
bellard83f64092006-08-01 16:21:11 +00001507 return async_ret;
1508}
1509
1510static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
1511 const uint8_t *buf, int nb_sectors)
1512{
pbrookce1a14d2006-08-07 02:38:06 +00001513 int async_ret;
1514 BlockDriverAIOCB *acb;
bellard83f64092006-08-01 16:21:11 +00001515
bellard83f64092006-08-01 16:21:11 +00001516 async_ret = NOT_DONE;
ths5fafdf22007-09-16 21:08:06 +00001517 acb = bdrv_aio_write(bs, sector_num, buf, nb_sectors,
bellard83f64092006-08-01 16:21:11 +00001518 bdrv_rw_em_cb, &async_ret);
aliguoribaf35cb2008-09-10 15:45:19 +00001519 if (acb == NULL)
pbrookce1a14d2006-08-07 02:38:06 +00001520 return -1;
bellard83f64092006-08-01 16:21:11 +00001521 while (async_ret == NOT_DONE) {
1522 qemu_aio_wait();
1523 }
bellard83f64092006-08-01 16:21:11 +00001524 return async_ret;
1525}
bellardea2384d2004-08-01 21:59:26 +00001526
1527void bdrv_init(void)
1528{
1529 bdrv_register(&bdrv_raw);
bellard19cb3732006-08-19 11:45:59 +00001530 bdrv_register(&bdrv_host_device);
bellardea2384d2004-08-01 21:59:26 +00001531#ifndef _WIN32
1532 bdrv_register(&bdrv_cow);
1533#endif
1534 bdrv_register(&bdrv_qcow);
1535 bdrv_register(&bdrv_vmdk);
bellard3c565212004-09-29 21:29:14 +00001536 bdrv_register(&bdrv_cloop);
bellard585d0ed2004-12-12 11:24:44 +00001537 bdrv_register(&bdrv_dmg);
bellarda8753c32005-04-26 21:34:00 +00001538 bdrv_register(&bdrv_bochs);
bellard6a0f9e82005-04-27 20:17:58 +00001539 bdrv_register(&bdrv_vpc);
bellard712e7872005-04-28 21:09:32 +00001540 bdrv_register(&bdrv_vvfat);
bellardfaea38e2006-08-05 21:31:00 +00001541 bdrv_register(&bdrv_qcow2);
ths6ada7452007-07-31 23:28:53 +00001542 bdrv_register(&bdrv_parallels);
ths75818252008-07-03 13:41:03 +00001543 bdrv_register(&bdrv_nbd);
bellardea2384d2004-08-01 21:59:26 +00001544}
pbrookce1a14d2006-08-07 02:38:06 +00001545
1546void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb,
1547 void *opaque)
1548{
1549 BlockDriver *drv;
1550 BlockDriverAIOCB *acb;
1551
1552 drv = bs->drv;
1553 if (drv->free_aiocb) {
1554 acb = drv->free_aiocb;
1555 drv->free_aiocb = acb->next;
1556 } else {
1557 acb = qemu_mallocz(drv->aiocb_size);
pbrookce1a14d2006-08-07 02:38:06 +00001558 }
1559 acb->bs = bs;
1560 acb->cb = cb;
1561 acb->opaque = opaque;
1562 return acb;
1563}
1564
1565void qemu_aio_release(void *p)
1566{
1567 BlockDriverAIOCB *acb = p;
1568 BlockDriver *drv = acb->bs->drv;
1569 acb->next = drv->free_aiocb;
1570 drv->free_aiocb = acb;
1571}
bellard19cb3732006-08-19 11:45:59 +00001572
1573/**************************************************************/
1574/* removable device support */
1575
1576/**
1577 * Return TRUE if the media is present
1578 */
1579int bdrv_is_inserted(BlockDriverState *bs)
1580{
1581 BlockDriver *drv = bs->drv;
1582 int ret;
1583 if (!drv)
1584 return 0;
1585 if (!drv->bdrv_is_inserted)
1586 return 1;
1587 ret = drv->bdrv_is_inserted(bs);
1588 return ret;
1589}
1590
1591/**
1592 * Return TRUE if the media changed since the last call to this
ths5fafdf22007-09-16 21:08:06 +00001593 * function. It is currently only used for floppy disks
bellard19cb3732006-08-19 11:45:59 +00001594 */
1595int bdrv_media_changed(BlockDriverState *bs)
1596{
1597 BlockDriver *drv = bs->drv;
1598 int ret;
1599
1600 if (!drv || !drv->bdrv_media_changed)
1601 ret = -ENOTSUP;
1602 else
1603 ret = drv->bdrv_media_changed(bs);
1604 if (ret == -ENOTSUP)
1605 ret = bs->media_changed;
1606 bs->media_changed = 0;
1607 return ret;
1608}
1609
1610/**
1611 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1612 */
1613void bdrv_eject(BlockDriverState *bs, int eject_flag)
1614{
1615 BlockDriver *drv = bs->drv;
1616 int ret;
1617
1618 if (!drv || !drv->bdrv_eject) {
1619 ret = -ENOTSUP;
1620 } else {
1621 ret = drv->bdrv_eject(bs, eject_flag);
1622 }
1623 if (ret == -ENOTSUP) {
1624 if (eject_flag)
1625 bdrv_close(bs);
1626 }
1627}
1628
1629int bdrv_is_locked(BlockDriverState *bs)
1630{
1631 return bs->locked;
1632}
1633
1634/**
1635 * Lock or unlock the media (if it is locked, the user won't be able
1636 * to eject it manually).
1637 */
1638void bdrv_set_locked(BlockDriverState *bs, int locked)
1639{
1640 BlockDriver *drv = bs->drv;
1641
1642 bs->locked = locked;
1643 if (drv && drv->bdrv_set_locked) {
1644 drv->bdrv_set_locked(bs, locked);
1645 }
1646}
ths985a03b2007-12-24 16:10:43 +00001647
1648/* needed for generic scsi interface */
1649
1650int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1651{
1652 BlockDriver *drv = bs->drv;
1653
1654 if (drv && drv->bdrv_ioctl)
1655 return drv->bdrv_ioctl(bs, req, buf);
1656 return -ENOTSUP;
1657}