blob: 135fbe6a301087cde7bc3c9c53093bef9c0711fa [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"
blueswir1179a2c12009-03-08 08:23:32 +000025#ifdef HOST_BSD
blueswir13990d092008-12-05 17:53:21 +000026/* 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"
aliguori376253e2009-03-05 23:01:23 +000031#include "monitor.h"
bellardea2384d2004-08-01 21:59:26 +000032#include "block_int.h"
bellardfc01f7e2003-06-30 10:03:06 +000033
blueswir1179a2c12009-03-08 08:23:32 +000034#ifdef HOST_BSD
bellard7674e7b2005-04-26 21:59:26 +000035#include <sys/types.h>
36#include <sys/stat.h>
37#include <sys/ioctl.h>
blueswir1c5e97232009-03-07 20:06:23 +000038#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000039#include <sys/disk.h>
40#endif
blueswir1c5e97232009-03-07 20:06:23 +000041#endif
bellard7674e7b2005-04-26 21:59:26 +000042
aliguori49dc7682009-03-08 16:26:59 +000043#ifdef _WIN32
44#include <windows.h>
45#endif
46
bellard83f64092006-08-01 16:21:11 +000047#define SECTOR_BITS 9
48#define SECTOR_SIZE (1 << SECTOR_BITS)
bellard3b0d4f62005-10-30 18:30:10 +000049
bellard90765422006-08-07 19:10:16 +000050typedef struct BlockDriverAIOCBSync {
51 BlockDriverAIOCB common;
52 QEMUBH *bh;
53 int ret;
54} BlockDriverAIOCBSync;
55
pbrookce1a14d2006-08-07 02:38:06 +000056static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs,
57 int64_t sector_num, uint8_t *buf, int nb_sectors,
58 BlockDriverCompletionFunc *cb, void *opaque);
59static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs,
60 int64_t sector_num, const uint8_t *buf, int nb_sectors,
61 BlockDriverCompletionFunc *cb, void *opaque);
bellard83f64092006-08-01 16:21:11 +000062static void bdrv_aio_cancel_em(BlockDriverAIOCB *acb);
ths5fafdf22007-09-16 21:08:06 +000063static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +000064 uint8_t *buf, int nb_sectors);
65static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
66 const uint8_t *buf, int nb_sectors);
bellardec530c82006-04-25 22:36:06 +000067
blueswir17ee930d2008-09-17 19:04:14 +000068BlockDriverState *bdrv_first;
69
bellardea2384d2004-08-01 21:59:26 +000070static BlockDriver *first_drv;
71
bellard83f64092006-08-01 16:21:11 +000072int path_is_absolute(const char *path)
73{
74 const char *p;
bellard21664422007-01-07 18:22:37 +000075#ifdef _WIN32
76 /* specific case for names like: "\\.\d:" */
77 if (*path == '/' || *path == '\\')
78 return 1;
79#endif
bellard83f64092006-08-01 16:21:11 +000080 p = strchr(path, ':');
81 if (p)
82 p++;
83 else
84 p = path;
bellard3b9f94e2007-01-07 17:27:07 +000085#ifdef _WIN32
86 return (*p == '/' || *p == '\\');
87#else
88 return (*p == '/');
89#endif
bellard83f64092006-08-01 16:21:11 +000090}
91
92/* if filename is absolute, just copy it to dest. Otherwise, build a
93 path to it by considering it is relative to base_path. URL are
94 supported. */
95void path_combine(char *dest, int dest_size,
96 const char *base_path,
97 const char *filename)
98{
99 const char *p, *p1;
100 int len;
101
102 if (dest_size <= 0)
103 return;
104 if (path_is_absolute(filename)) {
105 pstrcpy(dest, dest_size, filename);
106 } else {
107 p = strchr(base_path, ':');
108 if (p)
109 p++;
110 else
111 p = base_path;
bellard3b9f94e2007-01-07 17:27:07 +0000112 p1 = strrchr(base_path, '/');
113#ifdef _WIN32
114 {
115 const char *p2;
116 p2 = strrchr(base_path, '\\');
117 if (!p1 || p2 > p1)
118 p1 = p2;
119 }
120#endif
bellard83f64092006-08-01 16:21:11 +0000121 if (p1)
122 p1++;
123 else
124 p1 = base_path;
125 if (p1 > p)
126 p = p1;
127 len = p - base_path;
128 if (len > dest_size - 1)
129 len = dest_size - 1;
130 memcpy(dest, base_path, len);
131 dest[len] = '\0';
132 pstrcat(dest, dest_size, filename);
133 }
134}
135
136
pbrook9596ebb2007-11-18 01:44:38 +0000137static void bdrv_register(BlockDriver *bdrv)
bellardea2384d2004-08-01 21:59:26 +0000138{
pbrookce1a14d2006-08-07 02:38:06 +0000139 if (!bdrv->bdrv_aio_read) {
bellard83f64092006-08-01 16:21:11 +0000140 /* add AIO emulation layer */
bellard83f64092006-08-01 16:21:11 +0000141 bdrv->bdrv_aio_read = bdrv_aio_read_em;
142 bdrv->bdrv_aio_write = bdrv_aio_write_em;
143 bdrv->bdrv_aio_cancel = bdrv_aio_cancel_em;
bellard90765422006-08-07 19:10:16 +0000144 bdrv->aiocb_size = sizeof(BlockDriverAIOCBSync);
aliguorieda578e2009-03-12 19:57:16 +0000145 } else if (!bdrv->bdrv_read) {
bellard83f64092006-08-01 16:21:11 +0000146 /* add synchronous IO emulation layer */
147 bdrv->bdrv_read = bdrv_read_em;
148 bdrv->bdrv_write = bdrv_write_em;
149 }
bellardea2384d2004-08-01 21:59:26 +0000150 bdrv->next = first_drv;
151 first_drv = bdrv;
152}
bellardb3380822004-03-14 21:38:54 +0000153
154/* create a new block device (by default it is empty) */
155BlockDriverState *bdrv_new(const char *device_name)
bellardfc01f7e2003-06-30 10:03:06 +0000156{
bellardb3380822004-03-14 21:38:54 +0000157 BlockDriverState **pbs, *bs;
158
159 bs = qemu_mallocz(sizeof(BlockDriverState));
bellardb3380822004-03-14 21:38:54 +0000160 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
bellardea2384d2004-08-01 21:59:26 +0000161 if (device_name[0] != '\0') {
162 /* insert at the end */
163 pbs = &bdrv_first;
164 while (*pbs != NULL)
165 pbs = &(*pbs)->next;
166 *pbs = bs;
167 }
bellardb3380822004-03-14 21:38:54 +0000168 return bs;
169}
170
bellardea2384d2004-08-01 21:59:26 +0000171BlockDriver *bdrv_find_format(const char *format_name)
172{
173 BlockDriver *drv1;
174 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
175 if (!strcmp(drv1->format_name, format_name))
176 return drv1;
177 }
178 return NULL;
179}
180
ths5fafdf22007-09-16 21:08:06 +0000181int bdrv_create(BlockDriver *drv,
bellardea2384d2004-08-01 21:59:26 +0000182 const char *filename, int64_t size_in_sectors,
183 const char *backing_file, int flags)
184{
185 if (!drv->bdrv_create)
186 return -ENOTSUP;
187 return drv->bdrv_create(filename, size_in_sectors, backing_file, flags);
188}
189
bellardd5249392004-08-03 21:14:23 +0000190#ifdef _WIN32
bellard95389c82005-12-18 18:28:15 +0000191void get_tmp_filename(char *filename, int size)
bellardd5249392004-08-03 21:14:23 +0000192{
bellard3b9f94e2007-01-07 17:27:07 +0000193 char temp_dir[MAX_PATH];
ths3b46e622007-09-17 08:09:54 +0000194
bellard3b9f94e2007-01-07 17:27:07 +0000195 GetTempPath(MAX_PATH, temp_dir);
196 GetTempFileName(temp_dir, "qem", 0, filename);
bellardd5249392004-08-03 21:14:23 +0000197}
198#else
bellard95389c82005-12-18 18:28:15 +0000199void get_tmp_filename(char *filename, int size)
bellardea2384d2004-08-01 21:59:26 +0000200{
201 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000202 const char *tmpdir;
bellardd5249392004-08-03 21:14:23 +0000203 /* XXX: race condition possible */
aurel320badc1e2008-03-10 00:05:34 +0000204 tmpdir = getenv("TMPDIR");
205 if (!tmpdir)
206 tmpdir = "/tmp";
207 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
bellardea2384d2004-08-01 21:59:26 +0000208 fd = mkstemp(filename);
209 close(fd);
210}
bellardd5249392004-08-03 21:14:23 +0000211#endif
bellardea2384d2004-08-01 21:59:26 +0000212
bellard19cb3732006-08-19 11:45:59 +0000213#ifdef _WIN32
bellardf45512f2006-08-23 21:40:13 +0000214static int is_windows_drive_prefix(const char *filename)
215{
216 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
217 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
218 filename[1] == ':');
219}
ths3b46e622007-09-17 08:09:54 +0000220
bellard19cb3732006-08-19 11:45:59 +0000221static int is_windows_drive(const char *filename)
222{
ths5fafdf22007-09-16 21:08:06 +0000223 if (is_windows_drive_prefix(filename) &&
bellardf45512f2006-08-23 21:40:13 +0000224 filename[2] == '\0')
bellard19cb3732006-08-19 11:45:59 +0000225 return 1;
226 if (strstart(filename, "\\\\.\\", NULL) ||
227 strstart(filename, "//./", NULL))
228 return 1;
229 return 0;
230}
231#endif
232
bellard83f64092006-08-01 16:21:11 +0000233static BlockDriver *find_protocol(const char *filename)
234{
235 BlockDriver *drv1;
236 char protocol[128];
237 int len;
238 const char *p;
bellard19cb3732006-08-19 11:45:59 +0000239
240#ifdef _WIN32
bellardf45512f2006-08-23 21:40:13 +0000241 if (is_windows_drive(filename) ||
242 is_windows_drive_prefix(filename))
bellard19cb3732006-08-19 11:45:59 +0000243 return &bdrv_raw;
244#endif
bellard83f64092006-08-01 16:21:11 +0000245 p = strchr(filename, ':');
246 if (!p)
247 return &bdrv_raw;
248 len = p - filename;
249 if (len > sizeof(protocol) - 1)
250 len = sizeof(protocol) - 1;
bellard83f64092006-08-01 16:21:11 +0000251 memcpy(protocol, filename, len);
252 protocol[len] = '\0';
253 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
ths5fafdf22007-09-16 21:08:06 +0000254 if (drv1->protocol_name &&
bellard83f64092006-08-01 16:21:11 +0000255 !strcmp(drv1->protocol_name, protocol))
256 return drv1;
257 }
258 return NULL;
259}
260
bellard7674e7b2005-04-26 21:59:26 +0000261/* XXX: force raw format if block or character device ? It would
262 simplify the BSD case */
bellardea2384d2004-08-01 21:59:26 +0000263static BlockDriver *find_image_format(const char *filename)
264{
bellard83f64092006-08-01 16:21:11 +0000265 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000266 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000267 uint8_t buf[2048];
268 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000269
bellard19cb3732006-08-19 11:45:59 +0000270 /* detect host devices. By convention, /dev/cdrom[N] is always
271 recognized as a host CDROM */
272 if (strstart(filename, "/dev/cdrom", NULL))
273 return &bdrv_host_device;
274#ifdef _WIN32
275 if (is_windows_drive(filename))
276 return &bdrv_host_device;
277#else
278 {
279 struct stat st;
ths5fafdf22007-09-16 21:08:06 +0000280 if (stat(filename, &st) >= 0 &&
bellard19cb3732006-08-19 11:45:59 +0000281 (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) {
282 return &bdrv_host_device;
283 }
284 }
285#endif
ths3b46e622007-09-17 08:09:54 +0000286
bellard83f64092006-08-01 16:21:11 +0000287 drv = find_protocol(filename);
bellard19cb3732006-08-19 11:45:59 +0000288 /* no need to test disk image formats for vvfat */
bellard83f64092006-08-01 16:21:11 +0000289 if (drv == &bdrv_vvfat)
290 return drv;
bellard19cb3732006-08-19 11:45:59 +0000291
bellard83f64092006-08-01 16:21:11 +0000292 ret = bdrv_file_open(&bs, filename, BDRV_O_RDONLY);
293 if (ret < 0)
294 return NULL;
295 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
296 bdrv_delete(bs);
297 if (ret < 0) {
298 return NULL;
299 }
300
bellardea2384d2004-08-01 21:59:26 +0000301 score_max = 0;
302 for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) {
bellard83f64092006-08-01 16:21:11 +0000303 if (drv1->bdrv_probe) {
304 score = drv1->bdrv_probe(buf, ret, filename);
305 if (score > score_max) {
306 score_max = score;
307 drv = drv1;
308 }
bellardea2384d2004-08-01 21:59:26 +0000309 }
310 }
311 return drv;
312}
313
bellard83f64092006-08-01 16:21:11 +0000314int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000315{
bellard83f64092006-08-01 16:21:11 +0000316 BlockDriverState *bs;
317 int ret;
318
319 bs = bdrv_new("");
bellard83f64092006-08-01 16:21:11 +0000320 ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL);
321 if (ret < 0) {
322 bdrv_delete(bs);
323 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000324 }
aliguori71d07702009-03-03 17:37:16 +0000325 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000326 *pbs = bs;
327 return 0;
bellardea2384d2004-08-01 21:59:26 +0000328}
bellardfc01f7e2003-06-30 10:03:06 +0000329
bellard83f64092006-08-01 16:21:11 +0000330int bdrv_open(BlockDriverState *bs, const char *filename, int flags)
331{
332 return bdrv_open2(bs, filename, flags, NULL);
333}
334
335int bdrv_open2(BlockDriverState *bs, const char *filename, int flags,
bellardea2384d2004-08-01 21:59:26 +0000336 BlockDriver *drv)
337{
bellard83f64092006-08-01 16:21:11 +0000338 int ret, open_flags;
thseb5c8512007-02-11 15:06:09 +0000339 char tmp_filename[PATH_MAX];
340 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000341
bellardea2384d2004-08-01 21:59:26 +0000342 bs->read_only = 0;
343 bs->is_temporary = 0;
344 bs->encrypted = 0;
aliguoric0f4ce72009-03-05 23:01:01 +0000345 bs->valid_key = 0;
bellard712e7872005-04-28 21:09:32 +0000346
bellard83f64092006-08-01 16:21:11 +0000347 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000348 BlockDriverState *bs1;
349 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000350 int is_protocol = 0;
ths3b46e622007-09-17 08:09:54 +0000351
bellardea2384d2004-08-01 21:59:26 +0000352 /* if snapshot, we create a temporary backing file and open it
353 instead of opening 'filename' directly */
354
355 /* if there is a backing file, use it */
356 bs1 = bdrv_new("");
aliguori51d7c002009-03-05 23:00:29 +0000357 ret = bdrv_open(bs1, filename, 0);
358 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000359 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000360 return ret;
bellardea2384d2004-08-01 21:59:26 +0000361 }
bellard83f64092006-08-01 16:21:11 +0000362 total_size = bdrv_getlength(bs1) >> SECTOR_BITS;
aliguori7c96d462008-09-12 17:54:13 +0000363
364 if (bs1->drv && bs1->drv->protocol_name)
365 is_protocol = 1;
366
bellardea2384d2004-08-01 21:59:26 +0000367 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000368
bellardea2384d2004-08-01 21:59:26 +0000369 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
aliguori7c96d462008-09-12 17:54:13 +0000370
371 /* Real path is meaningless for protocols */
372 if (is_protocol)
373 snprintf(backing_filename, sizeof(backing_filename),
374 "%s", filename);
375 else
376 realpath(filename, backing_filename);
377
aliguori51d7c002009-03-05 23:00:29 +0000378 ret = bdrv_create(&bdrv_qcow2, tmp_filename,
379 total_size, backing_filename, 0);
380 if (ret < 0) {
381 return ret;
bellardea2384d2004-08-01 21:59:26 +0000382 }
383 filename = tmp_filename;
384 bs->is_temporary = 1;
385 }
bellard712e7872005-04-28 21:09:32 +0000386
bellardea2384d2004-08-01 21:59:26 +0000387 pstrcpy(bs->filename, sizeof(bs->filename), filename);
bellard83f64092006-08-01 16:21:11 +0000388 if (flags & BDRV_O_FILE) {
389 drv = find_protocol(filename);
aliguori51d7c002009-03-05 23:00:29 +0000390 } else if (!drv) {
391 drv = find_image_format(filename);
392 }
393 if (!drv) {
394 ret = -ENOENT;
395 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000396 }
397 bs->drv = drv;
398 bs->opaque = qemu_mallocz(drv->instance_size);
bellard83f64092006-08-01 16:21:11 +0000399 /* Note: for compatibility, we open disk image files as RDWR, and
400 RDONLY as fallback */
401 if (!(flags & BDRV_O_FILE))
aliguori9f7965c2008-10-14 14:42:54 +0000402 open_flags = BDRV_O_RDWR | (flags & BDRV_O_CACHE_MASK);
bellard83f64092006-08-01 16:21:11 +0000403 else
404 open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT);
405 ret = drv->bdrv_open(bs, filename, open_flags);
aurel32a0a83532008-10-13 21:08:34 +0000406 if ((ret == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) {
aliguori9f7965c2008-10-14 14:42:54 +0000407 ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR);
bellard83f64092006-08-01 16:21:11 +0000408 bs->read_only = 1;
409 }
bellardea2384d2004-08-01 21:59:26 +0000410 if (ret < 0) {
411 qemu_free(bs->opaque);
bellard6b21b972006-08-23 21:14:37 +0000412 bs->opaque = NULL;
413 bs->drv = NULL;
aliguori51d7c002009-03-05 23:00:29 +0000414 unlink_and_fail:
415 if (bs->is_temporary)
416 unlink(filename);
bellard83f64092006-08-01 16:21:11 +0000417 return ret;
bellardea2384d2004-08-01 21:59:26 +0000418 }
bellardd15a7712006-08-06 13:35:09 +0000419 if (drv->bdrv_getlength) {
420 bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
421 }
bellardea2384d2004-08-01 21:59:26 +0000422#ifndef _WIN32
423 if (bs->is_temporary) {
424 unlink(filename);
425 }
426#endif
bellard83f64092006-08-01 16:21:11 +0000427 if (bs->backing_file[0] != '\0') {
bellardea2384d2004-08-01 21:59:26 +0000428 /* if there is a backing file, use it */
429 bs->backing_hd = bdrv_new("");
bellard83f64092006-08-01 16:21:11 +0000430 path_combine(backing_filename, sizeof(backing_filename),
431 filename, bs->backing_file);
aliguori51d7c002009-03-05 23:00:29 +0000432 ret = bdrv_open(bs->backing_hd, backing_filename, open_flags);
433 if (ret < 0) {
434 bdrv_close(bs);
435 return ret;
436 }
bellardea2384d2004-08-01 21:59:26 +0000437 }
438
aliguoribb5fc202009-03-05 23:01:15 +0000439 if (!bdrv_key_required(bs)) {
440 /* call the change callback */
441 bs->media_changed = 1;
442 if (bs->change_cb)
443 bs->change_cb(bs->change_opaque);
444 }
bellardb3380822004-03-14 21:38:54 +0000445 return 0;
bellardfc01f7e2003-06-30 10:03:06 +0000446}
447
448void bdrv_close(BlockDriverState *bs)
449{
bellard19cb3732006-08-19 11:45:59 +0000450 if (bs->drv) {
bellardea2384d2004-08-01 21:59:26 +0000451 if (bs->backing_hd)
452 bdrv_delete(bs->backing_hd);
453 bs->drv->bdrv_close(bs);
454 qemu_free(bs->opaque);
455#ifdef _WIN32
456 if (bs->is_temporary) {
457 unlink(bs->filename);
458 }
bellard67b915a2004-03-31 23:37:16 +0000459#endif
bellardea2384d2004-08-01 21:59:26 +0000460 bs->opaque = NULL;
461 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +0000462
463 /* call the change callback */
bellard19cb3732006-08-19 11:45:59 +0000464 bs->media_changed = 1;
bellardb3380822004-03-14 21:38:54 +0000465 if (bs->change_cb)
466 bs->change_cb(bs->change_opaque);
467 }
468}
469
470void bdrv_delete(BlockDriverState *bs)
471{
aurel3234c6f052008-04-08 19:51:21 +0000472 BlockDriverState **pbs;
473
474 pbs = &bdrv_first;
475 while (*pbs != bs && *pbs != NULL)
476 pbs = &(*pbs)->next;
477 if (*pbs == bs)
478 *pbs = bs->next;
479
bellardb3380822004-03-14 21:38:54 +0000480 bdrv_close(bs);
481 qemu_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000482}
483
bellard33e39632003-07-06 17:15:21 +0000484/* commit COW file into the raw image */
485int bdrv_commit(BlockDriverState *bs)
486{
bellard19cb3732006-08-19 11:45:59 +0000487 BlockDriver *drv = bs->drv;
bellard83f64092006-08-01 16:21:11 +0000488 int64_t i, total_sectors;
bellardea2384d2004-08-01 21:59:26 +0000489 int n, j;
490 unsigned char sector[512];
bellard33e39632003-07-06 17:15:21 +0000491
bellard19cb3732006-08-19 11:45:59 +0000492 if (!drv)
493 return -ENOMEDIUM;
bellard33e39632003-07-06 17:15:21 +0000494
495 if (bs->read_only) {
bellardea2384d2004-08-01 21:59:26 +0000496 return -EACCES;
bellard33e39632003-07-06 17:15:21 +0000497 }
498
bellardea2384d2004-08-01 21:59:26 +0000499 if (!bs->backing_hd) {
500 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +0000501 }
bellardea2384d2004-08-01 21:59:26 +0000502
bellard83f64092006-08-01 16:21:11 +0000503 total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
504 for (i = 0; i < total_sectors;) {
bellard19cb3732006-08-19 11:45:59 +0000505 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
bellardea2384d2004-08-01 21:59:26 +0000506 for(j = 0; j < n; j++) {
507 if (bdrv_read(bs, i, sector, 1) != 0) {
508 return -EIO;
509 }
510
511 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
512 return -EIO;
513 }
514 i++;
515 }
516 } else {
517 i += n;
518 }
519 }
bellard95389c82005-12-18 18:28:15 +0000520
bellard19cb3732006-08-19 11:45:59 +0000521 if (drv->bdrv_make_empty)
522 return drv->bdrv_make_empty(bs);
bellard95389c82005-12-18 18:28:15 +0000523
bellard33e39632003-07-06 17:15:21 +0000524 return 0;
525}
526
aliguori71d07702009-03-03 17:37:16 +0000527static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
528 size_t size)
529{
530 int64_t len;
531
532 if (!bdrv_is_inserted(bs))
533 return -ENOMEDIUM;
534
535 if (bs->growable)
536 return 0;
537
538 len = bdrv_getlength(bs);
539
540 if ((offset + size) > len)
541 return -EIO;
542
543 return 0;
544}
545
546static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
547 int nb_sectors)
548{
549 int64_t offset;
550
551 /* Deal with byte accesses */
552 if (sector_num < 0)
553 offset = -sector_num;
554 else
555 offset = sector_num * 512;
556
557 return bdrv_check_byte_request(bs, offset, nb_sectors * 512);
558}
559
bellard19cb3732006-08-19 11:45:59 +0000560/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +0000561int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000562 uint8_t *buf, int nb_sectors)
563{
bellardea2384d2004-08-01 21:59:26 +0000564 BlockDriver *drv = bs->drv;
565
bellard19cb3732006-08-19 11:45:59 +0000566 if (!drv)
567 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000568 if (bdrv_check_request(bs, sector_num, nb_sectors))
569 return -EIO;
bellardb3380822004-03-14 21:38:54 +0000570
aliguorieda578e2009-03-12 19:57:16 +0000571 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
bellardfc01f7e2003-06-30 10:03:06 +0000572}
573
ths5fafdf22007-09-16 21:08:06 +0000574/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +0000575 -EIO generic I/O error (may happen for all errors)
576 -ENOMEDIUM No media inserted.
577 -EINVAL Invalid sector number or nb_sectors
578 -EACCES Trying to write a read-only device
579*/
ths5fafdf22007-09-16 21:08:06 +0000580int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000581 const uint8_t *buf, int nb_sectors)
582{
bellard83f64092006-08-01 16:21:11 +0000583 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +0000584 if (!bs->drv)
585 return -ENOMEDIUM;
bellard0849bf02003-06-30 23:17:31 +0000586 if (bs->read_only)
bellard19cb3732006-08-19 11:45:59 +0000587 return -EACCES;
aliguori71d07702009-03-03 17:37:16 +0000588 if (bdrv_check_request(bs, sector_num, nb_sectors))
589 return -EIO;
590
aliguori42fb2802009-01-15 20:43:39 +0000591 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
bellard83f64092006-08-01 16:21:11 +0000592}
593
aliguorieda578e2009-03-12 19:57:16 +0000594int bdrv_pread(BlockDriverState *bs, int64_t offset,
595 void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000596{
bellard83f64092006-08-01 16:21:11 +0000597 uint8_t tmp_buf[SECTOR_SIZE];
598 int len, nb_sectors, count;
599 int64_t sector_num;
600
601 count = count1;
602 /* first read to align to sector start */
603 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
604 if (len > count)
605 len = count;
606 sector_num = offset >> SECTOR_BITS;
607 if (len > 0) {
608 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
609 return -EIO;
610 memcpy(buf, tmp_buf + (offset & (SECTOR_SIZE - 1)), len);
611 count -= len;
612 if (count == 0)
613 return count1;
614 sector_num++;
615 buf += len;
616 }
617
618 /* read the sectors "in place" */
619 nb_sectors = count >> SECTOR_BITS;
620 if (nb_sectors > 0) {
621 if (bdrv_read(bs, sector_num, buf, nb_sectors) < 0)
622 return -EIO;
623 sector_num += nb_sectors;
624 len = nb_sectors << SECTOR_BITS;
625 buf += len;
626 count -= len;
627 }
628
629 /* add data from the last sector */
630 if (count > 0) {
631 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
632 return -EIO;
633 memcpy(buf, tmp_buf, count);
634 }
635 return count1;
636}
637
aliguorieda578e2009-03-12 19:57:16 +0000638int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
639 const void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000640{
bellard83f64092006-08-01 16:21:11 +0000641 uint8_t tmp_buf[SECTOR_SIZE];
642 int len, nb_sectors, count;
643 int64_t sector_num;
644
645 count = count1;
646 /* first write to align to sector start */
647 len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1);
648 if (len > count)
649 len = count;
650 sector_num = offset >> SECTOR_BITS;
651 if (len > 0) {
652 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
653 return -EIO;
654 memcpy(tmp_buf + (offset & (SECTOR_SIZE - 1)), buf, len);
655 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
656 return -EIO;
657 count -= len;
658 if (count == 0)
659 return count1;
660 sector_num++;
661 buf += len;
662 }
663
664 /* write the sectors "in place" */
665 nb_sectors = count >> SECTOR_BITS;
666 if (nb_sectors > 0) {
667 if (bdrv_write(bs, sector_num, buf, nb_sectors) < 0)
668 return -EIO;
669 sector_num += nb_sectors;
670 len = nb_sectors << SECTOR_BITS;
671 buf += len;
672 count -= len;
673 }
674
675 /* add data from the last sector */
676 if (count > 0) {
677 if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0)
678 return -EIO;
679 memcpy(tmp_buf, buf, count);
680 if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0)
681 return -EIO;
682 }
683 return count1;
684}
bellard83f64092006-08-01 16:21:11 +0000685
686/**
bellard83f64092006-08-01 16:21:11 +0000687 * Truncate file to 'offset' bytes (needed only for file protocols)
688 */
689int bdrv_truncate(BlockDriverState *bs, int64_t offset)
690{
691 BlockDriver *drv = bs->drv;
692 if (!drv)
bellard19cb3732006-08-19 11:45:59 +0000693 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +0000694 if (!drv->bdrv_truncate)
695 return -ENOTSUP;
696 return drv->bdrv_truncate(bs, offset);
697}
698
699/**
700 * Length of a file in bytes. Return < 0 if error or unknown.
701 */
702int64_t bdrv_getlength(BlockDriverState *bs)
703{
704 BlockDriver *drv = bs->drv;
705 if (!drv)
bellard19cb3732006-08-19 11:45:59 +0000706 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +0000707 if (!drv->bdrv_getlength) {
708 /* legacy mode */
709 return bs->total_sectors * SECTOR_SIZE;
710 }
711 return drv->bdrv_getlength(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000712}
713
bellard19cb3732006-08-19 11:45:59 +0000714/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +0000715void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +0000716{
bellard19cb3732006-08-19 11:45:59 +0000717 int64_t length;
718 length = bdrv_getlength(bs);
719 if (length < 0)
720 length = 0;
721 else
722 length = length >> SECTOR_BITS;
723 *nb_sectors_ptr = length;
bellardfc01f7e2003-06-30 10:03:06 +0000724}
bellardcf989512004-02-16 21:56:36 +0000725
aliguorif3d54fc2008-11-25 21:50:24 +0000726struct partition {
727 uint8_t boot_ind; /* 0x80 - active */
728 uint8_t head; /* starting head */
729 uint8_t sector; /* starting sector */
730 uint8_t cyl; /* starting cylinder */
731 uint8_t sys_ind; /* What partition type */
732 uint8_t end_head; /* end head */
733 uint8_t end_sector; /* end sector */
734 uint8_t end_cyl; /* end cylinder */
735 uint32_t start_sect; /* starting sector counting from 0 */
736 uint32_t nr_sects; /* nr of sectors in partition */
737} __attribute__((packed));
738
739/* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
740static int guess_disk_lchs(BlockDriverState *bs,
741 int *pcylinders, int *pheads, int *psectors)
742{
743 uint8_t buf[512];
744 int ret, i, heads, sectors, cylinders;
745 struct partition *p;
746 uint32_t nr_sects;
blueswir1a38131b2008-12-05 17:56:40 +0000747 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +0000748
749 bdrv_get_geometry(bs, &nb_sectors);
750
751 ret = bdrv_read(bs, 0, buf, 1);
752 if (ret < 0)
753 return -1;
754 /* test msdos magic */
755 if (buf[510] != 0x55 || buf[511] != 0xaa)
756 return -1;
757 for(i = 0; i < 4; i++) {
758 p = ((struct partition *)(buf + 0x1be)) + i;
759 nr_sects = le32_to_cpu(p->nr_sects);
760 if (nr_sects && p->end_head) {
761 /* We make the assumption that the partition terminates on
762 a cylinder boundary */
763 heads = p->end_head + 1;
764 sectors = p->end_sector & 63;
765 if (sectors == 0)
766 continue;
767 cylinders = nb_sectors / (heads * sectors);
768 if (cylinders < 1 || cylinders > 16383)
769 continue;
770 *pheads = heads;
771 *psectors = sectors;
772 *pcylinders = cylinders;
773#if 0
774 printf("guessed geometry: LCHS=%d %d %d\n",
775 cylinders, heads, sectors);
776#endif
777 return 0;
778 }
779 }
780 return -1;
781}
782
783void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
784{
785 int translation, lba_detected = 0;
786 int cylinders, heads, secs;
blueswir1a38131b2008-12-05 17:56:40 +0000787 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +0000788
789 /* if a geometry hint is available, use it */
790 bdrv_get_geometry(bs, &nb_sectors);
791 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
792 translation = bdrv_get_translation_hint(bs);
793 if (cylinders != 0) {
794 *pcyls = cylinders;
795 *pheads = heads;
796 *psecs = secs;
797 } else {
798 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
799 if (heads > 16) {
800 /* if heads > 16, it means that a BIOS LBA
801 translation was active, so the default
802 hardware geometry is OK */
803 lba_detected = 1;
804 goto default_geometry;
805 } else {
806 *pcyls = cylinders;
807 *pheads = heads;
808 *psecs = secs;
809 /* disable any translation to be in sync with
810 the logical geometry */
811 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
812 bdrv_set_translation_hint(bs,
813 BIOS_ATA_TRANSLATION_NONE);
814 }
815 }
816 } else {
817 default_geometry:
818 /* if no geometry, use a standard physical disk geometry */
819 cylinders = nb_sectors / (16 * 63);
820
821 if (cylinders > 16383)
822 cylinders = 16383;
823 else if (cylinders < 2)
824 cylinders = 2;
825 *pcyls = cylinders;
826 *pheads = 16;
827 *psecs = 63;
828 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
829 if ((*pcyls * *pheads) <= 131072) {
830 bdrv_set_translation_hint(bs,
831 BIOS_ATA_TRANSLATION_LARGE);
832 } else {
833 bdrv_set_translation_hint(bs,
834 BIOS_ATA_TRANSLATION_LBA);
835 }
836 }
837 }
838 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
839 }
840}
841
ths5fafdf22007-09-16 21:08:06 +0000842void bdrv_set_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000843 int cyls, int heads, int secs)
844{
845 bs->cyls = cyls;
846 bs->heads = heads;
847 bs->secs = secs;
848}
849
850void bdrv_set_type_hint(BlockDriverState *bs, int type)
851{
852 bs->type = type;
853 bs->removable = ((type == BDRV_TYPE_CDROM ||
854 type == BDRV_TYPE_FLOPPY));
855}
856
bellard46d47672004-11-16 01:45:27 +0000857void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
858{
859 bs->translation = translation;
860}
861
ths5fafdf22007-09-16 21:08:06 +0000862void bdrv_get_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000863 int *pcyls, int *pheads, int *psecs)
864{
865 *pcyls = bs->cyls;
866 *pheads = bs->heads;
867 *psecs = bs->secs;
868}
869
870int bdrv_get_type_hint(BlockDriverState *bs)
871{
872 return bs->type;
873}
874
bellard46d47672004-11-16 01:45:27 +0000875int bdrv_get_translation_hint(BlockDriverState *bs)
876{
877 return bs->translation;
878}
879
bellardb3380822004-03-14 21:38:54 +0000880int bdrv_is_removable(BlockDriverState *bs)
881{
882 return bs->removable;
883}
884
885int bdrv_is_read_only(BlockDriverState *bs)
886{
887 return bs->read_only;
888}
889
ths985a03b2007-12-24 16:10:43 +0000890int bdrv_is_sg(BlockDriverState *bs)
891{
892 return bs->sg;
893}
894
bellard19cb3732006-08-19 11:45:59 +0000895/* XXX: no longer used */
ths5fafdf22007-09-16 21:08:06 +0000896void bdrv_set_change_cb(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +0000897 void (*change_cb)(void *opaque), void *opaque)
898{
899 bs->change_cb = change_cb;
900 bs->change_opaque = opaque;
901}
902
bellardea2384d2004-08-01 21:59:26 +0000903int bdrv_is_encrypted(BlockDriverState *bs)
904{
905 if (bs->backing_hd && bs->backing_hd->encrypted)
906 return 1;
907 return bs->encrypted;
908}
909
aliguoric0f4ce72009-03-05 23:01:01 +0000910int bdrv_key_required(BlockDriverState *bs)
911{
912 BlockDriverState *backing_hd = bs->backing_hd;
913
914 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
915 return 1;
916 return (bs->encrypted && !bs->valid_key);
917}
918
bellardea2384d2004-08-01 21:59:26 +0000919int bdrv_set_key(BlockDriverState *bs, const char *key)
920{
921 int ret;
922 if (bs->backing_hd && bs->backing_hd->encrypted) {
923 ret = bdrv_set_key(bs->backing_hd, key);
924 if (ret < 0)
925 return ret;
926 if (!bs->encrypted)
927 return 0;
928 }
929 if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key)
930 return -1;
aliguoric0f4ce72009-03-05 23:01:01 +0000931 ret = bs->drv->bdrv_set_key(bs, key);
aliguoribb5fc202009-03-05 23:01:15 +0000932 if (ret < 0) {
933 bs->valid_key = 0;
934 } else if (!bs->valid_key) {
935 bs->valid_key = 1;
936 /* call the change callback now, we skipped it on open */
937 bs->media_changed = 1;
938 if (bs->change_cb)
939 bs->change_cb(bs->change_opaque);
940 }
aliguoric0f4ce72009-03-05 23:01:01 +0000941 return ret;
bellardea2384d2004-08-01 21:59:26 +0000942}
943
944void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
945{
bellard19cb3732006-08-19 11:45:59 +0000946 if (!bs->drv) {
bellardea2384d2004-08-01 21:59:26 +0000947 buf[0] = '\0';
948 } else {
949 pstrcpy(buf, buf_size, bs->drv->format_name);
950 }
951}
952
ths5fafdf22007-09-16 21:08:06 +0000953void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +0000954 void *opaque)
955{
956 BlockDriver *drv;
957
958 for (drv = first_drv; drv != NULL; drv = drv->next) {
959 it(opaque, drv->format_name);
960 }
961}
962
bellardb3380822004-03-14 21:38:54 +0000963BlockDriverState *bdrv_find(const char *name)
964{
965 BlockDriverState *bs;
966
967 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
968 if (!strcmp(name, bs->device_name))
969 return bs;
970 }
971 return NULL;
972}
973
aliguori51de9762009-03-05 23:00:43 +0000974void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +0000975{
976 BlockDriverState *bs;
977
978 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
aliguori51de9762009-03-05 23:00:43 +0000979 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +0000980 }
981}
982
bellardea2384d2004-08-01 21:59:26 +0000983const char *bdrv_get_device_name(BlockDriverState *bs)
984{
985 return bs->device_name;
986}
987
pbrook7a6cba62006-06-04 11:39:07 +0000988void bdrv_flush(BlockDriverState *bs)
989{
990 if (bs->drv->bdrv_flush)
991 bs->drv->bdrv_flush(bs);
992 if (bs->backing_hd)
993 bdrv_flush(bs->backing_hd);
994}
995
aliguoric6ca28d2008-10-06 13:55:43 +0000996void bdrv_flush_all(void)
997{
998 BlockDriverState *bs;
999
1000 for (bs = bdrv_first; bs != NULL; bs = bs->next)
1001 if (bs->drv && !bdrv_is_read_only(bs) &&
1002 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs)))
1003 bdrv_flush(bs);
1004}
1005
thsf58c7b32008-06-05 21:53:49 +00001006/*
1007 * Returns true iff the specified sector is present in the disk image. Drivers
1008 * not implementing the functionality are assumed to not support backing files,
1009 * hence all their sectors are reported as allocated.
1010 *
1011 * 'pnum' is set to the number of sectors (including and immediately following
1012 * the specified sector) that are known to be in the same
1013 * allocated/unallocated state.
1014 *
1015 * 'nb_sectors' is the max value 'pnum' should be set to.
1016 */
1017int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1018 int *pnum)
1019{
1020 int64_t n;
1021 if (!bs->drv->bdrv_is_allocated) {
1022 if (sector_num >= bs->total_sectors) {
1023 *pnum = 0;
1024 return 0;
1025 }
1026 n = bs->total_sectors - sector_num;
1027 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1028 return 1;
1029 }
1030 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1031}
1032
aliguori376253e2009-03-05 23:01:23 +00001033void bdrv_info(Monitor *mon)
bellardb3380822004-03-14 21:38:54 +00001034{
1035 BlockDriverState *bs;
1036
1037 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
aliguori376253e2009-03-05 23:01:23 +00001038 monitor_printf(mon, "%s:", bs->device_name);
1039 monitor_printf(mon, " type=");
bellardb3380822004-03-14 21:38:54 +00001040 switch(bs->type) {
1041 case BDRV_TYPE_HD:
aliguori376253e2009-03-05 23:01:23 +00001042 monitor_printf(mon, "hd");
bellardb3380822004-03-14 21:38:54 +00001043 break;
1044 case BDRV_TYPE_CDROM:
aliguori376253e2009-03-05 23:01:23 +00001045 monitor_printf(mon, "cdrom");
bellardb3380822004-03-14 21:38:54 +00001046 break;
1047 case BDRV_TYPE_FLOPPY:
aliguori376253e2009-03-05 23:01:23 +00001048 monitor_printf(mon, "floppy");
bellardb3380822004-03-14 21:38:54 +00001049 break;
1050 }
aliguori376253e2009-03-05 23:01:23 +00001051 monitor_printf(mon, " removable=%d", bs->removable);
bellardb3380822004-03-14 21:38:54 +00001052 if (bs->removable) {
aliguori376253e2009-03-05 23:01:23 +00001053 monitor_printf(mon, " locked=%d", bs->locked);
bellardb3380822004-03-14 21:38:54 +00001054 }
bellard19cb3732006-08-19 11:45:59 +00001055 if (bs->drv) {
aliguori376253e2009-03-05 23:01:23 +00001056 monitor_printf(mon, " file=");
1057 monitor_print_filename(mon, bs->filename);
thsfef30742006-12-22 14:11:32 +00001058 if (bs->backing_file[0] != '\0') {
aliguori376253e2009-03-05 23:01:23 +00001059 monitor_printf(mon, " backing_file=");
1060 monitor_print_filename(mon, bs->backing_file);
1061 }
1062 monitor_printf(mon, " ro=%d", bs->read_only);
1063 monitor_printf(mon, " drv=%s", bs->drv->format_name);
1064 monitor_printf(mon, " encrypted=%d", bdrv_is_encrypted(bs));
bellardb3380822004-03-14 21:38:54 +00001065 } else {
aliguori376253e2009-03-05 23:01:23 +00001066 monitor_printf(mon, " [not inserted]");
bellardb3380822004-03-14 21:38:54 +00001067 }
aliguori376253e2009-03-05 23:01:23 +00001068 monitor_printf(mon, "\n");
bellardb3380822004-03-14 21:38:54 +00001069 }
1070}
thsa36e69d2007-12-02 05:18:19 +00001071
1072/* The "info blockstats" command. */
aliguori376253e2009-03-05 23:01:23 +00001073void bdrv_info_stats(Monitor *mon)
thsa36e69d2007-12-02 05:18:19 +00001074{
1075 BlockDriverState *bs;
1076
1077 for (bs = bdrv_first; bs != NULL; bs = bs->next) {
aliguori376253e2009-03-05 23:01:23 +00001078 monitor_printf(mon, "%s:"
1079 " rd_bytes=%" PRIu64
1080 " wr_bytes=%" PRIu64
1081 " rd_operations=%" PRIu64
1082 " wr_operations=%" PRIu64
aliguoriebf53fc2009-03-11 20:05:29 +00001083 "\n",
aliguori376253e2009-03-05 23:01:23 +00001084 bs->device_name,
1085 bs->rd_bytes, bs->wr_bytes,
1086 bs->rd_ops, bs->wr_ops);
thsa36e69d2007-12-02 05:18:19 +00001087 }
1088}
bellardea2384d2004-08-01 21:59:26 +00001089
aliguori045df332009-03-05 23:00:48 +00001090const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1091{
1092 if (bs->backing_hd && bs->backing_hd->encrypted)
1093 return bs->backing_file;
1094 else if (bs->encrypted)
1095 return bs->filename;
1096 else
1097 return NULL;
1098}
1099
ths5fafdf22007-09-16 21:08:06 +00001100void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00001101 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00001102{
bellard83f64092006-08-01 16:21:11 +00001103 if (!bs->backing_hd) {
1104 pstrcpy(filename, filename_size, "");
1105 } else {
1106 pstrcpy(filename, filename_size, bs->backing_file);
1107 }
bellardea2384d2004-08-01 21:59:26 +00001108}
1109
ths5fafdf22007-09-16 21:08:06 +00001110int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00001111 const uint8_t *buf, int nb_sectors)
1112{
1113 BlockDriver *drv = bs->drv;
1114 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001115 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001116 if (!drv->bdrv_write_compressed)
1117 return -ENOTSUP;
1118 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1119}
ths3b46e622007-09-17 08:09:54 +00001120
bellardfaea38e2006-08-05 21:31:00 +00001121int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1122{
1123 BlockDriver *drv = bs->drv;
1124 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001125 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001126 if (!drv->bdrv_get_info)
1127 return -ENOTSUP;
1128 memset(bdi, 0, sizeof(*bdi));
1129 return drv->bdrv_get_info(bs, bdi);
1130}
1131
1132/**************************************************************/
1133/* handling of snapshots */
1134
ths5fafdf22007-09-16 21:08:06 +00001135int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001136 QEMUSnapshotInfo *sn_info)
1137{
1138 BlockDriver *drv = bs->drv;
1139 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001140 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001141 if (!drv->bdrv_snapshot_create)
1142 return -ENOTSUP;
1143 return drv->bdrv_snapshot_create(bs, sn_info);
1144}
1145
ths5fafdf22007-09-16 21:08:06 +00001146int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001147 const char *snapshot_id)
1148{
1149 BlockDriver *drv = bs->drv;
1150 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001151 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001152 if (!drv->bdrv_snapshot_goto)
1153 return -ENOTSUP;
1154 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1155}
1156
1157int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1158{
1159 BlockDriver *drv = bs->drv;
1160 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001161 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001162 if (!drv->bdrv_snapshot_delete)
1163 return -ENOTSUP;
1164 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1165}
1166
ths5fafdf22007-09-16 21:08:06 +00001167int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001168 QEMUSnapshotInfo **psn_info)
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_snapshot_list)
1174 return -ENOTSUP;
1175 return drv->bdrv_snapshot_list(bs, psn_info);
1176}
1177
1178#define NB_SUFFIXES 4
1179
1180char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1181{
1182 static const char suffixes[NB_SUFFIXES] = "KMGT";
1183 int64_t base;
1184 int i;
1185
1186 if (size <= 999) {
1187 snprintf(buf, buf_size, "%" PRId64, size);
1188 } else {
1189 base = 1024;
1190 for(i = 0; i < NB_SUFFIXES; i++) {
1191 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00001192 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00001193 (double)size / base,
1194 suffixes[i]);
1195 break;
1196 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00001197 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00001198 ((size + (base >> 1)) / base),
1199 suffixes[i]);
1200 break;
1201 }
1202 base = base * 1024;
1203 }
1204 }
1205 return buf;
1206}
1207
1208char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1209{
1210 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00001211#ifdef _WIN32
1212 struct tm *ptm;
1213#else
bellardfaea38e2006-08-05 21:31:00 +00001214 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00001215#endif
bellardfaea38e2006-08-05 21:31:00 +00001216 time_t ti;
1217 int64_t secs;
1218
1219 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00001220 snprintf(buf, buf_size,
1221 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001222 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1223 } else {
1224 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00001225#ifdef _WIN32
1226 ptm = localtime(&ti);
1227 strftime(date_buf, sizeof(date_buf),
1228 "%Y-%m-%d %H:%M:%S", ptm);
1229#else
bellardfaea38e2006-08-05 21:31:00 +00001230 localtime_r(&ti, &tm);
1231 strftime(date_buf, sizeof(date_buf),
1232 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00001233#endif
bellardfaea38e2006-08-05 21:31:00 +00001234 secs = sn->vm_clock_nsec / 1000000000;
1235 snprintf(clock_buf, sizeof(clock_buf),
1236 "%02d:%02d:%02d.%03d",
1237 (int)(secs / 3600),
1238 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00001239 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00001240 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1241 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00001242 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001243 sn->id_str, sn->name,
1244 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1245 date_buf,
1246 clock_buf);
1247 }
1248 return buf;
1249}
1250
bellardea2384d2004-08-01 21:59:26 +00001251
bellard83f64092006-08-01 16:21:11 +00001252/**************************************************************/
1253/* async I/Os */
1254
aliguori3b69e4b2009-01-22 16:59:24 +00001255typedef struct VectorTranslationState {
1256 QEMUIOVector *iov;
1257 uint8_t *bounce;
1258 int is_write;
1259 BlockDriverAIOCB *aiocb;
1260 BlockDriverAIOCB *this_aiocb;
1261} VectorTranslationState;
1262
1263static void bdrv_aio_rw_vector_cb(void *opaque, int ret)
1264{
1265 VectorTranslationState *s = opaque;
1266
1267 if (!s->is_write) {
aliguori249aa742009-01-26 17:17:52 +00001268 qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size);
aliguori3b69e4b2009-01-22 16:59:24 +00001269 }
aurel32d905dba2009-03-03 06:28:26 +00001270 qemu_vfree(s->bounce);
aliguori3b69e4b2009-01-22 16:59:24 +00001271 s->this_aiocb->cb(s->this_aiocb->opaque, ret);
1272 qemu_aio_release(s->this_aiocb);
1273}
1274
1275static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
1276 int64_t sector_num,
1277 QEMUIOVector *iov,
1278 int nb_sectors,
1279 BlockDriverCompletionFunc *cb,
1280 void *opaque,
1281 int is_write)
1282
1283{
1284 VectorTranslationState *s = qemu_mallocz(sizeof(*s));
1285 BlockDriverAIOCB *aiocb = qemu_aio_get(bs, cb, opaque);
1286
1287 s->this_aiocb = aiocb;
1288 s->iov = iov;
1289 s->bounce = qemu_memalign(512, nb_sectors * 512);
1290 s->is_write = is_write;
1291 if (is_write) {
1292 qemu_iovec_to_buffer(s->iov, s->bounce);
1293 s->aiocb = bdrv_aio_write(bs, sector_num, s->bounce, nb_sectors,
1294 bdrv_aio_rw_vector_cb, s);
1295 } else {
1296 s->aiocb = bdrv_aio_read(bs, sector_num, s->bounce, nb_sectors,
1297 bdrv_aio_rw_vector_cb, s);
1298 }
1299 return aiocb;
1300}
1301
1302BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
1303 QEMUIOVector *iov, int nb_sectors,
1304 BlockDriverCompletionFunc *cb, void *opaque)
1305{
aliguori71d07702009-03-03 17:37:16 +00001306 if (bdrv_check_request(bs, sector_num, nb_sectors))
1307 return NULL;
1308
aliguori3b69e4b2009-01-22 16:59:24 +00001309 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1310 cb, opaque, 0);
1311}
1312
1313BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1314 QEMUIOVector *iov, int nb_sectors,
1315 BlockDriverCompletionFunc *cb, void *opaque)
1316{
aliguori71d07702009-03-03 17:37:16 +00001317 if (bdrv_check_request(bs, sector_num, nb_sectors))
1318 return NULL;
1319
aliguori3b69e4b2009-01-22 16:59:24 +00001320 return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors,
1321 cb, opaque, 1);
1322}
1323
pbrookce1a14d2006-08-07 02:38:06 +00001324BlockDriverAIOCB *bdrv_aio_read(BlockDriverState *bs, int64_t sector_num,
1325 uint8_t *buf, int nb_sectors,
1326 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001327{
1328 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001329 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001330
bellard19cb3732006-08-19 11:45:59 +00001331 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001332 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001333 if (bdrv_check_request(bs, sector_num, nb_sectors))
1334 return NULL;
ths3b46e622007-09-17 08:09:54 +00001335
thsa36e69d2007-12-02 05:18:19 +00001336 ret = drv->bdrv_aio_read(bs, sector_num, buf, nb_sectors, cb, opaque);
1337
1338 if (ret) {
1339 /* Update stats even though technically transfer has not happened. */
1340 bs->rd_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1341 bs->rd_ops ++;
1342 }
1343
1344 return ret;
bellard83f64092006-08-01 16:21:11 +00001345}
1346
pbrookce1a14d2006-08-07 02:38:06 +00001347BlockDriverAIOCB *bdrv_aio_write(BlockDriverState *bs, int64_t sector_num,
1348 const uint8_t *buf, int nb_sectors,
1349 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001350{
bellard83f64092006-08-01 16:21:11 +00001351 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001352 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001353
bellard19cb3732006-08-19 11:45:59 +00001354 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001355 return NULL;
bellard83f64092006-08-01 16:21:11 +00001356 if (bs->read_only)
pbrookce1a14d2006-08-07 02:38:06 +00001357 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001358 if (bdrv_check_request(bs, sector_num, nb_sectors))
1359 return NULL;
bellard83f64092006-08-01 16:21:11 +00001360
thsa36e69d2007-12-02 05:18:19 +00001361 ret = drv->bdrv_aio_write(bs, sector_num, buf, nb_sectors, cb, opaque);
1362
1363 if (ret) {
1364 /* Update stats even though technically transfer has not happened. */
1365 bs->wr_bytes += (unsigned) nb_sectors * SECTOR_SIZE;
1366 bs->wr_ops ++;
1367 }
1368
1369 return ret;
bellard83f64092006-08-01 16:21:11 +00001370}
1371
1372void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00001373{
1374 BlockDriver *drv = acb->bs->drv;
bellard83f64092006-08-01 16:21:11 +00001375
aliguori3b69e4b2009-01-22 16:59:24 +00001376 if (acb->cb == bdrv_aio_rw_vector_cb) {
1377 VectorTranslationState *s = acb->opaque;
1378 acb = s->aiocb;
1379 }
1380
bellard83f64092006-08-01 16:21:11 +00001381 drv->bdrv_aio_cancel(acb);
bellard83f64092006-08-01 16:21:11 +00001382}
1383
pbrookce1a14d2006-08-07 02:38:06 +00001384
bellard83f64092006-08-01 16:21:11 +00001385/**************************************************************/
1386/* async block device emulation */
1387
bellard83f64092006-08-01 16:21:11 +00001388static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00001389{
pbrookce1a14d2006-08-07 02:38:06 +00001390 BlockDriverAIOCBSync *acb = opaque;
1391 acb->common.cb(acb->common.opaque, acb->ret);
1392 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00001393}
bellardbeac80c2006-06-26 20:08:57 +00001394
pbrookce1a14d2006-08-07 02:38:06 +00001395static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs,
1396 int64_t sector_num, uint8_t *buf, int nb_sectors,
1397 BlockDriverCompletionFunc *cb, void *opaque)
bellardea2384d2004-08-01 21:59:26 +00001398{
pbrookce1a14d2006-08-07 02:38:06 +00001399 BlockDriverAIOCBSync *acb;
bellard83f64092006-08-01 16:21:11 +00001400 int ret;
pbrookce1a14d2006-08-07 02:38:06 +00001401
1402 acb = qemu_aio_get(bs, cb, opaque);
1403 if (!acb->bh)
1404 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1405 ret = bdrv_read(bs, sector_num, buf, nb_sectors);
1406 acb->ret = ret;
1407 qemu_bh_schedule(acb->bh);
1408 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00001409}
1410
pbrookce1a14d2006-08-07 02:38:06 +00001411static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs,
1412 int64_t sector_num, const uint8_t *buf, int nb_sectors,
1413 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001414{
pbrookce1a14d2006-08-07 02:38:06 +00001415 BlockDriverAIOCBSync *acb;
bellard83f64092006-08-01 16:21:11 +00001416 int ret;
pbrookce1a14d2006-08-07 02:38:06 +00001417
1418 acb = qemu_aio_get(bs, cb, opaque);
1419 if (!acb->bh)
1420 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
1421 ret = bdrv_write(bs, sector_num, buf, nb_sectors);
1422 acb->ret = ret;
1423 qemu_bh_schedule(acb->bh);
1424 return &acb->common;
bellard83f64092006-08-01 16:21:11 +00001425}
1426
pbrookce1a14d2006-08-07 02:38:06 +00001427static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
bellard83f64092006-08-01 16:21:11 +00001428{
pbrookce1a14d2006-08-07 02:38:06 +00001429 BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb;
1430 qemu_bh_cancel(acb->bh);
1431 qemu_aio_release(acb);
bellard83f64092006-08-01 16:21:11 +00001432}
bellard83f64092006-08-01 16:21:11 +00001433
1434/**************************************************************/
1435/* sync block device emulation */
1436
1437static void bdrv_rw_em_cb(void *opaque, int ret)
1438{
1439 *(int *)opaque = ret;
1440}
1441
1442#define NOT_DONE 0x7fffffff
1443
ths5fafdf22007-09-16 21:08:06 +00001444static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +00001445 uint8_t *buf, int nb_sectors)
1446{
pbrookce1a14d2006-08-07 02:38:06 +00001447 int async_ret;
1448 BlockDriverAIOCB *acb;
bellard83f64092006-08-01 16:21:11 +00001449
bellard83f64092006-08-01 16:21:11 +00001450 async_ret = NOT_DONE;
ths5fafdf22007-09-16 21:08:06 +00001451 acb = bdrv_aio_read(bs, sector_num, buf, nb_sectors,
bellard83f64092006-08-01 16:21:11 +00001452 bdrv_rw_em_cb, &async_ret);
aliguoribaf35cb2008-09-10 15:45:19 +00001453 if (acb == NULL)
pbrookce1a14d2006-08-07 02:38:06 +00001454 return -1;
aliguoribaf35cb2008-09-10 15:45:19 +00001455
bellard83f64092006-08-01 16:21:11 +00001456 while (async_ret == NOT_DONE) {
1457 qemu_aio_wait();
1458 }
aliguoribaf35cb2008-09-10 15:45:19 +00001459
bellard83f64092006-08-01 16:21:11 +00001460 return async_ret;
1461}
1462
1463static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
1464 const uint8_t *buf, int nb_sectors)
1465{
pbrookce1a14d2006-08-07 02:38:06 +00001466 int async_ret;
1467 BlockDriverAIOCB *acb;
bellard83f64092006-08-01 16:21:11 +00001468
bellard83f64092006-08-01 16:21:11 +00001469 async_ret = NOT_DONE;
ths5fafdf22007-09-16 21:08:06 +00001470 acb = bdrv_aio_write(bs, sector_num, buf, nb_sectors,
bellard83f64092006-08-01 16:21:11 +00001471 bdrv_rw_em_cb, &async_ret);
aliguoribaf35cb2008-09-10 15:45:19 +00001472 if (acb == NULL)
pbrookce1a14d2006-08-07 02:38:06 +00001473 return -1;
bellard83f64092006-08-01 16:21:11 +00001474 while (async_ret == NOT_DONE) {
1475 qemu_aio_wait();
1476 }
bellard83f64092006-08-01 16:21:11 +00001477 return async_ret;
1478}
bellardea2384d2004-08-01 21:59:26 +00001479
1480void bdrv_init(void)
1481{
1482 bdrv_register(&bdrv_raw);
bellard19cb3732006-08-19 11:45:59 +00001483 bdrv_register(&bdrv_host_device);
bellardea2384d2004-08-01 21:59:26 +00001484#ifndef _WIN32
1485 bdrv_register(&bdrv_cow);
1486#endif
1487 bdrv_register(&bdrv_qcow);
1488 bdrv_register(&bdrv_vmdk);
bellard3c565212004-09-29 21:29:14 +00001489 bdrv_register(&bdrv_cloop);
bellard585d0ed2004-12-12 11:24:44 +00001490 bdrv_register(&bdrv_dmg);
bellarda8753c32005-04-26 21:34:00 +00001491 bdrv_register(&bdrv_bochs);
bellard6a0f9e82005-04-27 20:17:58 +00001492 bdrv_register(&bdrv_vpc);
bellard712e7872005-04-28 21:09:32 +00001493 bdrv_register(&bdrv_vvfat);
bellardfaea38e2006-08-05 21:31:00 +00001494 bdrv_register(&bdrv_qcow2);
ths6ada7452007-07-31 23:28:53 +00001495 bdrv_register(&bdrv_parallels);
ths75818252008-07-03 13:41:03 +00001496 bdrv_register(&bdrv_nbd);
bellardea2384d2004-08-01 21:59:26 +00001497}
pbrookce1a14d2006-08-07 02:38:06 +00001498
1499void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb,
1500 void *opaque)
1501{
1502 BlockDriver *drv;
1503 BlockDriverAIOCB *acb;
1504
1505 drv = bs->drv;
1506 if (drv->free_aiocb) {
1507 acb = drv->free_aiocb;
1508 drv->free_aiocb = acb->next;
1509 } else {
1510 acb = qemu_mallocz(drv->aiocb_size);
pbrookce1a14d2006-08-07 02:38:06 +00001511 }
1512 acb->bs = bs;
1513 acb->cb = cb;
1514 acb->opaque = opaque;
1515 return acb;
1516}
1517
1518void qemu_aio_release(void *p)
1519{
1520 BlockDriverAIOCB *acb = p;
1521 BlockDriver *drv = acb->bs->drv;
1522 acb->next = drv->free_aiocb;
1523 drv->free_aiocb = acb;
1524}
bellard19cb3732006-08-19 11:45:59 +00001525
1526/**************************************************************/
1527/* removable device support */
1528
1529/**
1530 * Return TRUE if the media is present
1531 */
1532int bdrv_is_inserted(BlockDriverState *bs)
1533{
1534 BlockDriver *drv = bs->drv;
1535 int ret;
1536 if (!drv)
1537 return 0;
1538 if (!drv->bdrv_is_inserted)
1539 return 1;
1540 ret = drv->bdrv_is_inserted(bs);
1541 return ret;
1542}
1543
1544/**
1545 * Return TRUE if the media changed since the last call to this
ths5fafdf22007-09-16 21:08:06 +00001546 * function. It is currently only used for floppy disks
bellard19cb3732006-08-19 11:45:59 +00001547 */
1548int bdrv_media_changed(BlockDriverState *bs)
1549{
1550 BlockDriver *drv = bs->drv;
1551 int ret;
1552
1553 if (!drv || !drv->bdrv_media_changed)
1554 ret = -ENOTSUP;
1555 else
1556 ret = drv->bdrv_media_changed(bs);
1557 if (ret == -ENOTSUP)
1558 ret = bs->media_changed;
1559 bs->media_changed = 0;
1560 return ret;
1561}
1562
1563/**
1564 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
1565 */
1566void bdrv_eject(BlockDriverState *bs, int eject_flag)
1567{
1568 BlockDriver *drv = bs->drv;
1569 int ret;
1570
1571 if (!drv || !drv->bdrv_eject) {
1572 ret = -ENOTSUP;
1573 } else {
1574 ret = drv->bdrv_eject(bs, eject_flag);
1575 }
1576 if (ret == -ENOTSUP) {
1577 if (eject_flag)
1578 bdrv_close(bs);
1579 }
1580}
1581
1582int bdrv_is_locked(BlockDriverState *bs)
1583{
1584 return bs->locked;
1585}
1586
1587/**
1588 * Lock or unlock the media (if it is locked, the user won't be able
1589 * to eject it manually).
1590 */
1591void bdrv_set_locked(BlockDriverState *bs, int locked)
1592{
1593 BlockDriver *drv = bs->drv;
1594
1595 bs->locked = locked;
1596 if (drv && drv->bdrv_set_locked) {
1597 drv->bdrv_set_locked(bs, locked);
1598 }
1599}
ths985a03b2007-12-24 16:10:43 +00001600
1601/* needed for generic scsi interface */
1602
1603int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
1604{
1605 BlockDriver *drv = bs->drv;
1606
1607 if (drv && drv->bdrv_ioctl)
1608 return drv->bdrv_ioctl(bs, req, buf);
1609 return -ENOTSUP;
1610}
aliguori7d780662009-03-12 19:57:08 +00001611
1612int bdrv_sg_send_command(BlockDriverState *bs, void *buf, int count)
1613{
aliguori04eeb8b2009-03-12 19:57:12 +00001614 return bs->drv->bdrv_sg_send_command(bs, buf, count);
aliguori7d780662009-03-12 19:57:08 +00001615}
1616
1617int bdrv_sg_recv_response(BlockDriverState *bs, void *buf, int count)
1618{
aliguori04eeb8b2009-03-12 19:57:12 +00001619 return bs->drv->bdrv_sg_recv_response(bs, buf, count);
aliguori7d780662009-03-12 19:57:08 +00001620}
1621
1622BlockDriverAIOCB *bdrv_sg_aio_read(BlockDriverState *bs, void *buf, int count,
1623 BlockDriverCompletionFunc *cb, void *opaque)
1624{
aliguori04eeb8b2009-03-12 19:57:12 +00001625 return bs->drv->bdrv_sg_aio_read(bs, buf, count, cb, opaque);
aliguori7d780662009-03-12 19:57:08 +00001626}
1627
1628BlockDriverAIOCB *bdrv_sg_aio_write(BlockDriverState *bs, void *buf, int count,
1629 BlockDriverCompletionFunc *cb, void *opaque)
1630{
aliguori04eeb8b2009-03-12 19:57:12 +00001631 return bs->drv->bdrv_sg_aio_write(bs, buf, count, cb, opaque);
aliguori7d780662009-03-12 19:57:08 +00001632}