blob: 4c650353134e075bba26ae89db895d2944a023b9 [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"
pbrookfaf07962007-11-11 02:51:17 +000025#include "qemu-common.h"
aliguori376253e2009-03-05 23:01:23 +000026#include "monitor.h"
bellardea2384d2004-08-01 21:59:26 +000027#include "block_int.h"
Anthony Liguori5efa9d52009-05-09 17:03:42 -050028#include "module.h"
Luiz Capitulinod15e5462009-12-10 17:16:06 -020029#include "qemu-objects.h"
bellardfc01f7e2003-06-30 10:03:06 +000030
Juan Quintela71e72a12009-07-27 16:12:56 +020031#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000032#include <sys/types.h>
33#include <sys/stat.h>
34#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000035#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000036#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000037#include <sys/disk.h>
38#endif
blueswir1c5e97232009-03-07 20:06:23 +000039#endif
bellard7674e7b2005-04-26 21:59:26 +000040
aliguori49dc7682009-03-08 16:26:59 +000041#ifdef _WIN32
42#include <windows.h>
43#endif
44
aliguorif141eaf2009-04-07 18:43:24 +000045static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
46 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
aliguoric87c0672009-04-07 18:43:20 +000047 BlockDriverCompletionFunc *cb, void *opaque);
aliguorif141eaf2009-04-07 18:43:24 +000048static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
49 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +000050 BlockDriverCompletionFunc *cb, void *opaque);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +020051static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
52 BlockDriverCompletionFunc *cb, void *opaque);
Alexander Graf016f5cf2010-05-26 17:51:49 +020053static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
54 BlockDriverCompletionFunc *cb, void *opaque);
ths5fafdf22007-09-16 21:08:06 +000055static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +000056 uint8_t *buf, int nb_sectors);
57static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
58 const uint8_t *buf, int nb_sectors);
bellardec530c82006-04-25 22:36:06 +000059
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +010060static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
61 QTAILQ_HEAD_INITIALIZER(bdrv_states);
blueswir17ee930d2008-09-17 19:04:14 +000062
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010063static QLIST_HEAD(, BlockDriver) bdrv_drivers =
64 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000065
Markus Armbrustereb852012009-10-27 18:41:44 +010066/* If non-zero, use only whitelisted block drivers */
67static int use_bdrv_whitelist;
68
bellard83f64092006-08-01 16:21:11 +000069int path_is_absolute(const char *path)
70{
71 const char *p;
bellard21664422007-01-07 18:22:37 +000072#ifdef _WIN32
73 /* specific case for names like: "\\.\d:" */
74 if (*path == '/' || *path == '\\')
75 return 1;
76#endif
bellard83f64092006-08-01 16:21:11 +000077 p = strchr(path, ':');
78 if (p)
79 p++;
80 else
81 p = path;
bellard3b9f94e2007-01-07 17:27:07 +000082#ifdef _WIN32
83 return (*p == '/' || *p == '\\');
84#else
85 return (*p == '/');
86#endif
bellard83f64092006-08-01 16:21:11 +000087}
88
89/* if filename is absolute, just copy it to dest. Otherwise, build a
90 path to it by considering it is relative to base_path. URL are
91 supported. */
92void path_combine(char *dest, int dest_size,
93 const char *base_path,
94 const char *filename)
95{
96 const char *p, *p1;
97 int len;
98
99 if (dest_size <= 0)
100 return;
101 if (path_is_absolute(filename)) {
102 pstrcpy(dest, dest_size, filename);
103 } else {
104 p = strchr(base_path, ':');
105 if (p)
106 p++;
107 else
108 p = base_path;
bellard3b9f94e2007-01-07 17:27:07 +0000109 p1 = strrchr(base_path, '/');
110#ifdef _WIN32
111 {
112 const char *p2;
113 p2 = strrchr(base_path, '\\');
114 if (!p1 || p2 > p1)
115 p1 = p2;
116 }
117#endif
bellard83f64092006-08-01 16:21:11 +0000118 if (p1)
119 p1++;
120 else
121 p1 = base_path;
122 if (p1 > p)
123 p = p1;
124 len = p - base_path;
125 if (len > dest_size - 1)
126 len = dest_size - 1;
127 memcpy(dest, base_path, len);
128 dest[len] = '\0';
129 pstrcat(dest, dest_size, filename);
130 }
131}
132
Anthony Liguori5efa9d52009-05-09 17:03:42 -0500133void bdrv_register(BlockDriver *bdrv)
bellardea2384d2004-08-01 21:59:26 +0000134{
aliguorif141eaf2009-04-07 18:43:24 +0000135 if (!bdrv->bdrv_aio_readv) {
bellard83f64092006-08-01 16:21:11 +0000136 /* add AIO emulation layer */
aliguorif141eaf2009-04-07 18:43:24 +0000137 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
138 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
aliguorieda578e2009-03-12 19:57:16 +0000139 } else if (!bdrv->bdrv_read) {
bellard83f64092006-08-01 16:21:11 +0000140 /* add synchronous IO emulation layer */
141 bdrv->bdrv_read = bdrv_read_em;
142 bdrv->bdrv_write = bdrv_write_em;
143 }
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +0200144
145 if (!bdrv->bdrv_aio_flush)
146 bdrv->bdrv_aio_flush = bdrv_aio_flush_em;
147
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100148 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000149}
bellardb3380822004-03-14 21:38:54 +0000150
151/* create a new block device (by default it is empty) */
152BlockDriverState *bdrv_new(const char *device_name)
bellardfc01f7e2003-06-30 10:03:06 +0000153{
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100154 BlockDriverState *bs;
bellardb3380822004-03-14 21:38:54 +0000155
156 bs = qemu_mallocz(sizeof(BlockDriverState));
bellardb3380822004-03-14 21:38:54 +0000157 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
bellardea2384d2004-08-01 21:59:26 +0000158 if (device_name[0] != '\0') {
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100159 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
bellardea2384d2004-08-01 21:59:26 +0000160 }
bellardb3380822004-03-14 21:38:54 +0000161 return bs;
162}
163
bellardea2384d2004-08-01 21:59:26 +0000164BlockDriver *bdrv_find_format(const char *format_name)
165{
166 BlockDriver *drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100167 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
168 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000169 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100170 }
bellardea2384d2004-08-01 21:59:26 +0000171 }
172 return NULL;
173}
174
Markus Armbrustereb852012009-10-27 18:41:44 +0100175static int bdrv_is_whitelisted(BlockDriver *drv)
176{
177 static const char *whitelist[] = {
178 CONFIG_BDRV_WHITELIST
179 };
180 const char **p;
181
182 if (!whitelist[0])
183 return 1; /* no whitelist, anything goes */
184
185 for (p = whitelist; *p; p++) {
186 if (!strcmp(drv->format_name, *p)) {
187 return 1;
188 }
189 }
190 return 0;
191}
192
193BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
194{
195 BlockDriver *drv = bdrv_find_format(format_name);
196 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
197}
198
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200199int bdrv_create(BlockDriver *drv, const char* filename,
200 QEMUOptionParameter *options)
bellardea2384d2004-08-01 21:59:26 +0000201{
202 if (!drv->bdrv_create)
203 return -ENOTSUP;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200204
205 return drv->bdrv_create(filename, options);
bellardea2384d2004-08-01 21:59:26 +0000206}
207
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200208int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
209{
210 BlockDriver *drv;
211
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900212 drv = bdrv_find_protocol(filename);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200213 if (drv == NULL) {
214 drv = bdrv_find_format("file");
215 }
216
217 return bdrv_create(drv, filename, options);
218}
219
bellardd5249392004-08-03 21:14:23 +0000220#ifdef _WIN32
bellard95389c82005-12-18 18:28:15 +0000221void get_tmp_filename(char *filename, int size)
bellardd5249392004-08-03 21:14:23 +0000222{
bellard3b9f94e2007-01-07 17:27:07 +0000223 char temp_dir[MAX_PATH];
ths3b46e622007-09-17 08:09:54 +0000224
bellard3b9f94e2007-01-07 17:27:07 +0000225 GetTempPath(MAX_PATH, temp_dir);
226 GetTempFileName(temp_dir, "qem", 0, filename);
bellardd5249392004-08-03 21:14:23 +0000227}
228#else
bellard95389c82005-12-18 18:28:15 +0000229void get_tmp_filename(char *filename, int size)
bellardea2384d2004-08-01 21:59:26 +0000230{
231 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000232 const char *tmpdir;
bellardd5249392004-08-03 21:14:23 +0000233 /* XXX: race condition possible */
aurel320badc1e2008-03-10 00:05:34 +0000234 tmpdir = getenv("TMPDIR");
235 if (!tmpdir)
236 tmpdir = "/tmp";
237 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
bellardea2384d2004-08-01 21:59:26 +0000238 fd = mkstemp(filename);
239 close(fd);
240}
bellardd5249392004-08-03 21:14:23 +0000241#endif
bellardea2384d2004-08-01 21:59:26 +0000242
bellard19cb3732006-08-19 11:45:59 +0000243#ifdef _WIN32
bellardf45512f2006-08-23 21:40:13 +0000244static int is_windows_drive_prefix(const char *filename)
245{
246 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
247 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
248 filename[1] == ':');
249}
ths3b46e622007-09-17 08:09:54 +0000250
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200251int is_windows_drive(const char *filename)
bellard19cb3732006-08-19 11:45:59 +0000252{
ths5fafdf22007-09-16 21:08:06 +0000253 if (is_windows_drive_prefix(filename) &&
bellardf45512f2006-08-23 21:40:13 +0000254 filename[2] == '\0')
bellard19cb3732006-08-19 11:45:59 +0000255 return 1;
256 if (strstart(filename, "\\\\.\\", NULL) ||
257 strstart(filename, "//./", NULL))
258 return 1;
259 return 0;
260}
261#endif
262
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200263/*
264 * Detect host devices. By convention, /dev/cdrom[N] is always
265 * recognized as a host CDROM.
266 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200267static BlockDriver *find_hdev_driver(const char *filename)
268{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200269 int score_max = 0, score;
270 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200271
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100272 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200273 if (d->bdrv_probe_device) {
274 score = d->bdrv_probe_device(filename);
275 if (score > score_max) {
276 score_max = score;
277 drv = d;
278 }
279 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200280 }
281
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200282 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200283}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200284
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900285BlockDriver *bdrv_find_protocol(const char *filename)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200286{
287 BlockDriver *drv1;
288 char protocol[128];
289 int len;
290 const char *p;
291
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200292 /* TODO Drivers without bdrv_file_open must be specified explicitly */
293
Christoph Hellwig39508e72010-06-23 12:25:17 +0200294 /*
295 * XXX(hch): we really should not let host device detection
296 * override an explicit protocol specification, but moving this
297 * later breaks access to device names with colons in them.
298 * Thanks to the brain-dead persistent naming schemes on udev-
299 * based Linux systems those actually are quite common.
300 */
301 drv1 = find_hdev_driver(filename);
302 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200303 return drv1;
304 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200305
306#ifdef _WIN32
307 if (is_windows_drive(filename) ||
308 is_windows_drive_prefix(filename))
309 return bdrv_find_format("file");
310#endif
311
312 p = strchr(filename, ':');
313 if (!p) {
314 return bdrv_find_format("file");
315 }
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200316 len = p - filename;
317 if (len > sizeof(protocol) - 1)
318 len = sizeof(protocol) - 1;
319 memcpy(protocol, filename, len);
320 protocol[len] = '\0';
321 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
322 if (drv1->protocol_name &&
323 !strcmp(drv1->protocol_name, protocol)) {
324 return drv1;
325 }
326 }
327 return NULL;
328}
329
bellardea2384d2004-08-01 21:59:26 +0000330static BlockDriver *find_image_format(const char *filename)
331{
bellard83f64092006-08-01 16:21:11 +0000332 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000333 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000334 uint8_t buf[2048];
335 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000336
Naphtali Spreif5edb012010-01-17 16:48:13 +0200337 ret = bdrv_file_open(&bs, filename, 0);
bellard83f64092006-08-01 16:21:11 +0000338 if (ret < 0)
339 return NULL;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700340
Kevin Wolf08a00552010-06-01 18:37:31 +0200341 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
342 if (bs->sg || !bdrv_is_inserted(bs)) {
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700343 bdrv_delete(bs);
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700344 return bdrv_find_format("raw");
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700345 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700346
bellard83f64092006-08-01 16:21:11 +0000347 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
348 bdrv_delete(bs);
349 if (ret < 0) {
350 return NULL;
351 }
352
bellardea2384d2004-08-01 21:59:26 +0000353 score_max = 0;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200354 drv = NULL;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100355 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
bellard83f64092006-08-01 16:21:11 +0000356 if (drv1->bdrv_probe) {
357 score = drv1->bdrv_probe(buf, ret, filename);
358 if (score > score_max) {
359 score_max = score;
360 drv = drv1;
361 }
bellardea2384d2004-08-01 21:59:26 +0000362 }
363 }
364 return drv;
365}
366
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100367/**
368 * Set the current 'total_sectors' value
369 */
370static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
371{
372 BlockDriver *drv = bs->drv;
373
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700374 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
375 if (bs->sg)
376 return 0;
377
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100378 /* query actual device if possible, otherwise just trust the hint */
379 if (drv->bdrv_getlength) {
380 int64_t length = drv->bdrv_getlength(bs);
381 if (length < 0) {
382 return length;
383 }
384 hint = length >> BDRV_SECTOR_BITS;
385 }
386
387 bs->total_sectors = hint;
388 return 0;
389}
390
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200391/*
Kevin Wolf57915332010-04-14 15:24:50 +0200392 * Common part for opening disk images and files
393 */
394static int bdrv_open_common(BlockDriverState *bs, const char *filename,
395 int flags, BlockDriver *drv)
396{
397 int ret, open_flags;
398
399 assert(drv != NULL);
400
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200401 bs->file = NULL;
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100402 bs->total_sectors = 0;
Kevin Wolf57915332010-04-14 15:24:50 +0200403 bs->encrypted = 0;
404 bs->valid_key = 0;
405 bs->open_flags = flags;
406 /* buffer_alignment defaulted to 512, drivers can change this value */
407 bs->buffer_alignment = 512;
408
409 pstrcpy(bs->filename, sizeof(bs->filename), filename);
410
411 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
412 return -ENOTSUP;
413 }
414
415 bs->drv = drv;
416 bs->opaque = qemu_mallocz(drv->instance_size);
417
418 /*
419 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
420 * write cache to the guest. We do need the fdatasync to flush
421 * out transactions for block allocations, and we maybe have a
422 * volatile write cache in our backing device to deal with.
423 */
424 if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
425 bs->enable_write_cache = 1;
426
427 /*
428 * Clear flags that are internal to the block layer before opening the
429 * image.
430 */
431 open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
432
433 /*
434 * Snapshots should be writeable.
435 */
436 if (bs->is_temporary) {
437 open_flags |= BDRV_O_RDWR;
438 }
439
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200440 /* Open the image, either directly or using a protocol */
441 if (drv->bdrv_file_open) {
442 ret = drv->bdrv_file_open(bs, filename, open_flags);
443 } else {
444 ret = bdrv_file_open(&bs->file, filename, open_flags);
445 if (ret >= 0) {
446 ret = drv->bdrv_open(bs, open_flags);
447 }
448 }
449
Kevin Wolf57915332010-04-14 15:24:50 +0200450 if (ret < 0) {
451 goto free_and_fail;
452 }
453
454 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100455
456 ret = refresh_total_sectors(bs, bs->total_sectors);
457 if (ret < 0) {
458 goto free_and_fail;
Kevin Wolf57915332010-04-14 15:24:50 +0200459 }
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100460
Kevin Wolf57915332010-04-14 15:24:50 +0200461#ifndef _WIN32
462 if (bs->is_temporary) {
463 unlink(filename);
464 }
465#endif
466 return 0;
467
468free_and_fail:
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200469 if (bs->file) {
470 bdrv_delete(bs->file);
471 bs->file = NULL;
472 }
Kevin Wolf57915332010-04-14 15:24:50 +0200473 qemu_free(bs->opaque);
474 bs->opaque = NULL;
475 bs->drv = NULL;
476 return ret;
477}
478
479/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200480 * Opens a file using a protocol (file, host_device, nbd, ...)
481 */
bellard83f64092006-08-01 16:21:11 +0000482int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000483{
bellard83f64092006-08-01 16:21:11 +0000484 BlockDriverState *bs;
Christoph Hellwig6db95602010-04-05 16:53:57 +0200485 BlockDriver *drv;
bellard83f64092006-08-01 16:21:11 +0000486 int ret;
487
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900488 drv = bdrv_find_protocol(filename);
Christoph Hellwig6db95602010-04-05 16:53:57 +0200489 if (!drv) {
490 return -ENOENT;
491 }
492
bellard83f64092006-08-01 16:21:11 +0000493 bs = bdrv_new("");
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200494 ret = bdrv_open_common(bs, filename, flags, drv);
bellard83f64092006-08-01 16:21:11 +0000495 if (ret < 0) {
496 bdrv_delete(bs);
497 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000498 }
aliguori71d07702009-03-03 17:37:16 +0000499 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000500 *pbs = bs;
501 return 0;
bellardea2384d2004-08-01 21:59:26 +0000502}
bellardfc01f7e2003-06-30 10:03:06 +0000503
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200504/*
505 * Opens a disk image (raw, qcow2, vmdk, ...)
506 */
Kevin Wolfd6e90982010-03-31 14:40:27 +0200507int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
508 BlockDriver *drv)
bellardea2384d2004-08-01 21:59:26 +0000509{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200510 int ret;
bellard712e7872005-04-28 21:09:32 +0000511
bellard83f64092006-08-01 16:21:11 +0000512 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000513 BlockDriverState *bs1;
514 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000515 int is_protocol = 0;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200516 BlockDriver *bdrv_qcow2;
517 QEMUOptionParameter *options;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200518 char tmp_filename[PATH_MAX];
519 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000520
bellardea2384d2004-08-01 21:59:26 +0000521 /* if snapshot, we create a temporary backing file and open it
522 instead of opening 'filename' directly */
523
524 /* if there is a backing file, use it */
525 bs1 = bdrv_new("");
Kevin Wolfd6e90982010-03-31 14:40:27 +0200526 ret = bdrv_open(bs1, filename, 0, drv);
aliguori51d7c002009-03-05 23:00:29 +0000527 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000528 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000529 return ret;
bellardea2384d2004-08-01 21:59:26 +0000530 }
Jes Sorensen3e829902010-05-27 16:20:30 +0200531 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
aliguori7c96d462008-09-12 17:54:13 +0000532
533 if (bs1->drv && bs1->drv->protocol_name)
534 is_protocol = 1;
535
bellardea2384d2004-08-01 21:59:26 +0000536 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000537
bellardea2384d2004-08-01 21:59:26 +0000538 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
aliguori7c96d462008-09-12 17:54:13 +0000539
540 /* Real path is meaningless for protocols */
541 if (is_protocol)
542 snprintf(backing_filename, sizeof(backing_filename),
543 "%s", filename);
Kirill A. Shutemov114cdfa2009-12-25 18:19:22 +0000544 else if (!realpath(filename, backing_filename))
545 return -errno;
aliguori7c96d462008-09-12 17:54:13 +0000546
Kevin Wolf91a073a2009-05-27 14:48:06 +0200547 bdrv_qcow2 = bdrv_find_format("qcow2");
548 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
549
Jes Sorensen3e829902010-05-27 16:20:30 +0200550 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
Kevin Wolf91a073a2009-05-27 14:48:06 +0200551 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
552 if (drv) {
553 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
554 drv->format_name);
555 }
556
557 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
Jan Kiszkad7487682010-04-29 18:24:50 +0200558 free_option_parameters(options);
aliguori51d7c002009-03-05 23:00:29 +0000559 if (ret < 0) {
560 return ret;
bellardea2384d2004-08-01 21:59:26 +0000561 }
Kevin Wolf91a073a2009-05-27 14:48:06 +0200562
bellardea2384d2004-08-01 21:59:26 +0000563 filename = tmp_filename;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200564 drv = bdrv_qcow2;
bellardea2384d2004-08-01 21:59:26 +0000565 bs->is_temporary = 1;
566 }
bellard712e7872005-04-28 21:09:32 +0000567
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200568 /* Find the right image format driver */
Christoph Hellwig6db95602010-04-05 16:53:57 +0200569 if (!drv) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200570 drv = find_image_format(filename);
aliguori51d7c002009-03-05 23:00:29 +0000571 }
Christoph Hellwig69873072010-01-20 18:13:25 +0100572
aliguori51d7c002009-03-05 23:00:29 +0000573 if (!drv) {
574 ret = -ENOENT;
575 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000576 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200577
578 /* Open the image */
579 ret = bdrv_open_common(bs, filename, flags, drv);
580 if (ret < 0) {
Christoph Hellwig69873072010-01-20 18:13:25 +0100581 goto unlink_and_fail;
582 }
583
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200584 /* If there is a backing file, use it */
585 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
586 char backing_filename[PATH_MAX];
587 int back_flags;
588 BlockDriver *back_drv = NULL;
589
590 bs->backing_hd = bdrv_new("");
591 path_combine(backing_filename, sizeof(backing_filename),
592 filename, bs->backing_file);
593 if (bs->backing_format[0] != '\0')
594 back_drv = bdrv_find_format(bs->backing_format);
595
596 /* backing files always opened read-only */
597 back_flags =
598 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
599
600 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
601 if (ret < 0) {
602 bdrv_close(bs);
603 return ret;
604 }
605 if (bs->is_temporary) {
606 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
607 } else {
608 /* base image inherits from "parent" */
609 bs->backing_hd->keep_read_only = bs->keep_read_only;
610 }
611 }
612
613 if (!bdrv_key_required(bs)) {
614 /* call the change callback */
615 bs->media_changed = 1;
616 if (bs->change_cb)
617 bs->change_cb(bs->change_opaque);
618 }
619
620 return 0;
621
622unlink_and_fail:
623 if (bs->is_temporary) {
624 unlink(filename);
625 }
626 return ret;
627}
628
bellardfc01f7e2003-06-30 10:03:06 +0000629void bdrv_close(BlockDriverState *bs)
630{
bellard19cb3732006-08-19 11:45:59 +0000631 if (bs->drv) {
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +0100632 if (bs->backing_hd) {
bellardea2384d2004-08-01 21:59:26 +0000633 bdrv_delete(bs->backing_hd);
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +0100634 bs->backing_hd = NULL;
635 }
bellardea2384d2004-08-01 21:59:26 +0000636 bs->drv->bdrv_close(bs);
637 qemu_free(bs->opaque);
638#ifdef _WIN32
639 if (bs->is_temporary) {
640 unlink(bs->filename);
641 }
bellard67b915a2004-03-31 23:37:16 +0000642#endif
bellardea2384d2004-08-01 21:59:26 +0000643 bs->opaque = NULL;
644 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +0000645
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200646 if (bs->file != NULL) {
647 bdrv_close(bs->file);
648 }
649
bellardb3380822004-03-14 21:38:54 +0000650 /* call the change callback */
bellard19cb3732006-08-19 11:45:59 +0000651 bs->media_changed = 1;
bellardb3380822004-03-14 21:38:54 +0000652 if (bs->change_cb)
653 bs->change_cb(bs->change_opaque);
654 }
655}
656
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +0900657void bdrv_close_all(void)
658{
659 BlockDriverState *bs;
660
661 QTAILQ_FOREACH(bs, &bdrv_states, list) {
662 bdrv_close(bs);
663 }
664}
665
bellardb3380822004-03-14 21:38:54 +0000666void bdrv_delete(BlockDriverState *bs)
667{
Markus Armbruster18846de2010-06-29 16:58:30 +0200668 assert(!bs->peer);
669
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100670 /* remove from list, if necessary */
671 if (bs->device_name[0] != '\0') {
672 QTAILQ_REMOVE(&bdrv_states, bs, list);
673 }
aurel3234c6f052008-04-08 19:51:21 +0000674
bellardb3380822004-03-14 21:38:54 +0000675 bdrv_close(bs);
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200676 if (bs->file != NULL) {
677 bdrv_delete(bs->file);
678 }
679
bellardb3380822004-03-14 21:38:54 +0000680 qemu_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000681}
682
Markus Armbruster18846de2010-06-29 16:58:30 +0200683int bdrv_attach(BlockDriverState *bs, DeviceState *qdev)
684{
685 if (bs->peer) {
686 return -EBUSY;
687 }
688 bs->peer = qdev;
689 return 0;
690}
691
692void bdrv_detach(BlockDriverState *bs, DeviceState *qdev)
693{
694 assert(bs->peer == qdev);
695 bs->peer = NULL;
696}
697
698DeviceState *bdrv_get_attached(BlockDriverState *bs)
699{
700 return bs->peer;
701}
702
aliguorie97fc192009-04-21 23:11:50 +0000703/*
704 * Run consistency checks on an image
705 *
706 * Returns the number of errors or -errno when an internal error occurs
707 */
708int bdrv_check(BlockDriverState *bs)
709{
710 if (bs->drv->bdrv_check == NULL) {
711 return -ENOTSUP;
712 }
713
714 return bs->drv->bdrv_check(bs);
715}
716
bellard33e39632003-07-06 17:15:21 +0000717/* commit COW file into the raw image */
718int bdrv_commit(BlockDriverState *bs)
719{
bellard19cb3732006-08-19 11:45:59 +0000720 BlockDriver *drv = bs->drv;
bellard83f64092006-08-01 16:21:11 +0000721 int64_t i, total_sectors;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200722 int n, j, ro, open_flags;
723 int ret = 0, rw_ret = 0;
Jes Sorenseneb5a3162010-05-27 16:20:31 +0200724 unsigned char sector[BDRV_SECTOR_SIZE];
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200725 char filename[1024];
726 BlockDriverState *bs_rw, *bs_ro;
bellard33e39632003-07-06 17:15:21 +0000727
bellard19cb3732006-08-19 11:45:59 +0000728 if (!drv)
729 return -ENOMEDIUM;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200730
731 if (!bs->backing_hd) {
732 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +0000733 }
734
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200735 if (bs->backing_hd->keep_read_only) {
736 return -EACCES;
737 }
738
739 ro = bs->backing_hd->read_only;
740 strncpy(filename, bs->backing_hd->filename, sizeof(filename));
741 open_flags = bs->backing_hd->open_flags;
742
743 if (ro) {
744 /* re-open as RW */
745 bdrv_delete(bs->backing_hd);
746 bs->backing_hd = NULL;
747 bs_rw = bdrv_new("");
Kevin Wolfc3349192010-05-06 16:34:56 +0200748 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR, drv);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200749 if (rw_ret < 0) {
750 bdrv_delete(bs_rw);
751 /* try to re-open read-only */
752 bs_ro = bdrv_new("");
Kevin Wolfc3349192010-05-06 16:34:56 +0200753 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, drv);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200754 if (ret < 0) {
755 bdrv_delete(bs_ro);
756 /* drive not functional anymore */
757 bs->drv = NULL;
758 return ret;
759 }
760 bs->backing_hd = bs_ro;
761 return rw_ret;
762 }
763 bs->backing_hd = bs_rw;
bellard33e39632003-07-06 17:15:21 +0000764 }
bellardea2384d2004-08-01 21:59:26 +0000765
Jan Kiszka6ea44302009-11-30 18:21:19 +0100766 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +0000767 for (i = 0; i < total_sectors;) {
bellard19cb3732006-08-19 11:45:59 +0000768 if (drv->bdrv_is_allocated(bs, i, 65536, &n)) {
bellardea2384d2004-08-01 21:59:26 +0000769 for(j = 0; j < n; j++) {
770 if (bdrv_read(bs, i, sector, 1) != 0) {
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200771 ret = -EIO;
772 goto ro_cleanup;
bellardea2384d2004-08-01 21:59:26 +0000773 }
774
775 if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) {
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200776 ret = -EIO;
777 goto ro_cleanup;
bellardea2384d2004-08-01 21:59:26 +0000778 }
779 i++;
780 }
781 } else {
782 i += n;
783 }
784 }
bellard95389c82005-12-18 18:28:15 +0000785
Christoph Hellwig1d449522010-01-17 12:32:30 +0100786 if (drv->bdrv_make_empty) {
787 ret = drv->bdrv_make_empty(bs);
788 bdrv_flush(bs);
789 }
bellard95389c82005-12-18 18:28:15 +0000790
Christoph Hellwig3f5075a2010-01-12 13:49:23 +0100791 /*
792 * Make sure all data we wrote to the backing device is actually
793 * stable on disk.
794 */
795 if (bs->backing_hd)
796 bdrv_flush(bs->backing_hd);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200797
798ro_cleanup:
799
800 if (ro) {
801 /* re-open as RO */
802 bdrv_delete(bs->backing_hd);
803 bs->backing_hd = NULL;
804 bs_ro = bdrv_new("");
Kevin Wolfc3349192010-05-06 16:34:56 +0200805 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, drv);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200806 if (ret < 0) {
807 bdrv_delete(bs_ro);
808 /* drive not functional anymore */
809 bs->drv = NULL;
810 return ret;
811 }
812 bs->backing_hd = bs_ro;
813 bs->backing_hd->keep_read_only = 0;
814 }
815
Christoph Hellwig1d449522010-01-17 12:32:30 +0100816 return ret;
bellard33e39632003-07-06 17:15:21 +0000817}
818
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200819void bdrv_commit_all(void)
820{
821 BlockDriverState *bs;
822
823 QTAILQ_FOREACH(bs, &bdrv_states, list) {
824 bdrv_commit(bs);
825 }
826}
827
Kevin Wolf756e6732010-01-12 12:55:17 +0100828/*
829 * Return values:
830 * 0 - success
831 * -EINVAL - backing format specified, but no file
832 * -ENOSPC - can't update the backing file because no space is left in the
833 * image file header
834 * -ENOTSUP - format driver doesn't support changing the backing file
835 */
836int bdrv_change_backing_file(BlockDriverState *bs,
837 const char *backing_file, const char *backing_fmt)
838{
839 BlockDriver *drv = bs->drv;
840
841 if (drv->bdrv_change_backing_file != NULL) {
842 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
843 } else {
844 return -ENOTSUP;
845 }
846}
847
aliguori71d07702009-03-03 17:37:16 +0000848static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
849 size_t size)
850{
851 int64_t len;
852
853 if (!bdrv_is_inserted(bs))
854 return -ENOMEDIUM;
855
856 if (bs->growable)
857 return 0;
858
859 len = bdrv_getlength(bs);
860
Kevin Wolffbb7b4e2009-05-08 14:47:24 +0200861 if (offset < 0)
862 return -EIO;
863
864 if ((offset > len) || (len - offset < size))
aliguori71d07702009-03-03 17:37:16 +0000865 return -EIO;
866
867 return 0;
868}
869
870static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
871 int nb_sectors)
872{
Jes Sorenseneb5a3162010-05-27 16:20:31 +0200873 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
874 nb_sectors * BDRV_SECTOR_SIZE);
aliguori71d07702009-03-03 17:37:16 +0000875}
876
bellard19cb3732006-08-19 11:45:59 +0000877/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +0000878int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000879 uint8_t *buf, int nb_sectors)
880{
bellardea2384d2004-08-01 21:59:26 +0000881 BlockDriver *drv = bs->drv;
882
bellard19cb3732006-08-19 11:45:59 +0000883 if (!drv)
884 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000885 if (bdrv_check_request(bs, sector_num, nb_sectors))
886 return -EIO;
bellardb3380822004-03-14 21:38:54 +0000887
aliguorieda578e2009-03-12 19:57:16 +0000888 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
bellardfc01f7e2003-06-30 10:03:06 +0000889}
890
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200891static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100892 int nb_sectors, int dirty)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200893{
894 int64_t start, end;
Jan Kiszkac6d22832009-11-30 18:21:20 +0100895 unsigned long val, idx, bit;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100896
Jan Kiszka6ea44302009-11-30 18:21:19 +0100897 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkac6d22832009-11-30 18:21:20 +0100898 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100899
900 for (; start <= end; start++) {
Jan Kiszkac6d22832009-11-30 18:21:20 +0100901 idx = start / (sizeof(unsigned long) * 8);
902 bit = start % (sizeof(unsigned long) * 8);
903 val = bs->dirty_bitmap[idx];
904 if (dirty) {
Liran Schouraaa0eb72010-01-26 10:31:48 +0200905 if (!(val & (1 << bit))) {
906 bs->dirty_count++;
907 val |= 1 << bit;
908 }
Jan Kiszkac6d22832009-11-30 18:21:20 +0100909 } else {
Liran Schouraaa0eb72010-01-26 10:31:48 +0200910 if (val & (1 << bit)) {
911 bs->dirty_count--;
912 val &= ~(1 << bit);
913 }
Jan Kiszkac6d22832009-11-30 18:21:20 +0100914 }
915 bs->dirty_bitmap[idx] = val;
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200916 }
917}
918
ths5fafdf22007-09-16 21:08:06 +0000919/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +0000920 -EIO generic I/O error (may happen for all errors)
921 -ENOMEDIUM No media inserted.
922 -EINVAL Invalid sector number or nb_sectors
923 -EACCES Trying to write a read-only device
924*/
ths5fafdf22007-09-16 21:08:06 +0000925int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000926 const uint8_t *buf, int nb_sectors)
927{
bellard83f64092006-08-01 16:21:11 +0000928 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +0000929 if (!bs->drv)
930 return -ENOMEDIUM;
bellard0849bf02003-06-30 23:17:31 +0000931 if (bs->read_only)
bellard19cb3732006-08-19 11:45:59 +0000932 return -EACCES;
aliguori71d07702009-03-03 17:37:16 +0000933 if (bdrv_check_request(bs, sector_num, nb_sectors))
934 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100935
Jan Kiszkac6d22832009-11-30 18:21:20 +0100936 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200937 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
938 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100939
Kevin Wolf294cc352010-04-28 14:34:01 +0200940 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
941 bs->wr_highest_sector = sector_num + nb_sectors - 1;
942 }
943
aliguori42fb2802009-01-15 20:43:39 +0000944 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
bellard83f64092006-08-01 16:21:11 +0000945}
946
aliguorieda578e2009-03-12 19:57:16 +0000947int bdrv_pread(BlockDriverState *bs, int64_t offset,
948 void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000949{
Jan Kiszka6ea44302009-11-30 18:21:19 +0100950 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +0000951 int len, nb_sectors, count;
952 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +0100953 int ret;
bellard83f64092006-08-01 16:21:11 +0000954
955 count = count1;
956 /* first read to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +0100957 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +0000958 if (len > count)
959 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +0100960 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +0000961 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +0100962 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
963 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +0100964 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
bellard83f64092006-08-01 16:21:11 +0000965 count -= len;
966 if (count == 0)
967 return count1;
968 sector_num++;
969 buf += len;
970 }
971
972 /* read the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +0100973 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +0000974 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +0100975 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
976 return ret;
bellard83f64092006-08-01 16:21:11 +0000977 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +0100978 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +0000979 buf += len;
980 count -= len;
981 }
982
983 /* add data from the last sector */
984 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +0100985 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
986 return ret;
bellard83f64092006-08-01 16:21:11 +0000987 memcpy(buf, tmp_buf, count);
988 }
989 return count1;
990}
991
aliguorieda578e2009-03-12 19:57:16 +0000992int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
993 const void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +0000994{
Jan Kiszka6ea44302009-11-30 18:21:19 +0100995 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +0000996 int len, nb_sectors, count;
997 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +0100998 int ret;
bellard83f64092006-08-01 16:21:11 +0000999
1000 count = count1;
1001 /* first write to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001002 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00001003 if (len > count)
1004 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001005 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001006 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001007 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1008 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001009 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001010 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1011 return ret;
bellard83f64092006-08-01 16:21:11 +00001012 count -= len;
1013 if (count == 0)
1014 return count1;
1015 sector_num++;
1016 buf += len;
1017 }
1018
1019 /* write the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001020 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001021 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001022 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
1023 return ret;
bellard83f64092006-08-01 16:21:11 +00001024 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001025 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001026 buf += len;
1027 count -= len;
1028 }
1029
1030 /* add data from the last sector */
1031 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001032 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1033 return ret;
bellard83f64092006-08-01 16:21:11 +00001034 memcpy(tmp_buf, buf, count);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001035 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1036 return ret;
bellard83f64092006-08-01 16:21:11 +00001037 }
1038 return count1;
1039}
bellard83f64092006-08-01 16:21:11 +00001040
Kevin Wolff08145f2010-06-16 16:38:15 +02001041/*
1042 * Writes to the file and ensures that no writes are reordered across this
1043 * request (acts as a barrier)
1044 *
1045 * Returns 0 on success, -errno in error cases.
1046 */
1047int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
1048 const void *buf, int count)
1049{
1050 int ret;
1051
1052 ret = bdrv_pwrite(bs, offset, buf, count);
1053 if (ret < 0) {
1054 return ret;
1055 }
1056
1057 /* No flush needed for cache=writethrough, it uses O_DSYNC */
1058 if ((bs->open_flags & BDRV_O_CACHE_MASK) != 0) {
1059 bdrv_flush(bs);
1060 }
1061
1062 return 0;
1063}
1064
1065/*
1066 * Writes to the file and ensures that no writes are reordered across this
1067 * request (acts as a barrier)
1068 *
1069 * Returns 0 on success, -errno in error cases.
1070 */
1071int bdrv_write_sync(BlockDriverState *bs, int64_t sector_num,
1072 const uint8_t *buf, int nb_sectors)
1073{
1074 return bdrv_pwrite_sync(bs, BDRV_SECTOR_SIZE * sector_num,
1075 buf, BDRV_SECTOR_SIZE * nb_sectors);
1076}
1077
bellard83f64092006-08-01 16:21:11 +00001078/**
bellard83f64092006-08-01 16:21:11 +00001079 * Truncate file to 'offset' bytes (needed only for file protocols)
1080 */
1081int bdrv_truncate(BlockDriverState *bs, int64_t offset)
1082{
1083 BlockDriver *drv = bs->drv;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001084 int ret;
bellard83f64092006-08-01 16:21:11 +00001085 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001086 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +00001087 if (!drv->bdrv_truncate)
1088 return -ENOTSUP;
Naphtali Sprei59f26892009-10-26 16:25:16 +02001089 if (bs->read_only)
1090 return -EACCES;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001091 ret = drv->bdrv_truncate(bs, offset);
1092 if (ret == 0) {
1093 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
1094 }
1095 return ret;
bellard83f64092006-08-01 16:21:11 +00001096}
1097
1098/**
1099 * Length of a file in bytes. Return < 0 if error or unknown.
1100 */
1101int64_t bdrv_getlength(BlockDriverState *bs)
1102{
1103 BlockDriver *drv = bs->drv;
1104 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001105 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001106
1107 /* Fixed size devices use the total_sectors value for speed instead of
1108 issuing a length query (like lseek) on each call. Also, legacy block
1109 drivers don't provide a bdrv_getlength function and must use
1110 total_sectors. */
1111 if (!bs->growable || !drv->bdrv_getlength) {
Jan Kiszka6ea44302009-11-30 18:21:19 +01001112 return bs->total_sectors * BDRV_SECTOR_SIZE;
bellard83f64092006-08-01 16:21:11 +00001113 }
1114 return drv->bdrv_getlength(bs);
bellardfc01f7e2003-06-30 10:03:06 +00001115}
1116
bellard19cb3732006-08-19 11:45:59 +00001117/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00001118void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00001119{
bellard19cb3732006-08-19 11:45:59 +00001120 int64_t length;
1121 length = bdrv_getlength(bs);
1122 if (length < 0)
1123 length = 0;
1124 else
Jan Kiszka6ea44302009-11-30 18:21:19 +01001125 length = length >> BDRV_SECTOR_BITS;
bellard19cb3732006-08-19 11:45:59 +00001126 *nb_sectors_ptr = length;
bellardfc01f7e2003-06-30 10:03:06 +00001127}
bellardcf989512004-02-16 21:56:36 +00001128
aliguorif3d54fc2008-11-25 21:50:24 +00001129struct partition {
1130 uint8_t boot_ind; /* 0x80 - active */
1131 uint8_t head; /* starting head */
1132 uint8_t sector; /* starting sector */
1133 uint8_t cyl; /* starting cylinder */
1134 uint8_t sys_ind; /* What partition type */
1135 uint8_t end_head; /* end head */
1136 uint8_t end_sector; /* end sector */
1137 uint8_t end_cyl; /* end cylinder */
1138 uint32_t start_sect; /* starting sector counting from 0 */
1139 uint32_t nr_sects; /* nr of sectors in partition */
1140} __attribute__((packed));
1141
1142/* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1143static int guess_disk_lchs(BlockDriverState *bs,
1144 int *pcylinders, int *pheads, int *psectors)
1145{
Jes Sorenseneb5a3162010-05-27 16:20:31 +02001146 uint8_t buf[BDRV_SECTOR_SIZE];
aliguorif3d54fc2008-11-25 21:50:24 +00001147 int ret, i, heads, sectors, cylinders;
1148 struct partition *p;
1149 uint32_t nr_sects;
blueswir1a38131b2008-12-05 17:56:40 +00001150 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +00001151
1152 bdrv_get_geometry(bs, &nb_sectors);
1153
1154 ret = bdrv_read(bs, 0, buf, 1);
1155 if (ret < 0)
1156 return -1;
1157 /* test msdos magic */
1158 if (buf[510] != 0x55 || buf[511] != 0xaa)
1159 return -1;
1160 for(i = 0; i < 4; i++) {
1161 p = ((struct partition *)(buf + 0x1be)) + i;
1162 nr_sects = le32_to_cpu(p->nr_sects);
1163 if (nr_sects && p->end_head) {
1164 /* We make the assumption that the partition terminates on
1165 a cylinder boundary */
1166 heads = p->end_head + 1;
1167 sectors = p->end_sector & 63;
1168 if (sectors == 0)
1169 continue;
1170 cylinders = nb_sectors / (heads * sectors);
1171 if (cylinders < 1 || cylinders > 16383)
1172 continue;
1173 *pheads = heads;
1174 *psectors = sectors;
1175 *pcylinders = cylinders;
1176#if 0
1177 printf("guessed geometry: LCHS=%d %d %d\n",
1178 cylinders, heads, sectors);
1179#endif
1180 return 0;
1181 }
1182 }
1183 return -1;
1184}
1185
1186void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
1187{
1188 int translation, lba_detected = 0;
1189 int cylinders, heads, secs;
blueswir1a38131b2008-12-05 17:56:40 +00001190 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +00001191
1192 /* if a geometry hint is available, use it */
1193 bdrv_get_geometry(bs, &nb_sectors);
1194 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
1195 translation = bdrv_get_translation_hint(bs);
1196 if (cylinders != 0) {
1197 *pcyls = cylinders;
1198 *pheads = heads;
1199 *psecs = secs;
1200 } else {
1201 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
1202 if (heads > 16) {
1203 /* if heads > 16, it means that a BIOS LBA
1204 translation was active, so the default
1205 hardware geometry is OK */
1206 lba_detected = 1;
1207 goto default_geometry;
1208 } else {
1209 *pcyls = cylinders;
1210 *pheads = heads;
1211 *psecs = secs;
1212 /* disable any translation to be in sync with
1213 the logical geometry */
1214 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
1215 bdrv_set_translation_hint(bs,
1216 BIOS_ATA_TRANSLATION_NONE);
1217 }
1218 }
1219 } else {
1220 default_geometry:
1221 /* if no geometry, use a standard physical disk geometry */
1222 cylinders = nb_sectors / (16 * 63);
1223
1224 if (cylinders > 16383)
1225 cylinders = 16383;
1226 else if (cylinders < 2)
1227 cylinders = 2;
1228 *pcyls = cylinders;
1229 *pheads = 16;
1230 *psecs = 63;
1231 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
1232 if ((*pcyls * *pheads) <= 131072) {
1233 bdrv_set_translation_hint(bs,
1234 BIOS_ATA_TRANSLATION_LARGE);
1235 } else {
1236 bdrv_set_translation_hint(bs,
1237 BIOS_ATA_TRANSLATION_LBA);
1238 }
1239 }
1240 }
1241 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
1242 }
1243}
1244
ths5fafdf22007-09-16 21:08:06 +00001245void bdrv_set_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +00001246 int cyls, int heads, int secs)
1247{
1248 bs->cyls = cyls;
1249 bs->heads = heads;
1250 bs->secs = secs;
1251}
1252
1253void bdrv_set_type_hint(BlockDriverState *bs, int type)
1254{
1255 bs->type = type;
1256 bs->removable = ((type == BDRV_TYPE_CDROM ||
1257 type == BDRV_TYPE_FLOPPY));
1258}
1259
bellard46d47672004-11-16 01:45:27 +00001260void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
1261{
1262 bs->translation = translation;
1263}
1264
ths5fafdf22007-09-16 21:08:06 +00001265void bdrv_get_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +00001266 int *pcyls, int *pheads, int *psecs)
1267{
1268 *pcyls = bs->cyls;
1269 *pheads = bs->heads;
1270 *psecs = bs->secs;
1271}
1272
1273int bdrv_get_type_hint(BlockDriverState *bs)
1274{
1275 return bs->type;
1276}
1277
bellard46d47672004-11-16 01:45:27 +00001278int bdrv_get_translation_hint(BlockDriverState *bs)
1279{
1280 return bs->translation;
1281}
1282
Markus Armbrusterabd7f682010-06-02 18:55:17 +02001283void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
1284 BlockErrorAction on_write_error)
1285{
1286 bs->on_read_error = on_read_error;
1287 bs->on_write_error = on_write_error;
1288}
1289
1290BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read)
1291{
1292 return is_read ? bs->on_read_error : bs->on_write_error;
1293}
1294
bellardb3380822004-03-14 21:38:54 +00001295int bdrv_is_removable(BlockDriverState *bs)
1296{
1297 return bs->removable;
1298}
1299
1300int bdrv_is_read_only(BlockDriverState *bs)
1301{
1302 return bs->read_only;
1303}
1304
ths985a03b2007-12-24 16:10:43 +00001305int bdrv_is_sg(BlockDriverState *bs)
1306{
1307 return bs->sg;
1308}
1309
Christoph Hellwige900a7b2009-09-04 19:01:15 +02001310int bdrv_enable_write_cache(BlockDriverState *bs)
1311{
1312 return bs->enable_write_cache;
1313}
1314
bellard19cb3732006-08-19 11:45:59 +00001315/* XXX: no longer used */
ths5fafdf22007-09-16 21:08:06 +00001316void bdrv_set_change_cb(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +00001317 void (*change_cb)(void *opaque), void *opaque)
1318{
1319 bs->change_cb = change_cb;
1320 bs->change_opaque = opaque;
1321}
1322
bellardea2384d2004-08-01 21:59:26 +00001323int bdrv_is_encrypted(BlockDriverState *bs)
1324{
1325 if (bs->backing_hd && bs->backing_hd->encrypted)
1326 return 1;
1327 return bs->encrypted;
1328}
1329
aliguoric0f4ce72009-03-05 23:01:01 +00001330int bdrv_key_required(BlockDriverState *bs)
1331{
1332 BlockDriverState *backing_hd = bs->backing_hd;
1333
1334 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
1335 return 1;
1336 return (bs->encrypted && !bs->valid_key);
1337}
1338
bellardea2384d2004-08-01 21:59:26 +00001339int bdrv_set_key(BlockDriverState *bs, const char *key)
1340{
1341 int ret;
1342 if (bs->backing_hd && bs->backing_hd->encrypted) {
1343 ret = bdrv_set_key(bs->backing_hd, key);
1344 if (ret < 0)
1345 return ret;
1346 if (!bs->encrypted)
1347 return 0;
1348 }
Shahar Havivifd04a2a2010-03-06 00:26:13 +02001349 if (!bs->encrypted) {
1350 return -EINVAL;
1351 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
1352 return -ENOMEDIUM;
1353 }
aliguoric0f4ce72009-03-05 23:01:01 +00001354 ret = bs->drv->bdrv_set_key(bs, key);
aliguoribb5fc202009-03-05 23:01:15 +00001355 if (ret < 0) {
1356 bs->valid_key = 0;
1357 } else if (!bs->valid_key) {
1358 bs->valid_key = 1;
1359 /* call the change callback now, we skipped it on open */
1360 bs->media_changed = 1;
1361 if (bs->change_cb)
1362 bs->change_cb(bs->change_opaque);
1363 }
aliguoric0f4ce72009-03-05 23:01:01 +00001364 return ret;
bellardea2384d2004-08-01 21:59:26 +00001365}
1366
1367void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
1368{
bellard19cb3732006-08-19 11:45:59 +00001369 if (!bs->drv) {
bellardea2384d2004-08-01 21:59:26 +00001370 buf[0] = '\0';
1371 } else {
1372 pstrcpy(buf, buf_size, bs->drv->format_name);
1373 }
1374}
1375
ths5fafdf22007-09-16 21:08:06 +00001376void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00001377 void *opaque)
1378{
1379 BlockDriver *drv;
1380
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01001381 QLIST_FOREACH(drv, &bdrv_drivers, list) {
bellardea2384d2004-08-01 21:59:26 +00001382 it(opaque, drv->format_name);
1383 }
1384}
1385
bellardb3380822004-03-14 21:38:54 +00001386BlockDriverState *bdrv_find(const char *name)
1387{
1388 BlockDriverState *bs;
1389
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001390 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1391 if (!strcmp(name, bs->device_name)) {
bellardb3380822004-03-14 21:38:54 +00001392 return bs;
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001393 }
bellardb3380822004-03-14 21:38:54 +00001394 }
1395 return NULL;
1396}
1397
Markus Armbruster2f399b02010-06-02 18:55:20 +02001398BlockDriverState *bdrv_next(BlockDriverState *bs)
1399{
1400 if (!bs) {
1401 return QTAILQ_FIRST(&bdrv_states);
1402 }
1403 return QTAILQ_NEXT(bs, list);
1404}
1405
aliguori51de9762009-03-05 23:00:43 +00001406void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +00001407{
1408 BlockDriverState *bs;
1409
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001410 QTAILQ_FOREACH(bs, &bdrv_states, list) {
aliguori51de9762009-03-05 23:00:43 +00001411 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +00001412 }
1413}
1414
bellardea2384d2004-08-01 21:59:26 +00001415const char *bdrv_get_device_name(BlockDriverState *bs)
1416{
1417 return bs->device_name;
1418}
1419
pbrook7a6cba62006-06-04 11:39:07 +00001420void bdrv_flush(BlockDriverState *bs)
1421{
Alexander Graf016f5cf2010-05-26 17:51:49 +02001422 if (bs->open_flags & BDRV_O_NO_FLUSH) {
1423 return;
1424 }
1425
Christoph Hellwig3f5075a2010-01-12 13:49:23 +01001426 if (bs->drv && bs->drv->bdrv_flush)
pbrook7a6cba62006-06-04 11:39:07 +00001427 bs->drv->bdrv_flush(bs);
pbrook7a6cba62006-06-04 11:39:07 +00001428}
1429
aliguoric6ca28d2008-10-06 13:55:43 +00001430void bdrv_flush_all(void)
1431{
1432 BlockDriverState *bs;
1433
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001434 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1435 if (bs->drv && !bdrv_is_read_only(bs) &&
1436 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) {
aliguoric6ca28d2008-10-06 13:55:43 +00001437 bdrv_flush(bs);
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001438 }
1439 }
aliguoric6ca28d2008-10-06 13:55:43 +00001440}
1441
Kevin Wolff2feebb2010-04-14 17:30:35 +02001442int bdrv_has_zero_init(BlockDriverState *bs)
1443{
1444 assert(bs->drv);
1445
1446 if (bs->drv->no_zero_init) {
1447 return 0;
1448 } else if (bs->file) {
1449 return bdrv_has_zero_init(bs->file);
1450 }
1451
1452 return 1;
1453}
1454
thsf58c7b32008-06-05 21:53:49 +00001455/*
1456 * Returns true iff the specified sector is present in the disk image. Drivers
1457 * not implementing the functionality are assumed to not support backing files,
1458 * hence all their sectors are reported as allocated.
1459 *
1460 * 'pnum' is set to the number of sectors (including and immediately following
1461 * the specified sector) that are known to be in the same
1462 * allocated/unallocated state.
1463 *
1464 * 'nb_sectors' is the max value 'pnum' should be set to.
1465 */
1466int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1467 int *pnum)
1468{
1469 int64_t n;
1470 if (!bs->drv->bdrv_is_allocated) {
1471 if (sector_num >= bs->total_sectors) {
1472 *pnum = 0;
1473 return 0;
1474 }
1475 n = bs->total_sectors - sector_num;
1476 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1477 return 1;
1478 }
1479 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1480}
1481
Luiz Capitulino2582bfe2010-02-03 12:41:01 -02001482void bdrv_mon_event(const BlockDriverState *bdrv,
1483 BlockMonEventAction action, int is_read)
1484{
1485 QObject *data;
1486 const char *action_str;
1487
1488 switch (action) {
1489 case BDRV_ACTION_REPORT:
1490 action_str = "report";
1491 break;
1492 case BDRV_ACTION_IGNORE:
1493 action_str = "ignore";
1494 break;
1495 case BDRV_ACTION_STOP:
1496 action_str = "stop";
1497 break;
1498 default:
1499 abort();
1500 }
1501
1502 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1503 bdrv->device_name,
1504 action_str,
1505 is_read ? "read" : "write");
1506 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
1507
1508 qobject_decref(data);
1509}
1510
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001511static void bdrv_print_dict(QObject *obj, void *opaque)
bellardb3380822004-03-14 21:38:54 +00001512{
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001513 QDict *bs_dict;
1514 Monitor *mon = opaque;
1515
1516 bs_dict = qobject_to_qdict(obj);
1517
1518 monitor_printf(mon, "%s: type=%s removable=%d",
1519 qdict_get_str(bs_dict, "device"),
1520 qdict_get_str(bs_dict, "type"),
1521 qdict_get_bool(bs_dict, "removable"));
1522
1523 if (qdict_get_bool(bs_dict, "removable")) {
1524 monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked"));
1525 }
1526
1527 if (qdict_haskey(bs_dict, "inserted")) {
1528 QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted"));
1529
1530 monitor_printf(mon, " file=");
1531 monitor_print_filename(mon, qdict_get_str(qdict, "file"));
1532 if (qdict_haskey(qdict, "backing_file")) {
1533 monitor_printf(mon, " backing_file=");
1534 monitor_print_filename(mon, qdict_get_str(qdict, "backing_file"));
1535 }
1536 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
1537 qdict_get_bool(qdict, "ro"),
1538 qdict_get_str(qdict, "drv"),
1539 qdict_get_bool(qdict, "encrypted"));
1540 } else {
1541 monitor_printf(mon, " [not inserted]");
1542 }
1543
1544 monitor_printf(mon, "\n");
1545}
1546
1547void bdrv_info_print(Monitor *mon, const QObject *data)
1548{
1549 qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon);
1550}
1551
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001552void bdrv_info(Monitor *mon, QObject **ret_data)
1553{
1554 QList *bs_list;
bellardb3380822004-03-14 21:38:54 +00001555 BlockDriverState *bs;
1556
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001557 bs_list = qlist_new();
1558
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001559 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001560 QObject *bs_obj;
1561 const char *type = "unknown";
1562
bellardb3380822004-03-14 21:38:54 +00001563 switch(bs->type) {
1564 case BDRV_TYPE_HD:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001565 type = "hd";
bellardb3380822004-03-14 21:38:54 +00001566 break;
1567 case BDRV_TYPE_CDROM:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001568 type = "cdrom";
bellardb3380822004-03-14 21:38:54 +00001569 break;
1570 case BDRV_TYPE_FLOPPY:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001571 type = "floppy";
bellardb3380822004-03-14 21:38:54 +00001572 break;
1573 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001574
1575 bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1576 "'removable': %i, 'locked': %i }",
1577 bs->device_name, type, bs->removable,
1578 bs->locked);
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001579
bellard19cb3732006-08-19 11:45:59 +00001580 if (bs->drv) {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001581 QObject *obj;
1582 QDict *bs_dict = qobject_to_qdict(bs_obj);
1583
1584 obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1585 "'encrypted': %i }",
1586 bs->filename, bs->read_only,
1587 bs->drv->format_name,
1588 bdrv_is_encrypted(bs));
thsfef30742006-12-22 14:11:32 +00001589 if (bs->backing_file[0] != '\0') {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001590 QDict *qdict = qobject_to_qdict(obj);
1591 qdict_put(qdict, "backing_file",
1592 qstring_from_str(bs->backing_file));
aliguori376253e2009-03-05 23:01:23 +00001593 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001594
1595 qdict_put_obj(bs_dict, "inserted", obj);
bellardb3380822004-03-14 21:38:54 +00001596 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001597 qlist_append_obj(bs_list, bs_obj);
bellardb3380822004-03-14 21:38:54 +00001598 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001599
1600 *ret_data = QOBJECT(bs_list);
bellardb3380822004-03-14 21:38:54 +00001601}
thsa36e69d2007-12-02 05:18:19 +00001602
Luiz Capitulino218a5362009-12-10 17:16:07 -02001603static void bdrv_stats_iter(QObject *data, void *opaque)
thsa36e69d2007-12-02 05:18:19 +00001604{
Luiz Capitulino218a5362009-12-10 17:16:07 -02001605 QDict *qdict;
1606 Monitor *mon = opaque;
1607
1608 qdict = qobject_to_qdict(data);
1609 monitor_printf(mon, "%s:", qdict_get_str(qdict, "device"));
1610
1611 qdict = qobject_to_qdict(qdict_get(qdict, "stats"));
1612 monitor_printf(mon, " rd_bytes=%" PRId64
1613 " wr_bytes=%" PRId64
1614 " rd_operations=%" PRId64
1615 " wr_operations=%" PRId64
1616 "\n",
1617 qdict_get_int(qdict, "rd_bytes"),
1618 qdict_get_int(qdict, "wr_bytes"),
1619 qdict_get_int(qdict, "rd_operations"),
1620 qdict_get_int(qdict, "wr_operations"));
1621}
1622
1623void bdrv_stats_print(Monitor *mon, const QObject *data)
1624{
1625 qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon);
1626}
1627
Kevin Wolf294cc352010-04-28 14:34:01 +02001628static QObject* bdrv_info_stats_bs(BlockDriverState *bs)
1629{
1630 QObject *res;
1631 QDict *dict;
1632
1633 res = qobject_from_jsonf("{ 'stats': {"
1634 "'rd_bytes': %" PRId64 ","
1635 "'wr_bytes': %" PRId64 ","
1636 "'rd_operations': %" PRId64 ","
1637 "'wr_operations': %" PRId64 ","
1638 "'wr_highest_offset': %" PRId64
1639 "} }",
1640 bs->rd_bytes, bs->wr_bytes,
1641 bs->rd_ops, bs->wr_ops,
Blue Swirl5ffbbc62010-06-14 18:55:33 +00001642 bs->wr_highest_sector *
1643 (uint64_t)BDRV_SECTOR_SIZE);
Kevin Wolf294cc352010-04-28 14:34:01 +02001644 dict = qobject_to_qdict(res);
1645
1646 if (*bs->device_name) {
1647 qdict_put(dict, "device", qstring_from_str(bs->device_name));
1648 }
1649
1650 if (bs->file) {
1651 QObject *parent = bdrv_info_stats_bs(bs->file);
1652 qdict_put_obj(dict, "parent", parent);
1653 }
1654
1655 return res;
1656}
1657
Luiz Capitulino218a5362009-12-10 17:16:07 -02001658void bdrv_info_stats(Monitor *mon, QObject **ret_data)
1659{
1660 QObject *obj;
1661 QList *devices;
thsa36e69d2007-12-02 05:18:19 +00001662 BlockDriverState *bs;
1663
Luiz Capitulino218a5362009-12-10 17:16:07 -02001664 devices = qlist_new();
1665
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001666 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Kevin Wolf294cc352010-04-28 14:34:01 +02001667 obj = bdrv_info_stats_bs(bs);
Luiz Capitulino218a5362009-12-10 17:16:07 -02001668 qlist_append_obj(devices, obj);
thsa36e69d2007-12-02 05:18:19 +00001669 }
Luiz Capitulino218a5362009-12-10 17:16:07 -02001670
1671 *ret_data = QOBJECT(devices);
thsa36e69d2007-12-02 05:18:19 +00001672}
bellardea2384d2004-08-01 21:59:26 +00001673
aliguori045df332009-03-05 23:00:48 +00001674const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1675{
1676 if (bs->backing_hd && bs->backing_hd->encrypted)
1677 return bs->backing_file;
1678 else if (bs->encrypted)
1679 return bs->filename;
1680 else
1681 return NULL;
1682}
1683
ths5fafdf22007-09-16 21:08:06 +00001684void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00001685 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00001686{
Kevin Wolfb783e402010-01-12 12:55:16 +01001687 if (!bs->backing_file) {
bellard83f64092006-08-01 16:21:11 +00001688 pstrcpy(filename, filename_size, "");
1689 } else {
1690 pstrcpy(filename, filename_size, bs->backing_file);
1691 }
bellardea2384d2004-08-01 21:59:26 +00001692}
1693
ths5fafdf22007-09-16 21:08:06 +00001694int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00001695 const uint8_t *buf, int nb_sectors)
1696{
1697 BlockDriver *drv = bs->drv;
1698 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001699 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001700 if (!drv->bdrv_write_compressed)
1701 return -ENOTSUP;
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02001702 if (bdrv_check_request(bs, sector_num, nb_sectors))
1703 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001704
Jan Kiszkac6d22832009-11-30 18:21:20 +01001705 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02001706 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1707 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001708
bellardfaea38e2006-08-05 21:31:00 +00001709 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1710}
ths3b46e622007-09-17 08:09:54 +00001711
bellardfaea38e2006-08-05 21:31:00 +00001712int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1713{
1714 BlockDriver *drv = bs->drv;
1715 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001716 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001717 if (!drv->bdrv_get_info)
1718 return -ENOTSUP;
1719 memset(bdi, 0, sizeof(*bdi));
1720 return drv->bdrv_get_info(bs, bdi);
1721}
1722
Christoph Hellwig45566e92009-07-10 23:11:57 +02001723int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1724 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00001725{
1726 BlockDriver *drv = bs->drv;
1727 if (!drv)
1728 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001729 if (drv->bdrv_save_vmstate)
1730 return drv->bdrv_save_vmstate(bs, buf, pos, size);
1731 if (bs->file)
1732 return bdrv_save_vmstate(bs->file, buf, pos, size);
1733 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00001734}
1735
Christoph Hellwig45566e92009-07-10 23:11:57 +02001736int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1737 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00001738{
1739 BlockDriver *drv = bs->drv;
1740 if (!drv)
1741 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001742 if (drv->bdrv_load_vmstate)
1743 return drv->bdrv_load_vmstate(bs, buf, pos, size);
1744 if (bs->file)
1745 return bdrv_load_vmstate(bs->file, buf, pos, size);
1746 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00001747}
1748
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01001749void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
1750{
1751 BlockDriver *drv = bs->drv;
1752
1753 if (!drv || !drv->bdrv_debug_event) {
1754 return;
1755 }
1756
1757 return drv->bdrv_debug_event(bs, event);
1758
1759}
1760
bellardfaea38e2006-08-05 21:31:00 +00001761/**************************************************************/
1762/* handling of snapshots */
1763
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001764int bdrv_can_snapshot(BlockDriverState *bs)
1765{
1766 BlockDriver *drv = bs->drv;
1767 if (!drv || bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1768 return 0;
1769 }
1770
1771 if (!drv->bdrv_snapshot_create) {
1772 if (bs->file != NULL) {
1773 return bdrv_can_snapshot(bs->file);
1774 }
1775 return 0;
1776 }
1777
1778 return 1;
1779}
1780
ths5fafdf22007-09-16 21:08:06 +00001781int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001782 QEMUSnapshotInfo *sn_info)
1783{
1784 BlockDriver *drv = bs->drv;
1785 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001786 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001787 if (drv->bdrv_snapshot_create)
1788 return drv->bdrv_snapshot_create(bs, sn_info);
1789 if (bs->file)
1790 return bdrv_snapshot_create(bs->file, sn_info);
1791 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00001792}
1793
ths5fafdf22007-09-16 21:08:06 +00001794int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001795 const char *snapshot_id)
1796{
1797 BlockDriver *drv = bs->drv;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001798 int ret, open_ret;
1799
bellardfaea38e2006-08-05 21:31:00 +00001800 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001801 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001802 if (drv->bdrv_snapshot_goto)
1803 return drv->bdrv_snapshot_goto(bs, snapshot_id);
1804
1805 if (bs->file) {
1806 drv->bdrv_close(bs);
1807 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
1808 open_ret = drv->bdrv_open(bs, bs->open_flags);
1809 if (open_ret < 0) {
1810 bdrv_delete(bs->file);
1811 bs->drv = NULL;
1812 return open_ret;
1813 }
1814 return ret;
1815 }
1816
1817 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00001818}
1819
1820int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
1821{
1822 BlockDriver *drv = bs->drv;
1823 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001824 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001825 if (drv->bdrv_snapshot_delete)
1826 return drv->bdrv_snapshot_delete(bs, snapshot_id);
1827 if (bs->file)
1828 return bdrv_snapshot_delete(bs->file, snapshot_id);
1829 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00001830}
1831
ths5fafdf22007-09-16 21:08:06 +00001832int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001833 QEMUSnapshotInfo **psn_info)
1834{
1835 BlockDriver *drv = bs->drv;
1836 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001837 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001838 if (drv->bdrv_snapshot_list)
1839 return drv->bdrv_snapshot_list(bs, psn_info);
1840 if (bs->file)
1841 return bdrv_snapshot_list(bs->file, psn_info);
1842 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00001843}
1844
1845#define NB_SUFFIXES 4
1846
1847char *get_human_readable_size(char *buf, int buf_size, int64_t size)
1848{
1849 static const char suffixes[NB_SUFFIXES] = "KMGT";
1850 int64_t base;
1851 int i;
1852
1853 if (size <= 999) {
1854 snprintf(buf, buf_size, "%" PRId64, size);
1855 } else {
1856 base = 1024;
1857 for(i = 0; i < NB_SUFFIXES; i++) {
1858 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00001859 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00001860 (double)size / base,
1861 suffixes[i]);
1862 break;
1863 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00001864 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00001865 ((size + (base >> 1)) / base),
1866 suffixes[i]);
1867 break;
1868 }
1869 base = base * 1024;
1870 }
1871 }
1872 return buf;
1873}
1874
1875char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
1876{
1877 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00001878#ifdef _WIN32
1879 struct tm *ptm;
1880#else
bellardfaea38e2006-08-05 21:31:00 +00001881 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00001882#endif
bellardfaea38e2006-08-05 21:31:00 +00001883 time_t ti;
1884 int64_t secs;
1885
1886 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00001887 snprintf(buf, buf_size,
1888 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001889 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
1890 } else {
1891 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00001892#ifdef _WIN32
1893 ptm = localtime(&ti);
1894 strftime(date_buf, sizeof(date_buf),
1895 "%Y-%m-%d %H:%M:%S", ptm);
1896#else
bellardfaea38e2006-08-05 21:31:00 +00001897 localtime_r(&ti, &tm);
1898 strftime(date_buf, sizeof(date_buf),
1899 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00001900#endif
bellardfaea38e2006-08-05 21:31:00 +00001901 secs = sn->vm_clock_nsec / 1000000000;
1902 snprintf(clock_buf, sizeof(clock_buf),
1903 "%02d:%02d:%02d.%03d",
1904 (int)(secs / 3600),
1905 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00001906 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00001907 (int)((sn->vm_clock_nsec / 1000000) % 1000));
1908 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00001909 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00001910 sn->id_str, sn->name,
1911 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
1912 date_buf,
1913 clock_buf);
1914 }
1915 return buf;
1916}
1917
bellardea2384d2004-08-01 21:59:26 +00001918
bellard83f64092006-08-01 16:21:11 +00001919/**************************************************************/
1920/* async I/Os */
1921
aliguori3b69e4b2009-01-22 16:59:24 +00001922BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
aliguorif141eaf2009-04-07 18:43:24 +00001923 QEMUIOVector *qiov, int nb_sectors,
aliguori3b69e4b2009-01-22 16:59:24 +00001924 BlockDriverCompletionFunc *cb, void *opaque)
1925{
bellard83f64092006-08-01 16:21:11 +00001926 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001927 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001928
bellard19cb3732006-08-19 11:45:59 +00001929 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001930 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001931 if (bdrv_check_request(bs, sector_num, nb_sectors))
1932 return NULL;
ths3b46e622007-09-17 08:09:54 +00001933
aliguorif141eaf2009-04-07 18:43:24 +00001934 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
1935 cb, opaque);
thsa36e69d2007-12-02 05:18:19 +00001936
1937 if (ret) {
1938 /* Update stats even though technically transfer has not happened. */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001939 bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
thsa36e69d2007-12-02 05:18:19 +00001940 bs->rd_ops ++;
1941 }
1942
1943 return ret;
bellard83f64092006-08-01 16:21:11 +00001944}
1945
aliguorif141eaf2009-04-07 18:43:24 +00001946BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
1947 QEMUIOVector *qiov, int nb_sectors,
1948 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00001949{
bellard83f64092006-08-01 16:21:11 +00001950 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00001951 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00001952
bellard19cb3732006-08-19 11:45:59 +00001953 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00001954 return NULL;
bellard83f64092006-08-01 16:21:11 +00001955 if (bs->read_only)
pbrookce1a14d2006-08-07 02:38:06 +00001956 return NULL;
aliguori71d07702009-03-03 17:37:16 +00001957 if (bdrv_check_request(bs, sector_num, nb_sectors))
1958 return NULL;
bellard83f64092006-08-01 16:21:11 +00001959
Jan Kiszkac6d22832009-11-30 18:21:20 +01001960 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02001961 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1962 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001963
aliguorif141eaf2009-04-07 18:43:24 +00001964 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
1965 cb, opaque);
thsa36e69d2007-12-02 05:18:19 +00001966
1967 if (ret) {
Kevin Wolf294cc352010-04-28 14:34:01 +02001968 /* Update stats even though technically transfer has not happened. */
1969 bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
1970 bs->wr_ops ++;
1971 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
1972 bs->wr_highest_sector = sector_num + nb_sectors - 1;
1973 }
thsa36e69d2007-12-02 05:18:19 +00001974 }
1975
1976 return ret;
bellard83f64092006-08-01 16:21:11 +00001977}
1978
Kevin Wolf40b4f532009-09-09 17:53:37 +02001979
1980typedef struct MultiwriteCB {
1981 int error;
1982 int num_requests;
1983 int num_callbacks;
1984 struct {
1985 BlockDriverCompletionFunc *cb;
1986 void *opaque;
1987 QEMUIOVector *free_qiov;
1988 void *free_buf;
1989 } callbacks[];
1990} MultiwriteCB;
1991
1992static void multiwrite_user_cb(MultiwriteCB *mcb)
1993{
1994 int i;
1995
1996 for (i = 0; i < mcb->num_callbacks; i++) {
1997 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
Stefan Hajnoczi1e1ea482010-04-21 20:35:45 +01001998 if (mcb->callbacks[i].free_qiov) {
1999 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
2000 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02002001 qemu_free(mcb->callbacks[i].free_qiov);
Herve Poussineauf8a83242010-01-24 21:23:56 +00002002 qemu_vfree(mcb->callbacks[i].free_buf);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002003 }
2004}
2005
2006static void multiwrite_cb(void *opaque, int ret)
2007{
2008 MultiwriteCB *mcb = opaque;
2009
Kevin Wolfcb6d3ca2010-04-01 22:48:44 +02002010 if (ret < 0 && !mcb->error) {
Kevin Wolf40b4f532009-09-09 17:53:37 +02002011 mcb->error = ret;
2012 multiwrite_user_cb(mcb);
2013 }
2014
2015 mcb->num_requests--;
2016 if (mcb->num_requests == 0) {
2017 if (mcb->error == 0) {
2018 multiwrite_user_cb(mcb);
2019 }
2020 qemu_free(mcb);
2021 }
2022}
2023
2024static int multiwrite_req_compare(const void *a, const void *b)
2025{
Christoph Hellwig77be4362010-05-19 20:53:10 +02002026 const BlockRequest *req1 = a, *req2 = b;
2027
2028 /*
2029 * Note that we can't simply subtract req2->sector from req1->sector
2030 * here as that could overflow the return value.
2031 */
2032 if (req1->sector > req2->sector) {
2033 return 1;
2034 } else if (req1->sector < req2->sector) {
2035 return -1;
2036 } else {
2037 return 0;
2038 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02002039}
2040
2041/*
2042 * Takes a bunch of requests and tries to merge them. Returns the number of
2043 * requests that remain after merging.
2044 */
2045static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
2046 int num_reqs, MultiwriteCB *mcb)
2047{
2048 int i, outidx;
2049
2050 // Sort requests by start sector
2051 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
2052
2053 // Check if adjacent requests touch the same clusters. If so, combine them,
2054 // filling up gaps with zero sectors.
2055 outidx = 0;
2056 for (i = 1; i < num_reqs; i++) {
2057 int merge = 0;
2058 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
2059
2060 // This handles the cases that are valid for all block drivers, namely
2061 // exactly sequential writes and overlapping writes.
2062 if (reqs[i].sector <= oldreq_last) {
2063 merge = 1;
2064 }
2065
2066 // The block driver may decide that it makes sense to combine requests
2067 // even if there is a gap of some sectors between them. In this case,
2068 // the gap is filled with zeros (therefore only applicable for yet
2069 // unused space in format like qcow2).
2070 if (!merge && bs->drv->bdrv_merge_requests) {
2071 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
2072 }
2073
Christoph Hellwige2a305f2010-01-26 14:49:08 +01002074 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
2075 merge = 0;
2076 }
2077
Kevin Wolf40b4f532009-09-09 17:53:37 +02002078 if (merge) {
2079 size_t size;
2080 QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
2081 qemu_iovec_init(qiov,
2082 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
2083
2084 // Add the first request to the merged one. If the requests are
2085 // overlapping, drop the last sectors of the first request.
2086 size = (reqs[i].sector - reqs[outidx].sector) << 9;
2087 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
2088
2089 // We might need to add some zeros between the two requests
2090 if (reqs[i].sector > oldreq_last) {
2091 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
2092 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
2093 memset(buf, 0, zero_bytes);
2094 qemu_iovec_add(qiov, buf, zero_bytes);
2095 mcb->callbacks[i].free_buf = buf;
2096 }
2097
2098 // Add the second request
2099 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
2100
Kevin Wolfcbf1dff2010-05-21 11:09:42 +02002101 reqs[outidx].nb_sectors = qiov->size >> 9;
Kevin Wolf40b4f532009-09-09 17:53:37 +02002102 reqs[outidx].qiov = qiov;
2103
2104 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
2105 } else {
2106 outidx++;
2107 reqs[outidx].sector = reqs[i].sector;
2108 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
2109 reqs[outidx].qiov = reqs[i].qiov;
2110 }
2111 }
2112
2113 return outidx + 1;
2114}
2115
2116/*
2117 * Submit multiple AIO write requests at once.
2118 *
2119 * On success, the function returns 0 and all requests in the reqs array have
2120 * been submitted. In error case this function returns -1, and any of the
2121 * requests may or may not be submitted yet. In particular, this means that the
2122 * callback will be called for some of the requests, for others it won't. The
2123 * caller must check the error field of the BlockRequest to wait for the right
2124 * callbacks (if error != 0, no callback will be called).
2125 *
2126 * The implementation may modify the contents of the reqs array, e.g. to merge
2127 * requests. However, the fields opaque and error are left unmodified as they
2128 * are used to signal failure for a single request to the caller.
2129 */
2130int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
2131{
2132 BlockDriverAIOCB *acb;
2133 MultiwriteCB *mcb;
2134 int i;
2135
2136 if (num_reqs == 0) {
2137 return 0;
2138 }
2139
2140 // Create MultiwriteCB structure
2141 mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
2142 mcb->num_requests = 0;
2143 mcb->num_callbacks = num_reqs;
2144
2145 for (i = 0; i < num_reqs; i++) {
2146 mcb->callbacks[i].cb = reqs[i].cb;
2147 mcb->callbacks[i].opaque = reqs[i].opaque;
2148 }
2149
2150 // Check for mergable requests
2151 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
2152
2153 // Run the aio requests
2154 for (i = 0; i < num_reqs; i++) {
2155 acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
2156 reqs[i].nb_sectors, multiwrite_cb, mcb);
2157
2158 if (acb == NULL) {
2159 // We can only fail the whole thing if no request has been
2160 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2161 // complete and report the error in the callback.
2162 if (mcb->num_requests == 0) {
Kevin Wolf0f0b6042010-04-06 18:24:06 +02002163 reqs[i].error = -EIO;
Kevin Wolf40b4f532009-09-09 17:53:37 +02002164 goto fail;
2165 } else {
Kevin Wolf7eb58a62010-04-06 18:24:07 +02002166 mcb->num_requests++;
2167 multiwrite_cb(mcb, -EIO);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002168 break;
2169 }
2170 } else {
2171 mcb->num_requests++;
2172 }
2173 }
2174
2175 return 0;
2176
2177fail:
Bruce Rogersaf474592010-05-13 15:14:33 -06002178 qemu_free(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002179 return -1;
2180}
2181
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002182BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
2183 BlockDriverCompletionFunc *cb, void *opaque)
2184{
2185 BlockDriver *drv = bs->drv;
2186
Alexander Graf016f5cf2010-05-26 17:51:49 +02002187 if (bs->open_flags & BDRV_O_NO_FLUSH) {
2188 return bdrv_aio_noop_em(bs, cb, opaque);
2189 }
2190
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002191 if (!drv)
2192 return NULL;
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002193 return drv->bdrv_aio_flush(bs, cb, opaque);
2194}
2195
bellard83f64092006-08-01 16:21:11 +00002196void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00002197{
aliguori6bbff9a2009-03-20 18:25:59 +00002198 acb->pool->cancel(acb);
bellard83f64092006-08-01 16:21:11 +00002199}
2200
pbrookce1a14d2006-08-07 02:38:06 +00002201
bellard83f64092006-08-01 16:21:11 +00002202/**************************************************************/
2203/* async block device emulation */
2204
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002205typedef struct BlockDriverAIOCBSync {
2206 BlockDriverAIOCB common;
2207 QEMUBH *bh;
2208 int ret;
2209 /* vector translation state */
2210 QEMUIOVector *qiov;
2211 uint8_t *bounce;
2212 int is_write;
2213} BlockDriverAIOCBSync;
2214
2215static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
2216{
Kevin Wolfb666d232010-05-05 11:44:39 +02002217 BlockDriverAIOCBSync *acb =
2218 container_of(blockacb, BlockDriverAIOCBSync, common);
Dor Laor6a7ad292009-06-01 12:07:23 +03002219 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03002220 acb->bh = NULL;
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002221 qemu_aio_release(acb);
2222}
2223
2224static AIOPool bdrv_em_aio_pool = {
2225 .aiocb_size = sizeof(BlockDriverAIOCBSync),
2226 .cancel = bdrv_aio_cancel_em,
2227};
2228
bellard83f64092006-08-01 16:21:11 +00002229static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00002230{
pbrookce1a14d2006-08-07 02:38:06 +00002231 BlockDriverAIOCBSync *acb = opaque;
aliguorif141eaf2009-04-07 18:43:24 +00002232
aliguorif141eaf2009-04-07 18:43:24 +00002233 if (!acb->is_write)
2234 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
aliguoriceb42de2009-04-07 18:43:28 +00002235 qemu_vfree(acb->bounce);
pbrookce1a14d2006-08-07 02:38:06 +00002236 acb->common.cb(acb->common.opaque, acb->ret);
Dor Laor6a7ad292009-06-01 12:07:23 +03002237 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03002238 acb->bh = NULL;
pbrookce1a14d2006-08-07 02:38:06 +00002239 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00002240}
bellardbeac80c2006-06-26 20:08:57 +00002241
aliguorif141eaf2009-04-07 18:43:24 +00002242static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
2243 int64_t sector_num,
2244 QEMUIOVector *qiov,
2245 int nb_sectors,
2246 BlockDriverCompletionFunc *cb,
2247 void *opaque,
2248 int is_write)
2249
bellardea2384d2004-08-01 21:59:26 +00002250{
pbrookce1a14d2006-08-07 02:38:06 +00002251 BlockDriverAIOCBSync *acb;
pbrookce1a14d2006-08-07 02:38:06 +00002252
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002253 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
aliguorif141eaf2009-04-07 18:43:24 +00002254 acb->is_write = is_write;
2255 acb->qiov = qiov;
aliguorie268ca52009-04-22 20:20:00 +00002256 acb->bounce = qemu_blockalign(bs, qiov->size);
aliguorif141eaf2009-04-07 18:43:24 +00002257
pbrookce1a14d2006-08-07 02:38:06 +00002258 if (!acb->bh)
2259 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
aliguorif141eaf2009-04-07 18:43:24 +00002260
2261 if (is_write) {
2262 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
2263 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
2264 } else {
2265 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
2266 }
2267
pbrookce1a14d2006-08-07 02:38:06 +00002268 qemu_bh_schedule(acb->bh);
aliguorif141eaf2009-04-07 18:43:24 +00002269
pbrookce1a14d2006-08-07 02:38:06 +00002270 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00002271}
2272
aliguorif141eaf2009-04-07 18:43:24 +00002273static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
2274 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +00002275 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00002276{
aliguorif141eaf2009-04-07 18:43:24 +00002277 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
bellard83f64092006-08-01 16:21:11 +00002278}
2279
aliguorif141eaf2009-04-07 18:43:24 +00002280static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
2281 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
2282 BlockDriverCompletionFunc *cb, void *opaque)
2283{
2284 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
2285}
2286
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002287static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
2288 BlockDriverCompletionFunc *cb, void *opaque)
2289{
2290 BlockDriverAIOCBSync *acb;
2291
2292 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2293 acb->is_write = 1; /* don't bounce in the completion hadler */
2294 acb->qiov = NULL;
2295 acb->bounce = NULL;
2296 acb->ret = 0;
2297
2298 if (!acb->bh)
2299 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2300
2301 bdrv_flush(bs);
2302 qemu_bh_schedule(acb->bh);
2303 return &acb->common;
2304}
2305
Alexander Graf016f5cf2010-05-26 17:51:49 +02002306static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
2307 BlockDriverCompletionFunc *cb, void *opaque)
2308{
2309 BlockDriverAIOCBSync *acb;
2310
2311 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2312 acb->is_write = 1; /* don't bounce in the completion handler */
2313 acb->qiov = NULL;
2314 acb->bounce = NULL;
2315 acb->ret = 0;
2316
2317 if (!acb->bh) {
2318 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2319 }
2320
2321 qemu_bh_schedule(acb->bh);
2322 return &acb->common;
2323}
2324
bellard83f64092006-08-01 16:21:11 +00002325/**************************************************************/
2326/* sync block device emulation */
2327
2328static void bdrv_rw_em_cb(void *opaque, int ret)
2329{
2330 *(int *)opaque = ret;
2331}
2332
2333#define NOT_DONE 0x7fffffff
2334
ths5fafdf22007-09-16 21:08:06 +00002335static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +00002336 uint8_t *buf, int nb_sectors)
2337{
pbrookce1a14d2006-08-07 02:38:06 +00002338 int async_ret;
2339 BlockDriverAIOCB *acb;
aliguorif141eaf2009-04-07 18:43:24 +00002340 struct iovec iov;
2341 QEMUIOVector qiov;
bellard83f64092006-08-01 16:21:11 +00002342
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002343 async_context_push();
2344
bellard83f64092006-08-01 16:21:11 +00002345 async_ret = NOT_DONE;
blueswir13f4cb3d2009-04-13 16:31:01 +00002346 iov.iov_base = (void *)buf;
Jes Sorenseneb5a3162010-05-27 16:20:31 +02002347 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
aliguorif141eaf2009-04-07 18:43:24 +00002348 qemu_iovec_init_external(&qiov, &iov, 1);
2349 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
2350 bdrv_rw_em_cb, &async_ret);
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002351 if (acb == NULL) {
2352 async_ret = -1;
2353 goto fail;
2354 }
aliguoribaf35cb2008-09-10 15:45:19 +00002355
bellard83f64092006-08-01 16:21:11 +00002356 while (async_ret == NOT_DONE) {
2357 qemu_aio_wait();
2358 }
aliguoribaf35cb2008-09-10 15:45:19 +00002359
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002360
2361fail:
2362 async_context_pop();
bellard83f64092006-08-01 16:21:11 +00002363 return async_ret;
2364}
2365
2366static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
2367 const uint8_t *buf, int nb_sectors)
2368{
pbrookce1a14d2006-08-07 02:38:06 +00002369 int async_ret;
2370 BlockDriverAIOCB *acb;
aliguorif141eaf2009-04-07 18:43:24 +00002371 struct iovec iov;
2372 QEMUIOVector qiov;
bellard83f64092006-08-01 16:21:11 +00002373
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002374 async_context_push();
2375
bellard83f64092006-08-01 16:21:11 +00002376 async_ret = NOT_DONE;
aliguorif141eaf2009-04-07 18:43:24 +00002377 iov.iov_base = (void *)buf;
Jes Sorenseneb5a3162010-05-27 16:20:31 +02002378 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
aliguorif141eaf2009-04-07 18:43:24 +00002379 qemu_iovec_init_external(&qiov, &iov, 1);
2380 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
2381 bdrv_rw_em_cb, &async_ret);
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002382 if (acb == NULL) {
2383 async_ret = -1;
2384 goto fail;
2385 }
bellard83f64092006-08-01 16:21:11 +00002386 while (async_ret == NOT_DONE) {
2387 qemu_aio_wait();
2388 }
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002389
2390fail:
2391 async_context_pop();
bellard83f64092006-08-01 16:21:11 +00002392 return async_ret;
2393}
bellardea2384d2004-08-01 21:59:26 +00002394
2395void bdrv_init(void)
2396{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05002397 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00002398}
pbrookce1a14d2006-08-07 02:38:06 +00002399
Markus Armbrustereb852012009-10-27 18:41:44 +01002400void bdrv_init_with_whitelist(void)
2401{
2402 use_bdrv_whitelist = 1;
2403 bdrv_init();
2404}
2405
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002406void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
2407 BlockDriverCompletionFunc *cb, void *opaque)
aliguori6bbff9a2009-03-20 18:25:59 +00002408{
pbrookce1a14d2006-08-07 02:38:06 +00002409 BlockDriverAIOCB *acb;
2410
aliguori6bbff9a2009-03-20 18:25:59 +00002411 if (pool->free_aiocb) {
2412 acb = pool->free_aiocb;
2413 pool->free_aiocb = acb->next;
pbrookce1a14d2006-08-07 02:38:06 +00002414 } else {
aliguori6bbff9a2009-03-20 18:25:59 +00002415 acb = qemu_mallocz(pool->aiocb_size);
2416 acb->pool = pool;
pbrookce1a14d2006-08-07 02:38:06 +00002417 }
2418 acb->bs = bs;
2419 acb->cb = cb;
2420 acb->opaque = opaque;
2421 return acb;
2422}
2423
2424void qemu_aio_release(void *p)
2425{
aliguori6bbff9a2009-03-20 18:25:59 +00002426 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
2427 AIOPool *pool = acb->pool;
2428 acb->next = pool->free_aiocb;
2429 pool->free_aiocb = acb;
pbrookce1a14d2006-08-07 02:38:06 +00002430}
bellard19cb3732006-08-19 11:45:59 +00002431
2432/**************************************************************/
2433/* removable device support */
2434
2435/**
2436 * Return TRUE if the media is present
2437 */
2438int bdrv_is_inserted(BlockDriverState *bs)
2439{
2440 BlockDriver *drv = bs->drv;
2441 int ret;
2442 if (!drv)
2443 return 0;
2444 if (!drv->bdrv_is_inserted)
2445 return 1;
2446 ret = drv->bdrv_is_inserted(bs);
2447 return ret;
2448}
2449
2450/**
2451 * Return TRUE if the media changed since the last call to this
ths5fafdf22007-09-16 21:08:06 +00002452 * function. It is currently only used for floppy disks
bellard19cb3732006-08-19 11:45:59 +00002453 */
2454int bdrv_media_changed(BlockDriverState *bs)
2455{
2456 BlockDriver *drv = bs->drv;
2457 int ret;
2458
2459 if (!drv || !drv->bdrv_media_changed)
2460 ret = -ENOTSUP;
2461 else
2462 ret = drv->bdrv_media_changed(bs);
2463 if (ret == -ENOTSUP)
2464 ret = bs->media_changed;
2465 bs->media_changed = 0;
2466 return ret;
2467}
2468
2469/**
2470 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2471 */
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002472int bdrv_eject(BlockDriverState *bs, int eject_flag)
bellard19cb3732006-08-19 11:45:59 +00002473{
2474 BlockDriver *drv = bs->drv;
2475 int ret;
2476
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002477 if (bs->locked) {
2478 return -EBUSY;
2479 }
2480
bellard19cb3732006-08-19 11:45:59 +00002481 if (!drv || !drv->bdrv_eject) {
2482 ret = -ENOTSUP;
2483 } else {
2484 ret = drv->bdrv_eject(bs, eject_flag);
2485 }
2486 if (ret == -ENOTSUP) {
2487 if (eject_flag)
2488 bdrv_close(bs);
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002489 ret = 0;
bellard19cb3732006-08-19 11:45:59 +00002490 }
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002491
2492 return ret;
bellard19cb3732006-08-19 11:45:59 +00002493}
2494
2495int bdrv_is_locked(BlockDriverState *bs)
2496{
2497 return bs->locked;
2498}
2499
2500/**
2501 * Lock or unlock the media (if it is locked, the user won't be able
2502 * to eject it manually).
2503 */
2504void bdrv_set_locked(BlockDriverState *bs, int locked)
2505{
2506 BlockDriver *drv = bs->drv;
2507
2508 bs->locked = locked;
2509 if (drv && drv->bdrv_set_locked) {
2510 drv->bdrv_set_locked(bs, locked);
2511 }
2512}
ths985a03b2007-12-24 16:10:43 +00002513
2514/* needed for generic scsi interface */
2515
2516int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
2517{
2518 BlockDriver *drv = bs->drv;
2519
2520 if (drv && drv->bdrv_ioctl)
2521 return drv->bdrv_ioctl(bs, req, buf);
2522 return -ENOTSUP;
2523}
aliguori7d780662009-03-12 19:57:08 +00002524
aliguori221f7152009-03-28 17:28:41 +00002525BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
2526 unsigned long int req, void *buf,
2527 BlockDriverCompletionFunc *cb, void *opaque)
aliguori7d780662009-03-12 19:57:08 +00002528{
aliguori221f7152009-03-28 17:28:41 +00002529 BlockDriver *drv = bs->drv;
aliguori7d780662009-03-12 19:57:08 +00002530
aliguori221f7152009-03-28 17:28:41 +00002531 if (drv && drv->bdrv_aio_ioctl)
2532 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
2533 return NULL;
aliguori7d780662009-03-12 19:57:08 +00002534}
aliguorie268ca52009-04-22 20:20:00 +00002535
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002536
2537
aliguorie268ca52009-04-22 20:20:00 +00002538void *qemu_blockalign(BlockDriverState *bs, size_t size)
2539{
2540 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
2541}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002542
2543void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
2544{
2545 int64_t bitmap_size;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002546
Liran Schouraaa0eb72010-01-26 10:31:48 +02002547 bs->dirty_count = 0;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002548 if (enable) {
Jan Kiszkac6d22832009-11-30 18:21:20 +01002549 if (!bs->dirty_bitmap) {
2550 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
2551 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
2552 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002553
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002554 bs->dirty_bitmap = qemu_mallocz(bitmap_size);
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002555 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002556 } else {
Jan Kiszkac6d22832009-11-30 18:21:20 +01002557 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002558 qemu_free(bs->dirty_bitmap);
Jan Kiszkac6d22832009-11-30 18:21:20 +01002559 bs->dirty_bitmap = NULL;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002560 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002561 }
2562}
2563
2564int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
2565{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002566 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002567
Jan Kiszkac6d22832009-11-30 18:21:20 +01002568 if (bs->dirty_bitmap &&
2569 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
2570 return bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
2571 (1 << (chunk % (sizeof(unsigned long) * 8)));
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002572 } else {
2573 return 0;
2574 }
2575}
2576
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002577void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
2578 int nr_sectors)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002579{
2580 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
2581}
Liran Schouraaa0eb72010-01-26 10:31:48 +02002582
2583int64_t bdrv_get_dirty_count(BlockDriverState *bs)
2584{
2585 return bs->dirty_count;
2586}