blob: c93ec6d4181314428704029621c7756e1ca42c10 [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"
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +010026#include "trace.h"
aliguori376253e2009-03-05 23:01:23 +000027#include "monitor.h"
bellardea2384d2004-08-01 21:59:26 +000028#include "block_int.h"
Anthony Liguori5efa9d52009-05-09 17:03:42 -050029#include "module.h"
Luiz Capitulinod15e5462009-12-10 17:16:06 -020030#include "qemu-objects.h"
bellardfc01f7e2003-06-30 10:03:06 +000031
Juan Quintela71e72a12009-07-27 16:12:56 +020032#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000033#include <sys/types.h>
34#include <sys/stat.h>
35#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000036#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000037#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000038#include <sys/disk.h>
39#endif
blueswir1c5e97232009-03-07 20:06:23 +000040#endif
bellard7674e7b2005-04-26 21:59:26 +000041
aliguori49dc7682009-03-08 16:26:59 +000042#ifdef _WIN32
43#include <windows.h>
44#endif
45
aliguorif141eaf2009-04-07 18:43:24 +000046static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
47 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
aliguoric87c0672009-04-07 18:43:20 +000048 BlockDriverCompletionFunc *cb, void *opaque);
aliguorif141eaf2009-04-07 18:43:24 +000049static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
50 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +000051 BlockDriverCompletionFunc *cb, void *opaque);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +020052static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
53 BlockDriverCompletionFunc *cb, void *opaque);
Alexander Graf016f5cf2010-05-26 17:51:49 +020054static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
55 BlockDriverCompletionFunc *cb, void *opaque);
ths5fafdf22007-09-16 21:08:06 +000056static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +000057 uint8_t *buf, int nb_sectors);
58static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
59 const uint8_t *buf, int nb_sectors);
bellardec530c82006-04-25 22:36:06 +000060
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +010061static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
62 QTAILQ_HEAD_INITIALIZER(bdrv_states);
blueswir17ee930d2008-09-17 19:04:14 +000063
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010064static QLIST_HEAD(, BlockDriver) bdrv_drivers =
65 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000066
Markus Armbrusterf9092b12010-06-25 10:33:39 +020067/* The device to use for VM snapshots */
68static BlockDriverState *bs_snapshots;
69
Markus Armbrustereb852012009-10-27 18:41:44 +010070/* If non-zero, use only whitelisted block drivers */
71static int use_bdrv_whitelist;
72
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +000073#ifdef _WIN32
74static int is_windows_drive_prefix(const char *filename)
75{
76 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
77 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
78 filename[1] == ':');
79}
80
81int is_windows_drive(const char *filename)
82{
83 if (is_windows_drive_prefix(filename) &&
84 filename[2] == '\0')
85 return 1;
86 if (strstart(filename, "\\\\.\\", NULL) ||
87 strstart(filename, "//./", NULL))
88 return 1;
89 return 0;
90}
91#endif
92
93/* check if the path starts with "<protocol>:" */
94static int path_has_protocol(const char *path)
95{
96#ifdef _WIN32
97 if (is_windows_drive(path) ||
98 is_windows_drive_prefix(path)) {
99 return 0;
100 }
101#endif
102
103 return strchr(path, ':') != NULL;
104}
105
bellard83f64092006-08-01 16:21:11 +0000106int path_is_absolute(const char *path)
107{
108 const char *p;
bellard21664422007-01-07 18:22:37 +0000109#ifdef _WIN32
110 /* specific case for names like: "\\.\d:" */
111 if (*path == '/' || *path == '\\')
112 return 1;
113#endif
bellard83f64092006-08-01 16:21:11 +0000114 p = strchr(path, ':');
115 if (p)
116 p++;
117 else
118 p = path;
bellard3b9f94e2007-01-07 17:27:07 +0000119#ifdef _WIN32
120 return (*p == '/' || *p == '\\');
121#else
122 return (*p == '/');
123#endif
bellard83f64092006-08-01 16:21:11 +0000124}
125
126/* if filename is absolute, just copy it to dest. Otherwise, build a
127 path to it by considering it is relative to base_path. URL are
128 supported. */
129void path_combine(char *dest, int dest_size,
130 const char *base_path,
131 const char *filename)
132{
133 const char *p, *p1;
134 int len;
135
136 if (dest_size <= 0)
137 return;
138 if (path_is_absolute(filename)) {
139 pstrcpy(dest, dest_size, filename);
140 } else {
141 p = strchr(base_path, ':');
142 if (p)
143 p++;
144 else
145 p = base_path;
bellard3b9f94e2007-01-07 17:27:07 +0000146 p1 = strrchr(base_path, '/');
147#ifdef _WIN32
148 {
149 const char *p2;
150 p2 = strrchr(base_path, '\\');
151 if (!p1 || p2 > p1)
152 p1 = p2;
153 }
154#endif
bellard83f64092006-08-01 16:21:11 +0000155 if (p1)
156 p1++;
157 else
158 p1 = base_path;
159 if (p1 > p)
160 p = p1;
161 len = p - base_path;
162 if (len > dest_size - 1)
163 len = dest_size - 1;
164 memcpy(dest, base_path, len);
165 dest[len] = '\0';
166 pstrcat(dest, dest_size, filename);
167 }
168}
169
Anthony Liguori5efa9d52009-05-09 17:03:42 -0500170void bdrv_register(BlockDriver *bdrv)
bellardea2384d2004-08-01 21:59:26 +0000171{
aliguorif141eaf2009-04-07 18:43:24 +0000172 if (!bdrv->bdrv_aio_readv) {
bellard83f64092006-08-01 16:21:11 +0000173 /* add AIO emulation layer */
aliguorif141eaf2009-04-07 18:43:24 +0000174 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
175 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
aliguorieda578e2009-03-12 19:57:16 +0000176 } else if (!bdrv->bdrv_read) {
bellard83f64092006-08-01 16:21:11 +0000177 /* add synchronous IO emulation layer */
178 bdrv->bdrv_read = bdrv_read_em;
179 bdrv->bdrv_write = bdrv_write_em;
180 }
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +0200181
182 if (!bdrv->bdrv_aio_flush)
183 bdrv->bdrv_aio_flush = bdrv_aio_flush_em;
184
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100185 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000186}
bellardb3380822004-03-14 21:38:54 +0000187
188/* create a new block device (by default it is empty) */
189BlockDriverState *bdrv_new(const char *device_name)
bellardfc01f7e2003-06-30 10:03:06 +0000190{
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100191 BlockDriverState *bs;
bellardb3380822004-03-14 21:38:54 +0000192
193 bs = qemu_mallocz(sizeof(BlockDriverState));
bellardb3380822004-03-14 21:38:54 +0000194 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
bellardea2384d2004-08-01 21:59:26 +0000195 if (device_name[0] != '\0') {
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100196 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
bellardea2384d2004-08-01 21:59:26 +0000197 }
bellardb3380822004-03-14 21:38:54 +0000198 return bs;
199}
200
bellardea2384d2004-08-01 21:59:26 +0000201BlockDriver *bdrv_find_format(const char *format_name)
202{
203 BlockDriver *drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100204 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
205 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000206 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100207 }
bellardea2384d2004-08-01 21:59:26 +0000208 }
209 return NULL;
210}
211
Markus Armbrustereb852012009-10-27 18:41:44 +0100212static int bdrv_is_whitelisted(BlockDriver *drv)
213{
214 static const char *whitelist[] = {
215 CONFIG_BDRV_WHITELIST
216 };
217 const char **p;
218
219 if (!whitelist[0])
220 return 1; /* no whitelist, anything goes */
221
222 for (p = whitelist; *p; p++) {
223 if (!strcmp(drv->format_name, *p)) {
224 return 1;
225 }
226 }
227 return 0;
228}
229
230BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
231{
232 BlockDriver *drv = bdrv_find_format(format_name);
233 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
234}
235
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200236int bdrv_create(BlockDriver *drv, const char* filename,
237 QEMUOptionParameter *options)
bellardea2384d2004-08-01 21:59:26 +0000238{
239 if (!drv->bdrv_create)
240 return -ENOTSUP;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200241
242 return drv->bdrv_create(filename, options);
bellardea2384d2004-08-01 21:59:26 +0000243}
244
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200245int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
246{
247 BlockDriver *drv;
248
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900249 drv = bdrv_find_protocol(filename);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200250 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000251 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200252 }
253
254 return bdrv_create(drv, filename, options);
255}
256
bellardd5249392004-08-03 21:14:23 +0000257#ifdef _WIN32
bellard95389c82005-12-18 18:28:15 +0000258void get_tmp_filename(char *filename, int size)
bellardd5249392004-08-03 21:14:23 +0000259{
bellard3b9f94e2007-01-07 17:27:07 +0000260 char temp_dir[MAX_PATH];
ths3b46e622007-09-17 08:09:54 +0000261
bellard3b9f94e2007-01-07 17:27:07 +0000262 GetTempPath(MAX_PATH, temp_dir);
263 GetTempFileName(temp_dir, "qem", 0, filename);
bellardd5249392004-08-03 21:14:23 +0000264}
265#else
bellard95389c82005-12-18 18:28:15 +0000266void get_tmp_filename(char *filename, int size)
bellardea2384d2004-08-01 21:59:26 +0000267{
268 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000269 const char *tmpdir;
bellardd5249392004-08-03 21:14:23 +0000270 /* XXX: race condition possible */
aurel320badc1e2008-03-10 00:05:34 +0000271 tmpdir = getenv("TMPDIR");
272 if (!tmpdir)
273 tmpdir = "/tmp";
274 snprintf(filename, size, "%s/vl.XXXXXX", tmpdir);
bellardea2384d2004-08-01 21:59:26 +0000275 fd = mkstemp(filename);
276 close(fd);
277}
bellardd5249392004-08-03 21:14:23 +0000278#endif
bellardea2384d2004-08-01 21:59:26 +0000279
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200280/*
281 * Detect host devices. By convention, /dev/cdrom[N] is always
282 * recognized as a host CDROM.
283 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200284static BlockDriver *find_hdev_driver(const char *filename)
285{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200286 int score_max = 0, score;
287 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200288
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100289 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200290 if (d->bdrv_probe_device) {
291 score = d->bdrv_probe_device(filename);
292 if (score > score_max) {
293 score_max = score;
294 drv = d;
295 }
296 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200297 }
298
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200299 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200300}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200301
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900302BlockDriver *bdrv_find_protocol(const char *filename)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200303{
304 BlockDriver *drv1;
305 char protocol[128];
306 int len;
307 const char *p;
308
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200309 /* TODO Drivers without bdrv_file_open must be specified explicitly */
310
Christoph Hellwig39508e72010-06-23 12:25:17 +0200311 /*
312 * XXX(hch): we really should not let host device detection
313 * override an explicit protocol specification, but moving this
314 * later breaks access to device names with colons in them.
315 * Thanks to the brain-dead persistent naming schemes on udev-
316 * based Linux systems those actually are quite common.
317 */
318 drv1 = find_hdev_driver(filename);
319 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200320 return drv1;
321 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200322
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000323 if (!path_has_protocol(filename)) {
Christoph Hellwig39508e72010-06-23 12:25:17 +0200324 return bdrv_find_format("file");
325 }
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000326 p = strchr(filename, ':');
327 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200328 len = p - filename;
329 if (len > sizeof(protocol) - 1)
330 len = sizeof(protocol) - 1;
331 memcpy(protocol, filename, len);
332 protocol[len] = '\0';
333 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
334 if (drv1->protocol_name &&
335 !strcmp(drv1->protocol_name, protocol)) {
336 return drv1;
337 }
338 }
339 return NULL;
340}
341
Stefan Weilc98ac352010-07-21 21:51:51 +0200342static int find_image_format(const char *filename, BlockDriver **pdrv)
bellardea2384d2004-08-01 21:59:26 +0000343{
bellard83f64092006-08-01 16:21:11 +0000344 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000345 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000346 uint8_t buf[2048];
347 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000348
Naphtali Spreif5edb012010-01-17 16:48:13 +0200349 ret = bdrv_file_open(&bs, filename, 0);
Stefan Weilc98ac352010-07-21 21:51:51 +0200350 if (ret < 0) {
351 *pdrv = NULL;
352 return ret;
353 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700354
Kevin Wolf08a00552010-06-01 18:37:31 +0200355 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
356 if (bs->sg || !bdrv_is_inserted(bs)) {
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700357 bdrv_delete(bs);
Stefan Weilc98ac352010-07-21 21:51:51 +0200358 drv = bdrv_find_format("raw");
359 if (!drv) {
360 ret = -ENOENT;
361 }
362 *pdrv = drv;
363 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700364 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700365
bellard83f64092006-08-01 16:21:11 +0000366 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
367 bdrv_delete(bs);
368 if (ret < 0) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200369 *pdrv = NULL;
370 return ret;
bellard83f64092006-08-01 16:21:11 +0000371 }
372
bellardea2384d2004-08-01 21:59:26 +0000373 score_max = 0;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200374 drv = NULL;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100375 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
bellard83f64092006-08-01 16:21:11 +0000376 if (drv1->bdrv_probe) {
377 score = drv1->bdrv_probe(buf, ret, filename);
378 if (score > score_max) {
379 score_max = score;
380 drv = drv1;
381 }
bellardea2384d2004-08-01 21:59:26 +0000382 }
383 }
Stefan Weilc98ac352010-07-21 21:51:51 +0200384 if (!drv) {
385 ret = -ENOENT;
386 }
387 *pdrv = drv;
388 return ret;
bellardea2384d2004-08-01 21:59:26 +0000389}
390
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100391/**
392 * Set the current 'total_sectors' value
393 */
394static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
395{
396 BlockDriver *drv = bs->drv;
397
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700398 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
399 if (bs->sg)
400 return 0;
401
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100402 /* query actual device if possible, otherwise just trust the hint */
403 if (drv->bdrv_getlength) {
404 int64_t length = drv->bdrv_getlength(bs);
405 if (length < 0) {
406 return length;
407 }
408 hint = length >> BDRV_SECTOR_BITS;
409 }
410
411 bs->total_sectors = hint;
412 return 0;
413}
414
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200415/*
Kevin Wolf57915332010-04-14 15:24:50 +0200416 * Common part for opening disk images and files
417 */
418static int bdrv_open_common(BlockDriverState *bs, const char *filename,
419 int flags, BlockDriver *drv)
420{
421 int ret, open_flags;
422
423 assert(drv != NULL);
424
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200425 bs->file = NULL;
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100426 bs->total_sectors = 0;
Kevin Wolf57915332010-04-14 15:24:50 +0200427 bs->encrypted = 0;
428 bs->valid_key = 0;
429 bs->open_flags = flags;
430 /* buffer_alignment defaulted to 512, drivers can change this value */
431 bs->buffer_alignment = 512;
432
433 pstrcpy(bs->filename, sizeof(bs->filename), filename);
434
435 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
436 return -ENOTSUP;
437 }
438
439 bs->drv = drv;
440 bs->opaque = qemu_mallocz(drv->instance_size);
441
442 /*
443 * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a
444 * write cache to the guest. We do need the fdatasync to flush
445 * out transactions for block allocations, and we maybe have a
446 * volatile write cache in our backing device to deal with.
447 */
448 if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE))
449 bs->enable_write_cache = 1;
450
451 /*
452 * Clear flags that are internal to the block layer before opening the
453 * image.
454 */
455 open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
456
457 /*
458 * Snapshots should be writeable.
459 */
460 if (bs->is_temporary) {
461 open_flags |= BDRV_O_RDWR;
462 }
463
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200464 /* Open the image, either directly or using a protocol */
465 if (drv->bdrv_file_open) {
466 ret = drv->bdrv_file_open(bs, filename, open_flags);
467 } else {
468 ret = bdrv_file_open(&bs->file, filename, open_flags);
469 if (ret >= 0) {
470 ret = drv->bdrv_open(bs, open_flags);
471 }
472 }
473
Kevin Wolf57915332010-04-14 15:24:50 +0200474 if (ret < 0) {
475 goto free_and_fail;
476 }
477
478 bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100479
480 ret = refresh_total_sectors(bs, bs->total_sectors);
481 if (ret < 0) {
482 goto free_and_fail;
Kevin Wolf57915332010-04-14 15:24:50 +0200483 }
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100484
Kevin Wolf57915332010-04-14 15:24:50 +0200485#ifndef _WIN32
486 if (bs->is_temporary) {
487 unlink(filename);
488 }
489#endif
490 return 0;
491
492free_and_fail:
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200493 if (bs->file) {
494 bdrv_delete(bs->file);
495 bs->file = NULL;
496 }
Kevin Wolf57915332010-04-14 15:24:50 +0200497 qemu_free(bs->opaque);
498 bs->opaque = NULL;
499 bs->drv = NULL;
500 return ret;
501}
502
503/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200504 * Opens a file using a protocol (file, host_device, nbd, ...)
505 */
bellard83f64092006-08-01 16:21:11 +0000506int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000507{
bellard83f64092006-08-01 16:21:11 +0000508 BlockDriverState *bs;
Christoph Hellwig6db95602010-04-05 16:53:57 +0200509 BlockDriver *drv;
bellard83f64092006-08-01 16:21:11 +0000510 int ret;
511
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900512 drv = bdrv_find_protocol(filename);
Christoph Hellwig6db95602010-04-05 16:53:57 +0200513 if (!drv) {
514 return -ENOENT;
515 }
516
bellard83f64092006-08-01 16:21:11 +0000517 bs = bdrv_new("");
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200518 ret = bdrv_open_common(bs, filename, flags, drv);
bellard83f64092006-08-01 16:21:11 +0000519 if (ret < 0) {
520 bdrv_delete(bs);
521 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000522 }
aliguori71d07702009-03-03 17:37:16 +0000523 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000524 *pbs = bs;
525 return 0;
bellardea2384d2004-08-01 21:59:26 +0000526}
bellardfc01f7e2003-06-30 10:03:06 +0000527
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200528/*
529 * Opens a disk image (raw, qcow2, vmdk, ...)
530 */
Kevin Wolfd6e90982010-03-31 14:40:27 +0200531int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
532 BlockDriver *drv)
bellardea2384d2004-08-01 21:59:26 +0000533{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200534 int ret;
bellard712e7872005-04-28 21:09:32 +0000535
bellard83f64092006-08-01 16:21:11 +0000536 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000537 BlockDriverState *bs1;
538 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000539 int is_protocol = 0;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200540 BlockDriver *bdrv_qcow2;
541 QEMUOptionParameter *options;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200542 char tmp_filename[PATH_MAX];
543 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000544
bellardea2384d2004-08-01 21:59:26 +0000545 /* if snapshot, we create a temporary backing file and open it
546 instead of opening 'filename' directly */
547
548 /* if there is a backing file, use it */
549 bs1 = bdrv_new("");
Kevin Wolfd6e90982010-03-31 14:40:27 +0200550 ret = bdrv_open(bs1, filename, 0, drv);
aliguori51d7c002009-03-05 23:00:29 +0000551 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000552 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000553 return ret;
bellardea2384d2004-08-01 21:59:26 +0000554 }
Jes Sorensen3e829902010-05-27 16:20:30 +0200555 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
aliguori7c96d462008-09-12 17:54:13 +0000556
557 if (bs1->drv && bs1->drv->protocol_name)
558 is_protocol = 1;
559
bellardea2384d2004-08-01 21:59:26 +0000560 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000561
bellardea2384d2004-08-01 21:59:26 +0000562 get_tmp_filename(tmp_filename, sizeof(tmp_filename));
aliguori7c96d462008-09-12 17:54:13 +0000563
564 /* Real path is meaningless for protocols */
565 if (is_protocol)
566 snprintf(backing_filename, sizeof(backing_filename),
567 "%s", filename);
Kirill A. Shutemov114cdfa2009-12-25 18:19:22 +0000568 else if (!realpath(filename, backing_filename))
569 return -errno;
aliguori7c96d462008-09-12 17:54:13 +0000570
Kevin Wolf91a073a2009-05-27 14:48:06 +0200571 bdrv_qcow2 = bdrv_find_format("qcow2");
572 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
573
Jes Sorensen3e829902010-05-27 16:20:30 +0200574 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
Kevin Wolf91a073a2009-05-27 14:48:06 +0200575 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
576 if (drv) {
577 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
578 drv->format_name);
579 }
580
581 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
Jan Kiszkad7487682010-04-29 18:24:50 +0200582 free_option_parameters(options);
aliguori51d7c002009-03-05 23:00:29 +0000583 if (ret < 0) {
584 return ret;
bellardea2384d2004-08-01 21:59:26 +0000585 }
Kevin Wolf91a073a2009-05-27 14:48:06 +0200586
bellardea2384d2004-08-01 21:59:26 +0000587 filename = tmp_filename;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200588 drv = bdrv_qcow2;
bellardea2384d2004-08-01 21:59:26 +0000589 bs->is_temporary = 1;
590 }
bellard712e7872005-04-28 21:09:32 +0000591
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200592 /* Find the right image format driver */
Christoph Hellwig6db95602010-04-05 16:53:57 +0200593 if (!drv) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200594 ret = find_image_format(filename, &drv);
aliguori51d7c002009-03-05 23:00:29 +0000595 }
Christoph Hellwig69873072010-01-20 18:13:25 +0100596
aliguori51d7c002009-03-05 23:00:29 +0000597 if (!drv) {
aliguori51d7c002009-03-05 23:00:29 +0000598 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000599 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200600
601 /* Open the image */
602 ret = bdrv_open_common(bs, filename, flags, drv);
603 if (ret < 0) {
Christoph Hellwig69873072010-01-20 18:13:25 +0100604 goto unlink_and_fail;
605 }
606
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200607 /* If there is a backing file, use it */
608 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
609 char backing_filename[PATH_MAX];
610 int back_flags;
611 BlockDriver *back_drv = NULL;
612
613 bs->backing_hd = bdrv_new("");
Stefan Hajnoczidf2dbb42010-12-02 16:54:13 +0000614
615 if (path_has_protocol(bs->backing_file)) {
616 pstrcpy(backing_filename, sizeof(backing_filename),
617 bs->backing_file);
618 } else {
619 path_combine(backing_filename, sizeof(backing_filename),
620 filename, bs->backing_file);
621 }
622
623 if (bs->backing_format[0] != '\0') {
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200624 back_drv = bdrv_find_format(bs->backing_format);
Stefan Hajnoczidf2dbb42010-12-02 16:54:13 +0000625 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200626
627 /* backing files always opened read-only */
628 back_flags =
629 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
630
631 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
632 if (ret < 0) {
633 bdrv_close(bs);
634 return ret;
635 }
636 if (bs->is_temporary) {
637 bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR);
638 } else {
639 /* base image inherits from "parent" */
640 bs->backing_hd->keep_read_only = bs->keep_read_only;
641 }
642 }
643
644 if (!bdrv_key_required(bs)) {
645 /* call the change callback */
646 bs->media_changed = 1;
647 if (bs->change_cb)
Christoph Hellwigdb97ee62011-01-24 13:32:41 +0100648 bs->change_cb(bs->change_opaque, CHANGE_MEDIA);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200649 }
650
651 return 0;
652
653unlink_and_fail:
654 if (bs->is_temporary) {
655 unlink(filename);
656 }
657 return ret;
658}
659
bellardfc01f7e2003-06-30 10:03:06 +0000660void bdrv_close(BlockDriverState *bs)
661{
bellard19cb3732006-08-19 11:45:59 +0000662 if (bs->drv) {
Markus Armbrusterf9092b12010-06-25 10:33:39 +0200663 if (bs == bs_snapshots) {
664 bs_snapshots = NULL;
665 }
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +0100666 if (bs->backing_hd) {
bellardea2384d2004-08-01 21:59:26 +0000667 bdrv_delete(bs->backing_hd);
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +0100668 bs->backing_hd = NULL;
669 }
bellardea2384d2004-08-01 21:59:26 +0000670 bs->drv->bdrv_close(bs);
671 qemu_free(bs->opaque);
672#ifdef _WIN32
673 if (bs->is_temporary) {
674 unlink(bs->filename);
675 }
bellard67b915a2004-03-31 23:37:16 +0000676#endif
bellardea2384d2004-08-01 21:59:26 +0000677 bs->opaque = NULL;
678 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +0000679
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200680 if (bs->file != NULL) {
681 bdrv_close(bs->file);
682 }
683
bellardb3380822004-03-14 21:38:54 +0000684 /* call the change callback */
bellard19cb3732006-08-19 11:45:59 +0000685 bs->media_changed = 1;
bellardb3380822004-03-14 21:38:54 +0000686 if (bs->change_cb)
Christoph Hellwigdb97ee62011-01-24 13:32:41 +0100687 bs->change_cb(bs->change_opaque, CHANGE_MEDIA);
bellardb3380822004-03-14 21:38:54 +0000688 }
689}
690
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +0900691void bdrv_close_all(void)
692{
693 BlockDriverState *bs;
694
695 QTAILQ_FOREACH(bs, &bdrv_states, list) {
696 bdrv_close(bs);
697 }
698}
699
Ryan Harperd22b2f42011-03-29 20:51:47 -0500700/* make a BlockDriverState anonymous by removing from bdrv_state list.
701 Also, NULL terminate the device_name to prevent double remove */
702void bdrv_make_anon(BlockDriverState *bs)
703{
704 if (bs->device_name[0] != '\0') {
705 QTAILQ_REMOVE(&bdrv_states, bs, list);
706 }
707 bs->device_name[0] = '\0';
708}
709
bellardb3380822004-03-14 21:38:54 +0000710void bdrv_delete(BlockDriverState *bs)
711{
Markus Armbruster18846de2010-06-29 16:58:30 +0200712 assert(!bs->peer);
713
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100714 /* remove from list, if necessary */
Ryan Harperd22b2f42011-03-29 20:51:47 -0500715 bdrv_make_anon(bs);
aurel3234c6f052008-04-08 19:51:21 +0000716
bellardb3380822004-03-14 21:38:54 +0000717 bdrv_close(bs);
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200718 if (bs->file != NULL) {
719 bdrv_delete(bs->file);
720 }
721
Markus Armbrusterf9092b12010-06-25 10:33:39 +0200722 assert(bs != bs_snapshots);
bellardb3380822004-03-14 21:38:54 +0000723 qemu_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +0000724}
725
Markus Armbruster18846de2010-06-29 16:58:30 +0200726int bdrv_attach(BlockDriverState *bs, DeviceState *qdev)
727{
728 if (bs->peer) {
729 return -EBUSY;
730 }
731 bs->peer = qdev;
732 return 0;
733}
734
735void bdrv_detach(BlockDriverState *bs, DeviceState *qdev)
736{
737 assert(bs->peer == qdev);
738 bs->peer = NULL;
739}
740
741DeviceState *bdrv_get_attached(BlockDriverState *bs)
742{
743 return bs->peer;
744}
745
aliguorie97fc192009-04-21 23:11:50 +0000746/*
747 * Run consistency checks on an image
748 *
Kevin Wolfe076f332010-06-29 11:43:13 +0200749 * Returns 0 if the check could be completed (it doesn't mean that the image is
750 * free of errors) or -errno when an internal error occured. The results of the
751 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +0000752 */
Kevin Wolfe076f332010-06-29 11:43:13 +0200753int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res)
aliguorie97fc192009-04-21 23:11:50 +0000754{
755 if (bs->drv->bdrv_check == NULL) {
756 return -ENOTSUP;
757 }
758
Kevin Wolfe076f332010-06-29 11:43:13 +0200759 memset(res, 0, sizeof(*res));
Kevin Wolf9ac228e2010-06-29 12:37:54 +0200760 return bs->drv->bdrv_check(bs, res);
aliguorie97fc192009-04-21 23:11:50 +0000761}
762
Kevin Wolf8a426612010-07-16 17:17:01 +0200763#define COMMIT_BUF_SECTORS 2048
764
bellard33e39632003-07-06 17:15:21 +0000765/* commit COW file into the raw image */
766int bdrv_commit(BlockDriverState *bs)
767{
bellard19cb3732006-08-19 11:45:59 +0000768 BlockDriver *drv = bs->drv;
Kevin Wolfee181192010-08-05 13:05:22 +0200769 BlockDriver *backing_drv;
Kevin Wolf8a426612010-07-16 17:17:01 +0200770 int64_t sector, total_sectors;
771 int n, ro, open_flags;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200772 int ret = 0, rw_ret = 0;
Kevin Wolf8a426612010-07-16 17:17:01 +0200773 uint8_t *buf;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200774 char filename[1024];
775 BlockDriverState *bs_rw, *bs_ro;
bellard33e39632003-07-06 17:15:21 +0000776
bellard19cb3732006-08-19 11:45:59 +0000777 if (!drv)
778 return -ENOMEDIUM;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200779
780 if (!bs->backing_hd) {
781 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +0000782 }
783
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200784 if (bs->backing_hd->keep_read_only) {
785 return -EACCES;
786 }
Kevin Wolfee181192010-08-05 13:05:22 +0200787
788 backing_drv = bs->backing_hd->drv;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200789 ro = bs->backing_hd->read_only;
790 strncpy(filename, bs->backing_hd->filename, sizeof(filename));
791 open_flags = bs->backing_hd->open_flags;
792
793 if (ro) {
794 /* re-open as RW */
795 bdrv_delete(bs->backing_hd);
796 bs->backing_hd = NULL;
797 bs_rw = bdrv_new("");
Kevin Wolfee181192010-08-05 13:05:22 +0200798 rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR,
799 backing_drv);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200800 if (rw_ret < 0) {
801 bdrv_delete(bs_rw);
802 /* try to re-open read-only */
803 bs_ro = bdrv_new("");
Kevin Wolfee181192010-08-05 13:05:22 +0200804 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
805 backing_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 return rw_ret;
814 }
815 bs->backing_hd = bs_rw;
bellard33e39632003-07-06 17:15:21 +0000816 }
bellardea2384d2004-08-01 21:59:26 +0000817
Jan Kiszka6ea44302009-11-30 18:21:19 +0100818 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
Kevin Wolf8a426612010-07-16 17:17:01 +0200819 buf = qemu_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
bellardea2384d2004-08-01 21:59:26 +0000820
Kevin Wolf8a426612010-07-16 17:17:01 +0200821 for (sector = 0; sector < total_sectors; sector += n) {
822 if (drv->bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
823
824 if (bdrv_read(bs, sector, buf, n) != 0) {
825 ret = -EIO;
826 goto ro_cleanup;
827 }
828
829 if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
830 ret = -EIO;
831 goto ro_cleanup;
832 }
bellardea2384d2004-08-01 21:59:26 +0000833 }
834 }
bellard95389c82005-12-18 18:28:15 +0000835
Christoph Hellwig1d449522010-01-17 12:32:30 +0100836 if (drv->bdrv_make_empty) {
837 ret = drv->bdrv_make_empty(bs);
838 bdrv_flush(bs);
839 }
bellard95389c82005-12-18 18:28:15 +0000840
Christoph Hellwig3f5075a2010-01-12 13:49:23 +0100841 /*
842 * Make sure all data we wrote to the backing device is actually
843 * stable on disk.
844 */
845 if (bs->backing_hd)
846 bdrv_flush(bs->backing_hd);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200847
848ro_cleanup:
Kevin Wolf8a426612010-07-16 17:17:01 +0200849 qemu_free(buf);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200850
851 if (ro) {
852 /* re-open as RO */
853 bdrv_delete(bs->backing_hd);
854 bs->backing_hd = NULL;
855 bs_ro = bdrv_new("");
Kevin Wolfee181192010-08-05 13:05:22 +0200856 ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR,
857 backing_drv);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +0200858 if (ret < 0) {
859 bdrv_delete(bs_ro);
860 /* drive not functional anymore */
861 bs->drv = NULL;
862 return ret;
863 }
864 bs->backing_hd = bs_ro;
865 bs->backing_hd->keep_read_only = 0;
866 }
867
Christoph Hellwig1d449522010-01-17 12:32:30 +0100868 return ret;
bellard33e39632003-07-06 17:15:21 +0000869}
870
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +0200871void bdrv_commit_all(void)
872{
873 BlockDriverState *bs;
874
875 QTAILQ_FOREACH(bs, &bdrv_states, list) {
876 bdrv_commit(bs);
877 }
878}
879
Kevin Wolf756e6732010-01-12 12:55:17 +0100880/*
881 * Return values:
882 * 0 - success
883 * -EINVAL - backing format specified, but no file
884 * -ENOSPC - can't update the backing file because no space is left in the
885 * image file header
886 * -ENOTSUP - format driver doesn't support changing the backing file
887 */
888int bdrv_change_backing_file(BlockDriverState *bs,
889 const char *backing_file, const char *backing_fmt)
890{
891 BlockDriver *drv = bs->drv;
892
893 if (drv->bdrv_change_backing_file != NULL) {
894 return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
895 } else {
896 return -ENOTSUP;
897 }
898}
899
aliguori71d07702009-03-03 17:37:16 +0000900static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
901 size_t size)
902{
903 int64_t len;
904
905 if (!bdrv_is_inserted(bs))
906 return -ENOMEDIUM;
907
908 if (bs->growable)
909 return 0;
910
911 len = bdrv_getlength(bs);
912
Kevin Wolffbb7b4e2009-05-08 14:47:24 +0200913 if (offset < 0)
914 return -EIO;
915
916 if ((offset > len) || (len - offset < size))
aliguori71d07702009-03-03 17:37:16 +0000917 return -EIO;
918
919 return 0;
920}
921
922static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
923 int nb_sectors)
924{
Jes Sorenseneb5a3162010-05-27 16:20:31 +0200925 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
926 nb_sectors * BDRV_SECTOR_SIZE);
aliguori71d07702009-03-03 17:37:16 +0000927}
928
bellard19cb3732006-08-19 11:45:59 +0000929/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +0000930int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000931 uint8_t *buf, int nb_sectors)
932{
bellardea2384d2004-08-01 21:59:26 +0000933 BlockDriver *drv = bs->drv;
934
bellard19cb3732006-08-19 11:45:59 +0000935 if (!drv)
936 return -ENOMEDIUM;
aliguori71d07702009-03-03 17:37:16 +0000937 if (bdrv_check_request(bs, sector_num, nb_sectors))
938 return -EIO;
bellardb3380822004-03-14 21:38:54 +0000939
aliguorieda578e2009-03-12 19:57:16 +0000940 return drv->bdrv_read(bs, sector_num, buf, nb_sectors);
bellardfc01f7e2003-06-30 10:03:06 +0000941}
942
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200943static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100944 int nb_sectors, int dirty)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200945{
946 int64_t start, end;
Jan Kiszkac6d22832009-11-30 18:21:20 +0100947 unsigned long val, idx, bit;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100948
Jan Kiszka6ea44302009-11-30 18:21:19 +0100949 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkac6d22832009-11-30 18:21:20 +0100950 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100951
952 for (; start <= end; start++) {
Jan Kiszkac6d22832009-11-30 18:21:20 +0100953 idx = start / (sizeof(unsigned long) * 8);
954 bit = start % (sizeof(unsigned long) * 8);
955 val = bs->dirty_bitmap[idx];
956 if (dirty) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -0200957 if (!(val & (1UL << bit))) {
Liran Schouraaa0eb72010-01-26 10:31:48 +0200958 bs->dirty_count++;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -0200959 val |= 1UL << bit;
Liran Schouraaa0eb72010-01-26 10:31:48 +0200960 }
Jan Kiszkac6d22832009-11-30 18:21:20 +0100961 } else {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -0200962 if (val & (1UL << bit)) {
Liran Schouraaa0eb72010-01-26 10:31:48 +0200963 bs->dirty_count--;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -0200964 val &= ~(1UL << bit);
Liran Schouraaa0eb72010-01-26 10:31:48 +0200965 }
Jan Kiszkac6d22832009-11-30 18:21:20 +0100966 }
967 bs->dirty_bitmap[idx] = val;
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200968 }
969}
970
ths5fafdf22007-09-16 21:08:06 +0000971/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +0000972 -EIO generic I/O error (may happen for all errors)
973 -ENOMEDIUM No media inserted.
974 -EINVAL Invalid sector number or nb_sectors
975 -EACCES Trying to write a read-only device
976*/
ths5fafdf22007-09-16 21:08:06 +0000977int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +0000978 const uint8_t *buf, int nb_sectors)
979{
bellard83f64092006-08-01 16:21:11 +0000980 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +0000981 if (!bs->drv)
982 return -ENOMEDIUM;
bellard0849bf02003-06-30 23:17:31 +0000983 if (bs->read_only)
bellard19cb3732006-08-19 11:45:59 +0000984 return -EACCES;
aliguori71d07702009-03-03 17:37:16 +0000985 if (bdrv_check_request(bs, sector_num, nb_sectors))
986 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100987
Jan Kiszkac6d22832009-11-30 18:21:20 +0100988 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +0200989 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
990 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +0100991
Kevin Wolf294cc352010-04-28 14:34:01 +0200992 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
993 bs->wr_highest_sector = sector_num + nb_sectors - 1;
994 }
995
aliguori42fb2802009-01-15 20:43:39 +0000996 return drv->bdrv_write(bs, sector_num, buf, nb_sectors);
bellard83f64092006-08-01 16:21:11 +0000997}
998
aliguorieda578e2009-03-12 19:57:16 +0000999int bdrv_pread(BlockDriverState *bs, int64_t offset,
1000 void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00001001{
Jan Kiszka6ea44302009-11-30 18:21:19 +01001002 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00001003 int len, nb_sectors, count;
1004 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001005 int ret;
bellard83f64092006-08-01 16:21:11 +00001006
1007 count = count1;
1008 /* first read to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001009 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00001010 if (len > count)
1011 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001012 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001013 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001014 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1015 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001016 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
bellard83f64092006-08-01 16:21:11 +00001017 count -= len;
1018 if (count == 0)
1019 return count1;
1020 sector_num++;
1021 buf += len;
1022 }
1023
1024 /* read the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001025 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001026 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001027 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
1028 return ret;
bellard83f64092006-08-01 16:21:11 +00001029 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001030 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001031 buf += len;
1032 count -= len;
1033 }
1034
1035 /* add data from the last sector */
1036 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001037 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1038 return ret;
bellard83f64092006-08-01 16:21:11 +00001039 memcpy(buf, tmp_buf, count);
1040 }
1041 return count1;
1042}
1043
aliguorieda578e2009-03-12 19:57:16 +00001044int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
1045 const void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00001046{
Jan Kiszka6ea44302009-11-30 18:21:19 +01001047 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00001048 int len, nb_sectors, count;
1049 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001050 int ret;
bellard83f64092006-08-01 16:21:11 +00001051
1052 count = count1;
1053 /* first write to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001054 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00001055 if (len > count)
1056 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001057 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001058 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001059 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1060 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001061 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001062 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1063 return ret;
bellard83f64092006-08-01 16:21:11 +00001064 count -= len;
1065 if (count == 0)
1066 return count1;
1067 sector_num++;
1068 buf += len;
1069 }
1070
1071 /* write the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01001072 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001073 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001074 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
1075 return ret;
bellard83f64092006-08-01 16:21:11 +00001076 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01001077 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00001078 buf += len;
1079 count -= len;
1080 }
1081
1082 /* add data from the last sector */
1083 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001084 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
1085 return ret;
bellard83f64092006-08-01 16:21:11 +00001086 memcpy(tmp_buf, buf, count);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01001087 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
1088 return ret;
bellard83f64092006-08-01 16:21:11 +00001089 }
1090 return count1;
1091}
bellard83f64092006-08-01 16:21:11 +00001092
Kevin Wolff08145f2010-06-16 16:38:15 +02001093/*
1094 * Writes to the file and ensures that no writes are reordered across this
1095 * request (acts as a barrier)
1096 *
1097 * Returns 0 on success, -errno in error cases.
1098 */
1099int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
1100 const void *buf, int count)
1101{
1102 int ret;
1103
1104 ret = bdrv_pwrite(bs, offset, buf, count);
1105 if (ret < 0) {
1106 return ret;
1107 }
1108
1109 /* No flush needed for cache=writethrough, it uses O_DSYNC */
1110 if ((bs->open_flags & BDRV_O_CACHE_MASK) != 0) {
1111 bdrv_flush(bs);
1112 }
1113
1114 return 0;
1115}
1116
1117/*
1118 * Writes to the file and ensures that no writes are reordered across this
1119 * request (acts as a barrier)
1120 *
1121 * Returns 0 on success, -errno in error cases.
1122 */
1123int bdrv_write_sync(BlockDriverState *bs, int64_t sector_num,
1124 const uint8_t *buf, int nb_sectors)
1125{
1126 return bdrv_pwrite_sync(bs, BDRV_SECTOR_SIZE * sector_num,
1127 buf, BDRV_SECTOR_SIZE * nb_sectors);
1128}
1129
bellard83f64092006-08-01 16:21:11 +00001130/**
bellard83f64092006-08-01 16:21:11 +00001131 * Truncate file to 'offset' bytes (needed only for file protocols)
1132 */
1133int bdrv_truncate(BlockDriverState *bs, int64_t offset)
1134{
1135 BlockDriver *drv = bs->drv;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001136 int ret;
bellard83f64092006-08-01 16:21:11 +00001137 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001138 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +00001139 if (!drv->bdrv_truncate)
1140 return -ENOTSUP;
Naphtali Sprei59f26892009-10-26 16:25:16 +02001141 if (bs->read_only)
1142 return -EACCES;
Marcelo Tosatti85916752011-01-26 12:12:35 -02001143 if (bdrv_in_use(bs))
1144 return -EBUSY;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001145 ret = drv->bdrv_truncate(bs, offset);
1146 if (ret == 0) {
1147 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
Christoph Hellwigdb97ee62011-01-24 13:32:41 +01001148 if (bs->change_cb) {
1149 bs->change_cb(bs->change_opaque, CHANGE_SIZE);
1150 }
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001151 }
1152 return ret;
bellard83f64092006-08-01 16:21:11 +00001153}
1154
1155/**
1156 * Length of a file in bytes. Return < 0 if error or unknown.
1157 */
1158int64_t bdrv_getlength(BlockDriverState *bs)
1159{
1160 BlockDriver *drv = bs->drv;
1161 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001162 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001163
1164 /* Fixed size devices use the total_sectors value for speed instead of
1165 issuing a length query (like lseek) on each call. Also, legacy block
1166 drivers don't provide a bdrv_getlength function and must use
1167 total_sectors. */
1168 if (!bs->growable || !drv->bdrv_getlength) {
Jan Kiszka6ea44302009-11-30 18:21:19 +01001169 return bs->total_sectors * BDRV_SECTOR_SIZE;
bellard83f64092006-08-01 16:21:11 +00001170 }
1171 return drv->bdrv_getlength(bs);
bellardfc01f7e2003-06-30 10:03:06 +00001172}
1173
bellard19cb3732006-08-19 11:45:59 +00001174/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00001175void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00001176{
bellard19cb3732006-08-19 11:45:59 +00001177 int64_t length;
1178 length = bdrv_getlength(bs);
1179 if (length < 0)
1180 length = 0;
1181 else
Jan Kiszka6ea44302009-11-30 18:21:19 +01001182 length = length >> BDRV_SECTOR_BITS;
bellard19cb3732006-08-19 11:45:59 +00001183 *nb_sectors_ptr = length;
bellardfc01f7e2003-06-30 10:03:06 +00001184}
bellardcf989512004-02-16 21:56:36 +00001185
aliguorif3d54fc2008-11-25 21:50:24 +00001186struct partition {
1187 uint8_t boot_ind; /* 0x80 - active */
1188 uint8_t head; /* starting head */
1189 uint8_t sector; /* starting sector */
1190 uint8_t cyl; /* starting cylinder */
1191 uint8_t sys_ind; /* What partition type */
1192 uint8_t end_head; /* end head */
1193 uint8_t end_sector; /* end sector */
1194 uint8_t end_cyl; /* end cylinder */
1195 uint32_t start_sect; /* starting sector counting from 0 */
1196 uint32_t nr_sects; /* nr of sectors in partition */
1197} __attribute__((packed));
1198
1199/* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */
1200static int guess_disk_lchs(BlockDriverState *bs,
1201 int *pcylinders, int *pheads, int *psectors)
1202{
Jes Sorenseneb5a3162010-05-27 16:20:31 +02001203 uint8_t buf[BDRV_SECTOR_SIZE];
aliguorif3d54fc2008-11-25 21:50:24 +00001204 int ret, i, heads, sectors, cylinders;
1205 struct partition *p;
1206 uint32_t nr_sects;
blueswir1a38131b2008-12-05 17:56:40 +00001207 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +00001208
1209 bdrv_get_geometry(bs, &nb_sectors);
1210
1211 ret = bdrv_read(bs, 0, buf, 1);
1212 if (ret < 0)
1213 return -1;
1214 /* test msdos magic */
1215 if (buf[510] != 0x55 || buf[511] != 0xaa)
1216 return -1;
1217 for(i = 0; i < 4; i++) {
1218 p = ((struct partition *)(buf + 0x1be)) + i;
1219 nr_sects = le32_to_cpu(p->nr_sects);
1220 if (nr_sects && p->end_head) {
1221 /* We make the assumption that the partition terminates on
1222 a cylinder boundary */
1223 heads = p->end_head + 1;
1224 sectors = p->end_sector & 63;
1225 if (sectors == 0)
1226 continue;
1227 cylinders = nb_sectors / (heads * sectors);
1228 if (cylinders < 1 || cylinders > 16383)
1229 continue;
1230 *pheads = heads;
1231 *psectors = sectors;
1232 *pcylinders = cylinders;
1233#if 0
1234 printf("guessed geometry: LCHS=%d %d %d\n",
1235 cylinders, heads, sectors);
1236#endif
1237 return 0;
1238 }
1239 }
1240 return -1;
1241}
1242
1243void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs)
1244{
1245 int translation, lba_detected = 0;
1246 int cylinders, heads, secs;
blueswir1a38131b2008-12-05 17:56:40 +00001247 uint64_t nb_sectors;
aliguorif3d54fc2008-11-25 21:50:24 +00001248
1249 /* if a geometry hint is available, use it */
1250 bdrv_get_geometry(bs, &nb_sectors);
1251 bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs);
1252 translation = bdrv_get_translation_hint(bs);
1253 if (cylinders != 0) {
1254 *pcyls = cylinders;
1255 *pheads = heads;
1256 *psecs = secs;
1257 } else {
1258 if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) {
1259 if (heads > 16) {
1260 /* if heads > 16, it means that a BIOS LBA
1261 translation was active, so the default
1262 hardware geometry is OK */
1263 lba_detected = 1;
1264 goto default_geometry;
1265 } else {
1266 *pcyls = cylinders;
1267 *pheads = heads;
1268 *psecs = secs;
1269 /* disable any translation to be in sync with
1270 the logical geometry */
1271 if (translation == BIOS_ATA_TRANSLATION_AUTO) {
1272 bdrv_set_translation_hint(bs,
1273 BIOS_ATA_TRANSLATION_NONE);
1274 }
1275 }
1276 } else {
1277 default_geometry:
1278 /* if no geometry, use a standard physical disk geometry */
1279 cylinders = nb_sectors / (16 * 63);
1280
1281 if (cylinders > 16383)
1282 cylinders = 16383;
1283 else if (cylinders < 2)
1284 cylinders = 2;
1285 *pcyls = cylinders;
1286 *pheads = 16;
1287 *psecs = 63;
1288 if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) {
1289 if ((*pcyls * *pheads) <= 131072) {
1290 bdrv_set_translation_hint(bs,
1291 BIOS_ATA_TRANSLATION_LARGE);
1292 } else {
1293 bdrv_set_translation_hint(bs,
1294 BIOS_ATA_TRANSLATION_LBA);
1295 }
1296 }
1297 }
1298 bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs);
1299 }
1300}
1301
ths5fafdf22007-09-16 21:08:06 +00001302void bdrv_set_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +00001303 int cyls, int heads, int secs)
1304{
1305 bs->cyls = cyls;
1306 bs->heads = heads;
1307 bs->secs = secs;
1308}
1309
1310void bdrv_set_type_hint(BlockDriverState *bs, int type)
1311{
1312 bs->type = type;
1313 bs->removable = ((type == BDRV_TYPE_CDROM ||
1314 type == BDRV_TYPE_FLOPPY));
1315}
1316
bellard46d47672004-11-16 01:45:27 +00001317void bdrv_set_translation_hint(BlockDriverState *bs, int translation)
1318{
1319 bs->translation = translation;
1320}
1321
ths5fafdf22007-09-16 21:08:06 +00001322void bdrv_get_geometry_hint(BlockDriverState *bs,
bellardb3380822004-03-14 21:38:54 +00001323 int *pcyls, int *pheads, int *psecs)
1324{
1325 *pcyls = bs->cyls;
1326 *pheads = bs->heads;
1327 *psecs = bs->secs;
1328}
1329
Blue Swirl5bbdbb42011-02-12 20:43:32 +00001330/* Recognize floppy formats */
1331typedef struct FDFormat {
1332 FDriveType drive;
1333 uint8_t last_sect;
1334 uint8_t max_track;
1335 uint8_t max_head;
1336} FDFormat;
1337
1338static const FDFormat fd_formats[] = {
1339 /* First entry is default format */
1340 /* 1.44 MB 3"1/2 floppy disks */
1341 { FDRIVE_DRV_144, 18, 80, 1, },
1342 { FDRIVE_DRV_144, 20, 80, 1, },
1343 { FDRIVE_DRV_144, 21, 80, 1, },
1344 { FDRIVE_DRV_144, 21, 82, 1, },
1345 { FDRIVE_DRV_144, 21, 83, 1, },
1346 { FDRIVE_DRV_144, 22, 80, 1, },
1347 { FDRIVE_DRV_144, 23, 80, 1, },
1348 { FDRIVE_DRV_144, 24, 80, 1, },
1349 /* 2.88 MB 3"1/2 floppy disks */
1350 { FDRIVE_DRV_288, 36, 80, 1, },
1351 { FDRIVE_DRV_288, 39, 80, 1, },
1352 { FDRIVE_DRV_288, 40, 80, 1, },
1353 { FDRIVE_DRV_288, 44, 80, 1, },
1354 { FDRIVE_DRV_288, 48, 80, 1, },
1355 /* 720 kB 3"1/2 floppy disks */
1356 { FDRIVE_DRV_144, 9, 80, 1, },
1357 { FDRIVE_DRV_144, 10, 80, 1, },
1358 { FDRIVE_DRV_144, 10, 82, 1, },
1359 { FDRIVE_DRV_144, 10, 83, 1, },
1360 { FDRIVE_DRV_144, 13, 80, 1, },
1361 { FDRIVE_DRV_144, 14, 80, 1, },
1362 /* 1.2 MB 5"1/4 floppy disks */
1363 { FDRIVE_DRV_120, 15, 80, 1, },
1364 { FDRIVE_DRV_120, 18, 80, 1, },
1365 { FDRIVE_DRV_120, 18, 82, 1, },
1366 { FDRIVE_DRV_120, 18, 83, 1, },
1367 { FDRIVE_DRV_120, 20, 80, 1, },
1368 /* 720 kB 5"1/4 floppy disks */
1369 { FDRIVE_DRV_120, 9, 80, 1, },
1370 { FDRIVE_DRV_120, 11, 80, 1, },
1371 /* 360 kB 5"1/4 floppy disks */
1372 { FDRIVE_DRV_120, 9, 40, 1, },
1373 { FDRIVE_DRV_120, 9, 40, 0, },
1374 { FDRIVE_DRV_120, 10, 41, 1, },
1375 { FDRIVE_DRV_120, 10, 42, 1, },
1376 /* 320 kB 5"1/4 floppy disks */
1377 { FDRIVE_DRV_120, 8, 40, 1, },
1378 { FDRIVE_DRV_120, 8, 40, 0, },
1379 /* 360 kB must match 5"1/4 better than 3"1/2... */
1380 { FDRIVE_DRV_144, 9, 80, 0, },
1381 /* end */
1382 { FDRIVE_DRV_NONE, -1, -1, 0, },
1383};
1384
1385void bdrv_get_floppy_geometry_hint(BlockDriverState *bs, int *nb_heads,
1386 int *max_track, int *last_sect,
1387 FDriveType drive_in, FDriveType *drive)
1388{
1389 const FDFormat *parse;
1390 uint64_t nb_sectors, size;
1391 int i, first_match, match;
1392
1393 bdrv_get_geometry_hint(bs, nb_heads, max_track, last_sect);
1394 if (*nb_heads != 0 && *max_track != 0 && *last_sect != 0) {
1395 /* User defined disk */
1396 } else {
1397 bdrv_get_geometry(bs, &nb_sectors);
1398 match = -1;
1399 first_match = -1;
1400 for (i = 0; ; i++) {
1401 parse = &fd_formats[i];
1402 if (parse->drive == FDRIVE_DRV_NONE) {
1403 break;
1404 }
1405 if (drive_in == parse->drive ||
1406 drive_in == FDRIVE_DRV_NONE) {
1407 size = (parse->max_head + 1) * parse->max_track *
1408 parse->last_sect;
1409 if (nb_sectors == size) {
1410 match = i;
1411 break;
1412 }
1413 if (first_match == -1) {
1414 first_match = i;
1415 }
1416 }
1417 }
1418 if (match == -1) {
1419 if (first_match == -1) {
1420 match = 1;
1421 } else {
1422 match = first_match;
1423 }
1424 parse = &fd_formats[match];
1425 }
1426 *nb_heads = parse->max_head + 1;
1427 *max_track = parse->max_track;
1428 *last_sect = parse->last_sect;
1429 *drive = parse->drive;
1430 }
1431}
1432
bellardb3380822004-03-14 21:38:54 +00001433int bdrv_get_type_hint(BlockDriverState *bs)
1434{
1435 return bs->type;
1436}
1437
bellard46d47672004-11-16 01:45:27 +00001438int bdrv_get_translation_hint(BlockDriverState *bs)
1439{
1440 return bs->translation;
1441}
1442
Markus Armbrusterabd7f682010-06-02 18:55:17 +02001443void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
1444 BlockErrorAction on_write_error)
1445{
1446 bs->on_read_error = on_read_error;
1447 bs->on_write_error = on_write_error;
1448}
1449
1450BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read)
1451{
1452 return is_read ? bs->on_read_error : bs->on_write_error;
1453}
1454
Markus Armbruster7d0d6952010-06-25 13:42:14 +02001455void bdrv_set_removable(BlockDriverState *bs, int removable)
1456{
1457 bs->removable = removable;
1458 if (removable && bs == bs_snapshots) {
1459 bs_snapshots = NULL;
1460 }
1461}
1462
bellardb3380822004-03-14 21:38:54 +00001463int bdrv_is_removable(BlockDriverState *bs)
1464{
1465 return bs->removable;
1466}
1467
1468int bdrv_is_read_only(BlockDriverState *bs)
1469{
1470 return bs->read_only;
1471}
1472
ths985a03b2007-12-24 16:10:43 +00001473int bdrv_is_sg(BlockDriverState *bs)
1474{
1475 return bs->sg;
1476}
1477
Christoph Hellwige900a7b2009-09-04 19:01:15 +02001478int bdrv_enable_write_cache(BlockDriverState *bs)
1479{
1480 return bs->enable_write_cache;
1481}
1482
bellard19cb3732006-08-19 11:45:59 +00001483/* XXX: no longer used */
ths5fafdf22007-09-16 21:08:06 +00001484void bdrv_set_change_cb(BlockDriverState *bs,
Christoph Hellwigdb97ee62011-01-24 13:32:41 +01001485 void (*change_cb)(void *opaque, int reason),
1486 void *opaque)
bellardb3380822004-03-14 21:38:54 +00001487{
1488 bs->change_cb = change_cb;
1489 bs->change_opaque = opaque;
1490}
1491
bellardea2384d2004-08-01 21:59:26 +00001492int bdrv_is_encrypted(BlockDriverState *bs)
1493{
1494 if (bs->backing_hd && bs->backing_hd->encrypted)
1495 return 1;
1496 return bs->encrypted;
1497}
1498
aliguoric0f4ce72009-03-05 23:01:01 +00001499int bdrv_key_required(BlockDriverState *bs)
1500{
1501 BlockDriverState *backing_hd = bs->backing_hd;
1502
1503 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
1504 return 1;
1505 return (bs->encrypted && !bs->valid_key);
1506}
1507
bellardea2384d2004-08-01 21:59:26 +00001508int bdrv_set_key(BlockDriverState *bs, const char *key)
1509{
1510 int ret;
1511 if (bs->backing_hd && bs->backing_hd->encrypted) {
1512 ret = bdrv_set_key(bs->backing_hd, key);
1513 if (ret < 0)
1514 return ret;
1515 if (!bs->encrypted)
1516 return 0;
1517 }
Shahar Havivifd04a2a2010-03-06 00:26:13 +02001518 if (!bs->encrypted) {
1519 return -EINVAL;
1520 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
1521 return -ENOMEDIUM;
1522 }
aliguoric0f4ce72009-03-05 23:01:01 +00001523 ret = bs->drv->bdrv_set_key(bs, key);
aliguoribb5fc202009-03-05 23:01:15 +00001524 if (ret < 0) {
1525 bs->valid_key = 0;
1526 } else if (!bs->valid_key) {
1527 bs->valid_key = 1;
1528 /* call the change callback now, we skipped it on open */
1529 bs->media_changed = 1;
1530 if (bs->change_cb)
Christoph Hellwigdb97ee62011-01-24 13:32:41 +01001531 bs->change_cb(bs->change_opaque, CHANGE_MEDIA);
aliguoribb5fc202009-03-05 23:01:15 +00001532 }
aliguoric0f4ce72009-03-05 23:01:01 +00001533 return ret;
bellardea2384d2004-08-01 21:59:26 +00001534}
1535
1536void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size)
1537{
bellard19cb3732006-08-19 11:45:59 +00001538 if (!bs->drv) {
bellardea2384d2004-08-01 21:59:26 +00001539 buf[0] = '\0';
1540 } else {
1541 pstrcpy(buf, buf_size, bs->drv->format_name);
1542 }
1543}
1544
ths5fafdf22007-09-16 21:08:06 +00001545void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00001546 void *opaque)
1547{
1548 BlockDriver *drv;
1549
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01001550 QLIST_FOREACH(drv, &bdrv_drivers, list) {
bellardea2384d2004-08-01 21:59:26 +00001551 it(opaque, drv->format_name);
1552 }
1553}
1554
bellardb3380822004-03-14 21:38:54 +00001555BlockDriverState *bdrv_find(const char *name)
1556{
1557 BlockDriverState *bs;
1558
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001559 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1560 if (!strcmp(name, bs->device_name)) {
bellardb3380822004-03-14 21:38:54 +00001561 return bs;
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001562 }
bellardb3380822004-03-14 21:38:54 +00001563 }
1564 return NULL;
1565}
1566
Markus Armbruster2f399b02010-06-02 18:55:20 +02001567BlockDriverState *bdrv_next(BlockDriverState *bs)
1568{
1569 if (!bs) {
1570 return QTAILQ_FIRST(&bdrv_states);
1571 }
1572 return QTAILQ_NEXT(bs, list);
1573}
1574
aliguori51de9762009-03-05 23:00:43 +00001575void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +00001576{
1577 BlockDriverState *bs;
1578
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001579 QTAILQ_FOREACH(bs, &bdrv_states, list) {
aliguori51de9762009-03-05 23:00:43 +00001580 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +00001581 }
1582}
1583
bellardea2384d2004-08-01 21:59:26 +00001584const char *bdrv_get_device_name(BlockDriverState *bs)
1585{
1586 return bs->device_name;
1587}
1588
Kevin Wolf205ef792010-10-21 16:43:43 +02001589int bdrv_flush(BlockDriverState *bs)
pbrook7a6cba62006-06-04 11:39:07 +00001590{
Alexander Graf016f5cf2010-05-26 17:51:49 +02001591 if (bs->open_flags & BDRV_O_NO_FLUSH) {
Kevin Wolf205ef792010-10-21 16:43:43 +02001592 return 0;
Alexander Graf016f5cf2010-05-26 17:51:49 +02001593 }
1594
Kevin Wolf205ef792010-10-21 16:43:43 +02001595 if (bs->drv && bs->drv->bdrv_flush) {
1596 return bs->drv->bdrv_flush(bs);
1597 }
1598
1599 /*
1600 * Some block drivers always operate in either writethrough or unsafe mode
1601 * and don't support bdrv_flush therefore. Usually qemu doesn't know how
1602 * the server works (because the behaviour is hardcoded or depends on
1603 * server-side configuration), so we can't ensure that everything is safe
1604 * on disk. Returning an error doesn't work because that would break guests
1605 * even if the server operates in writethrough mode.
1606 *
1607 * Let's hope the user knows what he's doing.
1608 */
1609 return 0;
pbrook7a6cba62006-06-04 11:39:07 +00001610}
1611
aliguoric6ca28d2008-10-06 13:55:43 +00001612void bdrv_flush_all(void)
1613{
1614 BlockDriverState *bs;
1615
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001616 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1617 if (bs->drv && !bdrv_is_read_only(bs) &&
1618 (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) {
aliguoric6ca28d2008-10-06 13:55:43 +00001619 bdrv_flush(bs);
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001620 }
1621 }
aliguoric6ca28d2008-10-06 13:55:43 +00001622}
1623
Kevin Wolff2feebb2010-04-14 17:30:35 +02001624int bdrv_has_zero_init(BlockDriverState *bs)
1625{
1626 assert(bs->drv);
1627
Kevin Wolf336c1c12010-07-28 11:26:29 +02001628 if (bs->drv->bdrv_has_zero_init) {
1629 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02001630 }
1631
1632 return 1;
1633}
1634
Christoph Hellwigbb8bf762010-12-16 19:36:31 +01001635int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
1636{
1637 if (!bs->drv) {
1638 return -ENOMEDIUM;
1639 }
1640 if (!bs->drv->bdrv_discard) {
1641 return 0;
1642 }
1643 return bs->drv->bdrv_discard(bs, sector_num, nb_sectors);
1644}
1645
thsf58c7b32008-06-05 21:53:49 +00001646/*
1647 * Returns true iff the specified sector is present in the disk image. Drivers
1648 * not implementing the functionality are assumed to not support backing files,
1649 * hence all their sectors are reported as allocated.
1650 *
1651 * 'pnum' is set to the number of sectors (including and immediately following
1652 * the specified sector) that are known to be in the same
1653 * allocated/unallocated state.
1654 *
1655 * 'nb_sectors' is the max value 'pnum' should be set to.
1656 */
1657int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
1658 int *pnum)
1659{
1660 int64_t n;
1661 if (!bs->drv->bdrv_is_allocated) {
1662 if (sector_num >= bs->total_sectors) {
1663 *pnum = 0;
1664 return 0;
1665 }
1666 n = bs->total_sectors - sector_num;
1667 *pnum = (n < nb_sectors) ? (n) : (nb_sectors);
1668 return 1;
1669 }
1670 return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum);
1671}
1672
Luiz Capitulino2582bfe2010-02-03 12:41:01 -02001673void bdrv_mon_event(const BlockDriverState *bdrv,
1674 BlockMonEventAction action, int is_read)
1675{
1676 QObject *data;
1677 const char *action_str;
1678
1679 switch (action) {
1680 case BDRV_ACTION_REPORT:
1681 action_str = "report";
1682 break;
1683 case BDRV_ACTION_IGNORE:
1684 action_str = "ignore";
1685 break;
1686 case BDRV_ACTION_STOP:
1687 action_str = "stop";
1688 break;
1689 default:
1690 abort();
1691 }
1692
1693 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1694 bdrv->device_name,
1695 action_str,
1696 is_read ? "read" : "write");
1697 monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
1698
1699 qobject_decref(data);
1700}
1701
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001702static void bdrv_print_dict(QObject *obj, void *opaque)
bellardb3380822004-03-14 21:38:54 +00001703{
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001704 QDict *bs_dict;
1705 Monitor *mon = opaque;
1706
1707 bs_dict = qobject_to_qdict(obj);
1708
1709 monitor_printf(mon, "%s: type=%s removable=%d",
1710 qdict_get_str(bs_dict, "device"),
1711 qdict_get_str(bs_dict, "type"),
1712 qdict_get_bool(bs_dict, "removable"));
1713
1714 if (qdict_get_bool(bs_dict, "removable")) {
1715 monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked"));
1716 }
1717
1718 if (qdict_haskey(bs_dict, "inserted")) {
1719 QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted"));
1720
1721 monitor_printf(mon, " file=");
1722 monitor_print_filename(mon, qdict_get_str(qdict, "file"));
1723 if (qdict_haskey(qdict, "backing_file")) {
1724 monitor_printf(mon, " backing_file=");
1725 monitor_print_filename(mon, qdict_get_str(qdict, "backing_file"));
1726 }
1727 monitor_printf(mon, " ro=%d drv=%s encrypted=%d",
1728 qdict_get_bool(qdict, "ro"),
1729 qdict_get_str(qdict, "drv"),
1730 qdict_get_bool(qdict, "encrypted"));
1731 } else {
1732 monitor_printf(mon, " [not inserted]");
1733 }
1734
1735 monitor_printf(mon, "\n");
1736}
1737
1738void bdrv_info_print(Monitor *mon, const QObject *data)
1739{
1740 qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon);
1741}
1742
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001743void bdrv_info(Monitor *mon, QObject **ret_data)
1744{
1745 QList *bs_list;
bellardb3380822004-03-14 21:38:54 +00001746 BlockDriverState *bs;
1747
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001748 bs_list = qlist_new();
1749
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001750 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001751 QObject *bs_obj;
1752 const char *type = "unknown";
1753
bellardb3380822004-03-14 21:38:54 +00001754 switch(bs->type) {
1755 case BDRV_TYPE_HD:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001756 type = "hd";
bellardb3380822004-03-14 21:38:54 +00001757 break;
1758 case BDRV_TYPE_CDROM:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001759 type = "cdrom";
bellardb3380822004-03-14 21:38:54 +00001760 break;
1761 case BDRV_TYPE_FLOPPY:
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001762 type = "floppy";
bellardb3380822004-03-14 21:38:54 +00001763 break;
1764 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001765
1766 bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, "
1767 "'removable': %i, 'locked': %i }",
1768 bs->device_name, type, bs->removable,
1769 bs->locked);
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001770
bellard19cb3732006-08-19 11:45:59 +00001771 if (bs->drv) {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001772 QObject *obj;
1773 QDict *bs_dict = qobject_to_qdict(bs_obj);
1774
1775 obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, "
1776 "'encrypted': %i }",
1777 bs->filename, bs->read_only,
1778 bs->drv->format_name,
1779 bdrv_is_encrypted(bs));
thsfef30742006-12-22 14:11:32 +00001780 if (bs->backing_file[0] != '\0') {
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001781 QDict *qdict = qobject_to_qdict(obj);
1782 qdict_put(qdict, "backing_file",
1783 qstring_from_str(bs->backing_file));
aliguori376253e2009-03-05 23:01:23 +00001784 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001785
1786 qdict_put_obj(bs_dict, "inserted", obj);
bellardb3380822004-03-14 21:38:54 +00001787 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001788 qlist_append_obj(bs_list, bs_obj);
bellardb3380822004-03-14 21:38:54 +00001789 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02001790
1791 *ret_data = QOBJECT(bs_list);
bellardb3380822004-03-14 21:38:54 +00001792}
thsa36e69d2007-12-02 05:18:19 +00001793
Luiz Capitulino218a5362009-12-10 17:16:07 -02001794static void bdrv_stats_iter(QObject *data, void *opaque)
thsa36e69d2007-12-02 05:18:19 +00001795{
Luiz Capitulino218a5362009-12-10 17:16:07 -02001796 QDict *qdict;
1797 Monitor *mon = opaque;
1798
1799 qdict = qobject_to_qdict(data);
1800 monitor_printf(mon, "%s:", qdict_get_str(qdict, "device"));
1801
1802 qdict = qobject_to_qdict(qdict_get(qdict, "stats"));
1803 monitor_printf(mon, " rd_bytes=%" PRId64
1804 " wr_bytes=%" PRId64
1805 " rd_operations=%" PRId64
1806 " wr_operations=%" PRId64
1807 "\n",
1808 qdict_get_int(qdict, "rd_bytes"),
1809 qdict_get_int(qdict, "wr_bytes"),
1810 qdict_get_int(qdict, "rd_operations"),
1811 qdict_get_int(qdict, "wr_operations"));
1812}
1813
1814void bdrv_stats_print(Monitor *mon, const QObject *data)
1815{
1816 qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon);
1817}
1818
Kevin Wolf294cc352010-04-28 14:34:01 +02001819static QObject* bdrv_info_stats_bs(BlockDriverState *bs)
1820{
1821 QObject *res;
1822 QDict *dict;
1823
1824 res = qobject_from_jsonf("{ 'stats': {"
1825 "'rd_bytes': %" PRId64 ","
1826 "'wr_bytes': %" PRId64 ","
1827 "'rd_operations': %" PRId64 ","
1828 "'wr_operations': %" PRId64 ","
1829 "'wr_highest_offset': %" PRId64
1830 "} }",
1831 bs->rd_bytes, bs->wr_bytes,
1832 bs->rd_ops, bs->wr_ops,
Blue Swirl5ffbbc62010-06-14 18:55:33 +00001833 bs->wr_highest_sector *
1834 (uint64_t)BDRV_SECTOR_SIZE);
Kevin Wolf294cc352010-04-28 14:34:01 +02001835 dict = qobject_to_qdict(res);
1836
1837 if (*bs->device_name) {
1838 qdict_put(dict, "device", qstring_from_str(bs->device_name));
1839 }
1840
1841 if (bs->file) {
1842 QObject *parent = bdrv_info_stats_bs(bs->file);
1843 qdict_put_obj(dict, "parent", parent);
1844 }
1845
1846 return res;
1847}
1848
Luiz Capitulino218a5362009-12-10 17:16:07 -02001849void bdrv_info_stats(Monitor *mon, QObject **ret_data)
1850{
1851 QObject *obj;
1852 QList *devices;
thsa36e69d2007-12-02 05:18:19 +00001853 BlockDriverState *bs;
1854
Luiz Capitulino218a5362009-12-10 17:16:07 -02001855 devices = qlist_new();
1856
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001857 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Kevin Wolf294cc352010-04-28 14:34:01 +02001858 obj = bdrv_info_stats_bs(bs);
Luiz Capitulino218a5362009-12-10 17:16:07 -02001859 qlist_append_obj(devices, obj);
thsa36e69d2007-12-02 05:18:19 +00001860 }
Luiz Capitulino218a5362009-12-10 17:16:07 -02001861
1862 *ret_data = QOBJECT(devices);
thsa36e69d2007-12-02 05:18:19 +00001863}
bellardea2384d2004-08-01 21:59:26 +00001864
aliguori045df332009-03-05 23:00:48 +00001865const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
1866{
1867 if (bs->backing_hd && bs->backing_hd->encrypted)
1868 return bs->backing_file;
1869 else if (bs->encrypted)
1870 return bs->filename;
1871 else
1872 return NULL;
1873}
1874
ths5fafdf22007-09-16 21:08:06 +00001875void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00001876 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00001877{
Kevin Wolfb783e402010-01-12 12:55:16 +01001878 if (!bs->backing_file) {
bellard83f64092006-08-01 16:21:11 +00001879 pstrcpy(filename, filename_size, "");
1880 } else {
1881 pstrcpy(filename, filename_size, bs->backing_file);
1882 }
bellardea2384d2004-08-01 21:59:26 +00001883}
1884
ths5fafdf22007-09-16 21:08:06 +00001885int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00001886 const uint8_t *buf, int nb_sectors)
1887{
1888 BlockDriver *drv = bs->drv;
1889 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001890 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001891 if (!drv->bdrv_write_compressed)
1892 return -ENOTSUP;
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02001893 if (bdrv_check_request(bs, sector_num, nb_sectors))
1894 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001895
Jan Kiszkac6d22832009-11-30 18:21:20 +01001896 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02001897 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
1898 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001899
bellardfaea38e2006-08-05 21:31:00 +00001900 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
1901}
ths3b46e622007-09-17 08:09:54 +00001902
bellardfaea38e2006-08-05 21:31:00 +00001903int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
1904{
1905 BlockDriver *drv = bs->drv;
1906 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00001907 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00001908 if (!drv->bdrv_get_info)
1909 return -ENOTSUP;
1910 memset(bdi, 0, sizeof(*bdi));
1911 return drv->bdrv_get_info(bs, bdi);
1912}
1913
Christoph Hellwig45566e92009-07-10 23:11:57 +02001914int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
1915 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00001916{
1917 BlockDriver *drv = bs->drv;
1918 if (!drv)
1919 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001920 if (drv->bdrv_save_vmstate)
1921 return drv->bdrv_save_vmstate(bs, buf, pos, size);
1922 if (bs->file)
1923 return bdrv_save_vmstate(bs->file, buf, pos, size);
1924 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00001925}
1926
Christoph Hellwig45566e92009-07-10 23:11:57 +02001927int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
1928 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00001929{
1930 BlockDriver *drv = bs->drv;
1931 if (!drv)
1932 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09001933 if (drv->bdrv_load_vmstate)
1934 return drv->bdrv_load_vmstate(bs, buf, pos, size);
1935 if (bs->file)
1936 return bdrv_load_vmstate(bs->file, buf, pos, size);
1937 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00001938}
1939
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01001940void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
1941{
1942 BlockDriver *drv = bs->drv;
1943
1944 if (!drv || !drv->bdrv_debug_event) {
1945 return;
1946 }
1947
1948 return drv->bdrv_debug_event(bs, event);
1949
1950}
1951
bellardfaea38e2006-08-05 21:31:00 +00001952/**************************************************************/
1953/* handling of snapshots */
1954
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03001955int bdrv_can_snapshot(BlockDriverState *bs)
1956{
1957 BlockDriver *drv = bs->drv;
1958 if (!drv || bdrv_is_removable(bs) || bdrv_is_read_only(bs)) {
1959 return 0;
1960 }
1961
1962 if (!drv->bdrv_snapshot_create) {
1963 if (bs->file != NULL) {
1964 return bdrv_can_snapshot(bs->file);
1965 }
1966 return 0;
1967 }
1968
1969 return 1;
1970}
1971
Blue Swirl199630b2010-07-25 20:49:34 +00001972int bdrv_is_snapshot(BlockDriverState *bs)
1973{
1974 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
1975}
1976
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001977BlockDriverState *bdrv_snapshots(void)
1978{
1979 BlockDriverState *bs;
1980
Markus Armbruster3ac906f2010-07-01 09:30:38 +02001981 if (bs_snapshots) {
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001982 return bs_snapshots;
Markus Armbruster3ac906f2010-07-01 09:30:38 +02001983 }
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001984
1985 bs = NULL;
1986 while ((bs = bdrv_next(bs))) {
1987 if (bdrv_can_snapshot(bs)) {
Markus Armbruster3ac906f2010-07-01 09:30:38 +02001988 bs_snapshots = bs;
1989 return bs;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001990 }
1991 }
1992 return NULL;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001993}
1994
ths5fafdf22007-09-16 21:08:06 +00001995int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00001996 QEMUSnapshotInfo *sn_info)
1997{
1998 BlockDriver *drv = bs->drv;
1999 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002000 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002001 if (drv->bdrv_snapshot_create)
2002 return drv->bdrv_snapshot_create(bs, sn_info);
2003 if (bs->file)
2004 return bdrv_snapshot_create(bs->file, sn_info);
2005 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00002006}
2007
ths5fafdf22007-09-16 21:08:06 +00002008int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00002009 const char *snapshot_id)
2010{
2011 BlockDriver *drv = bs->drv;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002012 int ret, open_ret;
2013
bellardfaea38e2006-08-05 21:31:00 +00002014 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002015 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002016 if (drv->bdrv_snapshot_goto)
2017 return drv->bdrv_snapshot_goto(bs, snapshot_id);
2018
2019 if (bs->file) {
2020 drv->bdrv_close(bs);
2021 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
2022 open_ret = drv->bdrv_open(bs, bs->open_flags);
2023 if (open_ret < 0) {
2024 bdrv_delete(bs->file);
2025 bs->drv = NULL;
2026 return open_ret;
2027 }
2028 return ret;
2029 }
2030
2031 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00002032}
2033
2034int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
2035{
2036 BlockDriver *drv = bs->drv;
2037 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002038 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002039 if (drv->bdrv_snapshot_delete)
2040 return drv->bdrv_snapshot_delete(bs, snapshot_id);
2041 if (bs->file)
2042 return bdrv_snapshot_delete(bs->file, snapshot_id);
2043 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00002044}
2045
ths5fafdf22007-09-16 21:08:06 +00002046int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00002047 QEMUSnapshotInfo **psn_info)
2048{
2049 BlockDriver *drv = bs->drv;
2050 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002051 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002052 if (drv->bdrv_snapshot_list)
2053 return drv->bdrv_snapshot_list(bs, psn_info);
2054 if (bs->file)
2055 return bdrv_snapshot_list(bs->file, psn_info);
2056 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00002057}
2058
edison51ef6722010-09-21 19:58:41 -07002059int bdrv_snapshot_load_tmp(BlockDriverState *bs,
2060 const char *snapshot_name)
2061{
2062 BlockDriver *drv = bs->drv;
2063 if (!drv) {
2064 return -ENOMEDIUM;
2065 }
2066 if (!bs->read_only) {
2067 return -EINVAL;
2068 }
2069 if (drv->bdrv_snapshot_load_tmp) {
2070 return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
2071 }
2072 return -ENOTSUP;
2073}
2074
bellardfaea38e2006-08-05 21:31:00 +00002075#define NB_SUFFIXES 4
2076
2077char *get_human_readable_size(char *buf, int buf_size, int64_t size)
2078{
2079 static const char suffixes[NB_SUFFIXES] = "KMGT";
2080 int64_t base;
2081 int i;
2082
2083 if (size <= 999) {
2084 snprintf(buf, buf_size, "%" PRId64, size);
2085 } else {
2086 base = 1024;
2087 for(i = 0; i < NB_SUFFIXES; i++) {
2088 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00002089 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00002090 (double)size / base,
2091 suffixes[i]);
2092 break;
2093 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00002094 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00002095 ((size + (base >> 1)) / base),
2096 suffixes[i]);
2097 break;
2098 }
2099 base = base * 1024;
2100 }
2101 }
2102 return buf;
2103}
2104
2105char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
2106{
2107 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00002108#ifdef _WIN32
2109 struct tm *ptm;
2110#else
bellardfaea38e2006-08-05 21:31:00 +00002111 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00002112#endif
bellardfaea38e2006-08-05 21:31:00 +00002113 time_t ti;
2114 int64_t secs;
2115
2116 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00002117 snprintf(buf, buf_size,
2118 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00002119 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
2120 } else {
2121 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00002122#ifdef _WIN32
2123 ptm = localtime(&ti);
2124 strftime(date_buf, sizeof(date_buf),
2125 "%Y-%m-%d %H:%M:%S", ptm);
2126#else
bellardfaea38e2006-08-05 21:31:00 +00002127 localtime_r(&ti, &tm);
2128 strftime(date_buf, sizeof(date_buf),
2129 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00002130#endif
bellardfaea38e2006-08-05 21:31:00 +00002131 secs = sn->vm_clock_nsec / 1000000000;
2132 snprintf(clock_buf, sizeof(clock_buf),
2133 "%02d:%02d:%02d.%03d",
2134 (int)(secs / 3600),
2135 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00002136 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00002137 (int)((sn->vm_clock_nsec / 1000000) % 1000));
2138 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00002139 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00002140 sn->id_str, sn->name,
2141 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
2142 date_buf,
2143 clock_buf);
2144 }
2145 return buf;
2146}
2147
bellardea2384d2004-08-01 21:59:26 +00002148
bellard83f64092006-08-01 16:21:11 +00002149/**************************************************************/
2150/* async I/Os */
2151
aliguori3b69e4b2009-01-22 16:59:24 +00002152BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
aliguorif141eaf2009-04-07 18:43:24 +00002153 QEMUIOVector *qiov, int nb_sectors,
aliguori3b69e4b2009-01-22 16:59:24 +00002154 BlockDriverCompletionFunc *cb, void *opaque)
2155{
bellard83f64092006-08-01 16:21:11 +00002156 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00002157 BlockDriverAIOCB *ret;
bellard83f64092006-08-01 16:21:11 +00002158
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01002159 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
2160
bellard19cb3732006-08-19 11:45:59 +00002161 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00002162 return NULL;
aliguori71d07702009-03-03 17:37:16 +00002163 if (bdrv_check_request(bs, sector_num, nb_sectors))
2164 return NULL;
ths3b46e622007-09-17 08:09:54 +00002165
aliguorif141eaf2009-04-07 18:43:24 +00002166 ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors,
2167 cb, opaque);
thsa36e69d2007-12-02 05:18:19 +00002168
2169 if (ret) {
2170 /* Update stats even though technically transfer has not happened. */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002171 bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
thsa36e69d2007-12-02 05:18:19 +00002172 bs->rd_ops ++;
2173 }
2174
2175 return ret;
bellard83f64092006-08-01 16:21:11 +00002176}
2177
Marcelo Tosatti4dcafbb2010-11-08 17:02:55 -02002178typedef struct BlockCompleteData {
2179 BlockDriverCompletionFunc *cb;
2180 void *opaque;
2181 BlockDriverState *bs;
2182 int64_t sector_num;
2183 int nb_sectors;
2184} BlockCompleteData;
2185
2186static void block_complete_cb(void *opaque, int ret)
2187{
2188 BlockCompleteData *b = opaque;
2189
2190 if (b->bs->dirty_bitmap) {
2191 set_dirty_bitmap(b->bs, b->sector_num, b->nb_sectors, 1);
2192 }
2193 b->cb(b->opaque, ret);
2194 qemu_free(b);
2195}
2196
2197static BlockCompleteData *blk_dirty_cb_alloc(BlockDriverState *bs,
2198 int64_t sector_num,
2199 int nb_sectors,
2200 BlockDriverCompletionFunc *cb,
2201 void *opaque)
2202{
2203 BlockCompleteData *blkdata = qemu_mallocz(sizeof(BlockCompleteData));
2204
2205 blkdata->bs = bs;
2206 blkdata->cb = cb;
2207 blkdata->opaque = opaque;
2208 blkdata->sector_num = sector_num;
2209 blkdata->nb_sectors = nb_sectors;
2210
2211 return blkdata;
2212}
2213
aliguorif141eaf2009-04-07 18:43:24 +00002214BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
2215 QEMUIOVector *qiov, int nb_sectors,
2216 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00002217{
bellard83f64092006-08-01 16:21:11 +00002218 BlockDriver *drv = bs->drv;
thsa36e69d2007-12-02 05:18:19 +00002219 BlockDriverAIOCB *ret;
Marcelo Tosatti4dcafbb2010-11-08 17:02:55 -02002220 BlockCompleteData *blk_cb_data;
bellard83f64092006-08-01 16:21:11 +00002221
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01002222 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
2223
bellard19cb3732006-08-19 11:45:59 +00002224 if (!drv)
pbrookce1a14d2006-08-07 02:38:06 +00002225 return NULL;
bellard83f64092006-08-01 16:21:11 +00002226 if (bs->read_only)
pbrookce1a14d2006-08-07 02:38:06 +00002227 return NULL;
aliguori71d07702009-03-03 17:37:16 +00002228 if (bdrv_check_request(bs, sector_num, nb_sectors))
2229 return NULL;
bellard83f64092006-08-01 16:21:11 +00002230
Jan Kiszkac6d22832009-11-30 18:21:20 +01002231 if (bs->dirty_bitmap) {
Marcelo Tosatti4dcafbb2010-11-08 17:02:55 -02002232 blk_cb_data = blk_dirty_cb_alloc(bs, sector_num, nb_sectors, cb,
2233 opaque);
2234 cb = &block_complete_cb;
2235 opaque = blk_cb_data;
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002236 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002237
aliguorif141eaf2009-04-07 18:43:24 +00002238 ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors,
2239 cb, opaque);
thsa36e69d2007-12-02 05:18:19 +00002240
2241 if (ret) {
Kevin Wolf294cc352010-04-28 14:34:01 +02002242 /* Update stats even though technically transfer has not happened. */
2243 bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
2244 bs->wr_ops ++;
2245 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2246 bs->wr_highest_sector = sector_num + nb_sectors - 1;
2247 }
thsa36e69d2007-12-02 05:18:19 +00002248 }
2249
2250 return ret;
bellard83f64092006-08-01 16:21:11 +00002251}
2252
Kevin Wolf40b4f532009-09-09 17:53:37 +02002253
2254typedef struct MultiwriteCB {
2255 int error;
2256 int num_requests;
2257 int num_callbacks;
2258 struct {
2259 BlockDriverCompletionFunc *cb;
2260 void *opaque;
2261 QEMUIOVector *free_qiov;
2262 void *free_buf;
2263 } callbacks[];
2264} MultiwriteCB;
2265
2266static void multiwrite_user_cb(MultiwriteCB *mcb)
2267{
2268 int i;
2269
2270 for (i = 0; i < mcb->num_callbacks; i++) {
2271 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
Stefan Hajnoczi1e1ea482010-04-21 20:35:45 +01002272 if (mcb->callbacks[i].free_qiov) {
2273 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
2274 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02002275 qemu_free(mcb->callbacks[i].free_qiov);
Herve Poussineauf8a83242010-01-24 21:23:56 +00002276 qemu_vfree(mcb->callbacks[i].free_buf);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002277 }
2278}
2279
2280static void multiwrite_cb(void *opaque, int ret)
2281{
2282 MultiwriteCB *mcb = opaque;
2283
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01002284 trace_multiwrite_cb(mcb, ret);
2285
Kevin Wolfcb6d3ca2010-04-01 22:48:44 +02002286 if (ret < 0 && !mcb->error) {
Kevin Wolf40b4f532009-09-09 17:53:37 +02002287 mcb->error = ret;
Kevin Wolf40b4f532009-09-09 17:53:37 +02002288 }
2289
2290 mcb->num_requests--;
2291 if (mcb->num_requests == 0) {
Kevin Wolfde189a12010-07-01 16:08:51 +02002292 multiwrite_user_cb(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002293 qemu_free(mcb);
2294 }
2295}
2296
2297static int multiwrite_req_compare(const void *a, const void *b)
2298{
Christoph Hellwig77be4362010-05-19 20:53:10 +02002299 const BlockRequest *req1 = a, *req2 = b;
2300
2301 /*
2302 * Note that we can't simply subtract req2->sector from req1->sector
2303 * here as that could overflow the return value.
2304 */
2305 if (req1->sector > req2->sector) {
2306 return 1;
2307 } else if (req1->sector < req2->sector) {
2308 return -1;
2309 } else {
2310 return 0;
2311 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02002312}
2313
2314/*
2315 * Takes a bunch of requests and tries to merge them. Returns the number of
2316 * requests that remain after merging.
2317 */
2318static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
2319 int num_reqs, MultiwriteCB *mcb)
2320{
2321 int i, outidx;
2322
2323 // Sort requests by start sector
2324 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
2325
2326 // Check if adjacent requests touch the same clusters. If so, combine them,
2327 // filling up gaps with zero sectors.
2328 outidx = 0;
2329 for (i = 1; i < num_reqs; i++) {
2330 int merge = 0;
2331 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
2332
2333 // This handles the cases that are valid for all block drivers, namely
2334 // exactly sequential writes and overlapping writes.
2335 if (reqs[i].sector <= oldreq_last) {
2336 merge = 1;
2337 }
2338
2339 // The block driver may decide that it makes sense to combine requests
2340 // even if there is a gap of some sectors between them. In this case,
2341 // the gap is filled with zeros (therefore only applicable for yet
2342 // unused space in format like qcow2).
2343 if (!merge && bs->drv->bdrv_merge_requests) {
2344 merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]);
2345 }
2346
Christoph Hellwige2a305f2010-01-26 14:49:08 +01002347 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
2348 merge = 0;
2349 }
2350
Kevin Wolf40b4f532009-09-09 17:53:37 +02002351 if (merge) {
2352 size_t size;
2353 QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov));
2354 qemu_iovec_init(qiov,
2355 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
2356
2357 // Add the first request to the merged one. If the requests are
2358 // overlapping, drop the last sectors of the first request.
2359 size = (reqs[i].sector - reqs[outidx].sector) << 9;
2360 qemu_iovec_concat(qiov, reqs[outidx].qiov, size);
2361
2362 // We might need to add some zeros between the two requests
2363 if (reqs[i].sector > oldreq_last) {
2364 size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9;
2365 uint8_t *buf = qemu_blockalign(bs, zero_bytes);
2366 memset(buf, 0, zero_bytes);
2367 qemu_iovec_add(qiov, buf, zero_bytes);
2368 mcb->callbacks[i].free_buf = buf;
2369 }
2370
2371 // Add the second request
2372 qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size);
2373
Kevin Wolfcbf1dff2010-05-21 11:09:42 +02002374 reqs[outidx].nb_sectors = qiov->size >> 9;
Kevin Wolf40b4f532009-09-09 17:53:37 +02002375 reqs[outidx].qiov = qiov;
2376
2377 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
2378 } else {
2379 outidx++;
2380 reqs[outidx].sector = reqs[i].sector;
2381 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
2382 reqs[outidx].qiov = reqs[i].qiov;
2383 }
2384 }
2385
2386 return outidx + 1;
2387}
2388
2389/*
2390 * Submit multiple AIO write requests at once.
2391 *
2392 * On success, the function returns 0 and all requests in the reqs array have
2393 * been submitted. In error case this function returns -1, and any of the
2394 * requests may or may not be submitted yet. In particular, this means that the
2395 * callback will be called for some of the requests, for others it won't. The
2396 * caller must check the error field of the BlockRequest to wait for the right
2397 * callbacks (if error != 0, no callback will be called).
2398 *
2399 * The implementation may modify the contents of the reqs array, e.g. to merge
2400 * requests. However, the fields opaque and error are left unmodified as they
2401 * are used to signal failure for a single request to the caller.
2402 */
2403int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
2404{
2405 BlockDriverAIOCB *acb;
2406 MultiwriteCB *mcb;
2407 int i;
2408
Ryan Harper301db7c2011-03-07 10:01:04 -06002409 /* don't submit writes if we don't have a medium */
2410 if (bs->drv == NULL) {
2411 for (i = 0; i < num_reqs; i++) {
2412 reqs[i].error = -ENOMEDIUM;
2413 }
2414 return -1;
2415 }
2416
Kevin Wolf40b4f532009-09-09 17:53:37 +02002417 if (num_reqs == 0) {
2418 return 0;
2419 }
2420
2421 // Create MultiwriteCB structure
2422 mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
2423 mcb->num_requests = 0;
2424 mcb->num_callbacks = num_reqs;
2425
2426 for (i = 0; i < num_reqs; i++) {
2427 mcb->callbacks[i].cb = reqs[i].cb;
2428 mcb->callbacks[i].opaque = reqs[i].opaque;
2429 }
2430
2431 // Check for mergable requests
2432 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
2433
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01002434 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
2435
Kevin Wolf453f9a12010-07-02 14:01:21 +02002436 /*
2437 * Run the aio requests. As soon as one request can't be submitted
2438 * successfully, fail all requests that are not yet submitted (we must
2439 * return failure for all requests anyway)
2440 *
2441 * num_requests cannot be set to the right value immediately: If
2442 * bdrv_aio_writev fails for some request, num_requests would be too high
2443 * and therefore multiwrite_cb() would never recognize the multiwrite
2444 * request as completed. We also cannot use the loop variable i to set it
2445 * when the first request fails because the callback may already have been
2446 * called for previously submitted requests. Thus, num_requests must be
2447 * incremented for each request that is submitted.
2448 *
2449 * The problem that callbacks may be called early also means that we need
2450 * to take care that num_requests doesn't become 0 before all requests are
2451 * submitted - multiwrite_cb() would consider the multiwrite request
2452 * completed. A dummy request that is "completed" by a manual call to
2453 * multiwrite_cb() takes care of this.
2454 */
2455 mcb->num_requests = 1;
2456
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01002457 // Run the aio requests
Kevin Wolf40b4f532009-09-09 17:53:37 +02002458 for (i = 0; i < num_reqs; i++) {
Kevin Wolf453f9a12010-07-02 14:01:21 +02002459 mcb->num_requests++;
Kevin Wolf40b4f532009-09-09 17:53:37 +02002460 acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
2461 reqs[i].nb_sectors, multiwrite_cb, mcb);
2462
2463 if (acb == NULL) {
2464 // We can only fail the whole thing if no request has been
2465 // submitted yet. Otherwise we'll wait for the submitted AIOs to
2466 // complete and report the error in the callback.
Kevin Wolf453f9a12010-07-02 14:01:21 +02002467 if (i == 0) {
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01002468 trace_bdrv_aio_multiwrite_earlyfail(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002469 goto fail;
2470 } else {
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01002471 trace_bdrv_aio_multiwrite_latefail(mcb, i);
Kevin Wolf7eb58a62010-04-06 18:24:07 +02002472 multiwrite_cb(mcb, -EIO);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002473 break;
2474 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02002475 }
2476 }
2477
Kevin Wolf453f9a12010-07-02 14:01:21 +02002478 /* Complete the dummy request */
2479 multiwrite_cb(mcb, 0);
2480
Kevin Wolf40b4f532009-09-09 17:53:37 +02002481 return 0;
2482
2483fail:
Kevin Wolf453f9a12010-07-02 14:01:21 +02002484 for (i = 0; i < mcb->num_callbacks; i++) {
2485 reqs[i].error = -EIO;
2486 }
Bruce Rogersaf474592010-05-13 15:14:33 -06002487 qemu_free(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02002488 return -1;
2489}
2490
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002491BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
2492 BlockDriverCompletionFunc *cb, void *opaque)
2493{
2494 BlockDriver *drv = bs->drv;
2495
Stefan Hajnoczia13aac02011-03-07 07:58:04 +00002496 trace_bdrv_aio_flush(bs, opaque);
2497
Alexander Graf016f5cf2010-05-26 17:51:49 +02002498 if (bs->open_flags & BDRV_O_NO_FLUSH) {
2499 return bdrv_aio_noop_em(bs, cb, opaque);
2500 }
2501
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002502 if (!drv)
2503 return NULL;
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002504 return drv->bdrv_aio_flush(bs, cb, opaque);
2505}
2506
bellard83f64092006-08-01 16:21:11 +00002507void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00002508{
aliguori6bbff9a2009-03-20 18:25:59 +00002509 acb->pool->cancel(acb);
bellard83f64092006-08-01 16:21:11 +00002510}
2511
pbrookce1a14d2006-08-07 02:38:06 +00002512
bellard83f64092006-08-01 16:21:11 +00002513/**************************************************************/
2514/* async block device emulation */
2515
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002516typedef struct BlockDriverAIOCBSync {
2517 BlockDriverAIOCB common;
2518 QEMUBH *bh;
2519 int ret;
2520 /* vector translation state */
2521 QEMUIOVector *qiov;
2522 uint8_t *bounce;
2523 int is_write;
2524} BlockDriverAIOCBSync;
2525
2526static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
2527{
Kevin Wolfb666d232010-05-05 11:44:39 +02002528 BlockDriverAIOCBSync *acb =
2529 container_of(blockacb, BlockDriverAIOCBSync, common);
Dor Laor6a7ad292009-06-01 12:07:23 +03002530 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03002531 acb->bh = NULL;
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002532 qemu_aio_release(acb);
2533}
2534
2535static AIOPool bdrv_em_aio_pool = {
2536 .aiocb_size = sizeof(BlockDriverAIOCBSync),
2537 .cancel = bdrv_aio_cancel_em,
2538};
2539
bellard83f64092006-08-01 16:21:11 +00002540static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00002541{
pbrookce1a14d2006-08-07 02:38:06 +00002542 BlockDriverAIOCBSync *acb = opaque;
aliguorif141eaf2009-04-07 18:43:24 +00002543
aliguorif141eaf2009-04-07 18:43:24 +00002544 if (!acb->is_write)
2545 qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size);
aliguoriceb42de2009-04-07 18:43:28 +00002546 qemu_vfree(acb->bounce);
pbrookce1a14d2006-08-07 02:38:06 +00002547 acb->common.cb(acb->common.opaque, acb->ret);
Dor Laor6a7ad292009-06-01 12:07:23 +03002548 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03002549 acb->bh = NULL;
pbrookce1a14d2006-08-07 02:38:06 +00002550 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00002551}
bellardbeac80c2006-06-26 20:08:57 +00002552
aliguorif141eaf2009-04-07 18:43:24 +00002553static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
2554 int64_t sector_num,
2555 QEMUIOVector *qiov,
2556 int nb_sectors,
2557 BlockDriverCompletionFunc *cb,
2558 void *opaque,
2559 int is_write)
2560
bellardea2384d2004-08-01 21:59:26 +00002561{
pbrookce1a14d2006-08-07 02:38:06 +00002562 BlockDriverAIOCBSync *acb;
pbrookce1a14d2006-08-07 02:38:06 +00002563
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002564 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
aliguorif141eaf2009-04-07 18:43:24 +00002565 acb->is_write = is_write;
2566 acb->qiov = qiov;
aliguorie268ca52009-04-22 20:20:00 +00002567 acb->bounce = qemu_blockalign(bs, qiov->size);
aliguorif141eaf2009-04-07 18:43:24 +00002568
pbrookce1a14d2006-08-07 02:38:06 +00002569 if (!acb->bh)
2570 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
aliguorif141eaf2009-04-07 18:43:24 +00002571
2572 if (is_write) {
2573 qemu_iovec_to_buffer(acb->qiov, acb->bounce);
2574 acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
2575 } else {
2576 acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
2577 }
2578
pbrookce1a14d2006-08-07 02:38:06 +00002579 qemu_bh_schedule(acb->bh);
aliguorif141eaf2009-04-07 18:43:24 +00002580
pbrookce1a14d2006-08-07 02:38:06 +00002581 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00002582}
2583
aliguorif141eaf2009-04-07 18:43:24 +00002584static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
2585 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +00002586 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00002587{
aliguorif141eaf2009-04-07 18:43:24 +00002588 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
bellard83f64092006-08-01 16:21:11 +00002589}
2590
aliguorif141eaf2009-04-07 18:43:24 +00002591static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
2592 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
2593 BlockDriverCompletionFunc *cb, void *opaque)
2594{
2595 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
2596}
2597
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02002598static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs,
2599 BlockDriverCompletionFunc *cb, void *opaque)
2600{
2601 BlockDriverAIOCBSync *acb;
2602
2603 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2604 acb->is_write = 1; /* don't bounce in the completion hadler */
2605 acb->qiov = NULL;
2606 acb->bounce = NULL;
2607 acb->ret = 0;
2608
2609 if (!acb->bh)
2610 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2611
2612 bdrv_flush(bs);
2613 qemu_bh_schedule(acb->bh);
2614 return &acb->common;
2615}
2616
Alexander Graf016f5cf2010-05-26 17:51:49 +02002617static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs,
2618 BlockDriverCompletionFunc *cb, void *opaque)
2619{
2620 BlockDriverAIOCBSync *acb;
2621
2622 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
2623 acb->is_write = 1; /* don't bounce in the completion handler */
2624 acb->qiov = NULL;
2625 acb->bounce = NULL;
2626 acb->ret = 0;
2627
2628 if (!acb->bh) {
2629 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
2630 }
2631
2632 qemu_bh_schedule(acb->bh);
2633 return &acb->common;
2634}
2635
bellard83f64092006-08-01 16:21:11 +00002636/**************************************************************/
2637/* sync block device emulation */
2638
2639static void bdrv_rw_em_cb(void *opaque, int ret)
2640{
2641 *(int *)opaque = ret;
2642}
2643
2644#define NOT_DONE 0x7fffffff
2645
ths5fafdf22007-09-16 21:08:06 +00002646static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num,
bellard83f64092006-08-01 16:21:11 +00002647 uint8_t *buf, int nb_sectors)
2648{
pbrookce1a14d2006-08-07 02:38:06 +00002649 int async_ret;
2650 BlockDriverAIOCB *acb;
aliguorif141eaf2009-04-07 18:43:24 +00002651 struct iovec iov;
2652 QEMUIOVector qiov;
bellard83f64092006-08-01 16:21:11 +00002653
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002654 async_context_push();
2655
bellard83f64092006-08-01 16:21:11 +00002656 async_ret = NOT_DONE;
blueswir13f4cb3d2009-04-13 16:31:01 +00002657 iov.iov_base = (void *)buf;
Jes Sorenseneb5a3162010-05-27 16:20:31 +02002658 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
aliguorif141eaf2009-04-07 18:43:24 +00002659 qemu_iovec_init_external(&qiov, &iov, 1);
2660 acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors,
2661 bdrv_rw_em_cb, &async_ret);
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002662 if (acb == NULL) {
2663 async_ret = -1;
2664 goto fail;
2665 }
aliguoribaf35cb2008-09-10 15:45:19 +00002666
bellard83f64092006-08-01 16:21:11 +00002667 while (async_ret == NOT_DONE) {
2668 qemu_aio_wait();
2669 }
aliguoribaf35cb2008-09-10 15:45:19 +00002670
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002671
2672fail:
2673 async_context_pop();
bellard83f64092006-08-01 16:21:11 +00002674 return async_ret;
2675}
2676
2677static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num,
2678 const uint8_t *buf, int nb_sectors)
2679{
pbrookce1a14d2006-08-07 02:38:06 +00002680 int async_ret;
2681 BlockDriverAIOCB *acb;
aliguorif141eaf2009-04-07 18:43:24 +00002682 struct iovec iov;
2683 QEMUIOVector qiov;
bellard83f64092006-08-01 16:21:11 +00002684
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002685 async_context_push();
2686
bellard83f64092006-08-01 16:21:11 +00002687 async_ret = NOT_DONE;
aliguorif141eaf2009-04-07 18:43:24 +00002688 iov.iov_base = (void *)buf;
Jes Sorenseneb5a3162010-05-27 16:20:31 +02002689 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
aliguorif141eaf2009-04-07 18:43:24 +00002690 qemu_iovec_init_external(&qiov, &iov, 1);
2691 acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors,
2692 bdrv_rw_em_cb, &async_ret);
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002693 if (acb == NULL) {
2694 async_ret = -1;
2695 goto fail;
2696 }
bellard83f64092006-08-01 16:21:11 +00002697 while (async_ret == NOT_DONE) {
2698 qemu_aio_wait();
2699 }
Kevin Wolf65d6b3d2009-10-22 17:54:39 +02002700
2701fail:
2702 async_context_pop();
bellard83f64092006-08-01 16:21:11 +00002703 return async_ret;
2704}
bellardea2384d2004-08-01 21:59:26 +00002705
2706void bdrv_init(void)
2707{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05002708 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00002709}
pbrookce1a14d2006-08-07 02:38:06 +00002710
Markus Armbrustereb852012009-10-27 18:41:44 +01002711void bdrv_init_with_whitelist(void)
2712{
2713 use_bdrv_whitelist = 1;
2714 bdrv_init();
2715}
2716
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02002717void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
2718 BlockDriverCompletionFunc *cb, void *opaque)
aliguori6bbff9a2009-03-20 18:25:59 +00002719{
pbrookce1a14d2006-08-07 02:38:06 +00002720 BlockDriverAIOCB *acb;
2721
aliguori6bbff9a2009-03-20 18:25:59 +00002722 if (pool->free_aiocb) {
2723 acb = pool->free_aiocb;
2724 pool->free_aiocb = acb->next;
pbrookce1a14d2006-08-07 02:38:06 +00002725 } else {
aliguori6bbff9a2009-03-20 18:25:59 +00002726 acb = qemu_mallocz(pool->aiocb_size);
2727 acb->pool = pool;
pbrookce1a14d2006-08-07 02:38:06 +00002728 }
2729 acb->bs = bs;
2730 acb->cb = cb;
2731 acb->opaque = opaque;
2732 return acb;
2733}
2734
2735void qemu_aio_release(void *p)
2736{
aliguori6bbff9a2009-03-20 18:25:59 +00002737 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
2738 AIOPool *pool = acb->pool;
2739 acb->next = pool->free_aiocb;
2740 pool->free_aiocb = acb;
pbrookce1a14d2006-08-07 02:38:06 +00002741}
bellard19cb3732006-08-19 11:45:59 +00002742
2743/**************************************************************/
2744/* removable device support */
2745
2746/**
2747 * Return TRUE if the media is present
2748 */
2749int bdrv_is_inserted(BlockDriverState *bs)
2750{
2751 BlockDriver *drv = bs->drv;
2752 int ret;
2753 if (!drv)
2754 return 0;
2755 if (!drv->bdrv_is_inserted)
Markus Armbruster4be97622010-07-27 14:02:01 +02002756 return !bs->tray_open;
bellard19cb3732006-08-19 11:45:59 +00002757 ret = drv->bdrv_is_inserted(bs);
2758 return ret;
2759}
2760
2761/**
2762 * Return TRUE if the media changed since the last call to this
ths5fafdf22007-09-16 21:08:06 +00002763 * function. It is currently only used for floppy disks
bellard19cb3732006-08-19 11:45:59 +00002764 */
2765int bdrv_media_changed(BlockDriverState *bs)
2766{
2767 BlockDriver *drv = bs->drv;
2768 int ret;
2769
2770 if (!drv || !drv->bdrv_media_changed)
2771 ret = -ENOTSUP;
2772 else
2773 ret = drv->bdrv_media_changed(bs);
2774 if (ret == -ENOTSUP)
2775 ret = bs->media_changed;
2776 bs->media_changed = 0;
2777 return ret;
2778}
2779
2780/**
2781 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
2782 */
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002783int bdrv_eject(BlockDriverState *bs, int eject_flag)
bellard19cb3732006-08-19 11:45:59 +00002784{
2785 BlockDriver *drv = bs->drv;
2786 int ret;
2787
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002788 if (bs->locked) {
2789 return -EBUSY;
2790 }
2791
bellard19cb3732006-08-19 11:45:59 +00002792 if (!drv || !drv->bdrv_eject) {
2793 ret = -ENOTSUP;
2794 } else {
2795 ret = drv->bdrv_eject(bs, eject_flag);
2796 }
2797 if (ret == -ENOTSUP) {
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002798 ret = 0;
bellard19cb3732006-08-19 11:45:59 +00002799 }
Markus Armbruster4be97622010-07-27 14:02:01 +02002800 if (ret >= 0) {
2801 bs->tray_open = eject_flag;
2802 }
Mark McLoughlinaea2a332009-05-27 10:06:11 +01002803
2804 return ret;
bellard19cb3732006-08-19 11:45:59 +00002805}
2806
2807int bdrv_is_locked(BlockDriverState *bs)
2808{
2809 return bs->locked;
2810}
2811
2812/**
2813 * Lock or unlock the media (if it is locked, the user won't be able
2814 * to eject it manually).
2815 */
2816void bdrv_set_locked(BlockDriverState *bs, int locked)
2817{
2818 BlockDriver *drv = bs->drv;
2819
2820 bs->locked = locked;
2821 if (drv && drv->bdrv_set_locked) {
2822 drv->bdrv_set_locked(bs, locked);
2823 }
2824}
ths985a03b2007-12-24 16:10:43 +00002825
2826/* needed for generic scsi interface */
2827
2828int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
2829{
2830 BlockDriver *drv = bs->drv;
2831
2832 if (drv && drv->bdrv_ioctl)
2833 return drv->bdrv_ioctl(bs, req, buf);
2834 return -ENOTSUP;
2835}
aliguori7d780662009-03-12 19:57:08 +00002836
aliguori221f7152009-03-28 17:28:41 +00002837BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
2838 unsigned long int req, void *buf,
2839 BlockDriverCompletionFunc *cb, void *opaque)
aliguori7d780662009-03-12 19:57:08 +00002840{
aliguori221f7152009-03-28 17:28:41 +00002841 BlockDriver *drv = bs->drv;
aliguori7d780662009-03-12 19:57:08 +00002842
aliguori221f7152009-03-28 17:28:41 +00002843 if (drv && drv->bdrv_aio_ioctl)
2844 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
2845 return NULL;
aliguori7d780662009-03-12 19:57:08 +00002846}
aliguorie268ca52009-04-22 20:20:00 +00002847
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002848
2849
aliguorie268ca52009-04-22 20:20:00 +00002850void *qemu_blockalign(BlockDriverState *bs, size_t size)
2851{
2852 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
2853}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002854
2855void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
2856{
2857 int64_t bitmap_size;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002858
Liran Schouraaa0eb72010-01-26 10:31:48 +02002859 bs->dirty_count = 0;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002860 if (enable) {
Jan Kiszkac6d22832009-11-30 18:21:20 +01002861 if (!bs->dirty_bitmap) {
2862 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
2863 BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1;
2864 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002865
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002866 bs->dirty_bitmap = qemu_mallocz(bitmap_size);
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002867 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002868 } else {
Jan Kiszkac6d22832009-11-30 18:21:20 +01002869 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002870 qemu_free(bs->dirty_bitmap);
Jan Kiszkac6d22832009-11-30 18:21:20 +01002871 bs->dirty_bitmap = NULL;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002872 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002873 }
2874}
2875
2876int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
2877{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002878 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002879
Jan Kiszkac6d22832009-11-30 18:21:20 +01002880 if (bs->dirty_bitmap &&
2881 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002882 return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
2883 (1UL << (chunk % (sizeof(unsigned long) * 8))));
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002884 } else {
2885 return 0;
2886 }
2887}
2888
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002889void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
2890 int nr_sectors)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002891{
2892 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
2893}
Liran Schouraaa0eb72010-01-26 10:31:48 +02002894
2895int64_t bdrv_get_dirty_count(BlockDriverState *bs)
2896{
2897 return bs->dirty_count;
2898}
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002899
Marcelo Tosattidb593f22011-01-26 12:12:34 -02002900void bdrv_set_in_use(BlockDriverState *bs, int in_use)
2901{
2902 assert(bs->in_use != in_use);
2903 bs->in_use = in_use;
2904}
2905
2906int bdrv_in_use(BlockDriverState *bs)
2907{
2908 return bs->in_use;
2909}
2910
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002911int bdrv_img_create(const char *filename, const char *fmt,
2912 const char *base_filename, const char *base_fmt,
2913 char *options, uint64_t img_size, int flags)
2914{
2915 QEMUOptionParameter *param = NULL, *create_options = NULL;
Jes Sorensen792da932010-12-16 13:52:17 +01002916 QEMUOptionParameter *backing_fmt, *backing_file;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002917 BlockDriverState *bs = NULL;
2918 BlockDriver *drv, *proto_drv;
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00002919 BlockDriver *backing_drv = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002920 int ret = 0;
2921
2922 /* Find driver and parse its options */
2923 drv = bdrv_find_format(fmt);
2924 if (!drv) {
2925 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002926 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002927 goto out;
2928 }
2929
2930 proto_drv = bdrv_find_protocol(filename);
2931 if (!proto_drv) {
2932 error_report("Unknown protocol '%s'", filename);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002933 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002934 goto out;
2935 }
2936
2937 create_options = append_option_parameters(create_options,
2938 drv->create_options);
2939 create_options = append_option_parameters(create_options,
2940 proto_drv->create_options);
2941
2942 /* Create parameter list with default values */
2943 param = parse_option_parameters("", create_options, param);
2944
2945 set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
2946
2947 /* Parse -o options */
2948 if (options) {
2949 param = parse_option_parameters(options, create_options, param);
2950 if (param == NULL) {
2951 error_report("Invalid options for file format '%s'.", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002952 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002953 goto out;
2954 }
2955 }
2956
2957 if (base_filename) {
2958 if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
2959 base_filename)) {
2960 error_report("Backing file not supported for file format '%s'",
2961 fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002962 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002963 goto out;
2964 }
2965 }
2966
2967 if (base_fmt) {
2968 if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
2969 error_report("Backing file format not supported for file "
2970 "format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002971 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002972 goto out;
2973 }
2974 }
2975
Jes Sorensen792da932010-12-16 13:52:17 +01002976 backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
2977 if (backing_file && backing_file->value.s) {
2978 if (!strcmp(filename, backing_file->value.s)) {
2979 error_report("Error: Trying to create an image with the "
2980 "same filename as the backing file");
Jes Sorensen4f70f242010-12-16 13:52:18 +01002981 ret = -EINVAL;
Jes Sorensen792da932010-12-16 13:52:17 +01002982 goto out;
2983 }
2984 }
2985
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002986 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
2987 if (backing_fmt && backing_fmt->value.s) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00002988 backing_drv = bdrv_find_format(backing_fmt->value.s);
2989 if (!backing_drv) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002990 error_report("Unknown backing file format '%s'",
2991 backing_fmt->value.s);
Jes Sorensen4f70f242010-12-16 13:52:18 +01002992 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01002993 goto out;
2994 }
2995 }
2996
2997 // The size for the image must always be specified, with one exception:
2998 // If we are using a backing file, we can obtain the size from there
2999 if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003000 if (backing_file && backing_file->value.s) {
3001 uint64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003002 char buf[32];
3003
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003004 bs = bdrv_new("");
3005
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00003006 ret = bdrv_open(bs, backing_file->value.s, flags, backing_drv);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003007 if (ret < 0) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00003008 error_report("Could not open '%s'", backing_file->value.s);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003009 goto out;
3010 }
3011 bdrv_get_geometry(bs, &size);
3012 size *= 512;
3013
3014 snprintf(buf, sizeof(buf), "%" PRId64, size);
3015 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
3016 } else {
3017 error_report("Image creation needs a size parameter");
Jes Sorensen4f70f242010-12-16 13:52:18 +01003018 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003019 goto out;
3020 }
3021 }
3022
3023 printf("Formatting '%s', fmt=%s ", filename, fmt);
3024 print_option_parameters(param);
3025 puts("");
3026
3027 ret = bdrv_create(drv, filename, param);
3028
3029 if (ret < 0) {
3030 if (ret == -ENOTSUP) {
3031 error_report("Formatting or formatting option not supported for "
3032 "file format '%s'", fmt);
3033 } else if (ret == -EFBIG) {
3034 error_report("The image size is too large for file format '%s'",
3035 fmt);
3036 } else {
3037 error_report("%s: error while creating %s: %s", filename, fmt,
3038 strerror(-ret));
3039 }
3040 }
3041
3042out:
3043 free_option_parameters(create_options);
3044 free_option_parameters(param);
3045
3046 if (bs) {
3047 bdrv_delete(bs);
3048 }
Jes Sorensen4f70f242010-12-16 13:52:18 +01003049
3050 return ret;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01003051}