blob: e06d78fe7b3d684886a96161ac696f7b12f2467d [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"
Paolo Bonzini2f0c9fe2012-09-28 17:22:47 +020029#include "blockjob.h"
Anthony Liguori5efa9d52009-05-09 17:03:42 -050030#include "module.h"
Luiz Capitulinof795e742011-10-21 16:05:43 -020031#include "qjson.h"
Paolo Bonzini3e1caa52012-09-28 17:22:57 +020032#include "sysemu.h"
Kevin Wolf68485422011-06-30 10:05:46 +020033#include "qemu-coroutine.h"
Luiz Capitulinob2023812011-09-21 17:16:47 -030034#include "qmp-commands.h"
Zhi Yong Wu0563e192011-11-03 16:57:25 +080035#include "qemu-timer.h"
bellardfc01f7e2003-06-30 10:03:06 +000036
Juan Quintela71e72a12009-07-27 16:12:56 +020037#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000038#include <sys/types.h>
39#include <sys/stat.h>
40#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000041#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000042#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000043#include <sys/disk.h>
44#endif
blueswir1c5e97232009-03-07 20:06:23 +000045#endif
bellard7674e7b2005-04-26 21:59:26 +000046
aliguori49dc7682009-03-08 16:26:59 +000047#ifdef _WIN32
48#include <windows.h>
49#endif
50
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010051#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
52
Stefan Hajnoczi470c0502012-01-18 14:40:42 +000053typedef enum {
54 BDRV_REQ_COPY_ON_READ = 0x1,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +000055 BDRV_REQ_ZERO_WRITE = 0x2,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +000056} BdrvRequestFlags;
57
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +020058static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
aliguorif141eaf2009-04-07 18:43:24 +000059static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
60 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
aliguoric87c0672009-04-07 18:43:20 +000061 BlockDriverCompletionFunc *cb, void *opaque);
aliguorif141eaf2009-04-07 18:43:24 +000062static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
63 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +000064 BlockDriverCompletionFunc *cb, void *opaque);
Kevin Wolff9f05dc2011-07-15 13:50:26 +020065static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
66 int64_t sector_num, int nb_sectors,
67 QEMUIOVector *iov);
68static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
69 int64_t sector_num, int nb_sectors,
70 QEMUIOVector *iov);
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +010071static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +000072 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
73 BdrvRequestFlags flags);
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010074static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +000075 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
76 BdrvRequestFlags flags);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +010077static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
78 int64_t sector_num,
79 QEMUIOVector *qiov,
80 int nb_sectors,
81 BlockDriverCompletionFunc *cb,
82 void *opaque,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +010083 bool is_write);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +010084static void coroutine_fn bdrv_co_do_rw(void *opaque);
Kevin Wolf621f0582012-03-20 15:12:58 +010085static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
86 int64_t sector_num, int nb_sectors);
bellardec530c82006-04-25 22:36:06 +000087
Zhi Yong Wu98f90db2011-11-08 13:00:14 +080088static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
89 bool is_write, double elapsed_time, uint64_t *wait);
90static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
91 double elapsed_time, uint64_t *wait);
92static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
93 bool is_write, int64_t *wait);
94
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +010095static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
96 QTAILQ_HEAD_INITIALIZER(bdrv_states);
blueswir17ee930d2008-09-17 19:04:14 +000097
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010098static QLIST_HEAD(, BlockDriver) bdrv_drivers =
99 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +0000100
Markus Armbrusterf9092b12010-06-25 10:33:39 +0200101/* The device to use for VM snapshots */
102static BlockDriverState *bs_snapshots;
103
Markus Armbrustereb852012009-10-27 18:41:44 +0100104/* If non-zero, use only whitelisted block drivers */
105static int use_bdrv_whitelist;
106
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000107#ifdef _WIN32
108static int is_windows_drive_prefix(const char *filename)
109{
110 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
111 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
112 filename[1] == ':');
113}
114
115int is_windows_drive(const char *filename)
116{
117 if (is_windows_drive_prefix(filename) &&
118 filename[2] == '\0')
119 return 1;
120 if (strstart(filename, "\\\\.\\", NULL) ||
121 strstart(filename, "//./", NULL))
122 return 1;
123 return 0;
124}
125#endif
126
Zhi Yong Wu0563e192011-11-03 16:57:25 +0800127/* throttling disk I/O limits */
Zhi Yong Wu98f90db2011-11-08 13:00:14 +0800128void bdrv_io_limits_disable(BlockDriverState *bs)
129{
130 bs->io_limits_enabled = false;
131
132 while (qemu_co_queue_next(&bs->throttled_reqs));
133
134 if (bs->block_timer) {
135 qemu_del_timer(bs->block_timer);
136 qemu_free_timer(bs->block_timer);
137 bs->block_timer = NULL;
138 }
139
140 bs->slice_start = 0;
141 bs->slice_end = 0;
142 bs->slice_time = 0;
143 memset(&bs->io_base, 0, sizeof(bs->io_base));
144}
145
Zhi Yong Wu0563e192011-11-03 16:57:25 +0800146static void bdrv_block_timer(void *opaque)
147{
148 BlockDriverState *bs = opaque;
149
150 qemu_co_queue_next(&bs->throttled_reqs);
151}
152
153void bdrv_io_limits_enable(BlockDriverState *bs)
154{
155 qemu_co_queue_init(&bs->throttled_reqs);
156 bs->block_timer = qemu_new_timer_ns(vm_clock, bdrv_block_timer, bs);
157 bs->slice_time = 5 * BLOCK_IO_SLICE_TIME;
158 bs->slice_start = qemu_get_clock_ns(vm_clock);
159 bs->slice_end = bs->slice_start + bs->slice_time;
160 memset(&bs->io_base, 0, sizeof(bs->io_base));
161 bs->io_limits_enabled = true;
162}
163
164bool bdrv_io_limits_enabled(BlockDriverState *bs)
165{
166 BlockIOLimit *io_limits = &bs->io_limits;
167 return io_limits->bps[BLOCK_IO_LIMIT_READ]
168 || io_limits->bps[BLOCK_IO_LIMIT_WRITE]
169 || io_limits->bps[BLOCK_IO_LIMIT_TOTAL]
170 || io_limits->iops[BLOCK_IO_LIMIT_READ]
171 || io_limits->iops[BLOCK_IO_LIMIT_WRITE]
172 || io_limits->iops[BLOCK_IO_LIMIT_TOTAL];
173}
174
Zhi Yong Wu98f90db2011-11-08 13:00:14 +0800175static void bdrv_io_limits_intercept(BlockDriverState *bs,
176 bool is_write, int nb_sectors)
177{
178 int64_t wait_time = -1;
179
180 if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
181 qemu_co_queue_wait(&bs->throttled_reqs);
182 }
183
184 /* In fact, we hope to keep each request's timing, in FIFO mode. The next
185 * throttled requests will not be dequeued until the current request is
186 * allowed to be serviced. So if the current request still exceeds the
187 * limits, it will be inserted to the head. All requests followed it will
188 * be still in throttled_reqs queue.
189 */
190
191 while (bdrv_exceed_io_limits(bs, nb_sectors, is_write, &wait_time)) {
192 qemu_mod_timer(bs->block_timer,
193 wait_time + qemu_get_clock_ns(vm_clock));
194 qemu_co_queue_wait_insert_head(&bs->throttled_reqs);
195 }
196
197 qemu_co_queue_next(&bs->throttled_reqs);
198}
199
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000200/* check if the path starts with "<protocol>:" */
201static int path_has_protocol(const char *path)
202{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200203 const char *p;
204
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000205#ifdef _WIN32
206 if (is_windows_drive(path) ||
207 is_windows_drive_prefix(path)) {
208 return 0;
209 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200210 p = path + strcspn(path, ":/\\");
211#else
212 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000213#endif
214
Paolo Bonzini947995c2012-05-08 16:51:48 +0200215 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000216}
217
bellard83f64092006-08-01 16:21:11 +0000218int path_is_absolute(const char *path)
219{
bellard21664422007-01-07 18:22:37 +0000220#ifdef _WIN32
221 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200222 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000223 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200224 }
225 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000226#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200227 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000228#endif
bellard83f64092006-08-01 16:21:11 +0000229}
230
231/* if filename is absolute, just copy it to dest. Otherwise, build a
232 path to it by considering it is relative to base_path. URL are
233 supported. */
234void path_combine(char *dest, int dest_size,
235 const char *base_path,
236 const char *filename)
237{
238 const char *p, *p1;
239 int len;
240
241 if (dest_size <= 0)
242 return;
243 if (path_is_absolute(filename)) {
244 pstrcpy(dest, dest_size, filename);
245 } else {
246 p = strchr(base_path, ':');
247 if (p)
248 p++;
249 else
250 p = base_path;
bellard3b9f94e2007-01-07 17:27:07 +0000251 p1 = strrchr(base_path, '/');
252#ifdef _WIN32
253 {
254 const char *p2;
255 p2 = strrchr(base_path, '\\');
256 if (!p1 || p2 > p1)
257 p1 = p2;
258 }
259#endif
bellard83f64092006-08-01 16:21:11 +0000260 if (p1)
261 p1++;
262 else
263 p1 = base_path;
264 if (p1 > p)
265 p = p1;
266 len = p - base_path;
267 if (len > dest_size - 1)
268 len = dest_size - 1;
269 memcpy(dest, base_path, len);
270 dest[len] = '\0';
271 pstrcat(dest, dest_size, filename);
272 }
273}
274
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200275void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz)
276{
277 if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) {
278 pstrcpy(dest, sz, bs->backing_file);
279 } else {
280 path_combine(dest, sz, bs->filename, bs->backing_file);
281 }
282}
283
Anthony Liguori5efa9d52009-05-09 17:03:42 -0500284void bdrv_register(BlockDriver *bdrv)
bellardea2384d2004-08-01 21:59:26 +0000285{
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +0100286 /* Block drivers without coroutine functions need emulation */
287 if (!bdrv->bdrv_co_readv) {
Kevin Wolff9f05dc2011-07-15 13:50:26 +0200288 bdrv->bdrv_co_readv = bdrv_co_readv_em;
289 bdrv->bdrv_co_writev = bdrv_co_writev_em;
290
Stefan Hajnoczif8c35c12011-10-13 21:09:31 +0100291 /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
292 * the block driver lacks aio we need to emulate that too.
293 */
Kevin Wolff9f05dc2011-07-15 13:50:26 +0200294 if (!bdrv->bdrv_aio_readv) {
295 /* add AIO emulation layer */
296 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
297 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
Kevin Wolff9f05dc2011-07-15 13:50:26 +0200298 }
bellard83f64092006-08-01 16:21:11 +0000299 }
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +0200300
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100301 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000302}
bellardb3380822004-03-14 21:38:54 +0000303
304/* create a new block device (by default it is empty) */
305BlockDriverState *bdrv_new(const char *device_name)
bellardfc01f7e2003-06-30 10:03:06 +0000306{
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100307 BlockDriverState *bs;
bellardb3380822004-03-14 21:38:54 +0000308
Anthony Liguori7267c092011-08-20 22:09:37 -0500309 bs = g_malloc0(sizeof(BlockDriverState));
bellardb3380822004-03-14 21:38:54 +0000310 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
bellardea2384d2004-08-01 21:59:26 +0000311 if (device_name[0] != '\0') {
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +0100312 QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
bellardea2384d2004-08-01 21:59:26 +0000313 }
Luiz Capitulino28a72822011-09-26 17:43:50 -0300314 bdrv_iostatus_disable(bs);
bellardb3380822004-03-14 21:38:54 +0000315 return bs;
316}
317
bellardea2384d2004-08-01 21:59:26 +0000318BlockDriver *bdrv_find_format(const char *format_name)
319{
320 BlockDriver *drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100321 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
322 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000323 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100324 }
bellardea2384d2004-08-01 21:59:26 +0000325 }
326 return NULL;
327}
328
Markus Armbrustereb852012009-10-27 18:41:44 +0100329static int bdrv_is_whitelisted(BlockDriver *drv)
330{
331 static const char *whitelist[] = {
332 CONFIG_BDRV_WHITELIST
333 };
334 const char **p;
335
336 if (!whitelist[0])
337 return 1; /* no whitelist, anything goes */
338
339 for (p = whitelist; *p; p++) {
340 if (!strcmp(drv->format_name, *p)) {
341 return 1;
342 }
343 }
344 return 0;
345}
346
347BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
348{
349 BlockDriver *drv = bdrv_find_format(format_name);
350 return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
351}
352
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800353typedef struct CreateCo {
354 BlockDriver *drv;
355 char *filename;
356 QEMUOptionParameter *options;
357 int ret;
358} CreateCo;
359
360static void coroutine_fn bdrv_create_co_entry(void *opaque)
361{
362 CreateCo *cco = opaque;
363 assert(cco->drv);
364
365 cco->ret = cco->drv->bdrv_create(cco->filename, cco->options);
366}
367
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200368int bdrv_create(BlockDriver *drv, const char* filename,
369 QEMUOptionParameter *options)
bellardea2384d2004-08-01 21:59:26 +0000370{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800371 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200372
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800373 Coroutine *co;
374 CreateCo cco = {
375 .drv = drv,
376 .filename = g_strdup(filename),
377 .options = options,
378 .ret = NOT_DONE,
379 };
380
381 if (!drv->bdrv_create) {
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300382 ret = -ENOTSUP;
383 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800384 }
385
386 if (qemu_in_coroutine()) {
387 /* Fast-path if already in coroutine context */
388 bdrv_create_co_entry(&cco);
389 } else {
390 co = qemu_coroutine_create(bdrv_create_co_entry);
391 qemu_coroutine_enter(co, &cco);
392 while (cco.ret == NOT_DONE) {
393 qemu_aio_wait();
394 }
395 }
396
397 ret = cco.ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800398
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300399out:
400 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800401 return ret;
bellardea2384d2004-08-01 21:59:26 +0000402}
403
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200404int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
405{
406 BlockDriver *drv;
407
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900408 drv = bdrv_find_protocol(filename);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200409 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000410 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200411 }
412
413 return bdrv_create(drv, filename, options);
414}
415
Jim Meyeringeba25052012-05-28 09:27:54 +0200416/*
417 * Create a uniquely-named empty temporary file.
418 * Return 0 upon success, otherwise a negative errno value.
419 */
420int get_tmp_filename(char *filename, int size)
421{
bellardd5249392004-08-03 21:14:23 +0000422#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000423 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200424 /* GetTempFileName requires that its output buffer (4th param)
425 have length MAX_PATH or greater. */
426 assert(size >= MAX_PATH);
427 return (GetTempPath(MAX_PATH, temp_dir)
428 && GetTempFileName(temp_dir, "qem", 0, filename)
429 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000430#else
bellardea2384d2004-08-01 21:59:26 +0000431 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000432 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000433 tmpdir = getenv("TMPDIR");
434 if (!tmpdir)
435 tmpdir = "/tmp";
Jim Meyeringeba25052012-05-28 09:27:54 +0200436 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
437 return -EOVERFLOW;
438 }
bellardea2384d2004-08-01 21:59:26 +0000439 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800440 if (fd < 0) {
441 return -errno;
442 }
443 if (close(fd) != 0) {
444 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200445 return -errno;
446 }
447 return 0;
bellardd5249392004-08-03 21:14:23 +0000448#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200449}
bellardea2384d2004-08-01 21:59:26 +0000450
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200451/*
452 * Detect host devices. By convention, /dev/cdrom[N] is always
453 * recognized as a host CDROM.
454 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200455static BlockDriver *find_hdev_driver(const char *filename)
456{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200457 int score_max = 0, score;
458 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200459
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100460 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200461 if (d->bdrv_probe_device) {
462 score = d->bdrv_probe_device(filename);
463 if (score > score_max) {
464 score_max = score;
465 drv = d;
466 }
467 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200468 }
469
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200470 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200471}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200472
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900473BlockDriver *bdrv_find_protocol(const char *filename)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200474{
475 BlockDriver *drv1;
476 char protocol[128];
477 int len;
478 const char *p;
479
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200480 /* TODO Drivers without bdrv_file_open must be specified explicitly */
481
Christoph Hellwig39508e72010-06-23 12:25:17 +0200482 /*
483 * XXX(hch): we really should not let host device detection
484 * override an explicit protocol specification, but moving this
485 * later breaks access to device names with colons in them.
486 * Thanks to the brain-dead persistent naming schemes on udev-
487 * based Linux systems those actually are quite common.
488 */
489 drv1 = find_hdev_driver(filename);
490 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200491 return drv1;
492 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200493
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000494 if (!path_has_protocol(filename)) {
Christoph Hellwig39508e72010-06-23 12:25:17 +0200495 return bdrv_find_format("file");
496 }
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000497 p = strchr(filename, ':');
498 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200499 len = p - filename;
500 if (len > sizeof(protocol) - 1)
501 len = sizeof(protocol) - 1;
502 memcpy(protocol, filename, len);
503 protocol[len] = '\0';
504 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
505 if (drv1->protocol_name &&
506 !strcmp(drv1->protocol_name, protocol)) {
507 return drv1;
508 }
509 }
510 return NULL;
511}
512
Stefan Weilc98ac352010-07-21 21:51:51 +0200513static int find_image_format(const char *filename, BlockDriver **pdrv)
bellardea2384d2004-08-01 21:59:26 +0000514{
bellard83f64092006-08-01 16:21:11 +0000515 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000516 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000517 uint8_t buf[2048];
518 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000519
Naphtali Spreif5edb012010-01-17 16:48:13 +0200520 ret = bdrv_file_open(&bs, filename, 0);
Stefan Weilc98ac352010-07-21 21:51:51 +0200521 if (ret < 0) {
522 *pdrv = NULL;
523 return ret;
524 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700525
Kevin Wolf08a00552010-06-01 18:37:31 +0200526 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
527 if (bs->sg || !bdrv_is_inserted(bs)) {
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700528 bdrv_delete(bs);
Stefan Weilc98ac352010-07-21 21:51:51 +0200529 drv = bdrv_find_format("raw");
530 if (!drv) {
531 ret = -ENOENT;
532 }
533 *pdrv = drv;
534 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700535 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700536
bellard83f64092006-08-01 16:21:11 +0000537 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
538 bdrv_delete(bs);
539 if (ret < 0) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200540 *pdrv = NULL;
541 return ret;
bellard83f64092006-08-01 16:21:11 +0000542 }
543
bellardea2384d2004-08-01 21:59:26 +0000544 score_max = 0;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200545 drv = NULL;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100546 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
bellard83f64092006-08-01 16:21:11 +0000547 if (drv1->bdrv_probe) {
548 score = drv1->bdrv_probe(buf, ret, filename);
549 if (score > score_max) {
550 score_max = score;
551 drv = drv1;
552 }
bellardea2384d2004-08-01 21:59:26 +0000553 }
554 }
Stefan Weilc98ac352010-07-21 21:51:51 +0200555 if (!drv) {
556 ret = -ENOENT;
557 }
558 *pdrv = drv;
559 return ret;
bellardea2384d2004-08-01 21:59:26 +0000560}
561
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100562/**
563 * Set the current 'total_sectors' value
564 */
565static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
566{
567 BlockDriver *drv = bs->drv;
568
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700569 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
570 if (bs->sg)
571 return 0;
572
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100573 /* query actual device if possible, otherwise just trust the hint */
574 if (drv->bdrv_getlength) {
575 int64_t length = drv->bdrv_getlength(bs);
576 if (length < 0) {
577 return length;
578 }
579 hint = length >> BDRV_SECTOR_BITS;
580 }
581
582 bs->total_sectors = hint;
583 return 0;
584}
585
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100586/**
587 * Set open flags for a given cache mode
588 *
589 * Return 0 on success, -1 if the cache mode was invalid.
590 */
591int bdrv_parse_cache_flags(const char *mode, int *flags)
592{
593 *flags &= ~BDRV_O_CACHE_MASK;
594
595 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
596 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100597 } else if (!strcmp(mode, "directsync")) {
598 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100599 } else if (!strcmp(mode, "writeback")) {
600 *flags |= BDRV_O_CACHE_WB;
601 } else if (!strcmp(mode, "unsafe")) {
602 *flags |= BDRV_O_CACHE_WB;
603 *flags |= BDRV_O_NO_FLUSH;
604 } else if (!strcmp(mode, "writethrough")) {
605 /* this is the default */
606 } else {
607 return -1;
608 }
609
610 return 0;
611}
612
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +0000613/**
614 * The copy-on-read flag is actually a reference count so multiple users may
615 * use the feature without worrying about clobbering its previous state.
616 * Copy-on-read stays enabled until all users have called to disable it.
617 */
618void bdrv_enable_copy_on_read(BlockDriverState *bs)
619{
620 bs->copy_on_read++;
621}
622
623void bdrv_disable_copy_on_read(BlockDriverState *bs)
624{
625 assert(bs->copy_on_read > 0);
626 bs->copy_on_read--;
627}
628
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200629/*
Kevin Wolf57915332010-04-14 15:24:50 +0200630 * Common part for opening disk images and files
631 */
632static int bdrv_open_common(BlockDriverState *bs, const char *filename,
633 int flags, BlockDriver *drv)
634{
635 int ret, open_flags;
636
637 assert(drv != NULL);
Paolo Bonzini64058752012-05-08 16:51:49 +0200638 assert(bs->file == NULL);
Kevin Wolf57915332010-04-14 15:24:50 +0200639
Stefan Hajnoczi28dcee12011-09-22 20:14:12 +0100640 trace_bdrv_open_common(bs, filename, flags, drv->format_name);
641
Kevin Wolf57915332010-04-14 15:24:50 +0200642 bs->open_flags = flags;
Kevin Wolf57915332010-04-14 15:24:50 +0200643 bs->buffer_alignment = 512;
644
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +0000645 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
646 if ((flags & BDRV_O_RDWR) && (flags & BDRV_O_COPY_ON_READ)) {
647 bdrv_enable_copy_on_read(bs);
648 }
649
Kevin Wolf57915332010-04-14 15:24:50 +0200650 pstrcpy(bs->filename, sizeof(bs->filename), filename);
651
652 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
653 return -ENOTSUP;
654 }
655
656 bs->drv = drv;
Anthony Liguori7267c092011-08-20 22:09:37 -0500657 bs->opaque = g_malloc0(drv->instance_size);
Kevin Wolf57915332010-04-14 15:24:50 +0200658
Stefan Hajnoczi03f541b2011-10-27 10:54:28 +0100659 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
Paolo Bonzinie1e9b0a2012-06-06 00:04:53 +0200660 open_flags = flags | BDRV_O_CACHE_WB;
Kevin Wolf57915332010-04-14 15:24:50 +0200661
662 /*
663 * Clear flags that are internal to the block layer before opening the
664 * image.
665 */
Paolo Bonzinie1e9b0a2012-06-06 00:04:53 +0200666 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Kevin Wolf57915332010-04-14 15:24:50 +0200667
668 /*
Stefan Weilebabb672011-04-26 10:29:36 +0200669 * Snapshots should be writable.
Kevin Wolf57915332010-04-14 15:24:50 +0200670 */
671 if (bs->is_temporary) {
672 open_flags |= BDRV_O_RDWR;
673 }
674
Jeff Codybe028ad2012-09-20 15:13:17 -0400675 bs->read_only = !(open_flags & BDRV_O_RDWR);
Stefan Hajnoczie7c63792011-10-27 10:54:27 +0100676
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200677 /* Open the image, either directly or using a protocol */
678 if (drv->bdrv_file_open) {
679 ret = drv->bdrv_file_open(bs, filename, open_flags);
680 } else {
681 ret = bdrv_file_open(&bs->file, filename, open_flags);
682 if (ret >= 0) {
683 ret = drv->bdrv_open(bs, open_flags);
684 }
685 }
686
Kevin Wolf57915332010-04-14 15:24:50 +0200687 if (ret < 0) {
688 goto free_and_fail;
689 }
690
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100691 ret = refresh_total_sectors(bs, bs->total_sectors);
692 if (ret < 0) {
693 goto free_and_fail;
Kevin Wolf57915332010-04-14 15:24:50 +0200694 }
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100695
Kevin Wolf57915332010-04-14 15:24:50 +0200696#ifndef _WIN32
697 if (bs->is_temporary) {
698 unlink(filename);
699 }
700#endif
701 return 0;
702
703free_and_fail:
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200704 if (bs->file) {
705 bdrv_delete(bs->file);
706 bs->file = NULL;
707 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500708 g_free(bs->opaque);
Kevin Wolf57915332010-04-14 15:24:50 +0200709 bs->opaque = NULL;
710 bs->drv = NULL;
711 return ret;
712}
713
714/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200715 * Opens a file using a protocol (file, host_device, nbd, ...)
716 */
bellard83f64092006-08-01 16:21:11 +0000717int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000718{
bellard83f64092006-08-01 16:21:11 +0000719 BlockDriverState *bs;
Christoph Hellwig6db95602010-04-05 16:53:57 +0200720 BlockDriver *drv;
bellard83f64092006-08-01 16:21:11 +0000721 int ret;
722
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900723 drv = bdrv_find_protocol(filename);
Christoph Hellwig6db95602010-04-05 16:53:57 +0200724 if (!drv) {
725 return -ENOENT;
726 }
727
bellard83f64092006-08-01 16:21:11 +0000728 bs = bdrv_new("");
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200729 ret = bdrv_open_common(bs, filename, flags, drv);
bellard83f64092006-08-01 16:21:11 +0000730 if (ret < 0) {
731 bdrv_delete(bs);
732 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000733 }
aliguori71d07702009-03-03 17:37:16 +0000734 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000735 *pbs = bs;
736 return 0;
bellardea2384d2004-08-01 21:59:26 +0000737}
bellardfc01f7e2003-06-30 10:03:06 +0000738
Paolo Bonzini9156df12012-10-18 16:49:17 +0200739int bdrv_open_backing_file(BlockDriverState *bs)
740{
741 char backing_filename[PATH_MAX];
742 int back_flags, ret;
743 BlockDriver *back_drv = NULL;
744
745 if (bs->backing_hd != NULL) {
746 return 0;
747 }
748
749 bs->open_flags &= ~BDRV_O_NO_BACKING;
750 if (bs->backing_file[0] == '\0') {
751 return 0;
752 }
753
754 bs->backing_hd = bdrv_new("");
755 bdrv_get_full_backing_filename(bs, backing_filename,
756 sizeof(backing_filename));
757
758 if (bs->backing_format[0] != '\0') {
759 back_drv = bdrv_find_format(bs->backing_format);
760 }
761
762 /* backing files always opened read-only */
763 back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT);
764
765 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
766 if (ret < 0) {
767 bdrv_delete(bs->backing_hd);
768 bs->backing_hd = NULL;
769 bs->open_flags |= BDRV_O_NO_BACKING;
770 return ret;
771 }
772 return 0;
773}
774
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200775/*
776 * Opens a disk image (raw, qcow2, vmdk, ...)
777 */
Kevin Wolfd6e90982010-03-31 14:40:27 +0200778int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
779 BlockDriver *drv)
bellardea2384d2004-08-01 21:59:26 +0000780{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200781 int ret;
Kevin Wolf2b572812011-10-26 11:03:01 +0200782 char tmp_filename[PATH_MAX];
bellard712e7872005-04-28 21:09:32 +0000783
bellard83f64092006-08-01 16:21:11 +0000784 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000785 BlockDriverState *bs1;
786 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000787 int is_protocol = 0;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200788 BlockDriver *bdrv_qcow2;
789 QEMUOptionParameter *options;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200790 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000791
bellardea2384d2004-08-01 21:59:26 +0000792 /* if snapshot, we create a temporary backing file and open it
793 instead of opening 'filename' directly */
794
795 /* if there is a backing file, use it */
796 bs1 = bdrv_new("");
Kevin Wolfd6e90982010-03-31 14:40:27 +0200797 ret = bdrv_open(bs1, filename, 0, drv);
aliguori51d7c002009-03-05 23:00:29 +0000798 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000799 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000800 return ret;
bellardea2384d2004-08-01 21:59:26 +0000801 }
Jes Sorensen3e829902010-05-27 16:20:30 +0200802 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
aliguori7c96d462008-09-12 17:54:13 +0000803
804 if (bs1->drv && bs1->drv->protocol_name)
805 is_protocol = 1;
806
bellardea2384d2004-08-01 21:59:26 +0000807 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000808
Jim Meyeringeba25052012-05-28 09:27:54 +0200809 ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename));
810 if (ret < 0) {
811 return ret;
812 }
aliguori7c96d462008-09-12 17:54:13 +0000813
814 /* Real path is meaningless for protocols */
815 if (is_protocol)
816 snprintf(backing_filename, sizeof(backing_filename),
817 "%s", filename);
Kirill A. Shutemov114cdfa2009-12-25 18:19:22 +0000818 else if (!realpath(filename, backing_filename))
819 return -errno;
aliguori7c96d462008-09-12 17:54:13 +0000820
Kevin Wolf91a073a2009-05-27 14:48:06 +0200821 bdrv_qcow2 = bdrv_find_format("qcow2");
822 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
823
Jes Sorensen3e829902010-05-27 16:20:30 +0200824 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
Kevin Wolf91a073a2009-05-27 14:48:06 +0200825 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
826 if (drv) {
827 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
828 drv->format_name);
829 }
830
831 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
Jan Kiszkad7487682010-04-29 18:24:50 +0200832 free_option_parameters(options);
aliguori51d7c002009-03-05 23:00:29 +0000833 if (ret < 0) {
834 return ret;
bellardea2384d2004-08-01 21:59:26 +0000835 }
Kevin Wolf91a073a2009-05-27 14:48:06 +0200836
bellardea2384d2004-08-01 21:59:26 +0000837 filename = tmp_filename;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200838 drv = bdrv_qcow2;
bellardea2384d2004-08-01 21:59:26 +0000839 bs->is_temporary = 1;
840 }
bellard712e7872005-04-28 21:09:32 +0000841
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200842 /* Find the right image format driver */
Christoph Hellwig6db95602010-04-05 16:53:57 +0200843 if (!drv) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200844 ret = find_image_format(filename, &drv);
aliguori51d7c002009-03-05 23:00:29 +0000845 }
Christoph Hellwig69873072010-01-20 18:13:25 +0100846
aliguori51d7c002009-03-05 23:00:29 +0000847 if (!drv) {
aliguori51d7c002009-03-05 23:00:29 +0000848 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000849 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200850
Jeff Codybe028ad2012-09-20 15:13:17 -0400851 if (flags & BDRV_O_RDWR) {
852 flags |= BDRV_O_ALLOW_RDWR;
853 }
854
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200855 /* Open the image */
856 ret = bdrv_open_common(bs, filename, flags, drv);
857 if (ret < 0) {
Christoph Hellwig69873072010-01-20 18:13:25 +0100858 goto unlink_and_fail;
859 }
860
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200861 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +0200862 if ((flags & BDRV_O_NO_BACKING) == 0) {
863 ret = bdrv_open_backing_file(bs);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200864 if (ret < 0) {
865 bdrv_close(bs);
866 return ret;
867 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200868 }
869
870 if (!bdrv_key_required(bs)) {
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +0200871 bdrv_dev_change_media_cb(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200872 }
873
Zhi Yong Wu98f90db2011-11-08 13:00:14 +0800874 /* throttling disk I/O limits */
875 if (bs->io_limits_enabled) {
876 bdrv_io_limits_enable(bs);
877 }
878
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200879 return 0;
880
881unlink_and_fail:
882 if (bs->is_temporary) {
883 unlink(filename);
884 }
885 return ret;
886}
887
Jeff Codye971aa12012-09-20 15:13:19 -0400888typedef struct BlockReopenQueueEntry {
889 bool prepared;
890 BDRVReopenState state;
891 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
892} BlockReopenQueueEntry;
893
894/*
895 * Adds a BlockDriverState to a simple queue for an atomic, transactional
896 * reopen of multiple devices.
897 *
898 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
899 * already performed, or alternatively may be NULL a new BlockReopenQueue will
900 * be created and initialized. This newly created BlockReopenQueue should be
901 * passed back in for subsequent calls that are intended to be of the same
902 * atomic 'set'.
903 *
904 * bs is the BlockDriverState to add to the reopen queue.
905 *
906 * flags contains the open flags for the associated bs
907 *
908 * returns a pointer to bs_queue, which is either the newly allocated
909 * bs_queue, or the existing bs_queue being used.
910 *
911 */
912BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
913 BlockDriverState *bs, int flags)
914{
915 assert(bs != NULL);
916
917 BlockReopenQueueEntry *bs_entry;
918 if (bs_queue == NULL) {
919 bs_queue = g_new0(BlockReopenQueue, 1);
920 QSIMPLEQ_INIT(bs_queue);
921 }
922
923 if (bs->file) {
924 bdrv_reopen_queue(bs_queue, bs->file, flags);
925 }
926
927 bs_entry = g_new0(BlockReopenQueueEntry, 1);
928 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
929
930 bs_entry->state.bs = bs;
931 bs_entry->state.flags = flags;
932
933 return bs_queue;
934}
935
936/*
937 * Reopen multiple BlockDriverStates atomically & transactionally.
938 *
939 * The queue passed in (bs_queue) must have been built up previous
940 * via bdrv_reopen_queue().
941 *
942 * Reopens all BDS specified in the queue, with the appropriate
943 * flags. All devices are prepared for reopen, and failure of any
944 * device will cause all device changes to be abandonded, and intermediate
945 * data cleaned up.
946 *
947 * If all devices prepare successfully, then the changes are committed
948 * to all devices.
949 *
950 */
951int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
952{
953 int ret = -1;
954 BlockReopenQueueEntry *bs_entry, *next;
955 Error *local_err = NULL;
956
957 assert(bs_queue != NULL);
958
959 bdrv_drain_all();
960
961 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
962 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
963 error_propagate(errp, local_err);
964 goto cleanup;
965 }
966 bs_entry->prepared = true;
967 }
968
969 /* If we reach this point, we have success and just need to apply the
970 * changes
971 */
972 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
973 bdrv_reopen_commit(&bs_entry->state);
974 }
975
976 ret = 0;
977
978cleanup:
979 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
980 if (ret && bs_entry->prepared) {
981 bdrv_reopen_abort(&bs_entry->state);
982 }
983 g_free(bs_entry);
984 }
985 g_free(bs_queue);
986 return ret;
987}
988
989
990/* Reopen a single BlockDriverState with the specified flags. */
991int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
992{
993 int ret = -1;
994 Error *local_err = NULL;
995 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
996
997 ret = bdrv_reopen_multiple(queue, &local_err);
998 if (local_err != NULL) {
999 error_propagate(errp, local_err);
1000 }
1001 return ret;
1002}
1003
1004
1005/*
1006 * Prepares a BlockDriverState for reopen. All changes are staged in the
1007 * 'opaque' field of the BDRVReopenState, which is used and allocated by
1008 * the block driver layer .bdrv_reopen_prepare()
1009 *
1010 * bs is the BlockDriverState to reopen
1011 * flags are the new open flags
1012 * queue is the reopen queue
1013 *
1014 * Returns 0 on success, non-zero on error. On error errp will be set
1015 * as well.
1016 *
1017 * On failure, bdrv_reopen_abort() will be called to clean up any data.
1018 * It is the responsibility of the caller to then call the abort() or
1019 * commit() for any other BDS that have been left in a prepare() state
1020 *
1021 */
1022int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
1023 Error **errp)
1024{
1025 int ret = -1;
1026 Error *local_err = NULL;
1027 BlockDriver *drv;
1028
1029 assert(reopen_state != NULL);
1030 assert(reopen_state->bs->drv != NULL);
1031 drv = reopen_state->bs->drv;
1032
1033 /* if we are to stay read-only, do not allow permission change
1034 * to r/w */
1035 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1036 reopen_state->flags & BDRV_O_RDWR) {
1037 error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1038 reopen_state->bs->device_name);
1039 goto error;
1040 }
1041
1042
1043 ret = bdrv_flush(reopen_state->bs);
1044 if (ret) {
1045 error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1046 strerror(-ret));
1047 goto error;
1048 }
1049
1050 if (drv->bdrv_reopen_prepare) {
1051 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1052 if (ret) {
1053 if (local_err != NULL) {
1054 error_propagate(errp, local_err);
1055 } else {
1056 error_set(errp, QERR_OPEN_FILE_FAILED,
1057 reopen_state->bs->filename);
1058 }
1059 goto error;
1060 }
1061 } else {
1062 /* It is currently mandatory to have a bdrv_reopen_prepare()
1063 * handler for each supported drv. */
1064 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1065 drv->format_name, reopen_state->bs->device_name,
1066 "reopening of file");
1067 ret = -1;
1068 goto error;
1069 }
1070
1071 ret = 0;
1072
1073error:
1074 return ret;
1075}
1076
1077/*
1078 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1079 * makes them final by swapping the staging BlockDriverState contents into
1080 * the active BlockDriverState contents.
1081 */
1082void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1083{
1084 BlockDriver *drv;
1085
1086 assert(reopen_state != NULL);
1087 drv = reopen_state->bs->drv;
1088 assert(drv != NULL);
1089
1090 /* If there are any driver level actions to take */
1091 if (drv->bdrv_reopen_commit) {
1092 drv->bdrv_reopen_commit(reopen_state);
1093 }
1094
1095 /* set BDS specific flags now */
1096 reopen_state->bs->open_flags = reopen_state->flags;
1097 reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1098 BDRV_O_CACHE_WB);
1099 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
1100}
1101
1102/*
1103 * Abort the reopen, and delete and free the staged changes in
1104 * reopen_state
1105 */
1106void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1107{
1108 BlockDriver *drv;
1109
1110 assert(reopen_state != NULL);
1111 drv = reopen_state->bs->drv;
1112 assert(drv != NULL);
1113
1114 if (drv->bdrv_reopen_abort) {
1115 drv->bdrv_reopen_abort(reopen_state);
1116 }
1117}
1118
1119
bellardfc01f7e2003-06-30 10:03:06 +00001120void bdrv_close(BlockDriverState *bs)
1121{
Liu Yuan80ccf932012-04-20 17:10:56 +08001122 bdrv_flush(bs);
bellard19cb3732006-08-19 11:45:59 +00001123 if (bs->drv) {
Paolo Bonzini3e914652012-03-30 13:17:11 +02001124 if (bs->job) {
1125 block_job_cancel_sync(bs->job);
1126 }
Kevin Wolf7094f122012-04-11 11:06:37 +02001127 bdrv_drain_all();
1128
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001129 if (bs == bs_snapshots) {
1130 bs_snapshots = NULL;
1131 }
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +01001132 if (bs->backing_hd) {
bellardea2384d2004-08-01 21:59:26 +00001133 bdrv_delete(bs->backing_hd);
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +01001134 bs->backing_hd = NULL;
1135 }
bellardea2384d2004-08-01 21:59:26 +00001136 bs->drv->bdrv_close(bs);
Anthony Liguori7267c092011-08-20 22:09:37 -05001137 g_free(bs->opaque);
bellardea2384d2004-08-01 21:59:26 +00001138#ifdef _WIN32
1139 if (bs->is_temporary) {
1140 unlink(bs->filename);
1141 }
bellard67b915a2004-03-31 23:37:16 +00001142#endif
bellardea2384d2004-08-01 21:59:26 +00001143 bs->opaque = NULL;
1144 bs->drv = NULL;
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001145 bs->copy_on_read = 0;
Paolo Bonzinia275fa42012-05-08 16:51:43 +02001146 bs->backing_file[0] = '\0';
1147 bs->backing_format[0] = '\0';
Paolo Bonzini64058752012-05-08 16:51:49 +02001148 bs->total_sectors = 0;
1149 bs->encrypted = 0;
1150 bs->valid_key = 0;
1151 bs->sg = 0;
1152 bs->growable = 0;
bellardb3380822004-03-14 21:38:54 +00001153
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001154 if (bs->file != NULL) {
Paolo Bonzini0ac93772012-05-08 16:51:44 +02001155 bdrv_delete(bs->file);
1156 bs->file = NULL;
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001157 }
bellardb3380822004-03-14 21:38:54 +00001158 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08001159
Pavel Hrdina9ca11152012-08-09 12:44:48 +02001160 bdrv_dev_change_media_cb(bs, false);
1161
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08001162 /*throttling disk I/O limits*/
1163 if (bs->io_limits_enabled) {
1164 bdrv_io_limits_disable(bs);
1165 }
bellardb3380822004-03-14 21:38:54 +00001166}
1167
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09001168void bdrv_close_all(void)
1169{
1170 BlockDriverState *bs;
1171
1172 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1173 bdrv_close(bs);
1174 }
1175}
1176
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001177/*
1178 * Wait for pending requests to complete across all BlockDriverStates
1179 *
1180 * This function does not flush data to disk, use bdrv_flush_all() for that
1181 * after calling this function.
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001182 *
1183 * Note that completion of an asynchronous I/O operation can trigger any
1184 * number of other I/O operations on other devices---for example a coroutine
1185 * can be arbitrarily complex and a constant flow of I/O can come until the
1186 * coroutine is complete. Because of this, it is not possible to have a
1187 * function to drain a single device's I/O queue.
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001188 */
1189void bdrv_drain_all(void)
1190{
1191 BlockDriverState *bs;
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001192 bool busy;
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001193
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001194 do {
1195 busy = qemu_aio_wait();
1196
1197 /* FIXME: We do not have timer support here, so this is effectively
1198 * a busy wait.
1199 */
1200 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1201 if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
1202 qemu_co_queue_restart_all(&bs->throttled_reqs);
1203 busy = true;
1204 }
1205 }
1206 } while (busy);
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001207
1208 /* If requests are still pending there is a bug somewhere */
1209 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1210 assert(QLIST_EMPTY(&bs->tracked_requests));
1211 assert(qemu_co_queue_empty(&bs->throttled_reqs));
1212 }
1213}
1214
Ryan Harperd22b2f42011-03-29 20:51:47 -05001215/* make a BlockDriverState anonymous by removing from bdrv_state list.
1216 Also, NULL terminate the device_name to prevent double remove */
1217void bdrv_make_anon(BlockDriverState *bs)
1218{
1219 if (bs->device_name[0] != '\0') {
1220 QTAILQ_REMOVE(&bdrv_states, bs, list);
1221 }
1222 bs->device_name[0] = '\0';
1223}
1224
Paolo Bonzinie023b2e2012-05-08 16:51:41 +02001225static void bdrv_rebind(BlockDriverState *bs)
1226{
1227 if (bs->drv && bs->drv->bdrv_rebind) {
1228 bs->drv->bdrv_rebind(bs);
1229 }
1230}
1231
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001232static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
1233 BlockDriverState *bs_src)
1234{
1235 /* move some fields that need to stay attached to the device */
1236 bs_dest->open_flags = bs_src->open_flags;
1237
1238 /* dev info */
1239 bs_dest->dev_ops = bs_src->dev_ops;
1240 bs_dest->dev_opaque = bs_src->dev_opaque;
1241 bs_dest->dev = bs_src->dev;
1242 bs_dest->buffer_alignment = bs_src->buffer_alignment;
1243 bs_dest->copy_on_read = bs_src->copy_on_read;
1244
1245 bs_dest->enable_write_cache = bs_src->enable_write_cache;
1246
1247 /* i/o timing parameters */
1248 bs_dest->slice_time = bs_src->slice_time;
1249 bs_dest->slice_start = bs_src->slice_start;
1250 bs_dest->slice_end = bs_src->slice_end;
1251 bs_dest->io_limits = bs_src->io_limits;
1252 bs_dest->io_base = bs_src->io_base;
1253 bs_dest->throttled_reqs = bs_src->throttled_reqs;
1254 bs_dest->block_timer = bs_src->block_timer;
1255 bs_dest->io_limits_enabled = bs_src->io_limits_enabled;
1256
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001257 /* r/w error */
1258 bs_dest->on_read_error = bs_src->on_read_error;
1259 bs_dest->on_write_error = bs_src->on_write_error;
1260
1261 /* i/o status */
1262 bs_dest->iostatus_enabled = bs_src->iostatus_enabled;
1263 bs_dest->iostatus = bs_src->iostatus;
1264
1265 /* dirty bitmap */
1266 bs_dest->dirty_count = bs_src->dirty_count;
1267 bs_dest->dirty_bitmap = bs_src->dirty_bitmap;
1268
1269 /* job */
1270 bs_dest->in_use = bs_src->in_use;
1271 bs_dest->job = bs_src->job;
1272
1273 /* keep the same entry in bdrv_states */
1274 pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
1275 bs_src->device_name);
1276 bs_dest->list = bs_src->list;
1277}
1278
1279/*
1280 * Swap bs contents for two image chains while they are live,
1281 * while keeping required fields on the BlockDriverState that is
1282 * actually attached to a device.
1283 *
1284 * This will modify the BlockDriverState fields, and swap contents
1285 * between bs_new and bs_old. Both bs_new and bs_old are modified.
1286 *
1287 * bs_new is required to be anonymous.
1288 *
1289 * This function does not create any image files.
1290 */
1291void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
1292{
1293 BlockDriverState tmp;
1294
1295 /* bs_new must be anonymous and shouldn't have anything fancy enabled */
1296 assert(bs_new->device_name[0] == '\0');
1297 assert(bs_new->dirty_bitmap == NULL);
1298 assert(bs_new->job == NULL);
1299 assert(bs_new->dev == NULL);
1300 assert(bs_new->in_use == 0);
1301 assert(bs_new->io_limits_enabled == false);
1302 assert(bs_new->block_timer == NULL);
1303
1304 tmp = *bs_new;
1305 *bs_new = *bs_old;
1306 *bs_old = tmp;
1307
1308 /* there are some fields that should not be swapped, move them back */
1309 bdrv_move_feature_fields(&tmp, bs_old);
1310 bdrv_move_feature_fields(bs_old, bs_new);
1311 bdrv_move_feature_fields(bs_new, &tmp);
1312
1313 /* bs_new shouldn't be in bdrv_states even after the swap! */
1314 assert(bs_new->device_name[0] == '\0');
1315
1316 /* Check a few fields that should remain attached to the device */
1317 assert(bs_new->dev == NULL);
1318 assert(bs_new->job == NULL);
1319 assert(bs_new->in_use == 0);
1320 assert(bs_new->io_limits_enabled == false);
1321 assert(bs_new->block_timer == NULL);
1322
1323 bdrv_rebind(bs_new);
1324 bdrv_rebind(bs_old);
1325}
1326
Jeff Cody8802d1f2012-02-28 15:54:06 -05001327/*
1328 * Add new bs contents at the top of an image chain while the chain is
1329 * live, while keeping required fields on the top layer.
1330 *
1331 * This will modify the BlockDriverState fields, and swap contents
1332 * between bs_new and bs_top. Both bs_new and bs_top are modified.
1333 *
Jeff Codyf6801b82012-03-27 16:30:19 -04001334 * bs_new is required to be anonymous.
1335 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05001336 * This function does not create any image files.
1337 */
1338void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
1339{
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001340 bdrv_swap(bs_new, bs_top);
Jeff Cody8802d1f2012-02-28 15:54:06 -05001341
1342 /* The contents of 'tmp' will become bs_top, as we are
1343 * swapping bs_new and bs_top contents. */
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001344 bs_top->backing_hd = bs_new;
1345 bs_top->open_flags &= ~BDRV_O_NO_BACKING;
1346 pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file),
1347 bs_new->filename);
1348 pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format),
1349 bs_new->drv ? bs_new->drv->format_name : "");
Jeff Cody8802d1f2012-02-28 15:54:06 -05001350}
1351
bellardb3380822004-03-14 21:38:54 +00001352void bdrv_delete(BlockDriverState *bs)
1353{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001354 assert(!bs->dev);
Paolo Bonzini3e914652012-03-30 13:17:11 +02001355 assert(!bs->job);
1356 assert(!bs->in_use);
Markus Armbruster18846de2010-06-29 16:58:30 +02001357
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001358 /* remove from list, if necessary */
Ryan Harperd22b2f42011-03-29 20:51:47 -05001359 bdrv_make_anon(bs);
aurel3234c6f052008-04-08 19:51:21 +00001360
bellardb3380822004-03-14 21:38:54 +00001361 bdrv_close(bs);
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001362
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001363 assert(bs != bs_snapshots);
Anthony Liguori7267c092011-08-20 22:09:37 -05001364 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00001365}
1366
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001367int bdrv_attach_dev(BlockDriverState *bs, void *dev)
1368/* TODO change to DeviceState *dev when all users are qdevified */
Markus Armbruster18846de2010-06-29 16:58:30 +02001369{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001370 if (bs->dev) {
Markus Armbruster18846de2010-06-29 16:58:30 +02001371 return -EBUSY;
1372 }
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001373 bs->dev = dev;
Luiz Capitulino28a72822011-09-26 17:43:50 -03001374 bdrv_iostatus_reset(bs);
Markus Armbruster18846de2010-06-29 16:58:30 +02001375 return 0;
1376}
1377
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001378/* TODO qdevified devices don't use this, remove when devices are qdevified */
1379void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
Markus Armbruster18846de2010-06-29 16:58:30 +02001380{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001381 if (bdrv_attach_dev(bs, dev) < 0) {
1382 abort();
1383 }
1384}
1385
1386void bdrv_detach_dev(BlockDriverState *bs, void *dev)
1387/* TODO change to DeviceState *dev when all users are qdevified */
1388{
1389 assert(bs->dev == dev);
1390 bs->dev = NULL;
Markus Armbruster0e49de52011-08-03 15:07:41 +02001391 bs->dev_ops = NULL;
1392 bs->dev_opaque = NULL;
Markus Armbruster29e05f22011-09-06 18:58:57 +02001393 bs->buffer_alignment = 512;
Markus Armbruster18846de2010-06-29 16:58:30 +02001394}
1395
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001396/* TODO change to return DeviceState * when all users are qdevified */
1397void *bdrv_get_attached_dev(BlockDriverState *bs)
Markus Armbruster18846de2010-06-29 16:58:30 +02001398{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001399 return bs->dev;
Markus Armbruster18846de2010-06-29 16:58:30 +02001400}
1401
Markus Armbruster0e49de52011-08-03 15:07:41 +02001402void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
1403 void *opaque)
1404{
1405 bs->dev_ops = ops;
1406 bs->dev_opaque = opaque;
Markus Armbruster2c6942f2011-09-06 18:58:51 +02001407 if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) {
1408 bs_snapshots = NULL;
1409 }
Markus Armbruster0e49de52011-08-03 15:07:41 +02001410}
1411
Paolo Bonzini32c81a42012-09-28 17:22:58 +02001412void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv,
1413 enum MonitorEvent ev,
1414 BlockErrorAction action, bool is_read)
Luiz Capitulino329c0a42012-01-25 16:59:43 -02001415{
1416 QObject *data;
1417 const char *action_str;
1418
1419 switch (action) {
1420 case BDRV_ACTION_REPORT:
1421 action_str = "report";
1422 break;
1423 case BDRV_ACTION_IGNORE:
1424 action_str = "ignore";
1425 break;
1426 case BDRV_ACTION_STOP:
1427 action_str = "stop";
1428 break;
1429 default:
1430 abort();
1431 }
1432
1433 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1434 bdrv->device_name,
1435 action_str,
1436 is_read ? "read" : "write");
Paolo Bonzini32c81a42012-09-28 17:22:58 +02001437 monitor_protocol_event(ev, data);
Luiz Capitulino329c0a42012-01-25 16:59:43 -02001438
1439 qobject_decref(data);
1440}
1441
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001442static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected)
1443{
1444 QObject *data;
1445
1446 data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }",
1447 bdrv_get_device_name(bs), ejected);
1448 monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data);
1449
1450 qobject_decref(data);
1451}
1452
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02001453static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
Markus Armbruster0e49de52011-08-03 15:07:41 +02001454{
Markus Armbruster145feb12011-08-03 15:07:42 +02001455 if (bs->dev_ops && bs->dev_ops->change_media_cb) {
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001456 bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02001457 bs->dev_ops->change_media_cb(bs->dev_opaque, load);
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001458 if (tray_was_closed) {
1459 /* tray open */
1460 bdrv_emit_qmp_eject_event(bs, true);
1461 }
1462 if (load) {
1463 /* tray close */
1464 bdrv_emit_qmp_eject_event(bs, false);
1465 }
Markus Armbruster145feb12011-08-03 15:07:42 +02001466 }
1467}
1468
Markus Armbruster2c6942f2011-09-06 18:58:51 +02001469bool bdrv_dev_has_removable_media(BlockDriverState *bs)
1470{
1471 return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
1472}
1473
Paolo Bonzini025ccaa2011-11-07 17:50:13 +01001474void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
1475{
1476 if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
1477 bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
1478 }
1479}
1480
Markus Armbrustere4def802011-09-06 18:58:53 +02001481bool bdrv_dev_is_tray_open(BlockDriverState *bs)
1482{
1483 if (bs->dev_ops && bs->dev_ops->is_tray_open) {
1484 return bs->dev_ops->is_tray_open(bs->dev_opaque);
1485 }
1486 return false;
1487}
1488
Markus Armbruster145feb12011-08-03 15:07:42 +02001489static void bdrv_dev_resize_cb(BlockDriverState *bs)
1490{
1491 if (bs->dev_ops && bs->dev_ops->resize_cb) {
1492 bs->dev_ops->resize_cb(bs->dev_opaque);
Markus Armbruster0e49de52011-08-03 15:07:41 +02001493 }
1494}
1495
Markus Armbrusterf1076392011-09-06 18:58:46 +02001496bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
1497{
1498 if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
1499 return bs->dev_ops->is_medium_locked(bs->dev_opaque);
1500 }
1501 return false;
1502}
1503
aliguorie97fc192009-04-21 23:11:50 +00001504/*
1505 * Run consistency checks on an image
1506 *
Kevin Wolfe076f332010-06-29 11:43:13 +02001507 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02001508 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02001509 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00001510 */
Kevin Wolf4534ff52012-05-11 16:07:02 +02001511int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00001512{
1513 if (bs->drv->bdrv_check == NULL) {
1514 return -ENOTSUP;
1515 }
1516
Kevin Wolfe076f332010-06-29 11:43:13 +02001517 memset(res, 0, sizeof(*res));
Kevin Wolf4534ff52012-05-11 16:07:02 +02001518 return bs->drv->bdrv_check(bs, res, fix);
aliguorie97fc192009-04-21 23:11:50 +00001519}
1520
Kevin Wolf8a426612010-07-16 17:17:01 +02001521#define COMMIT_BUF_SECTORS 2048
1522
bellard33e39632003-07-06 17:15:21 +00001523/* commit COW file into the raw image */
1524int bdrv_commit(BlockDriverState *bs)
1525{
bellard19cb3732006-08-19 11:45:59 +00001526 BlockDriver *drv = bs->drv;
Kevin Wolf8a426612010-07-16 17:17:01 +02001527 int64_t sector, total_sectors;
1528 int n, ro, open_flags;
Jeff Cody0bce5972012-09-20 15:13:34 -04001529 int ret = 0;
Kevin Wolf8a426612010-07-16 17:17:01 +02001530 uint8_t *buf;
Jim Meyeringc2cba3d2012-10-04 13:09:46 +02001531 char filename[PATH_MAX];
bellard33e39632003-07-06 17:15:21 +00001532
bellard19cb3732006-08-19 11:45:59 +00001533 if (!drv)
1534 return -ENOMEDIUM;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001535
1536 if (!bs->backing_hd) {
1537 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +00001538 }
1539
Stefan Hajnoczi2d3735d2012-01-18 14:40:41 +00001540 if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) {
1541 return -EBUSY;
1542 }
1543
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001544 ro = bs->backing_hd->read_only;
Jim Meyeringc2cba3d2012-10-04 13:09:46 +02001545 /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
1546 pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001547 open_flags = bs->backing_hd->open_flags;
1548
1549 if (ro) {
Jeff Cody0bce5972012-09-20 15:13:34 -04001550 if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
1551 return -EACCES;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001552 }
bellard33e39632003-07-06 17:15:21 +00001553 }
bellardea2384d2004-08-01 21:59:26 +00001554
Jan Kiszka6ea44302009-11-30 18:21:19 +01001555 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
Anthony Liguori7267c092011-08-20 22:09:37 -05001556 buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
bellardea2384d2004-08-01 21:59:26 +00001557
Kevin Wolf8a426612010-07-16 17:17:01 +02001558 for (sector = 0; sector < total_sectors; sector += n) {
Stefan Hajnoczi05c4af52011-11-14 12:44:18 +00001559 if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
Kevin Wolf8a426612010-07-16 17:17:01 +02001560
1561 if (bdrv_read(bs, sector, buf, n) != 0) {
1562 ret = -EIO;
1563 goto ro_cleanup;
1564 }
1565
1566 if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
1567 ret = -EIO;
1568 goto ro_cleanup;
1569 }
bellardea2384d2004-08-01 21:59:26 +00001570 }
1571 }
bellard95389c82005-12-18 18:28:15 +00001572
Christoph Hellwig1d449522010-01-17 12:32:30 +01001573 if (drv->bdrv_make_empty) {
1574 ret = drv->bdrv_make_empty(bs);
1575 bdrv_flush(bs);
1576 }
bellard95389c82005-12-18 18:28:15 +00001577
Christoph Hellwig3f5075a2010-01-12 13:49:23 +01001578 /*
1579 * Make sure all data we wrote to the backing device is actually
1580 * stable on disk.
1581 */
1582 if (bs->backing_hd)
1583 bdrv_flush(bs->backing_hd);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001584
1585ro_cleanup:
Anthony Liguori7267c092011-08-20 22:09:37 -05001586 g_free(buf);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001587
1588 if (ro) {
Jeff Cody0bce5972012-09-20 15:13:34 -04001589 /* ignoring error return here */
1590 bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001591 }
1592
Christoph Hellwig1d449522010-01-17 12:32:30 +01001593 return ret;
bellard33e39632003-07-06 17:15:21 +00001594}
1595
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001596int bdrv_commit_all(void)
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001597{
1598 BlockDriverState *bs;
1599
1600 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001601 int ret = bdrv_commit(bs);
1602 if (ret < 0) {
1603 return ret;
1604 }
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001605 }
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001606 return 0;
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001607}
1608
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001609struct BdrvTrackedRequest {
1610 BlockDriverState *bs;
1611 int64_t sector_num;
1612 int nb_sectors;
1613 bool is_write;
1614 QLIST_ENTRY(BdrvTrackedRequest) list;
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001615 Coroutine *co; /* owner, used for deadlock detection */
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001616 CoQueue wait_queue; /* coroutines blocked on this request */
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001617};
1618
1619/**
1620 * Remove an active request from the tracked requests list
1621 *
1622 * This function should be called when a tracked request is completing.
1623 */
1624static void tracked_request_end(BdrvTrackedRequest *req)
1625{
1626 QLIST_REMOVE(req, list);
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001627 qemu_co_queue_restart_all(&req->wait_queue);
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001628}
1629
1630/**
1631 * Add an active request to the tracked requests list
1632 */
1633static void tracked_request_begin(BdrvTrackedRequest *req,
1634 BlockDriverState *bs,
1635 int64_t sector_num,
1636 int nb_sectors, bool is_write)
1637{
1638 *req = (BdrvTrackedRequest){
1639 .bs = bs,
1640 .sector_num = sector_num,
1641 .nb_sectors = nb_sectors,
1642 .is_write = is_write,
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001643 .co = qemu_coroutine_self(),
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001644 };
1645
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001646 qemu_co_queue_init(&req->wait_queue);
1647
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001648 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
1649}
1650
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001651/**
1652 * Round a region to cluster boundaries
1653 */
1654static void round_to_clusters(BlockDriverState *bs,
1655 int64_t sector_num, int nb_sectors,
1656 int64_t *cluster_sector_num,
1657 int *cluster_nb_sectors)
1658{
1659 BlockDriverInfo bdi;
1660
1661 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
1662 *cluster_sector_num = sector_num;
1663 *cluster_nb_sectors = nb_sectors;
1664 } else {
1665 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
1666 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
1667 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
1668 nb_sectors, c);
1669 }
1670}
1671
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001672static bool tracked_request_overlaps(BdrvTrackedRequest *req,
1673 int64_t sector_num, int nb_sectors) {
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001674 /* aaaa bbbb */
1675 if (sector_num >= req->sector_num + req->nb_sectors) {
1676 return false;
1677 }
1678 /* bbbb aaaa */
1679 if (req->sector_num >= sector_num + nb_sectors) {
1680 return false;
1681 }
1682 return true;
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001683}
1684
1685static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs,
1686 int64_t sector_num, int nb_sectors)
1687{
1688 BdrvTrackedRequest *req;
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001689 int64_t cluster_sector_num;
1690 int cluster_nb_sectors;
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001691 bool retry;
1692
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001693 /* If we touch the same cluster it counts as an overlap. This guarantees
1694 * that allocating writes will be serialized and not race with each other
1695 * for the same cluster. For example, in copy-on-read it ensures that the
1696 * CoR read and write operations are atomic and guest writes cannot
1697 * interleave between them.
1698 */
1699 round_to_clusters(bs, sector_num, nb_sectors,
1700 &cluster_sector_num, &cluster_nb_sectors);
1701
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001702 do {
1703 retry = false;
1704 QLIST_FOREACH(req, &bs->tracked_requests, list) {
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001705 if (tracked_request_overlaps(req, cluster_sector_num,
1706 cluster_nb_sectors)) {
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001707 /* Hitting this means there was a reentrant request, for
1708 * example, a block driver issuing nested requests. This must
1709 * never happen since it means deadlock.
1710 */
1711 assert(qemu_coroutine_self() != req->co);
1712
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001713 qemu_co_queue_wait(&req->wait_queue);
1714 retry = true;
1715 break;
1716 }
1717 }
1718 } while (retry);
1719}
1720
Kevin Wolf756e6732010-01-12 12:55:17 +01001721/*
1722 * Return values:
1723 * 0 - success
1724 * -EINVAL - backing format specified, but no file
1725 * -ENOSPC - can't update the backing file because no space is left in the
1726 * image file header
1727 * -ENOTSUP - format driver doesn't support changing the backing file
1728 */
1729int bdrv_change_backing_file(BlockDriverState *bs,
1730 const char *backing_file, const char *backing_fmt)
1731{
1732 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02001733 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01001734
Paolo Bonzini5f377792012-04-12 14:01:01 +02001735 /* Backing file format doesn't make sense without a backing file */
1736 if (backing_fmt && !backing_file) {
1737 return -EINVAL;
1738 }
1739
Kevin Wolf756e6732010-01-12 12:55:17 +01001740 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02001741 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01001742 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02001743 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01001744 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02001745
1746 if (ret == 0) {
1747 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
1748 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
1749 }
1750 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01001751}
1752
Jeff Cody6ebdcee2012-09-27 13:29:12 -04001753/*
1754 * Finds the image layer in the chain that has 'bs' as its backing file.
1755 *
1756 * active is the current topmost image.
1757 *
1758 * Returns NULL if bs is not found in active's image chain,
1759 * or if active == bs.
1760 */
1761BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
1762 BlockDriverState *bs)
1763{
1764 BlockDriverState *overlay = NULL;
1765 BlockDriverState *intermediate;
1766
1767 assert(active != NULL);
1768 assert(bs != NULL);
1769
1770 /* if bs is the same as active, then by definition it has no overlay
1771 */
1772 if (active == bs) {
1773 return NULL;
1774 }
1775
1776 intermediate = active;
1777 while (intermediate->backing_hd) {
1778 if (intermediate->backing_hd == bs) {
1779 overlay = intermediate;
1780 break;
1781 }
1782 intermediate = intermediate->backing_hd;
1783 }
1784
1785 return overlay;
1786}
1787
1788typedef struct BlkIntermediateStates {
1789 BlockDriverState *bs;
1790 QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
1791} BlkIntermediateStates;
1792
1793
1794/*
1795 * Drops images above 'base' up to and including 'top', and sets the image
1796 * above 'top' to have base as its backing file.
1797 *
1798 * Requires that the overlay to 'top' is opened r/w, so that the backing file
1799 * information in 'bs' can be properly updated.
1800 *
1801 * E.g., this will convert the following chain:
1802 * bottom <- base <- intermediate <- top <- active
1803 *
1804 * to
1805 *
1806 * bottom <- base <- active
1807 *
1808 * It is allowed for bottom==base, in which case it converts:
1809 *
1810 * base <- intermediate <- top <- active
1811 *
1812 * to
1813 *
1814 * base <- active
1815 *
1816 * Error conditions:
1817 * if active == top, that is considered an error
1818 *
1819 */
1820int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
1821 BlockDriverState *base)
1822{
1823 BlockDriverState *intermediate;
1824 BlockDriverState *base_bs = NULL;
1825 BlockDriverState *new_top_bs = NULL;
1826 BlkIntermediateStates *intermediate_state, *next;
1827 int ret = -EIO;
1828
1829 QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
1830 QSIMPLEQ_INIT(&states_to_delete);
1831
1832 if (!top->drv || !base->drv) {
1833 goto exit;
1834 }
1835
1836 new_top_bs = bdrv_find_overlay(active, top);
1837
1838 if (new_top_bs == NULL) {
1839 /* we could not find the image above 'top', this is an error */
1840 goto exit;
1841 }
1842
1843 /* special case of new_top_bs->backing_hd already pointing to base - nothing
1844 * to do, no intermediate images */
1845 if (new_top_bs->backing_hd == base) {
1846 ret = 0;
1847 goto exit;
1848 }
1849
1850 intermediate = top;
1851
1852 /* now we will go down through the list, and add each BDS we find
1853 * into our deletion queue, until we hit the 'base'
1854 */
1855 while (intermediate) {
1856 intermediate_state = g_malloc0(sizeof(BlkIntermediateStates));
1857 intermediate_state->bs = intermediate;
1858 QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
1859
1860 if (intermediate->backing_hd == base) {
1861 base_bs = intermediate->backing_hd;
1862 break;
1863 }
1864 intermediate = intermediate->backing_hd;
1865 }
1866 if (base_bs == NULL) {
1867 /* something went wrong, we did not end at the base. safely
1868 * unravel everything, and exit with error */
1869 goto exit;
1870 }
1871
1872 /* success - we can delete the intermediate states, and link top->base */
1873 ret = bdrv_change_backing_file(new_top_bs, base_bs->filename,
1874 base_bs->drv ? base_bs->drv->format_name : "");
1875 if (ret) {
1876 goto exit;
1877 }
1878 new_top_bs->backing_hd = base_bs;
1879
1880
1881 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1882 /* so that bdrv_close() does not recursively close the chain */
1883 intermediate_state->bs->backing_hd = NULL;
1884 bdrv_delete(intermediate_state->bs);
1885 }
1886 ret = 0;
1887
1888exit:
1889 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1890 g_free(intermediate_state);
1891 }
1892 return ret;
1893}
1894
1895
aliguori71d07702009-03-03 17:37:16 +00001896static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
1897 size_t size)
1898{
1899 int64_t len;
1900
1901 if (!bdrv_is_inserted(bs))
1902 return -ENOMEDIUM;
1903
1904 if (bs->growable)
1905 return 0;
1906
1907 len = bdrv_getlength(bs);
1908
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02001909 if (offset < 0)
1910 return -EIO;
1911
1912 if ((offset > len) || (len - offset < size))
aliguori71d07702009-03-03 17:37:16 +00001913 return -EIO;
1914
1915 return 0;
1916}
1917
1918static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
1919 int nb_sectors)
1920{
Jes Sorenseneb5a3162010-05-27 16:20:31 +02001921 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
1922 nb_sectors * BDRV_SECTOR_SIZE);
aliguori71d07702009-03-03 17:37:16 +00001923}
1924
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001925typedef struct RwCo {
1926 BlockDriverState *bs;
1927 int64_t sector_num;
1928 int nb_sectors;
1929 QEMUIOVector *qiov;
1930 bool is_write;
1931 int ret;
1932} RwCo;
1933
1934static void coroutine_fn bdrv_rw_co_entry(void *opaque)
1935{
1936 RwCo *rwco = opaque;
1937
1938 if (!rwco->is_write) {
1939 rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00001940 rwco->nb_sectors, rwco->qiov, 0);
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001941 } else {
1942 rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00001943 rwco->nb_sectors, rwco->qiov, 0);
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001944 }
1945}
1946
1947/*
1948 * Process a synchronous request using coroutines
1949 */
1950static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
1951 int nb_sectors, bool is_write)
1952{
1953 QEMUIOVector qiov;
1954 struct iovec iov = {
1955 .iov_base = (void *)buf,
1956 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
1957 };
1958 Coroutine *co;
1959 RwCo rwco = {
1960 .bs = bs,
1961 .sector_num = sector_num,
1962 .nb_sectors = nb_sectors,
1963 .qiov = &qiov,
1964 .is_write = is_write,
1965 .ret = NOT_DONE,
1966 };
1967
1968 qemu_iovec_init_external(&qiov, &iov, 1);
1969
Zhi Yong Wu498e3862012-04-02 18:59:34 +08001970 /**
1971 * In sync call context, when the vcpu is blocked, this throttling timer
1972 * will not fire; so the I/O throttling function has to be disabled here
1973 * if it has been enabled.
1974 */
1975 if (bs->io_limits_enabled) {
1976 fprintf(stderr, "Disabling I/O throttling on '%s' due "
1977 "to synchronous I/O.\n", bdrv_get_device_name(bs));
1978 bdrv_io_limits_disable(bs);
1979 }
1980
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001981 if (qemu_in_coroutine()) {
1982 /* Fast-path if already in coroutine context */
1983 bdrv_rw_co_entry(&rwco);
1984 } else {
1985 co = qemu_coroutine_create(bdrv_rw_co_entry);
1986 qemu_coroutine_enter(co, &rwco);
1987 while (rwco.ret == NOT_DONE) {
1988 qemu_aio_wait();
1989 }
1990 }
1991 return rwco.ret;
1992}
1993
bellard19cb3732006-08-19 11:45:59 +00001994/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +00001995int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +00001996 uint8_t *buf, int nb_sectors)
1997{
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001998 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false);
bellardfc01f7e2003-06-30 10:03:06 +00001999}
2000
Markus Armbruster07d27a42012-06-29 17:34:29 +02002001/* Just like bdrv_read(), but with I/O throttling temporarily disabled */
2002int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
2003 uint8_t *buf, int nb_sectors)
2004{
2005 bool enabled;
2006 int ret;
2007
2008 enabled = bs->io_limits_enabled;
2009 bs->io_limits_enabled = false;
2010 ret = bdrv_read(bs, 0, buf, 1);
2011 bs->io_limits_enabled = enabled;
2012 return ret;
2013}
2014
Paolo Bonzini71df14f2012-04-12 14:01:04 +02002015#define BITS_PER_LONG (sizeof(unsigned long) * 8)
2016
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002017static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002018 int nb_sectors, int dirty)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002019{
2020 int64_t start, end;
Jan Kiszkac6d22832009-11-30 18:21:20 +01002021 unsigned long val, idx, bit;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002022
Jan Kiszka6ea44302009-11-30 18:21:19 +01002023 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkac6d22832009-11-30 18:21:20 +01002024 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002025
2026 for (; start <= end; start++) {
Paolo Bonzini71df14f2012-04-12 14:01:04 +02002027 idx = start / BITS_PER_LONG;
2028 bit = start % BITS_PER_LONG;
Jan Kiszkac6d22832009-11-30 18:21:20 +01002029 val = bs->dirty_bitmap[idx];
2030 if (dirty) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002031 if (!(val & (1UL << bit))) {
Liran Schouraaa0eb72010-01-26 10:31:48 +02002032 bs->dirty_count++;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002033 val |= 1UL << bit;
Liran Schouraaa0eb72010-01-26 10:31:48 +02002034 }
Jan Kiszkac6d22832009-11-30 18:21:20 +01002035 } else {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002036 if (val & (1UL << bit)) {
Liran Schouraaa0eb72010-01-26 10:31:48 +02002037 bs->dirty_count--;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002038 val &= ~(1UL << bit);
Liran Schouraaa0eb72010-01-26 10:31:48 +02002039 }
Jan Kiszkac6d22832009-11-30 18:21:20 +01002040 }
2041 bs->dirty_bitmap[idx] = val;
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002042 }
2043}
2044
ths5fafdf22007-09-16 21:08:06 +00002045/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +00002046 -EIO generic I/O error (may happen for all errors)
2047 -ENOMEDIUM No media inserted.
2048 -EINVAL Invalid sector number or nb_sectors
2049 -EACCES Trying to write a read-only device
2050*/
ths5fafdf22007-09-16 21:08:06 +00002051int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +00002052 const uint8_t *buf, int nb_sectors)
2053{
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01002054 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true);
bellard83f64092006-08-01 16:21:11 +00002055}
2056
aliguorieda578e2009-03-12 19:57:16 +00002057int bdrv_pread(BlockDriverState *bs, int64_t offset,
2058 void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00002059{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002060 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00002061 int len, nb_sectors, count;
2062 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002063 int ret;
bellard83f64092006-08-01 16:21:11 +00002064
2065 count = count1;
2066 /* first read to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002067 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00002068 if (len > count)
2069 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002070 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002071 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002072 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2073 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002074 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
bellard83f64092006-08-01 16:21:11 +00002075 count -= len;
2076 if (count == 0)
2077 return count1;
2078 sector_num++;
2079 buf += len;
2080 }
2081
2082 /* read the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002083 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002084 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002085 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
2086 return ret;
bellard83f64092006-08-01 16:21:11 +00002087 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002088 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002089 buf += len;
2090 count -= len;
2091 }
2092
2093 /* add data from the last sector */
2094 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002095 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2096 return ret;
bellard83f64092006-08-01 16:21:11 +00002097 memcpy(buf, tmp_buf, count);
2098 }
2099 return count1;
2100}
2101
aliguorieda578e2009-03-12 19:57:16 +00002102int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
2103 const void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00002104{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002105 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00002106 int len, nb_sectors, count;
2107 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002108 int ret;
bellard83f64092006-08-01 16:21:11 +00002109
2110 count = count1;
2111 /* first write to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002112 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00002113 if (len > count)
2114 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002115 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002116 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002117 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2118 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002119 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002120 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
2121 return ret;
bellard83f64092006-08-01 16:21:11 +00002122 count -= len;
2123 if (count == 0)
2124 return count1;
2125 sector_num++;
2126 buf += len;
2127 }
2128
2129 /* write the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002130 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002131 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002132 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
2133 return ret;
bellard83f64092006-08-01 16:21:11 +00002134 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002135 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002136 buf += len;
2137 count -= len;
2138 }
2139
2140 /* add data from the last sector */
2141 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002142 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2143 return ret;
bellard83f64092006-08-01 16:21:11 +00002144 memcpy(tmp_buf, buf, count);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002145 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
2146 return ret;
bellard83f64092006-08-01 16:21:11 +00002147 }
2148 return count1;
2149}
bellard83f64092006-08-01 16:21:11 +00002150
Kevin Wolff08145f2010-06-16 16:38:15 +02002151/*
2152 * Writes to the file and ensures that no writes are reordered across this
2153 * request (acts as a barrier)
2154 *
2155 * Returns 0 on success, -errno in error cases.
2156 */
2157int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2158 const void *buf, int count)
2159{
2160 int ret;
2161
2162 ret = bdrv_pwrite(bs, offset, buf, count);
2163 if (ret < 0) {
2164 return ret;
2165 }
2166
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002167 /* No flush needed for cache modes that already do it */
2168 if (bs->enable_write_cache) {
Kevin Wolff08145f2010-06-16 16:38:15 +02002169 bdrv_flush(bs);
2170 }
2171
2172 return 0;
2173}
2174
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002175static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
Stefan Hajnocziab185922011-11-17 13:40:31 +00002176 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2177{
2178 /* Perform I/O through a temporary buffer so that users who scribble over
2179 * their read buffer while the operation is in progress do not end up
2180 * modifying the image file. This is critical for zero-copy guest I/O
2181 * where anything might happen inside guest memory.
2182 */
2183 void *bounce_buffer;
2184
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002185 BlockDriver *drv = bs->drv;
Stefan Hajnocziab185922011-11-17 13:40:31 +00002186 struct iovec iov;
2187 QEMUIOVector bounce_qiov;
2188 int64_t cluster_sector_num;
2189 int cluster_nb_sectors;
2190 size_t skip_bytes;
2191 int ret;
2192
2193 /* Cover entire cluster so no additional backing file I/O is required when
2194 * allocating cluster in the image file.
2195 */
2196 round_to_clusters(bs, sector_num, nb_sectors,
2197 &cluster_sector_num, &cluster_nb_sectors);
2198
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002199 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2200 cluster_sector_num, cluster_nb_sectors);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002201
2202 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2203 iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
2204 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2205
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002206 ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2207 &bounce_qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002208 if (ret < 0) {
2209 goto err;
2210 }
2211
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002212 if (drv->bdrv_co_write_zeroes &&
2213 buffer_is_zero(bounce_buffer, iov.iov_len)) {
Kevin Wolf621f0582012-03-20 15:12:58 +01002214 ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
2215 cluster_nb_sectors);
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002216 } else {
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002217 /* This does not change the data on the disk, it is not necessary
2218 * to flush even in cache=writethrough mode.
2219 */
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002220 ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
Stefan Hajnocziab185922011-11-17 13:40:31 +00002221 &bounce_qiov);
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002222 }
2223
Stefan Hajnocziab185922011-11-17 13:40:31 +00002224 if (ret < 0) {
2225 /* It might be okay to ignore write errors for guest requests. If this
2226 * is a deliberate copy-on-read then we don't want to ignore the error.
2227 * Simply report it in all cases.
2228 */
2229 goto err;
2230 }
2231
2232 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
Michael Tokarev03396142012-06-07 20:17:55 +04002233 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2234 nb_sectors * BDRV_SECTOR_SIZE);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002235
2236err:
2237 qemu_vfree(bounce_buffer);
2238 return ret;
2239}
2240
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002241/*
2242 * Handle a read request in coroutine context
2243 */
2244static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002245 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2246 BdrvRequestFlags flags)
Kevin Wolfda1fa912011-07-14 17:27:13 +02002247{
2248 BlockDriver *drv = bs->drv;
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002249 BdrvTrackedRequest req;
2250 int ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002251
Kevin Wolfda1fa912011-07-14 17:27:13 +02002252 if (!drv) {
2253 return -ENOMEDIUM;
2254 }
2255 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2256 return -EIO;
2257 }
2258
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08002259 /* throttling disk read I/O */
2260 if (bs->io_limits_enabled) {
2261 bdrv_io_limits_intercept(bs, false, nb_sectors);
2262 }
2263
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002264 if (bs->copy_on_read) {
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002265 flags |= BDRV_REQ_COPY_ON_READ;
2266 }
2267 if (flags & BDRV_REQ_COPY_ON_READ) {
2268 bs->copy_on_read_in_flight++;
2269 }
2270
2271 if (bs->copy_on_read_in_flight) {
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002272 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2273 }
2274
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002275 tracked_request_begin(&req, bs, sector_num, nb_sectors, false);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002276
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002277 if (flags & BDRV_REQ_COPY_ON_READ) {
Stefan Hajnocziab185922011-11-17 13:40:31 +00002278 int pnum;
2279
2280 ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum);
2281 if (ret < 0) {
2282 goto out;
2283 }
2284
2285 if (!ret || pnum != nb_sectors) {
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002286 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002287 goto out;
2288 }
2289 }
2290
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002291 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002292
2293out:
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002294 tracked_request_end(&req);
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002295
2296 if (flags & BDRV_REQ_COPY_ON_READ) {
2297 bs->copy_on_read_in_flight--;
2298 }
2299
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002300 return ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002301}
2302
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002303int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
Kevin Wolfda1fa912011-07-14 17:27:13 +02002304 int nb_sectors, QEMUIOVector *qiov)
2305{
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002306 trace_bdrv_co_readv(bs, sector_num, nb_sectors);
Kevin Wolfda1fa912011-07-14 17:27:13 +02002307
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002308 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
2309}
2310
2311int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
2312 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2313{
2314 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
2315
2316 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
2317 BDRV_REQ_COPY_ON_READ);
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002318}
2319
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002320static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
2321 int64_t sector_num, int nb_sectors)
2322{
2323 BlockDriver *drv = bs->drv;
2324 QEMUIOVector qiov;
2325 struct iovec iov;
2326 int ret;
2327
Kevin Wolf621f0582012-03-20 15:12:58 +01002328 /* TODO Emulate only part of misaligned requests instead of letting block
2329 * drivers return -ENOTSUP and emulate everything */
2330
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002331 /* First try the efficient write zeroes operation */
2332 if (drv->bdrv_co_write_zeroes) {
Kevin Wolf621f0582012-03-20 15:12:58 +01002333 ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2334 if (ret != -ENOTSUP) {
2335 return ret;
2336 }
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002337 }
2338
2339 /* Fall back to bounce buffer if write zeroes is unsupported */
2340 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
2341 iov.iov_base = qemu_blockalign(bs, iov.iov_len);
2342 memset(iov.iov_base, 0, iov.iov_len);
2343 qemu_iovec_init_external(&qiov, &iov, 1);
2344
2345 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov);
2346
2347 qemu_vfree(iov.iov_base);
2348 return ret;
2349}
2350
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002351/*
2352 * Handle a write request in coroutine context
2353 */
2354static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002355 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2356 BdrvRequestFlags flags)
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002357{
2358 BlockDriver *drv = bs->drv;
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002359 BdrvTrackedRequest req;
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002360 int ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002361
2362 if (!bs->drv) {
2363 return -ENOMEDIUM;
2364 }
2365 if (bs->read_only) {
2366 return -EACCES;
2367 }
2368 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2369 return -EIO;
2370 }
2371
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08002372 /* throttling disk write I/O */
2373 if (bs->io_limits_enabled) {
2374 bdrv_io_limits_intercept(bs, true, nb_sectors);
2375 }
2376
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002377 if (bs->copy_on_read_in_flight) {
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002378 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2379 }
2380
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002381 tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
2382
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002383 if (flags & BDRV_REQ_ZERO_WRITE) {
2384 ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors);
2385 } else {
2386 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
2387 }
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002388
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002389 if (ret == 0 && !bs->enable_write_cache) {
2390 ret = bdrv_co_flush(bs);
2391 }
2392
Kevin Wolfda1fa912011-07-14 17:27:13 +02002393 if (bs->dirty_bitmap) {
2394 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2395 }
2396
2397 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2398 bs->wr_highest_sector = sector_num + nb_sectors - 1;
2399 }
2400
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002401 tracked_request_end(&req);
2402
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002403 return ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002404}
2405
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002406int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
2407 int nb_sectors, QEMUIOVector *qiov)
2408{
2409 trace_bdrv_co_writev(bs, sector_num, nb_sectors);
2410
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002411 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
2412}
2413
2414int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
2415 int64_t sector_num, int nb_sectors)
2416{
2417 trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2418
2419 return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
2420 BDRV_REQ_ZERO_WRITE);
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002421}
2422
bellard83f64092006-08-01 16:21:11 +00002423/**
bellard83f64092006-08-01 16:21:11 +00002424 * Truncate file to 'offset' bytes (needed only for file protocols)
2425 */
2426int bdrv_truncate(BlockDriverState *bs, int64_t offset)
2427{
2428 BlockDriver *drv = bs->drv;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002429 int ret;
bellard83f64092006-08-01 16:21:11 +00002430 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002431 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +00002432 if (!drv->bdrv_truncate)
2433 return -ENOTSUP;
Naphtali Sprei59f26892009-10-26 16:25:16 +02002434 if (bs->read_only)
2435 return -EACCES;
Marcelo Tosatti85916752011-01-26 12:12:35 -02002436 if (bdrv_in_use(bs))
2437 return -EBUSY;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002438 ret = drv->bdrv_truncate(bs, offset);
2439 if (ret == 0) {
2440 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
Markus Armbruster145feb12011-08-03 15:07:42 +02002441 bdrv_dev_resize_cb(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002442 }
2443 return ret;
bellard83f64092006-08-01 16:21:11 +00002444}
2445
2446/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08002447 * Length of a allocated file in bytes. Sparse files are counted by actual
2448 * allocated space. Return < 0 if error or unknown.
2449 */
2450int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
2451{
2452 BlockDriver *drv = bs->drv;
2453 if (!drv) {
2454 return -ENOMEDIUM;
2455 }
2456 if (drv->bdrv_get_allocated_file_size) {
2457 return drv->bdrv_get_allocated_file_size(bs);
2458 }
2459 if (bs->file) {
2460 return bdrv_get_allocated_file_size(bs->file);
2461 }
2462 return -ENOTSUP;
2463}
2464
2465/**
bellard83f64092006-08-01 16:21:11 +00002466 * Length of a file in bytes. Return < 0 if error or unknown.
2467 */
2468int64_t bdrv_getlength(BlockDriverState *bs)
2469{
2470 BlockDriver *drv = bs->drv;
2471 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002472 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002473
Markus Armbruster2c6942f2011-09-06 18:58:51 +02002474 if (bs->growable || bdrv_dev_has_removable_media(bs)) {
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01002475 if (drv->bdrv_getlength) {
2476 return drv->bdrv_getlength(bs);
2477 }
bellard83f64092006-08-01 16:21:11 +00002478 }
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01002479 return bs->total_sectors * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00002480}
2481
bellard19cb3732006-08-19 11:45:59 +00002482/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00002483void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00002484{
bellard19cb3732006-08-19 11:45:59 +00002485 int64_t length;
2486 length = bdrv_getlength(bs);
2487 if (length < 0)
2488 length = 0;
2489 else
Jan Kiszka6ea44302009-11-30 18:21:19 +01002490 length = length >> BDRV_SECTOR_BITS;
bellard19cb3732006-08-19 11:45:59 +00002491 *nb_sectors_ptr = length;
bellardfc01f7e2003-06-30 10:03:06 +00002492}
bellardcf989512004-02-16 21:56:36 +00002493
Zhi Yong Wu0563e192011-11-03 16:57:25 +08002494/* throttling disk io limits */
2495void bdrv_set_io_limits(BlockDriverState *bs,
2496 BlockIOLimit *io_limits)
2497{
2498 bs->io_limits = *io_limits;
2499 bs->io_limits_enabled = bdrv_io_limits_enabled(bs);
2500}
2501
Paolo Bonziniff06f5f2012-09-28 17:22:54 +02002502void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
2503 BlockdevOnError on_write_error)
Markus Armbrusterabd7f682010-06-02 18:55:17 +02002504{
2505 bs->on_read_error = on_read_error;
2506 bs->on_write_error = on_write_error;
2507}
2508
Paolo Bonzini1ceee0d2012-09-28 17:22:56 +02002509BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
Markus Armbrusterabd7f682010-06-02 18:55:17 +02002510{
2511 return is_read ? bs->on_read_error : bs->on_write_error;
2512}
2513
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02002514BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error)
2515{
2516 BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error;
2517
2518 switch (on_err) {
2519 case BLOCKDEV_ON_ERROR_ENOSPC:
2520 return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT;
2521 case BLOCKDEV_ON_ERROR_STOP:
2522 return BDRV_ACTION_STOP;
2523 case BLOCKDEV_ON_ERROR_REPORT:
2524 return BDRV_ACTION_REPORT;
2525 case BLOCKDEV_ON_ERROR_IGNORE:
2526 return BDRV_ACTION_IGNORE;
2527 default:
2528 abort();
2529 }
2530}
2531
2532/* This is done by device models because, while the block layer knows
2533 * about the error, it does not know whether an operation comes from
2534 * the device or the block layer (from a job, for example).
2535 */
2536void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
2537 bool is_read, int error)
2538{
2539 assert(error >= 0);
Paolo Bonzini32c81a42012-09-28 17:22:58 +02002540 bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read);
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02002541 if (action == BDRV_ACTION_STOP) {
2542 vm_stop(RUN_STATE_IO_ERROR);
2543 bdrv_iostatus_set_err(bs, error);
2544 }
2545}
2546
bellardb3380822004-03-14 21:38:54 +00002547int bdrv_is_read_only(BlockDriverState *bs)
2548{
2549 return bs->read_only;
2550}
2551
ths985a03b2007-12-24 16:10:43 +00002552int bdrv_is_sg(BlockDriverState *bs)
2553{
2554 return bs->sg;
2555}
2556
Christoph Hellwige900a7b2009-09-04 19:01:15 +02002557int bdrv_enable_write_cache(BlockDriverState *bs)
2558{
2559 return bs->enable_write_cache;
2560}
2561
Paolo Bonzini425b0142012-06-06 00:04:52 +02002562void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
2563{
2564 bs->enable_write_cache = wce;
Jeff Cody55b110f2012-09-20 15:13:18 -04002565
2566 /* so a reopen() will preserve wce */
2567 if (wce) {
2568 bs->open_flags |= BDRV_O_CACHE_WB;
2569 } else {
2570 bs->open_flags &= ~BDRV_O_CACHE_WB;
2571 }
Paolo Bonzini425b0142012-06-06 00:04:52 +02002572}
2573
bellardea2384d2004-08-01 21:59:26 +00002574int bdrv_is_encrypted(BlockDriverState *bs)
2575{
2576 if (bs->backing_hd && bs->backing_hd->encrypted)
2577 return 1;
2578 return bs->encrypted;
2579}
2580
aliguoric0f4ce72009-03-05 23:01:01 +00002581int bdrv_key_required(BlockDriverState *bs)
2582{
2583 BlockDriverState *backing_hd = bs->backing_hd;
2584
2585 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
2586 return 1;
2587 return (bs->encrypted && !bs->valid_key);
2588}
2589
bellardea2384d2004-08-01 21:59:26 +00002590int bdrv_set_key(BlockDriverState *bs, const char *key)
2591{
2592 int ret;
2593 if (bs->backing_hd && bs->backing_hd->encrypted) {
2594 ret = bdrv_set_key(bs->backing_hd, key);
2595 if (ret < 0)
2596 return ret;
2597 if (!bs->encrypted)
2598 return 0;
2599 }
Shahar Havivifd04a2a2010-03-06 00:26:13 +02002600 if (!bs->encrypted) {
2601 return -EINVAL;
2602 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2603 return -ENOMEDIUM;
2604 }
aliguoric0f4ce72009-03-05 23:01:01 +00002605 ret = bs->drv->bdrv_set_key(bs, key);
aliguoribb5fc202009-03-05 23:01:15 +00002606 if (ret < 0) {
2607 bs->valid_key = 0;
2608 } else if (!bs->valid_key) {
2609 bs->valid_key = 1;
2610 /* call the change callback now, we skipped it on open */
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02002611 bdrv_dev_change_media_cb(bs, true);
aliguoribb5fc202009-03-05 23:01:15 +00002612 }
aliguoric0f4ce72009-03-05 23:01:01 +00002613 return ret;
bellardea2384d2004-08-01 21:59:26 +00002614}
2615
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02002616const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00002617{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02002618 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00002619}
2620
ths5fafdf22007-09-16 21:08:06 +00002621void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00002622 void *opaque)
2623{
2624 BlockDriver *drv;
2625
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01002626 QLIST_FOREACH(drv, &bdrv_drivers, list) {
bellardea2384d2004-08-01 21:59:26 +00002627 it(opaque, drv->format_name);
2628 }
2629}
2630
bellardb3380822004-03-14 21:38:54 +00002631BlockDriverState *bdrv_find(const char *name)
2632{
2633 BlockDriverState *bs;
2634
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002635 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2636 if (!strcmp(name, bs->device_name)) {
bellardb3380822004-03-14 21:38:54 +00002637 return bs;
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002638 }
bellardb3380822004-03-14 21:38:54 +00002639 }
2640 return NULL;
2641}
2642
Markus Armbruster2f399b02010-06-02 18:55:20 +02002643BlockDriverState *bdrv_next(BlockDriverState *bs)
2644{
2645 if (!bs) {
2646 return QTAILQ_FIRST(&bdrv_states);
2647 }
2648 return QTAILQ_NEXT(bs, list);
2649}
2650
aliguori51de9762009-03-05 23:00:43 +00002651void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +00002652{
2653 BlockDriverState *bs;
2654
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002655 QTAILQ_FOREACH(bs, &bdrv_states, list) {
aliguori51de9762009-03-05 23:00:43 +00002656 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +00002657 }
2658}
2659
bellardea2384d2004-08-01 21:59:26 +00002660const char *bdrv_get_device_name(BlockDriverState *bs)
2661{
2662 return bs->device_name;
2663}
2664
Markus Armbrusterc8433282012-06-05 16:49:24 +02002665int bdrv_get_flags(BlockDriverState *bs)
2666{
2667 return bs->open_flags;
2668}
2669
aliguoric6ca28d2008-10-06 13:55:43 +00002670void bdrv_flush_all(void)
2671{
2672 BlockDriverState *bs;
2673
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002674 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01002675 bdrv_flush(bs);
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002676 }
aliguoric6ca28d2008-10-06 13:55:43 +00002677}
2678
Kevin Wolff2feebb2010-04-14 17:30:35 +02002679int bdrv_has_zero_init(BlockDriverState *bs)
2680{
2681 assert(bs->drv);
2682
Kevin Wolf336c1c12010-07-28 11:26:29 +02002683 if (bs->drv->bdrv_has_zero_init) {
2684 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02002685 }
2686
2687 return 1;
2688}
2689
Stefan Hajnoczi376ae3f2011-11-14 12:44:19 +00002690typedef struct BdrvCoIsAllocatedData {
2691 BlockDriverState *bs;
2692 int64_t sector_num;
2693 int nb_sectors;
2694 int *pnum;
2695 int ret;
2696 bool done;
2697} BdrvCoIsAllocatedData;
2698
thsf58c7b32008-06-05 21:53:49 +00002699/*
2700 * Returns true iff the specified sector is present in the disk image. Drivers
2701 * not implementing the functionality are assumed to not support backing files,
2702 * hence all their sectors are reported as allocated.
2703 *
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002704 * If 'sector_num' is beyond the end of the disk image the return value is 0
2705 * and 'pnum' is set to 0.
2706 *
thsf58c7b32008-06-05 21:53:49 +00002707 * 'pnum' is set to the number of sectors (including and immediately following
2708 * the specified sector) that are known to be in the same
2709 * allocated/unallocated state.
2710 *
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002711 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
2712 * beyond the end of the disk image it will be clamped.
thsf58c7b32008-06-05 21:53:49 +00002713 */
Stefan Hajnoczi060f51c2011-11-14 12:44:26 +00002714int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
2715 int nb_sectors, int *pnum)
thsf58c7b32008-06-05 21:53:49 +00002716{
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002717 int64_t n;
2718
2719 if (sector_num >= bs->total_sectors) {
2720 *pnum = 0;
2721 return 0;
2722 }
2723
2724 n = bs->total_sectors - sector_num;
2725 if (n < nb_sectors) {
2726 nb_sectors = n;
2727 }
2728
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002729 if (!bs->drv->bdrv_co_is_allocated) {
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002730 *pnum = nb_sectors;
thsf58c7b32008-06-05 21:53:49 +00002731 return 1;
2732 }
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002733
Stefan Hajnoczi060f51c2011-11-14 12:44:26 +00002734 return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum);
2735}
2736
2737/* Coroutine wrapper for bdrv_is_allocated() */
2738static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque)
2739{
2740 BdrvCoIsAllocatedData *data = opaque;
2741 BlockDriverState *bs = data->bs;
2742
2743 data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors,
2744 data->pnum);
2745 data->done = true;
2746}
2747
2748/*
2749 * Synchronous wrapper around bdrv_co_is_allocated().
2750 *
2751 * See bdrv_co_is_allocated() for details.
2752 */
2753int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
2754 int *pnum)
2755{
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002756 Coroutine *co;
2757 BdrvCoIsAllocatedData data = {
2758 .bs = bs,
2759 .sector_num = sector_num,
2760 .nb_sectors = nb_sectors,
2761 .pnum = pnum,
2762 .done = false,
2763 };
2764
2765 co = qemu_coroutine_create(bdrv_is_allocated_co_entry);
2766 qemu_coroutine_enter(co, &data);
2767 while (!data.done) {
2768 qemu_aio_wait();
2769 }
2770 return data.ret;
thsf58c7b32008-06-05 21:53:49 +00002771}
2772
Paolo Bonzini188a7bb2012-05-08 16:52:01 +02002773/*
2774 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2775 *
2776 * Return true if the given sector is allocated in any image between
2777 * BASE and TOP (inclusive). BASE can be NULL to check if the given
2778 * sector is allocated in any image of the chain. Return false otherwise.
2779 *
2780 * 'pnum' is set to the number of sectors (including and immediately following
2781 * the specified sector) that are known to be in the same
2782 * allocated/unallocated state.
2783 *
2784 */
2785int coroutine_fn bdrv_co_is_allocated_above(BlockDriverState *top,
2786 BlockDriverState *base,
2787 int64_t sector_num,
2788 int nb_sectors, int *pnum)
2789{
2790 BlockDriverState *intermediate;
2791 int ret, n = nb_sectors;
2792
2793 intermediate = top;
2794 while (intermediate && intermediate != base) {
2795 int pnum_inter;
2796 ret = bdrv_co_is_allocated(intermediate, sector_num, nb_sectors,
2797 &pnum_inter);
2798 if (ret < 0) {
2799 return ret;
2800 } else if (ret) {
2801 *pnum = pnum_inter;
2802 return 1;
2803 }
2804
2805 /*
2806 * [sector_num, nb_sectors] is unallocated on top but intermediate
2807 * might have
2808 *
2809 * [sector_num+x, nr_sectors] allocated.
2810 */
2811 if (n > pnum_inter) {
2812 n = pnum_inter;
2813 }
2814
2815 intermediate = intermediate->backing_hd;
2816 }
2817
2818 *pnum = n;
2819 return 0;
2820}
2821
Paolo Bonziniac84ada2012-10-18 16:49:15 +02002822BlockInfo *bdrv_query_info(BlockDriverState *bs)
2823{
2824 BlockInfo *info = g_malloc0(sizeof(*info));
2825 info->device = g_strdup(bs->device_name);
2826 info->type = g_strdup("unknown");
2827 info->locked = bdrv_dev_is_medium_locked(bs);
2828 info->removable = bdrv_dev_has_removable_media(bs);
2829
2830 if (bdrv_dev_has_removable_media(bs)) {
2831 info->has_tray_open = true;
2832 info->tray_open = bdrv_dev_is_tray_open(bs);
2833 }
2834
2835 if (bdrv_iostatus_is_enabled(bs)) {
2836 info->has_io_status = true;
2837 info->io_status = bs->iostatus;
2838 }
2839
2840 if (bs->drv) {
2841 info->has_inserted = true;
2842 info->inserted = g_malloc0(sizeof(*info->inserted));
2843 info->inserted->file = g_strdup(bs->filename);
2844 info->inserted->ro = bs->read_only;
2845 info->inserted->drv = g_strdup(bs->drv->format_name);
2846 info->inserted->encrypted = bs->encrypted;
2847 info->inserted->encryption_key_missing = bdrv_key_required(bs);
2848
2849 if (bs->backing_file[0]) {
2850 info->inserted->has_backing_file = true;
2851 info->inserted->backing_file = g_strdup(bs->backing_file);
2852 }
2853
2854 info->inserted->backing_file_depth = bdrv_get_backing_file_depth(bs);
2855
2856 if (bs->io_limits_enabled) {
2857 info->inserted->bps =
2858 bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
2859 info->inserted->bps_rd =
2860 bs->io_limits.bps[BLOCK_IO_LIMIT_READ];
2861 info->inserted->bps_wr =
2862 bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE];
2863 info->inserted->iops =
2864 bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
2865 info->inserted->iops_rd =
2866 bs->io_limits.iops[BLOCK_IO_LIMIT_READ];
2867 info->inserted->iops_wr =
2868 bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE];
2869 }
2870 }
2871 return info;
2872}
2873
Luiz Capitulinob2023812011-09-21 17:16:47 -03002874BlockInfoList *qmp_query_block(Error **errp)
bellardb3380822004-03-14 21:38:54 +00002875{
Paolo Bonziniac84ada2012-10-18 16:49:15 +02002876 BlockInfoList *head = NULL, **p_next = &head;
bellardb3380822004-03-14 21:38:54 +00002877 BlockDriverState *bs;
2878
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002879 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinob2023812011-09-21 17:16:47 -03002880 BlockInfoList *info = g_malloc0(sizeof(*info));
Paolo Bonziniac84ada2012-10-18 16:49:15 +02002881 info->value = bdrv_query_info(bs);
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002882
Paolo Bonziniac84ada2012-10-18 16:49:15 +02002883 *p_next = info;
2884 p_next = &info->next;
bellardb3380822004-03-14 21:38:54 +00002885 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002886
Luiz Capitulinob2023812011-09-21 17:16:47 -03002887 return head;
bellardb3380822004-03-14 21:38:54 +00002888}
thsa36e69d2007-12-02 05:18:19 +00002889
Paolo Bonzini9887b612012-10-18 16:49:16 +02002890BlockStats *bdrv_query_stats(const BlockDriverState *bs)
thsa36e69d2007-12-02 05:18:19 +00002891{
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002892 BlockStats *s;
Luiz Capitulino218a5362009-12-10 17:16:07 -02002893
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002894 s = g_malloc0(sizeof(*s));
Luiz Capitulino218a5362009-12-10 17:16:07 -02002895
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002896 if (bs->device_name[0]) {
2897 s->has_device = true;
2898 s->device = g_strdup(bs->device_name);
Kevin Wolf294cc352010-04-28 14:34:01 +02002899 }
2900
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002901 s->stats = g_malloc0(sizeof(*s->stats));
2902 s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ];
2903 s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE];
2904 s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ];
2905 s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE];
2906 s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE;
2907 s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH];
2908 s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE];
2909 s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ];
2910 s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH];
2911
Kevin Wolf294cc352010-04-28 14:34:01 +02002912 if (bs->file) {
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002913 s->has_parent = true;
Paolo Bonzini9887b612012-10-18 16:49:16 +02002914 s->parent = bdrv_query_stats(bs->file);
Kevin Wolf294cc352010-04-28 14:34:01 +02002915 }
2916
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002917 return s;
Kevin Wolf294cc352010-04-28 14:34:01 +02002918}
2919
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002920BlockStatsList *qmp_query_blockstats(Error **errp)
Luiz Capitulino218a5362009-12-10 17:16:07 -02002921{
Paolo Bonzini9887b612012-10-18 16:49:16 +02002922 BlockStatsList *head = NULL, **p_next = &head;
thsa36e69d2007-12-02 05:18:19 +00002923 BlockDriverState *bs;
2924
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002925 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002926 BlockStatsList *info = g_malloc0(sizeof(*info));
Paolo Bonzini9887b612012-10-18 16:49:16 +02002927 info->value = bdrv_query_stats(bs);
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002928
Paolo Bonzini9887b612012-10-18 16:49:16 +02002929 *p_next = info;
2930 p_next = &info->next;
thsa36e69d2007-12-02 05:18:19 +00002931 }
Luiz Capitulino218a5362009-12-10 17:16:07 -02002932
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002933 return head;
thsa36e69d2007-12-02 05:18:19 +00002934}
bellardea2384d2004-08-01 21:59:26 +00002935
aliguori045df332009-03-05 23:00:48 +00002936const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2937{
2938 if (bs->backing_hd && bs->backing_hd->encrypted)
2939 return bs->backing_file;
2940 else if (bs->encrypted)
2941 return bs->filename;
2942 else
2943 return NULL;
2944}
2945
ths5fafdf22007-09-16 21:08:06 +00002946void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00002947 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00002948{
Kevin Wolf3574c602011-10-26 11:02:11 +02002949 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00002950}
2951
ths5fafdf22007-09-16 21:08:06 +00002952int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00002953 const uint8_t *buf, int nb_sectors)
2954{
2955 BlockDriver *drv = bs->drv;
2956 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002957 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00002958 if (!drv->bdrv_write_compressed)
2959 return -ENOTSUP;
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02002960 if (bdrv_check_request(bs, sector_num, nb_sectors))
2961 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002962
Jan Kiszkac6d22832009-11-30 18:21:20 +01002963 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002964 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2965 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002966
bellardfaea38e2006-08-05 21:31:00 +00002967 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
2968}
ths3b46e622007-09-17 08:09:54 +00002969
bellardfaea38e2006-08-05 21:31:00 +00002970int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2971{
2972 BlockDriver *drv = bs->drv;
2973 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002974 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00002975 if (!drv->bdrv_get_info)
2976 return -ENOTSUP;
2977 memset(bdi, 0, sizeof(*bdi));
2978 return drv->bdrv_get_info(bs, bdi);
2979}
2980
Christoph Hellwig45566e92009-07-10 23:11:57 +02002981int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
2982 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00002983{
2984 BlockDriver *drv = bs->drv;
2985 if (!drv)
2986 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002987 if (drv->bdrv_save_vmstate)
2988 return drv->bdrv_save_vmstate(bs, buf, pos, size);
2989 if (bs->file)
2990 return bdrv_save_vmstate(bs->file, buf, pos, size);
2991 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00002992}
2993
Christoph Hellwig45566e92009-07-10 23:11:57 +02002994int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2995 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00002996{
2997 BlockDriver *drv = bs->drv;
2998 if (!drv)
2999 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003000 if (drv->bdrv_load_vmstate)
3001 return drv->bdrv_load_vmstate(bs, buf, pos, size);
3002 if (bs->file)
3003 return bdrv_load_vmstate(bs->file, buf, pos, size);
3004 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00003005}
3006
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01003007void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
3008{
3009 BlockDriver *drv = bs->drv;
3010
3011 if (!drv || !drv->bdrv_debug_event) {
3012 return;
3013 }
3014
Blue Swirl0ed8b6f2012-07-08 06:56:53 +00003015 drv->bdrv_debug_event(bs, event);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01003016
3017}
3018
bellardfaea38e2006-08-05 21:31:00 +00003019/**************************************************************/
3020/* handling of snapshots */
3021
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03003022int bdrv_can_snapshot(BlockDriverState *bs)
3023{
3024 BlockDriver *drv = bs->drv;
Markus Armbruster07b70bf2011-08-03 15:08:11 +02003025 if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03003026 return 0;
3027 }
3028
3029 if (!drv->bdrv_snapshot_create) {
3030 if (bs->file != NULL) {
3031 return bdrv_can_snapshot(bs->file);
3032 }
3033 return 0;
3034 }
3035
3036 return 1;
3037}
3038
Blue Swirl199630b2010-07-25 20:49:34 +00003039int bdrv_is_snapshot(BlockDriverState *bs)
3040{
3041 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
3042}
3043
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003044BlockDriverState *bdrv_snapshots(void)
3045{
3046 BlockDriverState *bs;
3047
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003048 if (bs_snapshots) {
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003049 return bs_snapshots;
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003050 }
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003051
3052 bs = NULL;
3053 while ((bs = bdrv_next(bs))) {
3054 if (bdrv_can_snapshot(bs)) {
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003055 bs_snapshots = bs;
3056 return bs;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003057 }
3058 }
3059 return NULL;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003060}
3061
ths5fafdf22007-09-16 21:08:06 +00003062int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003063 QEMUSnapshotInfo *sn_info)
3064{
3065 BlockDriver *drv = bs->drv;
3066 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003067 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003068 if (drv->bdrv_snapshot_create)
3069 return drv->bdrv_snapshot_create(bs, sn_info);
3070 if (bs->file)
3071 return bdrv_snapshot_create(bs->file, sn_info);
3072 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003073}
3074
ths5fafdf22007-09-16 21:08:06 +00003075int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003076 const char *snapshot_id)
3077{
3078 BlockDriver *drv = bs->drv;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003079 int ret, open_ret;
3080
bellardfaea38e2006-08-05 21:31:00 +00003081 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003082 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003083 if (drv->bdrv_snapshot_goto)
3084 return drv->bdrv_snapshot_goto(bs, snapshot_id);
3085
3086 if (bs->file) {
3087 drv->bdrv_close(bs);
3088 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
3089 open_ret = drv->bdrv_open(bs, bs->open_flags);
3090 if (open_ret < 0) {
3091 bdrv_delete(bs->file);
3092 bs->drv = NULL;
3093 return open_ret;
3094 }
3095 return ret;
3096 }
3097
3098 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003099}
3100
3101int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
3102{
3103 BlockDriver *drv = bs->drv;
3104 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003105 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003106 if (drv->bdrv_snapshot_delete)
3107 return drv->bdrv_snapshot_delete(bs, snapshot_id);
3108 if (bs->file)
3109 return bdrv_snapshot_delete(bs->file, snapshot_id);
3110 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003111}
3112
ths5fafdf22007-09-16 21:08:06 +00003113int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003114 QEMUSnapshotInfo **psn_info)
3115{
3116 BlockDriver *drv = bs->drv;
3117 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003118 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003119 if (drv->bdrv_snapshot_list)
3120 return drv->bdrv_snapshot_list(bs, psn_info);
3121 if (bs->file)
3122 return bdrv_snapshot_list(bs->file, psn_info);
3123 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003124}
3125
edison51ef6722010-09-21 19:58:41 -07003126int bdrv_snapshot_load_tmp(BlockDriverState *bs,
3127 const char *snapshot_name)
3128{
3129 BlockDriver *drv = bs->drv;
3130 if (!drv) {
3131 return -ENOMEDIUM;
3132 }
3133 if (!bs->read_only) {
3134 return -EINVAL;
3135 }
3136 if (drv->bdrv_snapshot_load_tmp) {
3137 return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
3138 }
3139 return -ENOTSUP;
3140}
3141
Jeff Codyb1b1d782012-10-16 15:49:09 -04003142/* backing_file can either be relative, or absolute, or a protocol. If it is
3143 * relative, it must be relative to the chain. So, passing in bs->filename
3144 * from a BDS as backing_file should not be done, as that may be relative to
3145 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003146BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3147 const char *backing_file)
3148{
Jeff Codyb1b1d782012-10-16 15:49:09 -04003149 char *filename_full = NULL;
3150 char *backing_file_full = NULL;
3151 char *filename_tmp = NULL;
3152 int is_protocol = 0;
3153 BlockDriverState *curr_bs = NULL;
3154 BlockDriverState *retval = NULL;
3155
3156 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003157 return NULL;
3158 }
3159
Jeff Codyb1b1d782012-10-16 15:49:09 -04003160 filename_full = g_malloc(PATH_MAX);
3161 backing_file_full = g_malloc(PATH_MAX);
3162 filename_tmp = g_malloc(PATH_MAX);
3163
3164 is_protocol = path_has_protocol(backing_file);
3165
3166 for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) {
3167
3168 /* If either of the filename paths is actually a protocol, then
3169 * compare unmodified paths; otherwise make paths relative */
3170 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3171 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3172 retval = curr_bs->backing_hd;
3173 break;
3174 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003175 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04003176 /* If not an absolute filename path, make it relative to the current
3177 * image's filename path */
3178 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3179 backing_file);
3180
3181 /* We are going to compare absolute pathnames */
3182 if (!realpath(filename_tmp, filename_full)) {
3183 continue;
3184 }
3185
3186 /* We need to make sure the backing filename we are comparing against
3187 * is relative to the current image filename (or absolute) */
3188 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3189 curr_bs->backing_file);
3190
3191 if (!realpath(filename_tmp, backing_file_full)) {
3192 continue;
3193 }
3194
3195 if (strcmp(backing_file_full, filename_full) == 0) {
3196 retval = curr_bs->backing_hd;
3197 break;
3198 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003199 }
3200 }
3201
Jeff Codyb1b1d782012-10-16 15:49:09 -04003202 g_free(filename_full);
3203 g_free(backing_file_full);
3204 g_free(filename_tmp);
3205 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003206}
3207
Benoît Canetf198fd12012-08-02 10:22:47 +02003208int bdrv_get_backing_file_depth(BlockDriverState *bs)
3209{
3210 if (!bs->drv) {
3211 return 0;
3212 }
3213
3214 if (!bs->backing_hd) {
3215 return 0;
3216 }
3217
3218 return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
3219}
3220
Jeff Cody79fac562012-09-27 13:29:15 -04003221BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3222{
3223 BlockDriverState *curr_bs = NULL;
3224
3225 if (!bs) {
3226 return NULL;
3227 }
3228
3229 curr_bs = bs;
3230
3231 while (curr_bs->backing_hd) {
3232 curr_bs = curr_bs->backing_hd;
3233 }
3234 return curr_bs;
3235}
3236
bellardfaea38e2006-08-05 21:31:00 +00003237#define NB_SUFFIXES 4
3238
3239char *get_human_readable_size(char *buf, int buf_size, int64_t size)
3240{
3241 static const char suffixes[NB_SUFFIXES] = "KMGT";
3242 int64_t base;
3243 int i;
3244
3245 if (size <= 999) {
3246 snprintf(buf, buf_size, "%" PRId64, size);
3247 } else {
3248 base = 1024;
3249 for(i = 0; i < NB_SUFFIXES; i++) {
3250 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00003251 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00003252 (double)size / base,
3253 suffixes[i]);
3254 break;
3255 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00003256 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00003257 ((size + (base >> 1)) / base),
3258 suffixes[i]);
3259 break;
3260 }
3261 base = base * 1024;
3262 }
3263 }
3264 return buf;
3265}
3266
3267char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
3268{
3269 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00003270#ifdef _WIN32
3271 struct tm *ptm;
3272#else
bellardfaea38e2006-08-05 21:31:00 +00003273 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00003274#endif
bellardfaea38e2006-08-05 21:31:00 +00003275 time_t ti;
3276 int64_t secs;
3277
3278 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00003279 snprintf(buf, buf_size,
3280 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00003281 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
3282 } else {
3283 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00003284#ifdef _WIN32
3285 ptm = localtime(&ti);
3286 strftime(date_buf, sizeof(date_buf),
3287 "%Y-%m-%d %H:%M:%S", ptm);
3288#else
bellardfaea38e2006-08-05 21:31:00 +00003289 localtime_r(&ti, &tm);
3290 strftime(date_buf, sizeof(date_buf),
3291 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00003292#endif
bellardfaea38e2006-08-05 21:31:00 +00003293 secs = sn->vm_clock_nsec / 1000000000;
3294 snprintf(clock_buf, sizeof(clock_buf),
3295 "%02d:%02d:%02d.%03d",
3296 (int)(secs / 3600),
3297 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00003298 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00003299 (int)((sn->vm_clock_nsec / 1000000) % 1000));
3300 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00003301 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00003302 sn->id_str, sn->name,
3303 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
3304 date_buf,
3305 clock_buf);
3306 }
3307 return buf;
3308}
3309
bellard83f64092006-08-01 16:21:11 +00003310/**************************************************************/
3311/* async I/Os */
3312
aliguori3b69e4b2009-01-22 16:59:24 +00003313BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
aliguorif141eaf2009-04-07 18:43:24 +00003314 QEMUIOVector *qiov, int nb_sectors,
aliguori3b69e4b2009-01-22 16:59:24 +00003315 BlockDriverCompletionFunc *cb, void *opaque)
3316{
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01003317 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
3318
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003319 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003320 cb, opaque, false);
bellard83f64092006-08-01 16:21:11 +00003321}
3322
aliguorif141eaf2009-04-07 18:43:24 +00003323BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
3324 QEMUIOVector *qiov, int nb_sectors,
3325 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00003326{
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01003327 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
3328
Stefan Hajnoczi1a6e1152011-10-13 13:08:25 +01003329 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003330 cb, opaque, true);
bellard83f64092006-08-01 16:21:11 +00003331}
3332
Kevin Wolf40b4f532009-09-09 17:53:37 +02003333
3334typedef struct MultiwriteCB {
3335 int error;
3336 int num_requests;
3337 int num_callbacks;
3338 struct {
3339 BlockDriverCompletionFunc *cb;
3340 void *opaque;
3341 QEMUIOVector *free_qiov;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003342 } callbacks[];
3343} MultiwriteCB;
3344
3345static void multiwrite_user_cb(MultiwriteCB *mcb)
3346{
3347 int i;
3348
3349 for (i = 0; i < mcb->num_callbacks; i++) {
3350 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
Stefan Hajnoczi1e1ea482010-04-21 20:35:45 +01003351 if (mcb->callbacks[i].free_qiov) {
3352 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
3353 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003354 g_free(mcb->callbacks[i].free_qiov);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003355 }
3356}
3357
3358static void multiwrite_cb(void *opaque, int ret)
3359{
3360 MultiwriteCB *mcb = opaque;
3361
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01003362 trace_multiwrite_cb(mcb, ret);
3363
Kevin Wolfcb6d3ca2010-04-01 22:48:44 +02003364 if (ret < 0 && !mcb->error) {
Kevin Wolf40b4f532009-09-09 17:53:37 +02003365 mcb->error = ret;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003366 }
3367
3368 mcb->num_requests--;
3369 if (mcb->num_requests == 0) {
Kevin Wolfde189a12010-07-01 16:08:51 +02003370 multiwrite_user_cb(mcb);
Anthony Liguori7267c092011-08-20 22:09:37 -05003371 g_free(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003372 }
3373}
3374
3375static int multiwrite_req_compare(const void *a, const void *b)
3376{
Christoph Hellwig77be4362010-05-19 20:53:10 +02003377 const BlockRequest *req1 = a, *req2 = b;
3378
3379 /*
3380 * Note that we can't simply subtract req2->sector from req1->sector
3381 * here as that could overflow the return value.
3382 */
3383 if (req1->sector > req2->sector) {
3384 return 1;
3385 } else if (req1->sector < req2->sector) {
3386 return -1;
3387 } else {
3388 return 0;
3389 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02003390}
3391
3392/*
3393 * Takes a bunch of requests and tries to merge them. Returns the number of
3394 * requests that remain after merging.
3395 */
3396static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
3397 int num_reqs, MultiwriteCB *mcb)
3398{
3399 int i, outidx;
3400
3401 // Sort requests by start sector
3402 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
3403
3404 // Check if adjacent requests touch the same clusters. If so, combine them,
3405 // filling up gaps with zero sectors.
3406 outidx = 0;
3407 for (i = 1; i < num_reqs; i++) {
3408 int merge = 0;
3409 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
3410
Paolo Bonzinib6a127a2012-02-21 16:43:52 +01003411 // Handle exactly sequential writes and overlapping writes.
Kevin Wolf40b4f532009-09-09 17:53:37 +02003412 if (reqs[i].sector <= oldreq_last) {
3413 merge = 1;
3414 }
3415
Christoph Hellwige2a305f2010-01-26 14:49:08 +01003416 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
3417 merge = 0;
3418 }
3419
Kevin Wolf40b4f532009-09-09 17:53:37 +02003420 if (merge) {
3421 size_t size;
Anthony Liguori7267c092011-08-20 22:09:37 -05003422 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
Kevin Wolf40b4f532009-09-09 17:53:37 +02003423 qemu_iovec_init(qiov,
3424 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
3425
3426 // Add the first request to the merged one. If the requests are
3427 // overlapping, drop the last sectors of the first request.
3428 size = (reqs[i].sector - reqs[outidx].sector) << 9;
Michael Tokarev1b093c42012-03-12 21:28:06 +04003429 qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003430
Paolo Bonzinib6a127a2012-02-21 16:43:52 +01003431 // We should need to add any zeros between the two requests
3432 assert (reqs[i].sector <= oldreq_last);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003433
3434 // Add the second request
Michael Tokarev1b093c42012-03-12 21:28:06 +04003435 qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003436
Kevin Wolfcbf1dff2010-05-21 11:09:42 +02003437 reqs[outidx].nb_sectors = qiov->size >> 9;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003438 reqs[outidx].qiov = qiov;
3439
3440 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
3441 } else {
3442 outidx++;
3443 reqs[outidx].sector = reqs[i].sector;
3444 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
3445 reqs[outidx].qiov = reqs[i].qiov;
3446 }
3447 }
3448
3449 return outidx + 1;
3450}
3451
3452/*
3453 * Submit multiple AIO write requests at once.
3454 *
3455 * On success, the function returns 0 and all requests in the reqs array have
3456 * been submitted. In error case this function returns -1, and any of the
3457 * requests may or may not be submitted yet. In particular, this means that the
3458 * callback will be called for some of the requests, for others it won't. The
3459 * caller must check the error field of the BlockRequest to wait for the right
3460 * callbacks (if error != 0, no callback will be called).
3461 *
3462 * The implementation may modify the contents of the reqs array, e.g. to merge
3463 * requests. However, the fields opaque and error are left unmodified as they
3464 * are used to signal failure for a single request to the caller.
3465 */
3466int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
3467{
Kevin Wolf40b4f532009-09-09 17:53:37 +02003468 MultiwriteCB *mcb;
3469 int i;
3470
Ryan Harper301db7c2011-03-07 10:01:04 -06003471 /* don't submit writes if we don't have a medium */
3472 if (bs->drv == NULL) {
3473 for (i = 0; i < num_reqs; i++) {
3474 reqs[i].error = -ENOMEDIUM;
3475 }
3476 return -1;
3477 }
3478
Kevin Wolf40b4f532009-09-09 17:53:37 +02003479 if (num_reqs == 0) {
3480 return 0;
3481 }
3482
3483 // Create MultiwriteCB structure
Anthony Liguori7267c092011-08-20 22:09:37 -05003484 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
Kevin Wolf40b4f532009-09-09 17:53:37 +02003485 mcb->num_requests = 0;
3486 mcb->num_callbacks = num_reqs;
3487
3488 for (i = 0; i < num_reqs; i++) {
3489 mcb->callbacks[i].cb = reqs[i].cb;
3490 mcb->callbacks[i].opaque = reqs[i].opaque;
3491 }
3492
3493 // Check for mergable requests
3494 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
3495
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01003496 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
3497
Paolo Bonzinidf9309f2011-11-14 17:50:50 +01003498 /* Run the aio requests. */
3499 mcb->num_requests = num_reqs;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003500 for (i = 0; i < num_reqs; i++) {
Paolo Bonziniad54ae82011-11-30 09:12:30 +01003501 bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
Kevin Wolf40b4f532009-09-09 17:53:37 +02003502 reqs[i].nb_sectors, multiwrite_cb, mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003503 }
3504
3505 return 0;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003506}
3507
bellard83f64092006-08-01 16:21:11 +00003508void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00003509{
aliguori6bbff9a2009-03-20 18:25:59 +00003510 acb->pool->cancel(acb);
bellard83f64092006-08-01 16:21:11 +00003511}
3512
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08003513/* block I/O throttling */
3514static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
3515 bool is_write, double elapsed_time, uint64_t *wait)
3516{
3517 uint64_t bps_limit = 0;
3518 double bytes_limit, bytes_base, bytes_res;
3519 double slice_time, wait_time;
3520
3521 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
3522 bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
3523 } else if (bs->io_limits.bps[is_write]) {
3524 bps_limit = bs->io_limits.bps[is_write];
3525 } else {
3526 if (wait) {
3527 *wait = 0;
3528 }
3529
3530 return false;
3531 }
3532
3533 slice_time = bs->slice_end - bs->slice_start;
3534 slice_time /= (NANOSECONDS_PER_SECOND);
3535 bytes_limit = bps_limit * slice_time;
3536 bytes_base = bs->nr_bytes[is_write] - bs->io_base.bytes[is_write];
3537 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
3538 bytes_base += bs->nr_bytes[!is_write] - bs->io_base.bytes[!is_write];
3539 }
3540
3541 /* bytes_base: the bytes of data which have been read/written; and
3542 * it is obtained from the history statistic info.
3543 * bytes_res: the remaining bytes of data which need to be read/written.
3544 * (bytes_base + bytes_res) / bps_limit: used to calcuate
3545 * the total time for completing reading/writting all data.
3546 */
3547 bytes_res = (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
3548
3549 if (bytes_base + bytes_res <= bytes_limit) {
3550 if (wait) {
3551 *wait = 0;
3552 }
3553
3554 return false;
3555 }
3556
3557 /* Calc approx time to dispatch */
3558 wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time;
3559
3560 /* When the I/O rate at runtime exceeds the limits,
3561 * bs->slice_end need to be extended in order that the current statistic
3562 * info can be kept until the timer fire, so it is increased and tuned
3563 * based on the result of experiment.
3564 */
3565 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
3566 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
3567 if (wait) {
3568 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
3569 }
3570
3571 return true;
3572}
3573
3574static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
3575 double elapsed_time, uint64_t *wait)
3576{
3577 uint64_t iops_limit = 0;
3578 double ios_limit, ios_base;
3579 double slice_time, wait_time;
3580
3581 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
3582 iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
3583 } else if (bs->io_limits.iops[is_write]) {
3584 iops_limit = bs->io_limits.iops[is_write];
3585 } else {
3586 if (wait) {
3587 *wait = 0;
3588 }
3589
3590 return false;
3591 }
3592
3593 slice_time = bs->slice_end - bs->slice_start;
3594 slice_time /= (NANOSECONDS_PER_SECOND);
3595 ios_limit = iops_limit * slice_time;
3596 ios_base = bs->nr_ops[is_write] - bs->io_base.ios[is_write];
3597 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
3598 ios_base += bs->nr_ops[!is_write] - bs->io_base.ios[!is_write];
3599 }
3600
3601 if (ios_base + 1 <= ios_limit) {
3602 if (wait) {
3603 *wait = 0;
3604 }
3605
3606 return false;
3607 }
3608
3609 /* Calc approx time to dispatch */
3610 wait_time = (ios_base + 1) / iops_limit;
3611 if (wait_time > elapsed_time) {
3612 wait_time = wait_time - elapsed_time;
3613 } else {
3614 wait_time = 0;
3615 }
3616
3617 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
3618 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
3619 if (wait) {
3620 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
3621 }
3622
3623 return true;
3624}
3625
3626static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
3627 bool is_write, int64_t *wait)
3628{
3629 int64_t now, max_wait;
3630 uint64_t bps_wait = 0, iops_wait = 0;
3631 double elapsed_time;
3632 int bps_ret, iops_ret;
3633
3634 now = qemu_get_clock_ns(vm_clock);
3635 if ((bs->slice_start < now)
3636 && (bs->slice_end > now)) {
3637 bs->slice_end = now + bs->slice_time;
3638 } else {
3639 bs->slice_time = 5 * BLOCK_IO_SLICE_TIME;
3640 bs->slice_start = now;
3641 bs->slice_end = now + bs->slice_time;
3642
3643 bs->io_base.bytes[is_write] = bs->nr_bytes[is_write];
3644 bs->io_base.bytes[!is_write] = bs->nr_bytes[!is_write];
3645
3646 bs->io_base.ios[is_write] = bs->nr_ops[is_write];
3647 bs->io_base.ios[!is_write] = bs->nr_ops[!is_write];
3648 }
3649
3650 elapsed_time = now - bs->slice_start;
3651 elapsed_time /= (NANOSECONDS_PER_SECOND);
3652
3653 bps_ret = bdrv_exceed_bps_limits(bs, nb_sectors,
3654 is_write, elapsed_time, &bps_wait);
3655 iops_ret = bdrv_exceed_iops_limits(bs, is_write,
3656 elapsed_time, &iops_wait);
3657 if (bps_ret || iops_ret) {
3658 max_wait = bps_wait > iops_wait ? bps_wait : iops_wait;
3659 if (wait) {
3660 *wait = max_wait;
3661 }
3662
3663 now = qemu_get_clock_ns(vm_clock);
3664 if (bs->slice_end < now + max_wait) {
3665 bs->slice_end = now + max_wait;
3666 }
3667
3668 return true;
3669 }
3670
3671 if (wait) {
3672 *wait = 0;
3673 }
3674
3675 return false;
3676}
pbrookce1a14d2006-08-07 02:38:06 +00003677
bellard83f64092006-08-01 16:21:11 +00003678/**************************************************************/
3679/* async block device emulation */
3680
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003681typedef struct BlockDriverAIOCBSync {
3682 BlockDriverAIOCB common;
3683 QEMUBH *bh;
3684 int ret;
3685 /* vector translation state */
3686 QEMUIOVector *qiov;
3687 uint8_t *bounce;
3688 int is_write;
3689} BlockDriverAIOCBSync;
3690
3691static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
3692{
Kevin Wolfb666d232010-05-05 11:44:39 +02003693 BlockDriverAIOCBSync *acb =
3694 container_of(blockacb, BlockDriverAIOCBSync, common);
Dor Laor6a7ad292009-06-01 12:07:23 +03003695 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03003696 acb->bh = NULL;
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003697 qemu_aio_release(acb);
3698}
3699
3700static AIOPool bdrv_em_aio_pool = {
3701 .aiocb_size = sizeof(BlockDriverAIOCBSync),
3702 .cancel = bdrv_aio_cancel_em,
3703};
3704
bellard83f64092006-08-01 16:21:11 +00003705static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00003706{
pbrookce1a14d2006-08-07 02:38:06 +00003707 BlockDriverAIOCBSync *acb = opaque;
aliguorif141eaf2009-04-07 18:43:24 +00003708
aliguorif141eaf2009-04-07 18:43:24 +00003709 if (!acb->is_write)
Michael Tokarev03396142012-06-07 20:17:55 +04003710 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
aliguoriceb42de2009-04-07 18:43:28 +00003711 qemu_vfree(acb->bounce);
pbrookce1a14d2006-08-07 02:38:06 +00003712 acb->common.cb(acb->common.opaque, acb->ret);
Dor Laor6a7ad292009-06-01 12:07:23 +03003713 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03003714 acb->bh = NULL;
pbrookce1a14d2006-08-07 02:38:06 +00003715 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00003716}
bellardbeac80c2006-06-26 20:08:57 +00003717
aliguorif141eaf2009-04-07 18:43:24 +00003718static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
3719 int64_t sector_num,
3720 QEMUIOVector *qiov,
3721 int nb_sectors,
3722 BlockDriverCompletionFunc *cb,
3723 void *opaque,
3724 int is_write)
3725
bellardea2384d2004-08-01 21:59:26 +00003726{
pbrookce1a14d2006-08-07 02:38:06 +00003727 BlockDriverAIOCBSync *acb;
pbrookce1a14d2006-08-07 02:38:06 +00003728
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003729 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
aliguorif141eaf2009-04-07 18:43:24 +00003730 acb->is_write = is_write;
3731 acb->qiov = qiov;
aliguorie268ca52009-04-22 20:20:00 +00003732 acb->bounce = qemu_blockalign(bs, qiov->size);
Paolo Bonzini3f3aace2011-11-14 17:50:54 +01003733 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
aliguorif141eaf2009-04-07 18:43:24 +00003734
3735 if (is_write) {
Michael Tokarevd5e6b162012-06-07 20:21:06 +04003736 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
Stefan Hajnoczi1ed20ac2011-10-13 13:08:21 +01003737 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
aliguorif141eaf2009-04-07 18:43:24 +00003738 } else {
Stefan Hajnoczi1ed20ac2011-10-13 13:08:21 +01003739 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
aliguorif141eaf2009-04-07 18:43:24 +00003740 }
3741
pbrookce1a14d2006-08-07 02:38:06 +00003742 qemu_bh_schedule(acb->bh);
aliguorif141eaf2009-04-07 18:43:24 +00003743
pbrookce1a14d2006-08-07 02:38:06 +00003744 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00003745}
3746
aliguorif141eaf2009-04-07 18:43:24 +00003747static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
3748 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +00003749 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00003750{
aliguorif141eaf2009-04-07 18:43:24 +00003751 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
bellard83f64092006-08-01 16:21:11 +00003752}
3753
aliguorif141eaf2009-04-07 18:43:24 +00003754static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
3755 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3756 BlockDriverCompletionFunc *cb, void *opaque)
3757{
3758 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
3759}
3760
Kevin Wolf68485422011-06-30 10:05:46 +02003761
3762typedef struct BlockDriverAIOCBCoroutine {
3763 BlockDriverAIOCB common;
3764 BlockRequest req;
3765 bool is_write;
3766 QEMUBH* bh;
3767} BlockDriverAIOCBCoroutine;
3768
3769static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
3770{
3771 qemu_aio_flush();
3772}
3773
3774static AIOPool bdrv_em_co_aio_pool = {
3775 .aiocb_size = sizeof(BlockDriverAIOCBCoroutine),
3776 .cancel = bdrv_aio_co_cancel_em,
3777};
3778
Paolo Bonzini35246a62011-10-14 10:41:29 +02003779static void bdrv_co_em_bh(void *opaque)
Kevin Wolf68485422011-06-30 10:05:46 +02003780{
3781 BlockDriverAIOCBCoroutine *acb = opaque;
3782
3783 acb->common.cb(acb->common.opaque, acb->req.error);
3784 qemu_bh_delete(acb->bh);
3785 qemu_aio_release(acb);
3786}
3787
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003788/* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
3789static void coroutine_fn bdrv_co_do_rw(void *opaque)
3790{
3791 BlockDriverAIOCBCoroutine *acb = opaque;
3792 BlockDriverState *bs = acb->common.bs;
3793
3794 if (!acb->is_write) {
3795 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00003796 acb->req.nb_sectors, acb->req.qiov, 0);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003797 } else {
3798 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00003799 acb->req.nb_sectors, acb->req.qiov, 0);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003800 }
3801
Paolo Bonzini35246a62011-10-14 10:41:29 +02003802 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003803 qemu_bh_schedule(acb->bh);
3804}
3805
Kevin Wolf68485422011-06-30 10:05:46 +02003806static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
3807 int64_t sector_num,
3808 QEMUIOVector *qiov,
3809 int nb_sectors,
3810 BlockDriverCompletionFunc *cb,
3811 void *opaque,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003812 bool is_write)
Kevin Wolf68485422011-06-30 10:05:46 +02003813{
3814 Coroutine *co;
3815 BlockDriverAIOCBCoroutine *acb;
3816
3817 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3818 acb->req.sector = sector_num;
3819 acb->req.nb_sectors = nb_sectors;
3820 acb->req.qiov = qiov;
3821 acb->is_write = is_write;
3822
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003823 co = qemu_coroutine_create(bdrv_co_do_rw);
Kevin Wolf68485422011-06-30 10:05:46 +02003824 qemu_coroutine_enter(co, acb);
3825
3826 return &acb->common;
3827}
3828
Paolo Bonzini07f07612011-10-17 12:32:12 +02003829static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003830{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003831 BlockDriverAIOCBCoroutine *acb = opaque;
3832 BlockDriverState *bs = acb->common.bs;
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003833
Paolo Bonzini07f07612011-10-17 12:32:12 +02003834 acb->req.error = bdrv_co_flush(bs);
3835 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003836 qemu_bh_schedule(acb->bh);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003837}
3838
Paolo Bonzini07f07612011-10-17 12:32:12 +02003839BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
Alexander Graf016f5cf2010-05-26 17:51:49 +02003840 BlockDriverCompletionFunc *cb, void *opaque)
3841{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003842 trace_bdrv_aio_flush(bs, opaque);
Alexander Graf016f5cf2010-05-26 17:51:49 +02003843
Paolo Bonzini07f07612011-10-17 12:32:12 +02003844 Coroutine *co;
3845 BlockDriverAIOCBCoroutine *acb;
Alexander Graf016f5cf2010-05-26 17:51:49 +02003846
Paolo Bonzini07f07612011-10-17 12:32:12 +02003847 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3848 co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
3849 qemu_coroutine_enter(co, acb);
Alexander Graf016f5cf2010-05-26 17:51:49 +02003850
Alexander Graf016f5cf2010-05-26 17:51:49 +02003851 return &acb->common;
3852}
3853
Paolo Bonzini4265d622011-10-17 12:32:14 +02003854static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
3855{
3856 BlockDriverAIOCBCoroutine *acb = opaque;
3857 BlockDriverState *bs = acb->common.bs;
3858
3859 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
3860 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3861 qemu_bh_schedule(acb->bh);
3862}
3863
3864BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
3865 int64_t sector_num, int nb_sectors,
3866 BlockDriverCompletionFunc *cb, void *opaque)
3867{
3868 Coroutine *co;
3869 BlockDriverAIOCBCoroutine *acb;
3870
3871 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
3872
3873 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3874 acb->req.sector = sector_num;
3875 acb->req.nb_sectors = nb_sectors;
3876 co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
3877 qemu_coroutine_enter(co, acb);
3878
3879 return &acb->common;
3880}
3881
bellardea2384d2004-08-01 21:59:26 +00003882void bdrv_init(void)
3883{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05003884 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00003885}
pbrookce1a14d2006-08-07 02:38:06 +00003886
Markus Armbrustereb852012009-10-27 18:41:44 +01003887void bdrv_init_with_whitelist(void)
3888{
3889 use_bdrv_whitelist = 1;
3890 bdrv_init();
3891}
3892
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003893void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
3894 BlockDriverCompletionFunc *cb, void *opaque)
aliguori6bbff9a2009-03-20 18:25:59 +00003895{
pbrookce1a14d2006-08-07 02:38:06 +00003896 BlockDriverAIOCB *acb;
3897
aliguori6bbff9a2009-03-20 18:25:59 +00003898 if (pool->free_aiocb) {
3899 acb = pool->free_aiocb;
3900 pool->free_aiocb = acb->next;
pbrookce1a14d2006-08-07 02:38:06 +00003901 } else {
Anthony Liguori7267c092011-08-20 22:09:37 -05003902 acb = g_malloc0(pool->aiocb_size);
aliguori6bbff9a2009-03-20 18:25:59 +00003903 acb->pool = pool;
pbrookce1a14d2006-08-07 02:38:06 +00003904 }
3905 acb->bs = bs;
3906 acb->cb = cb;
3907 acb->opaque = opaque;
3908 return acb;
3909}
3910
3911void qemu_aio_release(void *p)
3912{
aliguori6bbff9a2009-03-20 18:25:59 +00003913 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
3914 AIOPool *pool = acb->pool;
3915 acb->next = pool->free_aiocb;
3916 pool->free_aiocb = acb;
pbrookce1a14d2006-08-07 02:38:06 +00003917}
bellard19cb3732006-08-19 11:45:59 +00003918
3919/**************************************************************/
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003920/* Coroutine block device emulation */
3921
3922typedef struct CoroutineIOCompletion {
3923 Coroutine *coroutine;
3924 int ret;
3925} CoroutineIOCompletion;
3926
3927static void bdrv_co_io_em_complete(void *opaque, int ret)
3928{
3929 CoroutineIOCompletion *co = opaque;
3930
3931 co->ret = ret;
3932 qemu_coroutine_enter(co->coroutine, NULL);
3933}
3934
3935static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
3936 int nb_sectors, QEMUIOVector *iov,
3937 bool is_write)
3938{
3939 CoroutineIOCompletion co = {
3940 .coroutine = qemu_coroutine_self(),
3941 };
3942 BlockDriverAIOCB *acb;
3943
3944 if (is_write) {
Stefan Hajnoczia652d162011-10-05 17:17:02 +01003945 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
3946 bdrv_co_io_em_complete, &co);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003947 } else {
Stefan Hajnoczia652d162011-10-05 17:17:02 +01003948 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
3949 bdrv_co_io_em_complete, &co);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003950 }
3951
Stefan Hajnoczi59370aa2011-09-30 17:34:58 +01003952 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003953 if (!acb) {
3954 return -EIO;
3955 }
3956 qemu_coroutine_yield();
3957
3958 return co.ret;
3959}
3960
3961static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
3962 int64_t sector_num, int nb_sectors,
3963 QEMUIOVector *iov)
3964{
3965 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
3966}
3967
3968static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
3969 int64_t sector_num, int nb_sectors,
3970 QEMUIOVector *iov)
3971{
3972 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
3973}
3974
Paolo Bonzini07f07612011-10-17 12:32:12 +02003975static void coroutine_fn bdrv_flush_co_entry(void *opaque)
Kevin Wolfe7a8a782011-07-15 16:05:00 +02003976{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003977 RwCo *rwco = opaque;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02003978
Paolo Bonzini07f07612011-10-17 12:32:12 +02003979 rwco->ret = bdrv_co_flush(rwco->bs);
3980}
3981
3982int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
3983{
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003984 int ret;
3985
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003986 if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Paolo Bonzini07f07612011-10-17 12:32:12 +02003987 return 0;
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003988 }
3989
Kevin Wolfca716362011-11-10 18:13:59 +01003990 /* Write back cached data to the OS even with cache=unsafe */
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003991 if (bs->drv->bdrv_co_flush_to_os) {
3992 ret = bs->drv->bdrv_co_flush_to_os(bs);
3993 if (ret < 0) {
3994 return ret;
3995 }
3996 }
3997
Kevin Wolfca716362011-11-10 18:13:59 +01003998 /* But don't actually force it to the disk with cache=unsafe */
3999 if (bs->open_flags & BDRV_O_NO_FLUSH) {
Kevin Wolfd4c82322012-08-15 12:52:45 +02004000 goto flush_parent;
Kevin Wolfca716362011-11-10 18:13:59 +01004001 }
4002
Kevin Wolfeb489bb2011-11-10 18:10:11 +01004003 if (bs->drv->bdrv_co_flush_to_disk) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004004 ret = bs->drv->bdrv_co_flush_to_disk(bs);
Paolo Bonzini07f07612011-10-17 12:32:12 +02004005 } else if (bs->drv->bdrv_aio_flush) {
4006 BlockDriverAIOCB *acb;
4007 CoroutineIOCompletion co = {
4008 .coroutine = qemu_coroutine_self(),
4009 };
4010
4011 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
4012 if (acb == NULL) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004013 ret = -EIO;
Paolo Bonzini07f07612011-10-17 12:32:12 +02004014 } else {
4015 qemu_coroutine_yield();
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004016 ret = co.ret;
Paolo Bonzini07f07612011-10-17 12:32:12 +02004017 }
Paolo Bonzini07f07612011-10-17 12:32:12 +02004018 } else {
4019 /*
4020 * Some block drivers always operate in either writethrough or unsafe
4021 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
4022 * know how the server works (because the behaviour is hardcoded or
4023 * depends on server-side configuration), so we can't ensure that
4024 * everything is safe on disk. Returning an error doesn't work because
4025 * that would break guests even if the server operates in writethrough
4026 * mode.
4027 *
4028 * Let's hope the user knows what he's doing.
4029 */
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004030 ret = 0;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02004031 }
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004032 if (ret < 0) {
4033 return ret;
4034 }
4035
4036 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
4037 * in the case of cache=unsafe, so there are no useless flushes.
4038 */
Kevin Wolfd4c82322012-08-15 12:52:45 +02004039flush_parent:
Paolo Bonzini29cdb252012-03-12 18:26:01 +01004040 return bdrv_co_flush(bs->file);
Paolo Bonzini07f07612011-10-17 12:32:12 +02004041}
4042
Anthony Liguori0f154232011-11-14 15:09:45 -06004043void bdrv_invalidate_cache(BlockDriverState *bs)
4044{
4045 if (bs->drv && bs->drv->bdrv_invalidate_cache) {
4046 bs->drv->bdrv_invalidate_cache(bs);
4047 }
4048}
4049
4050void bdrv_invalidate_cache_all(void)
4051{
4052 BlockDriverState *bs;
4053
4054 QTAILQ_FOREACH(bs, &bdrv_states, list) {
4055 bdrv_invalidate_cache(bs);
4056 }
4057}
4058
Benoît Canet07789262012-03-23 08:36:49 +01004059void bdrv_clear_incoming_migration_all(void)
4060{
4061 BlockDriverState *bs;
4062
4063 QTAILQ_FOREACH(bs, &bdrv_states, list) {
4064 bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
4065 }
4066}
4067
Paolo Bonzini07f07612011-10-17 12:32:12 +02004068int bdrv_flush(BlockDriverState *bs)
4069{
4070 Coroutine *co;
4071 RwCo rwco = {
4072 .bs = bs,
4073 .ret = NOT_DONE,
4074 };
4075
4076 if (qemu_in_coroutine()) {
4077 /* Fast-path if already in coroutine context */
4078 bdrv_flush_co_entry(&rwco);
4079 } else {
4080 co = qemu_coroutine_create(bdrv_flush_co_entry);
4081 qemu_coroutine_enter(co, &rwco);
4082 while (rwco.ret == NOT_DONE) {
4083 qemu_aio_wait();
4084 }
4085 }
4086
4087 return rwco.ret;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02004088}
4089
Paolo Bonzini4265d622011-10-17 12:32:14 +02004090static void coroutine_fn bdrv_discard_co_entry(void *opaque)
4091{
4092 RwCo *rwco = opaque;
4093
4094 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
4095}
4096
4097int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
4098 int nb_sectors)
4099{
4100 if (!bs->drv) {
4101 return -ENOMEDIUM;
4102 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
4103 return -EIO;
4104 } else if (bs->read_only) {
4105 return -EROFS;
4106 } else if (bs->drv->bdrv_co_discard) {
4107 return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors);
4108 } else if (bs->drv->bdrv_aio_discard) {
4109 BlockDriverAIOCB *acb;
4110 CoroutineIOCompletion co = {
4111 .coroutine = qemu_coroutine_self(),
4112 };
4113
4114 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
4115 bdrv_co_io_em_complete, &co);
4116 if (acb == NULL) {
4117 return -EIO;
4118 } else {
4119 qemu_coroutine_yield();
4120 return co.ret;
4121 }
Paolo Bonzini4265d622011-10-17 12:32:14 +02004122 } else {
4123 return 0;
4124 }
4125}
4126
4127int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
4128{
4129 Coroutine *co;
4130 RwCo rwco = {
4131 .bs = bs,
4132 .sector_num = sector_num,
4133 .nb_sectors = nb_sectors,
4134 .ret = NOT_DONE,
4135 };
4136
4137 if (qemu_in_coroutine()) {
4138 /* Fast-path if already in coroutine context */
4139 bdrv_discard_co_entry(&rwco);
4140 } else {
4141 co = qemu_coroutine_create(bdrv_discard_co_entry);
4142 qemu_coroutine_enter(co, &rwco);
4143 while (rwco.ret == NOT_DONE) {
4144 qemu_aio_wait();
4145 }
4146 }
4147
4148 return rwco.ret;
4149}
4150
Kevin Wolff9f05dc2011-07-15 13:50:26 +02004151/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00004152/* removable device support */
4153
4154/**
4155 * Return TRUE if the media is present
4156 */
4157int bdrv_is_inserted(BlockDriverState *bs)
4158{
4159 BlockDriver *drv = bs->drv;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004160
bellard19cb3732006-08-19 11:45:59 +00004161 if (!drv)
4162 return 0;
4163 if (!drv->bdrv_is_inserted)
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004164 return 1;
4165 return drv->bdrv_is_inserted(bs);
bellard19cb3732006-08-19 11:45:59 +00004166}
4167
4168/**
Markus Armbruster8e49ca42011-08-03 15:08:08 +02004169 * Return whether the media changed since the last call to this
4170 * function, or -ENOTSUP if we don't know. Most drivers don't know.
bellard19cb3732006-08-19 11:45:59 +00004171 */
4172int bdrv_media_changed(BlockDriverState *bs)
4173{
4174 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004175
Markus Armbruster8e49ca42011-08-03 15:08:08 +02004176 if (drv && drv->bdrv_media_changed) {
4177 return drv->bdrv_media_changed(bs);
4178 }
4179 return -ENOTSUP;
bellard19cb3732006-08-19 11:45:59 +00004180}
4181
4182/**
4183 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4184 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02004185void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00004186{
4187 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004188
Markus Armbruster822e1cd2011-07-20 18:23:42 +02004189 if (drv && drv->bdrv_eject) {
4190 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00004191 }
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02004192
4193 if (bs->device_name[0] != '\0') {
4194 bdrv_emit_qmp_eject_event(bs, eject_flag);
4195 }
bellard19cb3732006-08-19 11:45:59 +00004196}
4197
bellard19cb3732006-08-19 11:45:59 +00004198/**
4199 * Lock or unlock the media (if it is locked, the user won't be able
4200 * to eject it manually).
4201 */
Markus Armbruster025e8492011-09-06 18:58:47 +02004202void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00004203{
4204 BlockDriver *drv = bs->drv;
4205
Markus Armbruster025e8492011-09-06 18:58:47 +02004206 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01004207
Markus Armbruster025e8492011-09-06 18:58:47 +02004208 if (drv && drv->bdrv_lock_medium) {
4209 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00004210 }
4211}
ths985a03b2007-12-24 16:10:43 +00004212
4213/* needed for generic scsi interface */
4214
4215int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
4216{
4217 BlockDriver *drv = bs->drv;
4218
4219 if (drv && drv->bdrv_ioctl)
4220 return drv->bdrv_ioctl(bs, req, buf);
4221 return -ENOTSUP;
4222}
aliguori7d780662009-03-12 19:57:08 +00004223
aliguori221f7152009-03-28 17:28:41 +00004224BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
4225 unsigned long int req, void *buf,
4226 BlockDriverCompletionFunc *cb, void *opaque)
aliguori7d780662009-03-12 19:57:08 +00004227{
aliguori221f7152009-03-28 17:28:41 +00004228 BlockDriver *drv = bs->drv;
aliguori7d780662009-03-12 19:57:08 +00004229
aliguori221f7152009-03-28 17:28:41 +00004230 if (drv && drv->bdrv_aio_ioctl)
4231 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
4232 return NULL;
aliguori7d780662009-03-12 19:57:08 +00004233}
aliguorie268ca52009-04-22 20:20:00 +00004234
Markus Armbruster7b6f9302011-09-06 18:58:56 +02004235void bdrv_set_buffer_alignment(BlockDriverState *bs, int align)
4236{
4237 bs->buffer_alignment = align;
4238}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004239
aliguorie268ca52009-04-22 20:20:00 +00004240void *qemu_blockalign(BlockDriverState *bs, size_t size)
4241{
4242 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
4243}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004244
4245void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
4246{
4247 int64_t bitmap_size;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004248
Liran Schouraaa0eb72010-01-26 10:31:48 +02004249 bs->dirty_count = 0;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004250 if (enable) {
Jan Kiszkac6d22832009-11-30 18:21:20 +01004251 if (!bs->dirty_bitmap) {
4252 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
Paolo Bonzini71df14f2012-04-12 14:01:04 +02004253 BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG - 1;
4254 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004255
Paolo Bonzini71df14f2012-04-12 14:01:04 +02004256 bs->dirty_bitmap = g_new0(unsigned long, bitmap_size);
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004257 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004258 } else {
Jan Kiszkac6d22832009-11-30 18:21:20 +01004259 if (bs->dirty_bitmap) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004260 g_free(bs->dirty_bitmap);
Jan Kiszkac6d22832009-11-30 18:21:20 +01004261 bs->dirty_bitmap = NULL;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004262 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004263 }
4264}
4265
4266int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
4267{
Jan Kiszka6ea44302009-11-30 18:21:19 +01004268 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004269
Jan Kiszkac6d22832009-11-30 18:21:20 +01004270 if (bs->dirty_bitmap &&
4271 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02004272 return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
4273 (1UL << (chunk % (sizeof(unsigned long) * 8))));
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004274 } else {
4275 return 0;
4276 }
4277}
4278
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004279void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
4280 int nr_sectors)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004281{
4282 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
4283}
Liran Schouraaa0eb72010-01-26 10:31:48 +02004284
4285int64_t bdrv_get_dirty_count(BlockDriverState *bs)
4286{
4287 return bs->dirty_count;
4288}
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004289
Marcelo Tosattidb593f22011-01-26 12:12:34 -02004290void bdrv_set_in_use(BlockDriverState *bs, int in_use)
4291{
4292 assert(bs->in_use != in_use);
4293 bs->in_use = in_use;
4294}
4295
4296int bdrv_in_use(BlockDriverState *bs)
4297{
4298 return bs->in_use;
4299}
4300
Luiz Capitulino28a72822011-09-26 17:43:50 -03004301void bdrv_iostatus_enable(BlockDriverState *bs)
4302{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004303 bs->iostatus_enabled = true;
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004304 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004305}
4306
4307/* The I/O status is only enabled if the drive explicitly
4308 * enables it _and_ the VM is configured to stop on errors */
4309bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
4310{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004311 return (bs->iostatus_enabled &&
Paolo Bonzini92aa5c62012-09-28 17:22:55 +02004312 (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
4313 bs->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
4314 bs->on_read_error == BLOCKDEV_ON_ERROR_STOP));
Luiz Capitulino28a72822011-09-26 17:43:50 -03004315}
4316
4317void bdrv_iostatus_disable(BlockDriverState *bs)
4318{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004319 bs->iostatus_enabled = false;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004320}
4321
4322void bdrv_iostatus_reset(BlockDriverState *bs)
4323{
4324 if (bdrv_iostatus_is_enabled(bs)) {
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004325 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004326 }
4327}
4328
Luiz Capitulino28a72822011-09-26 17:43:50 -03004329void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
4330{
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02004331 assert(bdrv_iostatus_is_enabled(bs));
4332 if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004333 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
4334 BLOCK_DEVICE_IO_STATUS_FAILED;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004335 }
4336}
4337
Christoph Hellwiga597e792011-08-25 08:26:01 +02004338void
4339bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
4340 enum BlockAcctType type)
4341{
4342 assert(type < BDRV_MAX_IOTYPE);
4343
4344 cookie->bytes = bytes;
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02004345 cookie->start_time_ns = get_clock();
Christoph Hellwiga597e792011-08-25 08:26:01 +02004346 cookie->type = type;
4347}
4348
4349void
4350bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
4351{
4352 assert(cookie->type < BDRV_MAX_IOTYPE);
4353
4354 bs->nr_bytes[cookie->type] += cookie->bytes;
4355 bs->nr_ops[cookie->type]++;
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02004356 bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
Christoph Hellwiga597e792011-08-25 08:26:01 +02004357}
4358
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004359int bdrv_img_create(const char *filename, const char *fmt,
4360 const char *base_filename, const char *base_fmt,
4361 char *options, uint64_t img_size, int flags)
4362{
4363 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfd2208942011-06-01 14:03:31 +02004364 QEMUOptionParameter *backing_fmt, *backing_file, *size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004365 BlockDriverState *bs = NULL;
4366 BlockDriver *drv, *proto_drv;
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004367 BlockDriver *backing_drv = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004368 int ret = 0;
4369
4370 /* Find driver and parse its options */
4371 drv = bdrv_find_format(fmt);
4372 if (!drv) {
4373 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004374 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004375 goto out;
4376 }
4377
4378 proto_drv = bdrv_find_protocol(filename);
4379 if (!proto_drv) {
4380 error_report("Unknown protocol '%s'", filename);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004381 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004382 goto out;
4383 }
4384
4385 create_options = append_option_parameters(create_options,
4386 drv->create_options);
4387 create_options = append_option_parameters(create_options,
4388 proto_drv->create_options);
4389
4390 /* Create parameter list with default values */
4391 param = parse_option_parameters("", create_options, param);
4392
4393 set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
4394
4395 /* Parse -o options */
4396 if (options) {
4397 param = parse_option_parameters(options, create_options, param);
4398 if (param == NULL) {
4399 error_report("Invalid options for file format '%s'.", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004400 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004401 goto out;
4402 }
4403 }
4404
4405 if (base_filename) {
4406 if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
4407 base_filename)) {
4408 error_report("Backing file not supported for file format '%s'",
4409 fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004410 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004411 goto out;
4412 }
4413 }
4414
4415 if (base_fmt) {
4416 if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
4417 error_report("Backing file format not supported for file "
4418 "format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004419 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004420 goto out;
4421 }
4422 }
4423
Jes Sorensen792da932010-12-16 13:52:17 +01004424 backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
4425 if (backing_file && backing_file->value.s) {
4426 if (!strcmp(filename, backing_file->value.s)) {
4427 error_report("Error: Trying to create an image with the "
4428 "same filename as the backing file");
Jes Sorensen4f70f242010-12-16 13:52:18 +01004429 ret = -EINVAL;
Jes Sorensen792da932010-12-16 13:52:17 +01004430 goto out;
4431 }
4432 }
4433
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004434 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
4435 if (backing_fmt && backing_fmt->value.s) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004436 backing_drv = bdrv_find_format(backing_fmt->value.s);
4437 if (!backing_drv) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004438 error_report("Unknown backing file format '%s'",
4439 backing_fmt->value.s);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004440 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004441 goto out;
4442 }
4443 }
4444
4445 // The size for the image must always be specified, with one exception:
4446 // If we are using a backing file, we can obtain the size from there
Kevin Wolfd2208942011-06-01 14:03:31 +02004447 size = get_option_parameter(param, BLOCK_OPT_SIZE);
4448 if (size && size->value.n == -1) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004449 if (backing_file && backing_file->value.s) {
4450 uint64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004451 char buf[32];
Paolo Bonzini63090da2012-04-12 14:01:03 +02004452 int back_flags;
4453
4454 /* backing files always opened read-only */
4455 back_flags =
4456 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004457
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004458 bs = bdrv_new("");
4459
Paolo Bonzini63090da2012-04-12 14:01:03 +02004460 ret = bdrv_open(bs, backing_file->value.s, back_flags, backing_drv);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004461 if (ret < 0) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004462 error_report("Could not open '%s'", backing_file->value.s);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004463 goto out;
4464 }
4465 bdrv_get_geometry(bs, &size);
4466 size *= 512;
4467
4468 snprintf(buf, sizeof(buf), "%" PRId64, size);
4469 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
4470 } else {
4471 error_report("Image creation needs a size parameter");
Jes Sorensen4f70f242010-12-16 13:52:18 +01004472 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004473 goto out;
4474 }
4475 }
4476
4477 printf("Formatting '%s', fmt=%s ", filename, fmt);
4478 print_option_parameters(param);
4479 puts("");
4480
4481 ret = bdrv_create(drv, filename, param);
4482
4483 if (ret < 0) {
4484 if (ret == -ENOTSUP) {
4485 error_report("Formatting or formatting option not supported for "
4486 "file format '%s'", fmt);
4487 } else if (ret == -EFBIG) {
4488 error_report("The image size is too large for file format '%s'",
4489 fmt);
4490 } else {
4491 error_report("%s: error while creating %s: %s", filename, fmt,
4492 strerror(-ret));
4493 }
4494 }
4495
4496out:
4497 free_option_parameters(create_options);
4498 free_option_parameters(param);
4499
4500 if (bs) {
4501 bdrv_delete(bs);
4502 }
Jes Sorensen4f70f242010-12-16 13:52:18 +01004503
4504 return ret;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004505}