blob: e95f613aa4882a4feade0ccf87e9b80d7d33274d [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) {
382 return -ENOTSUP;
383 }
384
385 if (qemu_in_coroutine()) {
386 /* Fast-path if already in coroutine context */
387 bdrv_create_co_entry(&cco);
388 } else {
389 co = qemu_coroutine_create(bdrv_create_co_entry);
390 qemu_coroutine_enter(co, &cco);
391 while (cco.ret == NOT_DONE) {
392 qemu_aio_wait();
393 }
394 }
395
396 ret = cco.ret;
397 g_free(cco.filename);
398
399 return ret;
bellardea2384d2004-08-01 21:59:26 +0000400}
401
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200402int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
403{
404 BlockDriver *drv;
405
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900406 drv = bdrv_find_protocol(filename);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200407 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000408 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200409 }
410
411 return bdrv_create(drv, filename, options);
412}
413
Jim Meyeringeba25052012-05-28 09:27:54 +0200414/*
415 * Create a uniquely-named empty temporary file.
416 * Return 0 upon success, otherwise a negative errno value.
417 */
418int get_tmp_filename(char *filename, int size)
419{
bellardd5249392004-08-03 21:14:23 +0000420#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000421 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200422 /* GetTempFileName requires that its output buffer (4th param)
423 have length MAX_PATH or greater. */
424 assert(size >= MAX_PATH);
425 return (GetTempPath(MAX_PATH, temp_dir)
426 && GetTempFileName(temp_dir, "qem", 0, filename)
427 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000428#else
bellardea2384d2004-08-01 21:59:26 +0000429 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000430 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000431 tmpdir = getenv("TMPDIR");
432 if (!tmpdir)
433 tmpdir = "/tmp";
Jim Meyeringeba25052012-05-28 09:27:54 +0200434 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
435 return -EOVERFLOW;
436 }
bellardea2384d2004-08-01 21:59:26 +0000437 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800438 if (fd < 0) {
439 return -errno;
440 }
441 if (close(fd) != 0) {
442 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200443 return -errno;
444 }
445 return 0;
bellardd5249392004-08-03 21:14:23 +0000446#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200447}
bellardea2384d2004-08-01 21:59:26 +0000448
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200449/*
450 * Detect host devices. By convention, /dev/cdrom[N] is always
451 * recognized as a host CDROM.
452 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200453static BlockDriver *find_hdev_driver(const char *filename)
454{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200455 int score_max = 0, score;
456 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200457
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100458 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200459 if (d->bdrv_probe_device) {
460 score = d->bdrv_probe_device(filename);
461 if (score > score_max) {
462 score_max = score;
463 drv = d;
464 }
465 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200466 }
467
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200468 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200469}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200470
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900471BlockDriver *bdrv_find_protocol(const char *filename)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200472{
473 BlockDriver *drv1;
474 char protocol[128];
475 int len;
476 const char *p;
477
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200478 /* TODO Drivers without bdrv_file_open must be specified explicitly */
479
Christoph Hellwig39508e72010-06-23 12:25:17 +0200480 /*
481 * XXX(hch): we really should not let host device detection
482 * override an explicit protocol specification, but moving this
483 * later breaks access to device names with colons in them.
484 * Thanks to the brain-dead persistent naming schemes on udev-
485 * based Linux systems those actually are quite common.
486 */
487 drv1 = find_hdev_driver(filename);
488 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200489 return drv1;
490 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200491
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000492 if (!path_has_protocol(filename)) {
Christoph Hellwig39508e72010-06-23 12:25:17 +0200493 return bdrv_find_format("file");
494 }
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000495 p = strchr(filename, ':');
496 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200497 len = p - filename;
498 if (len > sizeof(protocol) - 1)
499 len = sizeof(protocol) - 1;
500 memcpy(protocol, filename, len);
501 protocol[len] = '\0';
502 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
503 if (drv1->protocol_name &&
504 !strcmp(drv1->protocol_name, protocol)) {
505 return drv1;
506 }
507 }
508 return NULL;
509}
510
Stefan Weilc98ac352010-07-21 21:51:51 +0200511static int find_image_format(const char *filename, BlockDriver **pdrv)
bellardea2384d2004-08-01 21:59:26 +0000512{
bellard83f64092006-08-01 16:21:11 +0000513 int ret, score, score_max;
bellardea2384d2004-08-01 21:59:26 +0000514 BlockDriver *drv1, *drv;
bellard83f64092006-08-01 16:21:11 +0000515 uint8_t buf[2048];
516 BlockDriverState *bs;
ths3b46e622007-09-17 08:09:54 +0000517
Naphtali Spreif5edb012010-01-17 16:48:13 +0200518 ret = bdrv_file_open(&bs, filename, 0);
Stefan Weilc98ac352010-07-21 21:51:51 +0200519 if (ret < 0) {
520 *pdrv = NULL;
521 return ret;
522 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700523
Kevin Wolf08a00552010-06-01 18:37:31 +0200524 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
525 if (bs->sg || !bdrv_is_inserted(bs)) {
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700526 bdrv_delete(bs);
Stefan Weilc98ac352010-07-21 21:51:51 +0200527 drv = bdrv_find_format("raw");
528 if (!drv) {
529 ret = -ENOENT;
530 }
531 *pdrv = drv;
532 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700533 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700534
bellard83f64092006-08-01 16:21:11 +0000535 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
536 bdrv_delete(bs);
537 if (ret < 0) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200538 *pdrv = NULL;
539 return ret;
bellard83f64092006-08-01 16:21:11 +0000540 }
541
bellardea2384d2004-08-01 21:59:26 +0000542 score_max = 0;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200543 drv = NULL;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100544 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
bellard83f64092006-08-01 16:21:11 +0000545 if (drv1->bdrv_probe) {
546 score = drv1->bdrv_probe(buf, ret, filename);
547 if (score > score_max) {
548 score_max = score;
549 drv = drv1;
550 }
bellardea2384d2004-08-01 21:59:26 +0000551 }
552 }
Stefan Weilc98ac352010-07-21 21:51:51 +0200553 if (!drv) {
554 ret = -ENOENT;
555 }
556 *pdrv = drv;
557 return ret;
bellardea2384d2004-08-01 21:59:26 +0000558}
559
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100560/**
561 * Set the current 'total_sectors' value
562 */
563static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
564{
565 BlockDriver *drv = bs->drv;
566
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700567 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
568 if (bs->sg)
569 return 0;
570
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100571 /* query actual device if possible, otherwise just trust the hint */
572 if (drv->bdrv_getlength) {
573 int64_t length = drv->bdrv_getlength(bs);
574 if (length < 0) {
575 return length;
576 }
577 hint = length >> BDRV_SECTOR_BITS;
578 }
579
580 bs->total_sectors = hint;
581 return 0;
582}
583
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100584/**
585 * Set open flags for a given cache mode
586 *
587 * Return 0 on success, -1 if the cache mode was invalid.
588 */
589int bdrv_parse_cache_flags(const char *mode, int *flags)
590{
591 *flags &= ~BDRV_O_CACHE_MASK;
592
593 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
594 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100595 } else if (!strcmp(mode, "directsync")) {
596 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100597 } else if (!strcmp(mode, "writeback")) {
598 *flags |= BDRV_O_CACHE_WB;
599 } else if (!strcmp(mode, "unsafe")) {
600 *flags |= BDRV_O_CACHE_WB;
601 *flags |= BDRV_O_NO_FLUSH;
602 } else if (!strcmp(mode, "writethrough")) {
603 /* this is the default */
604 } else {
605 return -1;
606 }
607
608 return 0;
609}
610
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +0000611/**
612 * The copy-on-read flag is actually a reference count so multiple users may
613 * use the feature without worrying about clobbering its previous state.
614 * Copy-on-read stays enabled until all users have called to disable it.
615 */
616void bdrv_enable_copy_on_read(BlockDriverState *bs)
617{
618 bs->copy_on_read++;
619}
620
621void bdrv_disable_copy_on_read(BlockDriverState *bs)
622{
623 assert(bs->copy_on_read > 0);
624 bs->copy_on_read--;
625}
626
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200627/*
Kevin Wolf57915332010-04-14 15:24:50 +0200628 * Common part for opening disk images and files
629 */
630static int bdrv_open_common(BlockDriverState *bs, const char *filename,
631 int flags, BlockDriver *drv)
632{
633 int ret, open_flags;
634
635 assert(drv != NULL);
Paolo Bonzini64058752012-05-08 16:51:49 +0200636 assert(bs->file == NULL);
Kevin Wolf57915332010-04-14 15:24:50 +0200637
Stefan Hajnoczi28dcee12011-09-22 20:14:12 +0100638 trace_bdrv_open_common(bs, filename, flags, drv->format_name);
639
Kevin Wolf57915332010-04-14 15:24:50 +0200640 bs->open_flags = flags;
Kevin Wolf57915332010-04-14 15:24:50 +0200641 bs->buffer_alignment = 512;
642
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +0000643 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
644 if ((flags & BDRV_O_RDWR) && (flags & BDRV_O_COPY_ON_READ)) {
645 bdrv_enable_copy_on_read(bs);
646 }
647
Kevin Wolf57915332010-04-14 15:24:50 +0200648 pstrcpy(bs->filename, sizeof(bs->filename), filename);
649
650 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
651 return -ENOTSUP;
652 }
653
654 bs->drv = drv;
Anthony Liguori7267c092011-08-20 22:09:37 -0500655 bs->opaque = g_malloc0(drv->instance_size);
Kevin Wolf57915332010-04-14 15:24:50 +0200656
Stefan Hajnoczi03f541b2011-10-27 10:54:28 +0100657 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
Paolo Bonzinie1e9b0a2012-06-06 00:04:53 +0200658 open_flags = flags | BDRV_O_CACHE_WB;
Kevin Wolf57915332010-04-14 15:24:50 +0200659
660 /*
661 * Clear flags that are internal to the block layer before opening the
662 * image.
663 */
Paolo Bonzinie1e9b0a2012-06-06 00:04:53 +0200664 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Kevin Wolf57915332010-04-14 15:24:50 +0200665
666 /*
Stefan Weilebabb672011-04-26 10:29:36 +0200667 * Snapshots should be writable.
Kevin Wolf57915332010-04-14 15:24:50 +0200668 */
669 if (bs->is_temporary) {
670 open_flags |= BDRV_O_RDWR;
671 }
672
Jeff Codybe028ad2012-09-20 15:13:17 -0400673 bs->read_only = !(open_flags & BDRV_O_RDWR);
Stefan Hajnoczie7c63792011-10-27 10:54:27 +0100674
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200675 /* Open the image, either directly or using a protocol */
676 if (drv->bdrv_file_open) {
677 ret = drv->bdrv_file_open(bs, filename, open_flags);
678 } else {
679 ret = bdrv_file_open(&bs->file, filename, open_flags);
680 if (ret >= 0) {
681 ret = drv->bdrv_open(bs, open_flags);
682 }
683 }
684
Kevin Wolf57915332010-04-14 15:24:50 +0200685 if (ret < 0) {
686 goto free_and_fail;
687 }
688
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100689 ret = refresh_total_sectors(bs, bs->total_sectors);
690 if (ret < 0) {
691 goto free_and_fail;
Kevin Wolf57915332010-04-14 15:24:50 +0200692 }
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100693
Kevin Wolf57915332010-04-14 15:24:50 +0200694#ifndef _WIN32
695 if (bs->is_temporary) {
696 unlink(filename);
697 }
698#endif
699 return 0;
700
701free_and_fail:
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200702 if (bs->file) {
703 bdrv_delete(bs->file);
704 bs->file = NULL;
705 }
Anthony Liguori7267c092011-08-20 22:09:37 -0500706 g_free(bs->opaque);
Kevin Wolf57915332010-04-14 15:24:50 +0200707 bs->opaque = NULL;
708 bs->drv = NULL;
709 return ret;
710}
711
712/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200713 * Opens a file using a protocol (file, host_device, nbd, ...)
714 */
bellard83f64092006-08-01 16:21:11 +0000715int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
bellardb3380822004-03-14 21:38:54 +0000716{
bellard83f64092006-08-01 16:21:11 +0000717 BlockDriverState *bs;
Christoph Hellwig6db95602010-04-05 16:53:57 +0200718 BlockDriver *drv;
bellard83f64092006-08-01 16:21:11 +0000719 int ret;
720
MORITA Kazutakab50cbab2010-05-26 11:35:36 +0900721 drv = bdrv_find_protocol(filename);
Christoph Hellwig6db95602010-04-05 16:53:57 +0200722 if (!drv) {
723 return -ENOENT;
724 }
725
bellard83f64092006-08-01 16:21:11 +0000726 bs = bdrv_new("");
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200727 ret = bdrv_open_common(bs, filename, flags, drv);
bellard83f64092006-08-01 16:21:11 +0000728 if (ret < 0) {
729 bdrv_delete(bs);
730 return ret;
bellard3b0d4f62005-10-30 18:30:10 +0000731 }
aliguori71d07702009-03-03 17:37:16 +0000732 bs->growable = 1;
bellard83f64092006-08-01 16:21:11 +0000733 *pbs = bs;
734 return 0;
bellardea2384d2004-08-01 21:59:26 +0000735}
bellardfc01f7e2003-06-30 10:03:06 +0000736
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200737/*
738 * Opens a disk image (raw, qcow2, vmdk, ...)
739 */
Kevin Wolfd6e90982010-03-31 14:40:27 +0200740int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
741 BlockDriver *drv)
bellardea2384d2004-08-01 21:59:26 +0000742{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200743 int ret;
Kevin Wolf2b572812011-10-26 11:03:01 +0200744 char tmp_filename[PATH_MAX];
bellard712e7872005-04-28 21:09:32 +0000745
bellard83f64092006-08-01 16:21:11 +0000746 if (flags & BDRV_O_SNAPSHOT) {
bellardea2384d2004-08-01 21:59:26 +0000747 BlockDriverState *bs1;
748 int64_t total_size;
aliguori7c96d462008-09-12 17:54:13 +0000749 int is_protocol = 0;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200750 BlockDriver *bdrv_qcow2;
751 QEMUOptionParameter *options;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200752 char backing_filename[PATH_MAX];
ths3b46e622007-09-17 08:09:54 +0000753
bellardea2384d2004-08-01 21:59:26 +0000754 /* if snapshot, we create a temporary backing file and open it
755 instead of opening 'filename' directly */
756
757 /* if there is a backing file, use it */
758 bs1 = bdrv_new("");
Kevin Wolfd6e90982010-03-31 14:40:27 +0200759 ret = bdrv_open(bs1, filename, 0, drv);
aliguori51d7c002009-03-05 23:00:29 +0000760 if (ret < 0) {
bellardea2384d2004-08-01 21:59:26 +0000761 bdrv_delete(bs1);
aliguori51d7c002009-03-05 23:00:29 +0000762 return ret;
bellardea2384d2004-08-01 21:59:26 +0000763 }
Jes Sorensen3e829902010-05-27 16:20:30 +0200764 total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
aliguori7c96d462008-09-12 17:54:13 +0000765
766 if (bs1->drv && bs1->drv->protocol_name)
767 is_protocol = 1;
768
bellardea2384d2004-08-01 21:59:26 +0000769 bdrv_delete(bs1);
ths3b46e622007-09-17 08:09:54 +0000770
Jim Meyeringeba25052012-05-28 09:27:54 +0200771 ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename));
772 if (ret < 0) {
773 return ret;
774 }
aliguori7c96d462008-09-12 17:54:13 +0000775
776 /* Real path is meaningless for protocols */
777 if (is_protocol)
778 snprintf(backing_filename, sizeof(backing_filename),
779 "%s", filename);
Kirill A. Shutemov114cdfa2009-12-25 18:19:22 +0000780 else if (!realpath(filename, backing_filename))
781 return -errno;
aliguori7c96d462008-09-12 17:54:13 +0000782
Kevin Wolf91a073a2009-05-27 14:48:06 +0200783 bdrv_qcow2 = bdrv_find_format("qcow2");
784 options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
785
Jes Sorensen3e829902010-05-27 16:20:30 +0200786 set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
Kevin Wolf91a073a2009-05-27 14:48:06 +0200787 set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
788 if (drv) {
789 set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
790 drv->format_name);
791 }
792
793 ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
Jan Kiszkad7487682010-04-29 18:24:50 +0200794 free_option_parameters(options);
aliguori51d7c002009-03-05 23:00:29 +0000795 if (ret < 0) {
796 return ret;
bellardea2384d2004-08-01 21:59:26 +0000797 }
Kevin Wolf91a073a2009-05-27 14:48:06 +0200798
bellardea2384d2004-08-01 21:59:26 +0000799 filename = tmp_filename;
Kevin Wolf91a073a2009-05-27 14:48:06 +0200800 drv = bdrv_qcow2;
bellardea2384d2004-08-01 21:59:26 +0000801 bs->is_temporary = 1;
802 }
bellard712e7872005-04-28 21:09:32 +0000803
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200804 /* Find the right image format driver */
Christoph Hellwig6db95602010-04-05 16:53:57 +0200805 if (!drv) {
Stefan Weilc98ac352010-07-21 21:51:51 +0200806 ret = find_image_format(filename, &drv);
aliguori51d7c002009-03-05 23:00:29 +0000807 }
Christoph Hellwig69873072010-01-20 18:13:25 +0100808
aliguori51d7c002009-03-05 23:00:29 +0000809 if (!drv) {
aliguori51d7c002009-03-05 23:00:29 +0000810 goto unlink_and_fail;
bellardea2384d2004-08-01 21:59:26 +0000811 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200812
Jeff Codybe028ad2012-09-20 15:13:17 -0400813 if (flags & BDRV_O_RDWR) {
814 flags |= BDRV_O_ALLOW_RDWR;
815 }
816
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200817 /* Open the image */
818 ret = bdrv_open_common(bs, filename, flags, drv);
819 if (ret < 0) {
Christoph Hellwig69873072010-01-20 18:13:25 +0100820 goto unlink_and_fail;
821 }
822
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200823 /* If there is a backing file, use it */
824 if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
825 char backing_filename[PATH_MAX];
826 int back_flags;
827 BlockDriver *back_drv = NULL;
828
829 bs->backing_hd = bdrv_new("");
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200830 bdrv_get_full_backing_filename(bs, backing_filename,
831 sizeof(backing_filename));
Stefan Hajnoczidf2dbb42010-12-02 16:54:13 +0000832
833 if (bs->backing_format[0] != '\0') {
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200834 back_drv = bdrv_find_format(bs->backing_format);
Stefan Hajnoczidf2dbb42010-12-02 16:54:13 +0000835 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200836
837 /* backing files always opened read-only */
838 back_flags =
839 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
840
841 ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
842 if (ret < 0) {
843 bdrv_close(bs);
844 return ret;
845 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200846 }
847
848 if (!bdrv_key_required(bs)) {
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +0200849 bdrv_dev_change_media_cb(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200850 }
851
Zhi Yong Wu98f90db2011-11-08 13:00:14 +0800852 /* throttling disk I/O limits */
853 if (bs->io_limits_enabled) {
854 bdrv_io_limits_enable(bs);
855 }
856
Kevin Wolfb6ce07a2010-04-12 16:37:13 +0200857 return 0;
858
859unlink_and_fail:
860 if (bs->is_temporary) {
861 unlink(filename);
862 }
863 return ret;
864}
865
Jeff Codye971aa12012-09-20 15:13:19 -0400866typedef struct BlockReopenQueueEntry {
867 bool prepared;
868 BDRVReopenState state;
869 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
870} BlockReopenQueueEntry;
871
872/*
873 * Adds a BlockDriverState to a simple queue for an atomic, transactional
874 * reopen of multiple devices.
875 *
876 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
877 * already performed, or alternatively may be NULL a new BlockReopenQueue will
878 * be created and initialized. This newly created BlockReopenQueue should be
879 * passed back in for subsequent calls that are intended to be of the same
880 * atomic 'set'.
881 *
882 * bs is the BlockDriverState to add to the reopen queue.
883 *
884 * flags contains the open flags for the associated bs
885 *
886 * returns a pointer to bs_queue, which is either the newly allocated
887 * bs_queue, or the existing bs_queue being used.
888 *
889 */
890BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
891 BlockDriverState *bs, int flags)
892{
893 assert(bs != NULL);
894
895 BlockReopenQueueEntry *bs_entry;
896 if (bs_queue == NULL) {
897 bs_queue = g_new0(BlockReopenQueue, 1);
898 QSIMPLEQ_INIT(bs_queue);
899 }
900
901 if (bs->file) {
902 bdrv_reopen_queue(bs_queue, bs->file, flags);
903 }
904
905 bs_entry = g_new0(BlockReopenQueueEntry, 1);
906 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
907
908 bs_entry->state.bs = bs;
909 bs_entry->state.flags = flags;
910
911 return bs_queue;
912}
913
914/*
915 * Reopen multiple BlockDriverStates atomically & transactionally.
916 *
917 * The queue passed in (bs_queue) must have been built up previous
918 * via bdrv_reopen_queue().
919 *
920 * Reopens all BDS specified in the queue, with the appropriate
921 * flags. All devices are prepared for reopen, and failure of any
922 * device will cause all device changes to be abandonded, and intermediate
923 * data cleaned up.
924 *
925 * If all devices prepare successfully, then the changes are committed
926 * to all devices.
927 *
928 */
929int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
930{
931 int ret = -1;
932 BlockReopenQueueEntry *bs_entry, *next;
933 Error *local_err = NULL;
934
935 assert(bs_queue != NULL);
936
937 bdrv_drain_all();
938
939 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
940 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
941 error_propagate(errp, local_err);
942 goto cleanup;
943 }
944 bs_entry->prepared = true;
945 }
946
947 /* If we reach this point, we have success and just need to apply the
948 * changes
949 */
950 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
951 bdrv_reopen_commit(&bs_entry->state);
952 }
953
954 ret = 0;
955
956cleanup:
957 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
958 if (ret && bs_entry->prepared) {
959 bdrv_reopen_abort(&bs_entry->state);
960 }
961 g_free(bs_entry);
962 }
963 g_free(bs_queue);
964 return ret;
965}
966
967
968/* Reopen a single BlockDriverState with the specified flags. */
969int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
970{
971 int ret = -1;
972 Error *local_err = NULL;
973 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
974
975 ret = bdrv_reopen_multiple(queue, &local_err);
976 if (local_err != NULL) {
977 error_propagate(errp, local_err);
978 }
979 return ret;
980}
981
982
983/*
984 * Prepares a BlockDriverState for reopen. All changes are staged in the
985 * 'opaque' field of the BDRVReopenState, which is used and allocated by
986 * the block driver layer .bdrv_reopen_prepare()
987 *
988 * bs is the BlockDriverState to reopen
989 * flags are the new open flags
990 * queue is the reopen queue
991 *
992 * Returns 0 on success, non-zero on error. On error errp will be set
993 * as well.
994 *
995 * On failure, bdrv_reopen_abort() will be called to clean up any data.
996 * It is the responsibility of the caller to then call the abort() or
997 * commit() for any other BDS that have been left in a prepare() state
998 *
999 */
1000int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
1001 Error **errp)
1002{
1003 int ret = -1;
1004 Error *local_err = NULL;
1005 BlockDriver *drv;
1006
1007 assert(reopen_state != NULL);
1008 assert(reopen_state->bs->drv != NULL);
1009 drv = reopen_state->bs->drv;
1010
1011 /* if we are to stay read-only, do not allow permission change
1012 * to r/w */
1013 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1014 reopen_state->flags & BDRV_O_RDWR) {
1015 error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1016 reopen_state->bs->device_name);
1017 goto error;
1018 }
1019
1020
1021 ret = bdrv_flush(reopen_state->bs);
1022 if (ret) {
1023 error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1024 strerror(-ret));
1025 goto error;
1026 }
1027
1028 if (drv->bdrv_reopen_prepare) {
1029 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1030 if (ret) {
1031 if (local_err != NULL) {
1032 error_propagate(errp, local_err);
1033 } else {
1034 error_set(errp, QERR_OPEN_FILE_FAILED,
1035 reopen_state->bs->filename);
1036 }
1037 goto error;
1038 }
1039 } else {
1040 /* It is currently mandatory to have a bdrv_reopen_prepare()
1041 * handler for each supported drv. */
1042 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1043 drv->format_name, reopen_state->bs->device_name,
1044 "reopening of file");
1045 ret = -1;
1046 goto error;
1047 }
1048
1049 ret = 0;
1050
1051error:
1052 return ret;
1053}
1054
1055/*
1056 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1057 * makes them final by swapping the staging BlockDriverState contents into
1058 * the active BlockDriverState contents.
1059 */
1060void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1061{
1062 BlockDriver *drv;
1063
1064 assert(reopen_state != NULL);
1065 drv = reopen_state->bs->drv;
1066 assert(drv != NULL);
1067
1068 /* If there are any driver level actions to take */
1069 if (drv->bdrv_reopen_commit) {
1070 drv->bdrv_reopen_commit(reopen_state);
1071 }
1072
1073 /* set BDS specific flags now */
1074 reopen_state->bs->open_flags = reopen_state->flags;
1075 reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1076 BDRV_O_CACHE_WB);
1077 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
1078}
1079
1080/*
1081 * Abort the reopen, and delete and free the staged changes in
1082 * reopen_state
1083 */
1084void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1085{
1086 BlockDriver *drv;
1087
1088 assert(reopen_state != NULL);
1089 drv = reopen_state->bs->drv;
1090 assert(drv != NULL);
1091
1092 if (drv->bdrv_reopen_abort) {
1093 drv->bdrv_reopen_abort(reopen_state);
1094 }
1095}
1096
1097
bellardfc01f7e2003-06-30 10:03:06 +00001098void bdrv_close(BlockDriverState *bs)
1099{
Liu Yuan80ccf932012-04-20 17:10:56 +08001100 bdrv_flush(bs);
bellard19cb3732006-08-19 11:45:59 +00001101 if (bs->drv) {
Paolo Bonzini3e914652012-03-30 13:17:11 +02001102 if (bs->job) {
1103 block_job_cancel_sync(bs->job);
1104 }
Kevin Wolf7094f122012-04-11 11:06:37 +02001105 bdrv_drain_all();
1106
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001107 if (bs == bs_snapshots) {
1108 bs_snapshots = NULL;
1109 }
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +01001110 if (bs->backing_hd) {
bellardea2384d2004-08-01 21:59:26 +00001111 bdrv_delete(bs->backing_hd);
Stefan Hajnoczi557df6a2010-04-17 10:49:06 +01001112 bs->backing_hd = NULL;
1113 }
bellardea2384d2004-08-01 21:59:26 +00001114 bs->drv->bdrv_close(bs);
Anthony Liguori7267c092011-08-20 22:09:37 -05001115 g_free(bs->opaque);
bellardea2384d2004-08-01 21:59:26 +00001116#ifdef _WIN32
1117 if (bs->is_temporary) {
1118 unlink(bs->filename);
1119 }
bellard67b915a2004-03-31 23:37:16 +00001120#endif
bellardea2384d2004-08-01 21:59:26 +00001121 bs->opaque = NULL;
1122 bs->drv = NULL;
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001123 bs->copy_on_read = 0;
Paolo Bonzinia275fa42012-05-08 16:51:43 +02001124 bs->backing_file[0] = '\0';
1125 bs->backing_format[0] = '\0';
Paolo Bonzini64058752012-05-08 16:51:49 +02001126 bs->total_sectors = 0;
1127 bs->encrypted = 0;
1128 bs->valid_key = 0;
1129 bs->sg = 0;
1130 bs->growable = 0;
bellardb3380822004-03-14 21:38:54 +00001131
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001132 if (bs->file != NULL) {
Paolo Bonzini0ac93772012-05-08 16:51:44 +02001133 bdrv_delete(bs->file);
1134 bs->file = NULL;
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001135 }
bellardb3380822004-03-14 21:38:54 +00001136 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08001137
Pavel Hrdina9ca11152012-08-09 12:44:48 +02001138 bdrv_dev_change_media_cb(bs, false);
1139
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08001140 /*throttling disk I/O limits*/
1141 if (bs->io_limits_enabled) {
1142 bdrv_io_limits_disable(bs);
1143 }
bellardb3380822004-03-14 21:38:54 +00001144}
1145
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09001146void bdrv_close_all(void)
1147{
1148 BlockDriverState *bs;
1149
1150 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1151 bdrv_close(bs);
1152 }
1153}
1154
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001155/*
1156 * Wait for pending requests to complete across all BlockDriverStates
1157 *
1158 * This function does not flush data to disk, use bdrv_flush_all() for that
1159 * after calling this function.
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001160 *
1161 * Note that completion of an asynchronous I/O operation can trigger any
1162 * number of other I/O operations on other devices---for example a coroutine
1163 * can be arbitrarily complex and a constant flow of I/O can come until the
1164 * coroutine is complete. Because of this, it is not possible to have a
1165 * function to drain a single device's I/O queue.
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001166 */
1167void bdrv_drain_all(void)
1168{
1169 BlockDriverState *bs;
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001170 bool busy;
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001171
Zhi Yong Wu4c355d52012-04-12 14:00:57 +02001172 do {
1173 busy = qemu_aio_wait();
1174
1175 /* FIXME: We do not have timer support here, so this is effectively
1176 * a busy wait.
1177 */
1178 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1179 if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
1180 qemu_co_queue_restart_all(&bs->throttled_reqs);
1181 busy = true;
1182 }
1183 }
1184 } while (busy);
Stefan Hajnoczi922453b2011-11-30 12:23:43 +00001185
1186 /* If requests are still pending there is a bug somewhere */
1187 QTAILQ_FOREACH(bs, &bdrv_states, list) {
1188 assert(QLIST_EMPTY(&bs->tracked_requests));
1189 assert(qemu_co_queue_empty(&bs->throttled_reqs));
1190 }
1191}
1192
Ryan Harperd22b2f42011-03-29 20:51:47 -05001193/* make a BlockDriverState anonymous by removing from bdrv_state list.
1194 Also, NULL terminate the device_name to prevent double remove */
1195void bdrv_make_anon(BlockDriverState *bs)
1196{
1197 if (bs->device_name[0] != '\0') {
1198 QTAILQ_REMOVE(&bdrv_states, bs, list);
1199 }
1200 bs->device_name[0] = '\0';
1201}
1202
Paolo Bonzinie023b2e2012-05-08 16:51:41 +02001203static void bdrv_rebind(BlockDriverState *bs)
1204{
1205 if (bs->drv && bs->drv->bdrv_rebind) {
1206 bs->drv->bdrv_rebind(bs);
1207 }
1208}
1209
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001210static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
1211 BlockDriverState *bs_src)
1212{
1213 /* move some fields that need to stay attached to the device */
1214 bs_dest->open_flags = bs_src->open_flags;
1215
1216 /* dev info */
1217 bs_dest->dev_ops = bs_src->dev_ops;
1218 bs_dest->dev_opaque = bs_src->dev_opaque;
1219 bs_dest->dev = bs_src->dev;
1220 bs_dest->buffer_alignment = bs_src->buffer_alignment;
1221 bs_dest->copy_on_read = bs_src->copy_on_read;
1222
1223 bs_dest->enable_write_cache = bs_src->enable_write_cache;
1224
1225 /* i/o timing parameters */
1226 bs_dest->slice_time = bs_src->slice_time;
1227 bs_dest->slice_start = bs_src->slice_start;
1228 bs_dest->slice_end = bs_src->slice_end;
1229 bs_dest->io_limits = bs_src->io_limits;
1230 bs_dest->io_base = bs_src->io_base;
1231 bs_dest->throttled_reqs = bs_src->throttled_reqs;
1232 bs_dest->block_timer = bs_src->block_timer;
1233 bs_dest->io_limits_enabled = bs_src->io_limits_enabled;
1234
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001235 /* r/w error */
1236 bs_dest->on_read_error = bs_src->on_read_error;
1237 bs_dest->on_write_error = bs_src->on_write_error;
1238
1239 /* i/o status */
1240 bs_dest->iostatus_enabled = bs_src->iostatus_enabled;
1241 bs_dest->iostatus = bs_src->iostatus;
1242
1243 /* dirty bitmap */
1244 bs_dest->dirty_count = bs_src->dirty_count;
1245 bs_dest->dirty_bitmap = bs_src->dirty_bitmap;
1246
1247 /* job */
1248 bs_dest->in_use = bs_src->in_use;
1249 bs_dest->job = bs_src->job;
1250
1251 /* keep the same entry in bdrv_states */
1252 pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
1253 bs_src->device_name);
1254 bs_dest->list = bs_src->list;
1255}
1256
1257/*
1258 * Swap bs contents for two image chains while they are live,
1259 * while keeping required fields on the BlockDriverState that is
1260 * actually attached to a device.
1261 *
1262 * This will modify the BlockDriverState fields, and swap contents
1263 * between bs_new and bs_old. Both bs_new and bs_old are modified.
1264 *
1265 * bs_new is required to be anonymous.
1266 *
1267 * This function does not create any image files.
1268 */
1269void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
1270{
1271 BlockDriverState tmp;
1272
1273 /* bs_new must be anonymous and shouldn't have anything fancy enabled */
1274 assert(bs_new->device_name[0] == '\0');
1275 assert(bs_new->dirty_bitmap == NULL);
1276 assert(bs_new->job == NULL);
1277 assert(bs_new->dev == NULL);
1278 assert(bs_new->in_use == 0);
1279 assert(bs_new->io_limits_enabled == false);
1280 assert(bs_new->block_timer == NULL);
1281
1282 tmp = *bs_new;
1283 *bs_new = *bs_old;
1284 *bs_old = tmp;
1285
1286 /* there are some fields that should not be swapped, move them back */
1287 bdrv_move_feature_fields(&tmp, bs_old);
1288 bdrv_move_feature_fields(bs_old, bs_new);
1289 bdrv_move_feature_fields(bs_new, &tmp);
1290
1291 /* bs_new shouldn't be in bdrv_states even after the swap! */
1292 assert(bs_new->device_name[0] == '\0');
1293
1294 /* Check a few fields that should remain attached to the device */
1295 assert(bs_new->dev == NULL);
1296 assert(bs_new->job == NULL);
1297 assert(bs_new->in_use == 0);
1298 assert(bs_new->io_limits_enabled == false);
1299 assert(bs_new->block_timer == NULL);
1300
1301 bdrv_rebind(bs_new);
1302 bdrv_rebind(bs_old);
1303}
1304
Jeff Cody8802d1f2012-02-28 15:54:06 -05001305/*
1306 * Add new bs contents at the top of an image chain while the chain is
1307 * live, while keeping required fields on the top layer.
1308 *
1309 * This will modify the BlockDriverState fields, and swap contents
1310 * between bs_new and bs_top. Both bs_new and bs_top are modified.
1311 *
Jeff Codyf6801b82012-03-27 16:30:19 -04001312 * bs_new is required to be anonymous.
1313 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05001314 * This function does not create any image files.
1315 */
1316void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
1317{
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001318 bdrv_swap(bs_new, bs_top);
Jeff Cody8802d1f2012-02-28 15:54:06 -05001319
1320 /* The contents of 'tmp' will become bs_top, as we are
1321 * swapping bs_new and bs_top contents. */
Paolo Bonzini4ddc07c2012-06-14 16:55:02 +02001322 bs_top->backing_hd = bs_new;
1323 bs_top->open_flags &= ~BDRV_O_NO_BACKING;
1324 pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file),
1325 bs_new->filename);
1326 pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format),
1327 bs_new->drv ? bs_new->drv->format_name : "");
Jeff Cody8802d1f2012-02-28 15:54:06 -05001328}
1329
bellardb3380822004-03-14 21:38:54 +00001330void bdrv_delete(BlockDriverState *bs)
1331{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001332 assert(!bs->dev);
Paolo Bonzini3e914652012-03-30 13:17:11 +02001333 assert(!bs->job);
1334 assert(!bs->in_use);
Markus Armbruster18846de2010-06-29 16:58:30 +02001335
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01001336 /* remove from list, if necessary */
Ryan Harperd22b2f42011-03-29 20:51:47 -05001337 bdrv_make_anon(bs);
aurel3234c6f052008-04-08 19:51:21 +00001338
bellardb3380822004-03-14 21:38:54 +00001339 bdrv_close(bs);
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001340
Markus Armbrusterf9092b12010-06-25 10:33:39 +02001341 assert(bs != bs_snapshots);
Anthony Liguori7267c092011-08-20 22:09:37 -05001342 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00001343}
1344
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001345int bdrv_attach_dev(BlockDriverState *bs, void *dev)
1346/* TODO change to DeviceState *dev when all users are qdevified */
Markus Armbruster18846de2010-06-29 16:58:30 +02001347{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001348 if (bs->dev) {
Markus Armbruster18846de2010-06-29 16:58:30 +02001349 return -EBUSY;
1350 }
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001351 bs->dev = dev;
Luiz Capitulino28a72822011-09-26 17:43:50 -03001352 bdrv_iostatus_reset(bs);
Markus Armbruster18846de2010-06-29 16:58:30 +02001353 return 0;
1354}
1355
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001356/* TODO qdevified devices don't use this, remove when devices are qdevified */
1357void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
Markus Armbruster18846de2010-06-29 16:58:30 +02001358{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001359 if (bdrv_attach_dev(bs, dev) < 0) {
1360 abort();
1361 }
1362}
1363
1364void bdrv_detach_dev(BlockDriverState *bs, void *dev)
1365/* TODO change to DeviceState *dev when all users are qdevified */
1366{
1367 assert(bs->dev == dev);
1368 bs->dev = NULL;
Markus Armbruster0e49de52011-08-03 15:07:41 +02001369 bs->dev_ops = NULL;
1370 bs->dev_opaque = NULL;
Markus Armbruster29e05f22011-09-06 18:58:57 +02001371 bs->buffer_alignment = 512;
Markus Armbruster18846de2010-06-29 16:58:30 +02001372}
1373
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001374/* TODO change to return DeviceState * when all users are qdevified */
1375void *bdrv_get_attached_dev(BlockDriverState *bs)
Markus Armbruster18846de2010-06-29 16:58:30 +02001376{
Markus Armbrusterfa879d62011-08-03 15:07:40 +02001377 return bs->dev;
Markus Armbruster18846de2010-06-29 16:58:30 +02001378}
1379
Markus Armbruster0e49de52011-08-03 15:07:41 +02001380void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
1381 void *opaque)
1382{
1383 bs->dev_ops = ops;
1384 bs->dev_opaque = opaque;
Markus Armbruster2c6942f2011-09-06 18:58:51 +02001385 if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) {
1386 bs_snapshots = NULL;
1387 }
Markus Armbruster0e49de52011-08-03 15:07:41 +02001388}
1389
Paolo Bonzini32c81a42012-09-28 17:22:58 +02001390void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv,
1391 enum MonitorEvent ev,
1392 BlockErrorAction action, bool is_read)
Luiz Capitulino329c0a42012-01-25 16:59:43 -02001393{
1394 QObject *data;
1395 const char *action_str;
1396
1397 switch (action) {
1398 case BDRV_ACTION_REPORT:
1399 action_str = "report";
1400 break;
1401 case BDRV_ACTION_IGNORE:
1402 action_str = "ignore";
1403 break;
1404 case BDRV_ACTION_STOP:
1405 action_str = "stop";
1406 break;
1407 default:
1408 abort();
1409 }
1410
1411 data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1412 bdrv->device_name,
1413 action_str,
1414 is_read ? "read" : "write");
Paolo Bonzini32c81a42012-09-28 17:22:58 +02001415 monitor_protocol_event(ev, data);
Luiz Capitulino329c0a42012-01-25 16:59:43 -02001416
1417 qobject_decref(data);
1418}
1419
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001420static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected)
1421{
1422 QObject *data;
1423
1424 data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }",
1425 bdrv_get_device_name(bs), ejected);
1426 monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data);
1427
1428 qobject_decref(data);
1429}
1430
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02001431static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
Markus Armbruster0e49de52011-08-03 15:07:41 +02001432{
Markus Armbruster145feb12011-08-03 15:07:42 +02001433 if (bs->dev_ops && bs->dev_ops->change_media_cb) {
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001434 bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02001435 bs->dev_ops->change_media_cb(bs->dev_opaque, load);
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02001436 if (tray_was_closed) {
1437 /* tray open */
1438 bdrv_emit_qmp_eject_event(bs, true);
1439 }
1440 if (load) {
1441 /* tray close */
1442 bdrv_emit_qmp_eject_event(bs, false);
1443 }
Markus Armbruster145feb12011-08-03 15:07:42 +02001444 }
1445}
1446
Markus Armbruster2c6942f2011-09-06 18:58:51 +02001447bool bdrv_dev_has_removable_media(BlockDriverState *bs)
1448{
1449 return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
1450}
1451
Paolo Bonzini025ccaa2011-11-07 17:50:13 +01001452void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
1453{
1454 if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
1455 bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
1456 }
1457}
1458
Markus Armbrustere4def802011-09-06 18:58:53 +02001459bool bdrv_dev_is_tray_open(BlockDriverState *bs)
1460{
1461 if (bs->dev_ops && bs->dev_ops->is_tray_open) {
1462 return bs->dev_ops->is_tray_open(bs->dev_opaque);
1463 }
1464 return false;
1465}
1466
Markus Armbruster145feb12011-08-03 15:07:42 +02001467static void bdrv_dev_resize_cb(BlockDriverState *bs)
1468{
1469 if (bs->dev_ops && bs->dev_ops->resize_cb) {
1470 bs->dev_ops->resize_cb(bs->dev_opaque);
Markus Armbruster0e49de52011-08-03 15:07:41 +02001471 }
1472}
1473
Markus Armbrusterf1076392011-09-06 18:58:46 +02001474bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
1475{
1476 if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
1477 return bs->dev_ops->is_medium_locked(bs->dev_opaque);
1478 }
1479 return false;
1480}
1481
aliguorie97fc192009-04-21 23:11:50 +00001482/*
1483 * Run consistency checks on an image
1484 *
Kevin Wolfe076f332010-06-29 11:43:13 +02001485 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02001486 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02001487 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00001488 */
Kevin Wolf4534ff52012-05-11 16:07:02 +02001489int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00001490{
1491 if (bs->drv->bdrv_check == NULL) {
1492 return -ENOTSUP;
1493 }
1494
Kevin Wolfe076f332010-06-29 11:43:13 +02001495 memset(res, 0, sizeof(*res));
Kevin Wolf4534ff52012-05-11 16:07:02 +02001496 return bs->drv->bdrv_check(bs, res, fix);
aliguorie97fc192009-04-21 23:11:50 +00001497}
1498
Kevin Wolf8a426612010-07-16 17:17:01 +02001499#define COMMIT_BUF_SECTORS 2048
1500
bellard33e39632003-07-06 17:15:21 +00001501/* commit COW file into the raw image */
1502int bdrv_commit(BlockDriverState *bs)
1503{
bellard19cb3732006-08-19 11:45:59 +00001504 BlockDriver *drv = bs->drv;
Kevin Wolf8a426612010-07-16 17:17:01 +02001505 int64_t sector, total_sectors;
1506 int n, ro, open_flags;
Jeff Cody0bce5972012-09-20 15:13:34 -04001507 int ret = 0;
Kevin Wolf8a426612010-07-16 17:17:01 +02001508 uint8_t *buf;
Jim Meyeringc2cba3d2012-10-04 13:09:46 +02001509 char filename[PATH_MAX];
bellard33e39632003-07-06 17:15:21 +00001510
bellard19cb3732006-08-19 11:45:59 +00001511 if (!drv)
1512 return -ENOMEDIUM;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001513
1514 if (!bs->backing_hd) {
1515 return -ENOTSUP;
bellard33e39632003-07-06 17:15:21 +00001516 }
1517
Stefan Hajnoczi2d3735d2012-01-18 14:40:41 +00001518 if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) {
1519 return -EBUSY;
1520 }
1521
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001522 ro = bs->backing_hd->read_only;
Jim Meyeringc2cba3d2012-10-04 13:09:46 +02001523 /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
1524 pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001525 open_flags = bs->backing_hd->open_flags;
1526
1527 if (ro) {
Jeff Cody0bce5972012-09-20 15:13:34 -04001528 if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
1529 return -EACCES;
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001530 }
bellard33e39632003-07-06 17:15:21 +00001531 }
bellardea2384d2004-08-01 21:59:26 +00001532
Jan Kiszka6ea44302009-11-30 18:21:19 +01001533 total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
Anthony Liguori7267c092011-08-20 22:09:37 -05001534 buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
bellardea2384d2004-08-01 21:59:26 +00001535
Kevin Wolf8a426612010-07-16 17:17:01 +02001536 for (sector = 0; sector < total_sectors; sector += n) {
Stefan Hajnoczi05c4af52011-11-14 12:44:18 +00001537 if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
Kevin Wolf8a426612010-07-16 17:17:01 +02001538
1539 if (bdrv_read(bs, sector, buf, n) != 0) {
1540 ret = -EIO;
1541 goto ro_cleanup;
1542 }
1543
1544 if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
1545 ret = -EIO;
1546 goto ro_cleanup;
1547 }
bellardea2384d2004-08-01 21:59:26 +00001548 }
1549 }
bellard95389c82005-12-18 18:28:15 +00001550
Christoph Hellwig1d449522010-01-17 12:32:30 +01001551 if (drv->bdrv_make_empty) {
1552 ret = drv->bdrv_make_empty(bs);
1553 bdrv_flush(bs);
1554 }
bellard95389c82005-12-18 18:28:15 +00001555
Christoph Hellwig3f5075a2010-01-12 13:49:23 +01001556 /*
1557 * Make sure all data we wrote to the backing device is actually
1558 * stable on disk.
1559 */
1560 if (bs->backing_hd)
1561 bdrv_flush(bs->backing_hd);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001562
1563ro_cleanup:
Anthony Liguori7267c092011-08-20 22:09:37 -05001564 g_free(buf);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001565
1566 if (ro) {
Jeff Cody0bce5972012-09-20 15:13:34 -04001567 /* ignoring error return here */
1568 bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
Naphtali Sprei4dca4b62010-02-14 13:39:18 +02001569 }
1570
Christoph Hellwig1d449522010-01-17 12:32:30 +01001571 return ret;
bellard33e39632003-07-06 17:15:21 +00001572}
1573
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001574int bdrv_commit_all(void)
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001575{
1576 BlockDriverState *bs;
1577
1578 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001579 int ret = bdrv_commit(bs);
1580 if (ret < 0) {
1581 return ret;
1582 }
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001583 }
Stefan Hajnoczie8877492012-03-05 18:10:11 +00001584 return 0;
Markus Armbruster6ab4b5a2010-06-02 18:55:18 +02001585}
1586
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001587struct BdrvTrackedRequest {
1588 BlockDriverState *bs;
1589 int64_t sector_num;
1590 int nb_sectors;
1591 bool is_write;
1592 QLIST_ENTRY(BdrvTrackedRequest) list;
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001593 Coroutine *co; /* owner, used for deadlock detection */
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001594 CoQueue wait_queue; /* coroutines blocked on this request */
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001595};
1596
1597/**
1598 * Remove an active request from the tracked requests list
1599 *
1600 * This function should be called when a tracked request is completing.
1601 */
1602static void tracked_request_end(BdrvTrackedRequest *req)
1603{
1604 QLIST_REMOVE(req, list);
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001605 qemu_co_queue_restart_all(&req->wait_queue);
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001606}
1607
1608/**
1609 * Add an active request to the tracked requests list
1610 */
1611static void tracked_request_begin(BdrvTrackedRequest *req,
1612 BlockDriverState *bs,
1613 int64_t sector_num,
1614 int nb_sectors, bool is_write)
1615{
1616 *req = (BdrvTrackedRequest){
1617 .bs = bs,
1618 .sector_num = sector_num,
1619 .nb_sectors = nb_sectors,
1620 .is_write = is_write,
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001621 .co = qemu_coroutine_self(),
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001622 };
1623
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001624 qemu_co_queue_init(&req->wait_queue);
1625
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00001626 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
1627}
1628
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001629/**
1630 * Round a region to cluster boundaries
1631 */
1632static void round_to_clusters(BlockDriverState *bs,
1633 int64_t sector_num, int nb_sectors,
1634 int64_t *cluster_sector_num,
1635 int *cluster_nb_sectors)
1636{
1637 BlockDriverInfo bdi;
1638
1639 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
1640 *cluster_sector_num = sector_num;
1641 *cluster_nb_sectors = nb_sectors;
1642 } else {
1643 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
1644 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
1645 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
1646 nb_sectors, c);
1647 }
1648}
1649
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001650static bool tracked_request_overlaps(BdrvTrackedRequest *req,
1651 int64_t sector_num, int nb_sectors) {
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001652 /* aaaa bbbb */
1653 if (sector_num >= req->sector_num + req->nb_sectors) {
1654 return false;
1655 }
1656 /* bbbb aaaa */
1657 if (req->sector_num >= sector_num + nb_sectors) {
1658 return false;
1659 }
1660 return true;
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001661}
1662
1663static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs,
1664 int64_t sector_num, int nb_sectors)
1665{
1666 BdrvTrackedRequest *req;
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001667 int64_t cluster_sector_num;
1668 int cluster_nb_sectors;
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001669 bool retry;
1670
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001671 /* If we touch the same cluster it counts as an overlap. This guarantees
1672 * that allocating writes will be serialized and not race with each other
1673 * for the same cluster. For example, in copy-on-read it ensures that the
1674 * CoR read and write operations are atomic and guest writes cannot
1675 * interleave between them.
1676 */
1677 round_to_clusters(bs, sector_num, nb_sectors,
1678 &cluster_sector_num, &cluster_nb_sectors);
1679
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001680 do {
1681 retry = false;
1682 QLIST_FOREACH(req, &bs->tracked_requests, list) {
Stefan Hajnoczid83947a2011-11-23 11:47:56 +00001683 if (tracked_request_overlaps(req, cluster_sector_num,
1684 cluster_nb_sectors)) {
Stefan Hajnoczi5f8b6492011-11-30 12:23:42 +00001685 /* Hitting this means there was a reentrant request, for
1686 * example, a block driver issuing nested requests. This must
1687 * never happen since it means deadlock.
1688 */
1689 assert(qemu_coroutine_self() != req->co);
1690
Stefan Hajnoczif4658282011-11-17 13:40:29 +00001691 qemu_co_queue_wait(&req->wait_queue);
1692 retry = true;
1693 break;
1694 }
1695 }
1696 } while (retry);
1697}
1698
Kevin Wolf756e6732010-01-12 12:55:17 +01001699/*
1700 * Return values:
1701 * 0 - success
1702 * -EINVAL - backing format specified, but no file
1703 * -ENOSPC - can't update the backing file because no space is left in the
1704 * image file header
1705 * -ENOTSUP - format driver doesn't support changing the backing file
1706 */
1707int bdrv_change_backing_file(BlockDriverState *bs,
1708 const char *backing_file, const char *backing_fmt)
1709{
1710 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02001711 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01001712
Paolo Bonzini5f377792012-04-12 14:01:01 +02001713 /* Backing file format doesn't make sense without a backing file */
1714 if (backing_fmt && !backing_file) {
1715 return -EINVAL;
1716 }
1717
Kevin Wolf756e6732010-01-12 12:55:17 +01001718 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02001719 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01001720 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02001721 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01001722 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02001723
1724 if (ret == 0) {
1725 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
1726 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
1727 }
1728 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01001729}
1730
Jeff Cody6ebdcee2012-09-27 13:29:12 -04001731/*
1732 * Finds the image layer in the chain that has 'bs' as its backing file.
1733 *
1734 * active is the current topmost image.
1735 *
1736 * Returns NULL if bs is not found in active's image chain,
1737 * or if active == bs.
1738 */
1739BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
1740 BlockDriverState *bs)
1741{
1742 BlockDriverState *overlay = NULL;
1743 BlockDriverState *intermediate;
1744
1745 assert(active != NULL);
1746 assert(bs != NULL);
1747
1748 /* if bs is the same as active, then by definition it has no overlay
1749 */
1750 if (active == bs) {
1751 return NULL;
1752 }
1753
1754 intermediate = active;
1755 while (intermediate->backing_hd) {
1756 if (intermediate->backing_hd == bs) {
1757 overlay = intermediate;
1758 break;
1759 }
1760 intermediate = intermediate->backing_hd;
1761 }
1762
1763 return overlay;
1764}
1765
1766typedef struct BlkIntermediateStates {
1767 BlockDriverState *bs;
1768 QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
1769} BlkIntermediateStates;
1770
1771
1772/*
1773 * Drops images above 'base' up to and including 'top', and sets the image
1774 * above 'top' to have base as its backing file.
1775 *
1776 * Requires that the overlay to 'top' is opened r/w, so that the backing file
1777 * information in 'bs' can be properly updated.
1778 *
1779 * E.g., this will convert the following chain:
1780 * bottom <- base <- intermediate <- top <- active
1781 *
1782 * to
1783 *
1784 * bottom <- base <- active
1785 *
1786 * It is allowed for bottom==base, in which case it converts:
1787 *
1788 * base <- intermediate <- top <- active
1789 *
1790 * to
1791 *
1792 * base <- active
1793 *
1794 * Error conditions:
1795 * if active == top, that is considered an error
1796 *
1797 */
1798int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
1799 BlockDriverState *base)
1800{
1801 BlockDriverState *intermediate;
1802 BlockDriverState *base_bs = NULL;
1803 BlockDriverState *new_top_bs = NULL;
1804 BlkIntermediateStates *intermediate_state, *next;
1805 int ret = -EIO;
1806
1807 QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
1808 QSIMPLEQ_INIT(&states_to_delete);
1809
1810 if (!top->drv || !base->drv) {
1811 goto exit;
1812 }
1813
1814 new_top_bs = bdrv_find_overlay(active, top);
1815
1816 if (new_top_bs == NULL) {
1817 /* we could not find the image above 'top', this is an error */
1818 goto exit;
1819 }
1820
1821 /* special case of new_top_bs->backing_hd already pointing to base - nothing
1822 * to do, no intermediate images */
1823 if (new_top_bs->backing_hd == base) {
1824 ret = 0;
1825 goto exit;
1826 }
1827
1828 intermediate = top;
1829
1830 /* now we will go down through the list, and add each BDS we find
1831 * into our deletion queue, until we hit the 'base'
1832 */
1833 while (intermediate) {
1834 intermediate_state = g_malloc0(sizeof(BlkIntermediateStates));
1835 intermediate_state->bs = intermediate;
1836 QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
1837
1838 if (intermediate->backing_hd == base) {
1839 base_bs = intermediate->backing_hd;
1840 break;
1841 }
1842 intermediate = intermediate->backing_hd;
1843 }
1844 if (base_bs == NULL) {
1845 /* something went wrong, we did not end at the base. safely
1846 * unravel everything, and exit with error */
1847 goto exit;
1848 }
1849
1850 /* success - we can delete the intermediate states, and link top->base */
1851 ret = bdrv_change_backing_file(new_top_bs, base_bs->filename,
1852 base_bs->drv ? base_bs->drv->format_name : "");
1853 if (ret) {
1854 goto exit;
1855 }
1856 new_top_bs->backing_hd = base_bs;
1857
1858
1859 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1860 /* so that bdrv_close() does not recursively close the chain */
1861 intermediate_state->bs->backing_hd = NULL;
1862 bdrv_delete(intermediate_state->bs);
1863 }
1864 ret = 0;
1865
1866exit:
1867 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1868 g_free(intermediate_state);
1869 }
1870 return ret;
1871}
1872
1873
aliguori71d07702009-03-03 17:37:16 +00001874static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
1875 size_t size)
1876{
1877 int64_t len;
1878
1879 if (!bdrv_is_inserted(bs))
1880 return -ENOMEDIUM;
1881
1882 if (bs->growable)
1883 return 0;
1884
1885 len = bdrv_getlength(bs);
1886
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02001887 if (offset < 0)
1888 return -EIO;
1889
1890 if ((offset > len) || (len - offset < size))
aliguori71d07702009-03-03 17:37:16 +00001891 return -EIO;
1892
1893 return 0;
1894}
1895
1896static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
1897 int nb_sectors)
1898{
Jes Sorenseneb5a3162010-05-27 16:20:31 +02001899 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
1900 nb_sectors * BDRV_SECTOR_SIZE);
aliguori71d07702009-03-03 17:37:16 +00001901}
1902
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001903typedef struct RwCo {
1904 BlockDriverState *bs;
1905 int64_t sector_num;
1906 int nb_sectors;
1907 QEMUIOVector *qiov;
1908 bool is_write;
1909 int ret;
1910} RwCo;
1911
1912static void coroutine_fn bdrv_rw_co_entry(void *opaque)
1913{
1914 RwCo *rwco = opaque;
1915
1916 if (!rwco->is_write) {
1917 rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00001918 rwco->nb_sectors, rwco->qiov, 0);
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001919 } else {
1920 rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00001921 rwco->nb_sectors, rwco->qiov, 0);
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001922 }
1923}
1924
1925/*
1926 * Process a synchronous request using coroutines
1927 */
1928static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
1929 int nb_sectors, bool is_write)
1930{
1931 QEMUIOVector qiov;
1932 struct iovec iov = {
1933 .iov_base = (void *)buf,
1934 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
1935 };
1936 Coroutine *co;
1937 RwCo rwco = {
1938 .bs = bs,
1939 .sector_num = sector_num,
1940 .nb_sectors = nb_sectors,
1941 .qiov = &qiov,
1942 .is_write = is_write,
1943 .ret = NOT_DONE,
1944 };
1945
1946 qemu_iovec_init_external(&qiov, &iov, 1);
1947
Zhi Yong Wu498e3862012-04-02 18:59:34 +08001948 /**
1949 * In sync call context, when the vcpu is blocked, this throttling timer
1950 * will not fire; so the I/O throttling function has to be disabled here
1951 * if it has been enabled.
1952 */
1953 if (bs->io_limits_enabled) {
1954 fprintf(stderr, "Disabling I/O throttling on '%s' due "
1955 "to synchronous I/O.\n", bdrv_get_device_name(bs));
1956 bdrv_io_limits_disable(bs);
1957 }
1958
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001959 if (qemu_in_coroutine()) {
1960 /* Fast-path if already in coroutine context */
1961 bdrv_rw_co_entry(&rwco);
1962 } else {
1963 co = qemu_coroutine_create(bdrv_rw_co_entry);
1964 qemu_coroutine_enter(co, &rwco);
1965 while (rwco.ret == NOT_DONE) {
1966 qemu_aio_wait();
1967 }
1968 }
1969 return rwco.ret;
1970}
1971
bellard19cb3732006-08-19 11:45:59 +00001972/* return < 0 if error. See bdrv_write() for the return codes */
ths5fafdf22007-09-16 21:08:06 +00001973int bdrv_read(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +00001974 uint8_t *buf, int nb_sectors)
1975{
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01001976 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false);
bellardfc01f7e2003-06-30 10:03:06 +00001977}
1978
Markus Armbruster07d27a42012-06-29 17:34:29 +02001979/* Just like bdrv_read(), but with I/O throttling temporarily disabled */
1980int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
1981 uint8_t *buf, int nb_sectors)
1982{
1983 bool enabled;
1984 int ret;
1985
1986 enabled = bs->io_limits_enabled;
1987 bs->io_limits_enabled = false;
1988 ret = bdrv_read(bs, 0, buf, 1);
1989 bs->io_limits_enabled = enabled;
1990 return ret;
1991}
1992
Paolo Bonzini71df14f2012-04-12 14:01:04 +02001993#define BITS_PER_LONG (sizeof(unsigned long) * 8)
1994
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02001995static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
Jan Kiszkaa55eb922009-11-30 18:21:19 +01001996 int nb_sectors, int dirty)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02001997{
1998 int64_t start, end;
Jan Kiszkac6d22832009-11-30 18:21:20 +01001999 unsigned long val, idx, bit;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002000
Jan Kiszka6ea44302009-11-30 18:21:19 +01002001 start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkac6d22832009-11-30 18:21:20 +01002002 end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002003
2004 for (; start <= end; start++) {
Paolo Bonzini71df14f2012-04-12 14:01:04 +02002005 idx = start / BITS_PER_LONG;
2006 bit = start % BITS_PER_LONG;
Jan Kiszkac6d22832009-11-30 18:21:20 +01002007 val = bs->dirty_bitmap[idx];
2008 if (dirty) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002009 if (!(val & (1UL << bit))) {
Liran Schouraaa0eb72010-01-26 10:31:48 +02002010 bs->dirty_count++;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002011 val |= 1UL << bit;
Liran Schouraaa0eb72010-01-26 10:31:48 +02002012 }
Jan Kiszkac6d22832009-11-30 18:21:20 +01002013 } else {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002014 if (val & (1UL << bit)) {
Liran Schouraaa0eb72010-01-26 10:31:48 +02002015 bs->dirty_count--;
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02002016 val &= ~(1UL << bit);
Liran Schouraaa0eb72010-01-26 10:31:48 +02002017 }
Jan Kiszkac6d22832009-11-30 18:21:20 +01002018 }
2019 bs->dirty_bitmap[idx] = val;
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002020 }
2021}
2022
ths5fafdf22007-09-16 21:08:06 +00002023/* Return < 0 if error. Important errors are:
bellard19cb3732006-08-19 11:45:59 +00002024 -EIO generic I/O error (may happen for all errors)
2025 -ENOMEDIUM No media inserted.
2026 -EINVAL Invalid sector number or nb_sectors
2027 -EACCES Trying to write a read-only device
2028*/
ths5fafdf22007-09-16 21:08:06 +00002029int bdrv_write(BlockDriverState *bs, int64_t sector_num,
bellardfc01f7e2003-06-30 10:03:06 +00002030 const uint8_t *buf, int nb_sectors)
2031{
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +01002032 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true);
bellard83f64092006-08-01 16:21:11 +00002033}
2034
aliguorieda578e2009-03-12 19:57:16 +00002035int bdrv_pread(BlockDriverState *bs, int64_t offset,
2036 void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00002037{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002038 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00002039 int len, nb_sectors, count;
2040 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002041 int ret;
bellard83f64092006-08-01 16:21:11 +00002042
2043 count = count1;
2044 /* first read to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002045 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00002046 if (len > count)
2047 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002048 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002049 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002050 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2051 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002052 memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
bellard83f64092006-08-01 16:21:11 +00002053 count -= len;
2054 if (count == 0)
2055 return count1;
2056 sector_num++;
2057 buf += len;
2058 }
2059
2060 /* read the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002061 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002062 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002063 if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
2064 return ret;
bellard83f64092006-08-01 16:21:11 +00002065 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002066 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002067 buf += len;
2068 count -= len;
2069 }
2070
2071 /* add data from the last sector */
2072 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002073 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2074 return ret;
bellard83f64092006-08-01 16:21:11 +00002075 memcpy(buf, tmp_buf, count);
2076 }
2077 return count1;
2078}
2079
aliguorieda578e2009-03-12 19:57:16 +00002080int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
2081 const void *buf, int count1)
bellard83f64092006-08-01 16:21:11 +00002082{
Jan Kiszka6ea44302009-11-30 18:21:19 +01002083 uint8_t tmp_buf[BDRV_SECTOR_SIZE];
bellard83f64092006-08-01 16:21:11 +00002084 int len, nb_sectors, count;
2085 int64_t sector_num;
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002086 int ret;
bellard83f64092006-08-01 16:21:11 +00002087
2088 count = count1;
2089 /* first write to align to sector start */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002090 len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
bellard83f64092006-08-01 16:21:11 +00002091 if (len > count)
2092 len = count;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002093 sector_num = offset >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002094 if (len > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002095 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2096 return ret;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002097 memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002098 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
2099 return ret;
bellard83f64092006-08-01 16:21:11 +00002100 count -= len;
2101 if (count == 0)
2102 return count1;
2103 sector_num++;
2104 buf += len;
2105 }
2106
2107 /* write the sectors "in place" */
Jan Kiszka6ea44302009-11-30 18:21:19 +01002108 nb_sectors = count >> BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002109 if (nb_sectors > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002110 if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
2111 return ret;
bellard83f64092006-08-01 16:21:11 +00002112 sector_num += nb_sectors;
Jan Kiszka6ea44302009-11-30 18:21:19 +01002113 len = nb_sectors << BDRV_SECTOR_BITS;
bellard83f64092006-08-01 16:21:11 +00002114 buf += len;
2115 count -= len;
2116 }
2117
2118 /* add data from the last sector */
2119 if (count > 0) {
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002120 if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
2121 return ret;
bellard83f64092006-08-01 16:21:11 +00002122 memcpy(tmp_buf, buf, count);
Kevin Wolf9a8c4cc2010-01-20 15:03:02 +01002123 if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
2124 return ret;
bellard83f64092006-08-01 16:21:11 +00002125 }
2126 return count1;
2127}
bellard83f64092006-08-01 16:21:11 +00002128
Kevin Wolff08145f2010-06-16 16:38:15 +02002129/*
2130 * Writes to the file and ensures that no writes are reordered across this
2131 * request (acts as a barrier)
2132 *
2133 * Returns 0 on success, -errno in error cases.
2134 */
2135int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2136 const void *buf, int count)
2137{
2138 int ret;
2139
2140 ret = bdrv_pwrite(bs, offset, buf, count);
2141 if (ret < 0) {
2142 return ret;
2143 }
2144
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002145 /* No flush needed for cache modes that already do it */
2146 if (bs->enable_write_cache) {
Kevin Wolff08145f2010-06-16 16:38:15 +02002147 bdrv_flush(bs);
2148 }
2149
2150 return 0;
2151}
2152
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002153static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
Stefan Hajnocziab185922011-11-17 13:40:31 +00002154 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2155{
2156 /* Perform I/O through a temporary buffer so that users who scribble over
2157 * their read buffer while the operation is in progress do not end up
2158 * modifying the image file. This is critical for zero-copy guest I/O
2159 * where anything might happen inside guest memory.
2160 */
2161 void *bounce_buffer;
2162
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002163 BlockDriver *drv = bs->drv;
Stefan Hajnocziab185922011-11-17 13:40:31 +00002164 struct iovec iov;
2165 QEMUIOVector bounce_qiov;
2166 int64_t cluster_sector_num;
2167 int cluster_nb_sectors;
2168 size_t skip_bytes;
2169 int ret;
2170
2171 /* Cover entire cluster so no additional backing file I/O is required when
2172 * allocating cluster in the image file.
2173 */
2174 round_to_clusters(bs, sector_num, nb_sectors,
2175 &cluster_sector_num, &cluster_nb_sectors);
2176
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002177 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2178 cluster_sector_num, cluster_nb_sectors);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002179
2180 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2181 iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
2182 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2183
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002184 ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2185 &bounce_qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002186 if (ret < 0) {
2187 goto err;
2188 }
2189
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002190 if (drv->bdrv_co_write_zeroes &&
2191 buffer_is_zero(bounce_buffer, iov.iov_len)) {
Kevin Wolf621f0582012-03-20 15:12:58 +01002192 ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
2193 cluster_nb_sectors);
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002194 } else {
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002195 /* This does not change the data on the disk, it is not necessary
2196 * to flush even in cache=writethrough mode.
2197 */
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002198 ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
Stefan Hajnocziab185922011-11-17 13:40:31 +00002199 &bounce_qiov);
Stefan Hajnoczi79c053b2012-02-07 13:27:26 +00002200 }
2201
Stefan Hajnocziab185922011-11-17 13:40:31 +00002202 if (ret < 0) {
2203 /* It might be okay to ignore write errors for guest requests. If this
2204 * is a deliberate copy-on-read then we don't want to ignore the error.
2205 * Simply report it in all cases.
2206 */
2207 goto err;
2208 }
2209
2210 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
Michael Tokarev03396142012-06-07 20:17:55 +04002211 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2212 nb_sectors * BDRV_SECTOR_SIZE);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002213
2214err:
2215 qemu_vfree(bounce_buffer);
2216 return ret;
2217}
2218
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002219/*
2220 * Handle a read request in coroutine context
2221 */
2222static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002223 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2224 BdrvRequestFlags flags)
Kevin Wolfda1fa912011-07-14 17:27:13 +02002225{
2226 BlockDriver *drv = bs->drv;
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002227 BdrvTrackedRequest req;
2228 int ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002229
Kevin Wolfda1fa912011-07-14 17:27:13 +02002230 if (!drv) {
2231 return -ENOMEDIUM;
2232 }
2233 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2234 return -EIO;
2235 }
2236
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08002237 /* throttling disk read I/O */
2238 if (bs->io_limits_enabled) {
2239 bdrv_io_limits_intercept(bs, false, nb_sectors);
2240 }
2241
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002242 if (bs->copy_on_read) {
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002243 flags |= BDRV_REQ_COPY_ON_READ;
2244 }
2245 if (flags & BDRV_REQ_COPY_ON_READ) {
2246 bs->copy_on_read_in_flight++;
2247 }
2248
2249 if (bs->copy_on_read_in_flight) {
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002250 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2251 }
2252
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002253 tracked_request_begin(&req, bs, sector_num, nb_sectors, false);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002254
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002255 if (flags & BDRV_REQ_COPY_ON_READ) {
Stefan Hajnocziab185922011-11-17 13:40:31 +00002256 int pnum;
2257
2258 ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum);
2259 if (ret < 0) {
2260 goto out;
2261 }
2262
2263 if (!ret || pnum != nb_sectors) {
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002264 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002265 goto out;
2266 }
2267 }
2268
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002269 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
Stefan Hajnocziab185922011-11-17 13:40:31 +00002270
2271out:
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002272 tracked_request_end(&req);
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002273
2274 if (flags & BDRV_REQ_COPY_ON_READ) {
2275 bs->copy_on_read_in_flight--;
2276 }
2277
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002278 return ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002279}
2280
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002281int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
Kevin Wolfda1fa912011-07-14 17:27:13 +02002282 int nb_sectors, QEMUIOVector *qiov)
2283{
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002284 trace_bdrv_co_readv(bs, sector_num, nb_sectors);
Kevin Wolfda1fa912011-07-14 17:27:13 +02002285
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002286 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
2287}
2288
2289int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
2290 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2291{
2292 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
2293
2294 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
2295 BDRV_REQ_COPY_ON_READ);
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002296}
2297
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002298static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
2299 int64_t sector_num, int nb_sectors)
2300{
2301 BlockDriver *drv = bs->drv;
2302 QEMUIOVector qiov;
2303 struct iovec iov;
2304 int ret;
2305
Kevin Wolf621f0582012-03-20 15:12:58 +01002306 /* TODO Emulate only part of misaligned requests instead of letting block
2307 * drivers return -ENOTSUP and emulate everything */
2308
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002309 /* First try the efficient write zeroes operation */
2310 if (drv->bdrv_co_write_zeroes) {
Kevin Wolf621f0582012-03-20 15:12:58 +01002311 ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2312 if (ret != -ENOTSUP) {
2313 return ret;
2314 }
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002315 }
2316
2317 /* Fall back to bounce buffer if write zeroes is unsupported */
2318 iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE;
2319 iov.iov_base = qemu_blockalign(bs, iov.iov_len);
2320 memset(iov.iov_base, 0, iov.iov_len);
2321 qemu_iovec_init_external(&qiov, &iov, 1);
2322
2323 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov);
2324
2325 qemu_vfree(iov.iov_base);
2326 return ret;
2327}
2328
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002329/*
2330 * Handle a write request in coroutine context
2331 */
2332static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002333 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2334 BdrvRequestFlags flags)
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002335{
2336 BlockDriver *drv = bs->drv;
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002337 BdrvTrackedRequest req;
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002338 int ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002339
2340 if (!bs->drv) {
2341 return -ENOMEDIUM;
2342 }
2343 if (bs->read_only) {
2344 return -EACCES;
2345 }
2346 if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2347 return -EIO;
2348 }
2349
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08002350 /* throttling disk write I/O */
2351 if (bs->io_limits_enabled) {
2352 bdrv_io_limits_intercept(bs, true, nb_sectors);
2353 }
2354
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00002355 if (bs->copy_on_read_in_flight) {
Stefan Hajnoczif4658282011-11-17 13:40:29 +00002356 wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2357 }
2358
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002359 tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
2360
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002361 if (flags & BDRV_REQ_ZERO_WRITE) {
2362 ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors);
2363 } else {
2364 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
2365 }
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002366
Paolo Bonzinif05fa4a2012-06-06 00:04:49 +02002367 if (ret == 0 && !bs->enable_write_cache) {
2368 ret = bdrv_co_flush(bs);
2369 }
2370
Kevin Wolfda1fa912011-07-14 17:27:13 +02002371 if (bs->dirty_bitmap) {
2372 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2373 }
2374
2375 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2376 bs->wr_highest_sector = sector_num + nb_sectors - 1;
2377 }
2378
Stefan Hajnoczidbffbdc2011-11-17 13:40:27 +00002379 tracked_request_end(&req);
2380
Stefan Hajnoczi6b7cb242011-10-13 13:08:24 +01002381 return ret;
Kevin Wolfda1fa912011-07-14 17:27:13 +02002382}
2383
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002384int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
2385 int nb_sectors, QEMUIOVector *qiov)
2386{
2387 trace_bdrv_co_writev(bs, sector_num, nb_sectors);
2388
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00002389 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
2390}
2391
2392int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
2393 int64_t sector_num, int nb_sectors)
2394{
2395 trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2396
2397 return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
2398 BDRV_REQ_ZERO_WRITE);
Stefan Hajnoczic5fbe572011-10-05 17:17:03 +01002399}
2400
bellard83f64092006-08-01 16:21:11 +00002401/**
bellard83f64092006-08-01 16:21:11 +00002402 * Truncate file to 'offset' bytes (needed only for file protocols)
2403 */
2404int bdrv_truncate(BlockDriverState *bs, int64_t offset)
2405{
2406 BlockDriver *drv = bs->drv;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002407 int ret;
bellard83f64092006-08-01 16:21:11 +00002408 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002409 return -ENOMEDIUM;
bellard83f64092006-08-01 16:21:11 +00002410 if (!drv->bdrv_truncate)
2411 return -ENOTSUP;
Naphtali Sprei59f26892009-10-26 16:25:16 +02002412 if (bs->read_only)
2413 return -EACCES;
Marcelo Tosatti85916752011-01-26 12:12:35 -02002414 if (bdrv_in_use(bs))
2415 return -EBUSY;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002416 ret = drv->bdrv_truncate(bs, offset);
2417 if (ret == 0) {
2418 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
Markus Armbruster145feb12011-08-03 15:07:42 +02002419 bdrv_dev_resize_cb(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002420 }
2421 return ret;
bellard83f64092006-08-01 16:21:11 +00002422}
2423
2424/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08002425 * Length of a allocated file in bytes. Sparse files are counted by actual
2426 * allocated space. Return < 0 if error or unknown.
2427 */
2428int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
2429{
2430 BlockDriver *drv = bs->drv;
2431 if (!drv) {
2432 return -ENOMEDIUM;
2433 }
2434 if (drv->bdrv_get_allocated_file_size) {
2435 return drv->bdrv_get_allocated_file_size(bs);
2436 }
2437 if (bs->file) {
2438 return bdrv_get_allocated_file_size(bs->file);
2439 }
2440 return -ENOTSUP;
2441}
2442
2443/**
bellard83f64092006-08-01 16:21:11 +00002444 * Length of a file in bytes. Return < 0 if error or unknown.
2445 */
2446int64_t bdrv_getlength(BlockDriverState *bs)
2447{
2448 BlockDriver *drv = bs->drv;
2449 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002450 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01002451
Markus Armbruster2c6942f2011-09-06 18:58:51 +02002452 if (bs->growable || bdrv_dev_has_removable_media(bs)) {
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01002453 if (drv->bdrv_getlength) {
2454 return drv->bdrv_getlength(bs);
2455 }
bellard83f64092006-08-01 16:21:11 +00002456 }
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01002457 return bs->total_sectors * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00002458}
2459
bellard19cb3732006-08-19 11:45:59 +00002460/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00002461void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00002462{
bellard19cb3732006-08-19 11:45:59 +00002463 int64_t length;
2464 length = bdrv_getlength(bs);
2465 if (length < 0)
2466 length = 0;
2467 else
Jan Kiszka6ea44302009-11-30 18:21:19 +01002468 length = length >> BDRV_SECTOR_BITS;
bellard19cb3732006-08-19 11:45:59 +00002469 *nb_sectors_ptr = length;
bellardfc01f7e2003-06-30 10:03:06 +00002470}
bellardcf989512004-02-16 21:56:36 +00002471
Zhi Yong Wu0563e192011-11-03 16:57:25 +08002472/* throttling disk io limits */
2473void bdrv_set_io_limits(BlockDriverState *bs,
2474 BlockIOLimit *io_limits)
2475{
2476 bs->io_limits = *io_limits;
2477 bs->io_limits_enabled = bdrv_io_limits_enabled(bs);
2478}
2479
Paolo Bonziniff06f5f2012-09-28 17:22:54 +02002480void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
2481 BlockdevOnError on_write_error)
Markus Armbrusterabd7f682010-06-02 18:55:17 +02002482{
2483 bs->on_read_error = on_read_error;
2484 bs->on_write_error = on_write_error;
2485}
2486
Paolo Bonzini1ceee0d2012-09-28 17:22:56 +02002487BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
Markus Armbrusterabd7f682010-06-02 18:55:17 +02002488{
2489 return is_read ? bs->on_read_error : bs->on_write_error;
2490}
2491
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02002492BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error)
2493{
2494 BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error;
2495
2496 switch (on_err) {
2497 case BLOCKDEV_ON_ERROR_ENOSPC:
2498 return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT;
2499 case BLOCKDEV_ON_ERROR_STOP:
2500 return BDRV_ACTION_STOP;
2501 case BLOCKDEV_ON_ERROR_REPORT:
2502 return BDRV_ACTION_REPORT;
2503 case BLOCKDEV_ON_ERROR_IGNORE:
2504 return BDRV_ACTION_IGNORE;
2505 default:
2506 abort();
2507 }
2508}
2509
2510/* This is done by device models because, while the block layer knows
2511 * about the error, it does not know whether an operation comes from
2512 * the device or the block layer (from a job, for example).
2513 */
2514void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
2515 bool is_read, int error)
2516{
2517 assert(error >= 0);
Paolo Bonzini32c81a42012-09-28 17:22:58 +02002518 bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read);
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02002519 if (action == BDRV_ACTION_STOP) {
2520 vm_stop(RUN_STATE_IO_ERROR);
2521 bdrv_iostatus_set_err(bs, error);
2522 }
2523}
2524
bellardb3380822004-03-14 21:38:54 +00002525int bdrv_is_read_only(BlockDriverState *bs)
2526{
2527 return bs->read_only;
2528}
2529
ths985a03b2007-12-24 16:10:43 +00002530int bdrv_is_sg(BlockDriverState *bs)
2531{
2532 return bs->sg;
2533}
2534
Christoph Hellwige900a7b2009-09-04 19:01:15 +02002535int bdrv_enable_write_cache(BlockDriverState *bs)
2536{
2537 return bs->enable_write_cache;
2538}
2539
Paolo Bonzini425b0142012-06-06 00:04:52 +02002540void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
2541{
2542 bs->enable_write_cache = wce;
Jeff Cody55b110f2012-09-20 15:13:18 -04002543
2544 /* so a reopen() will preserve wce */
2545 if (wce) {
2546 bs->open_flags |= BDRV_O_CACHE_WB;
2547 } else {
2548 bs->open_flags &= ~BDRV_O_CACHE_WB;
2549 }
Paolo Bonzini425b0142012-06-06 00:04:52 +02002550}
2551
bellardea2384d2004-08-01 21:59:26 +00002552int bdrv_is_encrypted(BlockDriverState *bs)
2553{
2554 if (bs->backing_hd && bs->backing_hd->encrypted)
2555 return 1;
2556 return bs->encrypted;
2557}
2558
aliguoric0f4ce72009-03-05 23:01:01 +00002559int bdrv_key_required(BlockDriverState *bs)
2560{
2561 BlockDriverState *backing_hd = bs->backing_hd;
2562
2563 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
2564 return 1;
2565 return (bs->encrypted && !bs->valid_key);
2566}
2567
bellardea2384d2004-08-01 21:59:26 +00002568int bdrv_set_key(BlockDriverState *bs, const char *key)
2569{
2570 int ret;
2571 if (bs->backing_hd && bs->backing_hd->encrypted) {
2572 ret = bdrv_set_key(bs->backing_hd, key);
2573 if (ret < 0)
2574 return ret;
2575 if (!bs->encrypted)
2576 return 0;
2577 }
Shahar Havivifd04a2a2010-03-06 00:26:13 +02002578 if (!bs->encrypted) {
2579 return -EINVAL;
2580 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2581 return -ENOMEDIUM;
2582 }
aliguoric0f4ce72009-03-05 23:01:01 +00002583 ret = bs->drv->bdrv_set_key(bs, key);
aliguoribb5fc202009-03-05 23:01:15 +00002584 if (ret < 0) {
2585 bs->valid_key = 0;
2586 } else if (!bs->valid_key) {
2587 bs->valid_key = 1;
2588 /* call the change callback now, we skipped it on open */
Markus Armbruster7d4b4ba2011-09-06 18:58:59 +02002589 bdrv_dev_change_media_cb(bs, true);
aliguoribb5fc202009-03-05 23:01:15 +00002590 }
aliguoric0f4ce72009-03-05 23:01:01 +00002591 return ret;
bellardea2384d2004-08-01 21:59:26 +00002592}
2593
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02002594const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00002595{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02002596 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00002597}
2598
ths5fafdf22007-09-16 21:08:06 +00002599void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00002600 void *opaque)
2601{
2602 BlockDriver *drv;
2603
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01002604 QLIST_FOREACH(drv, &bdrv_drivers, list) {
bellardea2384d2004-08-01 21:59:26 +00002605 it(opaque, drv->format_name);
2606 }
2607}
2608
bellardb3380822004-03-14 21:38:54 +00002609BlockDriverState *bdrv_find(const char *name)
2610{
2611 BlockDriverState *bs;
2612
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002613 QTAILQ_FOREACH(bs, &bdrv_states, list) {
2614 if (!strcmp(name, bs->device_name)) {
bellardb3380822004-03-14 21:38:54 +00002615 return bs;
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002616 }
bellardb3380822004-03-14 21:38:54 +00002617 }
2618 return NULL;
2619}
2620
Markus Armbruster2f399b02010-06-02 18:55:20 +02002621BlockDriverState *bdrv_next(BlockDriverState *bs)
2622{
2623 if (!bs) {
2624 return QTAILQ_FIRST(&bdrv_states);
2625 }
2626 return QTAILQ_NEXT(bs, list);
2627}
2628
aliguori51de9762009-03-05 23:00:43 +00002629void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
bellard81d09122004-07-14 17:21:37 +00002630{
2631 BlockDriverState *bs;
2632
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002633 QTAILQ_FOREACH(bs, &bdrv_states, list) {
aliguori51de9762009-03-05 23:00:43 +00002634 it(opaque, bs);
bellard81d09122004-07-14 17:21:37 +00002635 }
2636}
2637
bellardea2384d2004-08-01 21:59:26 +00002638const char *bdrv_get_device_name(BlockDriverState *bs)
2639{
2640 return bs->device_name;
2641}
2642
Markus Armbrusterc8433282012-06-05 16:49:24 +02002643int bdrv_get_flags(BlockDriverState *bs)
2644{
2645 return bs->open_flags;
2646}
2647
aliguoric6ca28d2008-10-06 13:55:43 +00002648void bdrv_flush_all(void)
2649{
2650 BlockDriverState *bs;
2651
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002652 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01002653 bdrv_flush(bs);
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002654 }
aliguoric6ca28d2008-10-06 13:55:43 +00002655}
2656
Kevin Wolff2feebb2010-04-14 17:30:35 +02002657int bdrv_has_zero_init(BlockDriverState *bs)
2658{
2659 assert(bs->drv);
2660
Kevin Wolf336c1c12010-07-28 11:26:29 +02002661 if (bs->drv->bdrv_has_zero_init) {
2662 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02002663 }
2664
2665 return 1;
2666}
2667
Stefan Hajnoczi376ae3f2011-11-14 12:44:19 +00002668typedef struct BdrvCoIsAllocatedData {
2669 BlockDriverState *bs;
2670 int64_t sector_num;
2671 int nb_sectors;
2672 int *pnum;
2673 int ret;
2674 bool done;
2675} BdrvCoIsAllocatedData;
2676
thsf58c7b32008-06-05 21:53:49 +00002677/*
2678 * Returns true iff the specified sector is present in the disk image. Drivers
2679 * not implementing the functionality are assumed to not support backing files,
2680 * hence all their sectors are reported as allocated.
2681 *
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002682 * If 'sector_num' is beyond the end of the disk image the return value is 0
2683 * and 'pnum' is set to 0.
2684 *
thsf58c7b32008-06-05 21:53:49 +00002685 * 'pnum' is set to the number of sectors (including and immediately following
2686 * the specified sector) that are known to be in the same
2687 * allocated/unallocated state.
2688 *
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002689 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
2690 * beyond the end of the disk image it will be clamped.
thsf58c7b32008-06-05 21:53:49 +00002691 */
Stefan Hajnoczi060f51c2011-11-14 12:44:26 +00002692int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
2693 int nb_sectors, int *pnum)
thsf58c7b32008-06-05 21:53:49 +00002694{
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002695 int64_t n;
2696
2697 if (sector_num >= bs->total_sectors) {
2698 *pnum = 0;
2699 return 0;
2700 }
2701
2702 n = bs->total_sectors - sector_num;
2703 if (n < nb_sectors) {
2704 nb_sectors = n;
2705 }
2706
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002707 if (!bs->drv->bdrv_co_is_allocated) {
Stefan Hajnoczibd9533e2011-11-29 13:49:51 +00002708 *pnum = nb_sectors;
thsf58c7b32008-06-05 21:53:49 +00002709 return 1;
2710 }
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002711
Stefan Hajnoczi060f51c2011-11-14 12:44:26 +00002712 return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum);
2713}
2714
2715/* Coroutine wrapper for bdrv_is_allocated() */
2716static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque)
2717{
2718 BdrvCoIsAllocatedData *data = opaque;
2719 BlockDriverState *bs = data->bs;
2720
2721 data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors,
2722 data->pnum);
2723 data->done = true;
2724}
2725
2726/*
2727 * Synchronous wrapper around bdrv_co_is_allocated().
2728 *
2729 * See bdrv_co_is_allocated() for details.
2730 */
2731int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
2732 int *pnum)
2733{
Stefan Hajnoczi6aebab12011-11-14 12:44:25 +00002734 Coroutine *co;
2735 BdrvCoIsAllocatedData data = {
2736 .bs = bs,
2737 .sector_num = sector_num,
2738 .nb_sectors = nb_sectors,
2739 .pnum = pnum,
2740 .done = false,
2741 };
2742
2743 co = qemu_coroutine_create(bdrv_is_allocated_co_entry);
2744 qemu_coroutine_enter(co, &data);
2745 while (!data.done) {
2746 qemu_aio_wait();
2747 }
2748 return data.ret;
thsf58c7b32008-06-05 21:53:49 +00002749}
2750
Paolo Bonzini188a7bb2012-05-08 16:52:01 +02002751/*
2752 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2753 *
2754 * Return true if the given sector is allocated in any image between
2755 * BASE and TOP (inclusive). BASE can be NULL to check if the given
2756 * sector is allocated in any image of the chain. Return false otherwise.
2757 *
2758 * 'pnum' is set to the number of sectors (including and immediately following
2759 * the specified sector) that are known to be in the same
2760 * allocated/unallocated state.
2761 *
2762 */
2763int coroutine_fn bdrv_co_is_allocated_above(BlockDriverState *top,
2764 BlockDriverState *base,
2765 int64_t sector_num,
2766 int nb_sectors, int *pnum)
2767{
2768 BlockDriverState *intermediate;
2769 int ret, n = nb_sectors;
2770
2771 intermediate = top;
2772 while (intermediate && intermediate != base) {
2773 int pnum_inter;
2774 ret = bdrv_co_is_allocated(intermediate, sector_num, nb_sectors,
2775 &pnum_inter);
2776 if (ret < 0) {
2777 return ret;
2778 } else if (ret) {
2779 *pnum = pnum_inter;
2780 return 1;
2781 }
2782
2783 /*
2784 * [sector_num, nb_sectors] is unallocated on top but intermediate
2785 * might have
2786 *
2787 * [sector_num+x, nr_sectors] allocated.
2788 */
2789 if (n > pnum_inter) {
2790 n = pnum_inter;
2791 }
2792
2793 intermediate = intermediate->backing_hd;
2794 }
2795
2796 *pnum = n;
2797 return 0;
2798}
2799
Luiz Capitulinob2023812011-09-21 17:16:47 -03002800BlockInfoList *qmp_query_block(Error **errp)
bellardb3380822004-03-14 21:38:54 +00002801{
Luiz Capitulinob2023812011-09-21 17:16:47 -03002802 BlockInfoList *head = NULL, *cur_item = NULL;
bellardb3380822004-03-14 21:38:54 +00002803 BlockDriverState *bs;
2804
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002805 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinob2023812011-09-21 17:16:47 -03002806 BlockInfoList *info = g_malloc0(sizeof(*info));
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002807
Luiz Capitulinob2023812011-09-21 17:16:47 -03002808 info->value = g_malloc0(sizeof(*info->value));
2809 info->value->device = g_strdup(bs->device_name);
2810 info->value->type = g_strdup("unknown");
2811 info->value->locked = bdrv_dev_is_medium_locked(bs);
2812 info->value->removable = bdrv_dev_has_removable_media(bs);
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002813
Markus Armbrustere4def802011-09-06 18:58:53 +02002814 if (bdrv_dev_has_removable_media(bs)) {
Luiz Capitulinob2023812011-09-21 17:16:47 -03002815 info->value->has_tray_open = true;
2816 info->value->tray_open = bdrv_dev_is_tray_open(bs);
Markus Armbrustere4def802011-09-06 18:58:53 +02002817 }
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002818
2819 if (bdrv_iostatus_is_enabled(bs)) {
Luiz Capitulinob2023812011-09-21 17:16:47 -03002820 info->value->has_io_status = true;
2821 info->value->io_status = bs->iostatus;
Luiz Capitulinof04ef602011-09-26 17:43:54 -03002822 }
2823
bellard19cb3732006-08-19 11:45:59 +00002824 if (bs->drv) {
Luiz Capitulinob2023812011-09-21 17:16:47 -03002825 info->value->has_inserted = true;
2826 info->value->inserted = g_malloc0(sizeof(*info->value->inserted));
2827 info->value->inserted->file = g_strdup(bs->filename);
2828 info->value->inserted->ro = bs->read_only;
2829 info->value->inserted->drv = g_strdup(bs->drv->format_name);
2830 info->value->inserted->encrypted = bs->encrypted;
Luiz Capitulinoc75a1a82012-07-26 20:28:44 -03002831 info->value->inserted->encryption_key_missing = bdrv_key_required(bs);
Luiz Capitulinob2023812011-09-21 17:16:47 -03002832 if (bs->backing_file[0]) {
2833 info->value->inserted->has_backing_file = true;
2834 info->value->inserted->backing_file = g_strdup(bs->backing_file);
aliguori376253e2009-03-05 23:01:23 +00002835 }
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002836
Benoît Canet2e3e3312012-08-02 10:22:48 +02002837 info->value->inserted->backing_file_depth =
2838 bdrv_get_backing_file_depth(bs);
2839
Zhi Yong Wu727f0052011-11-08 13:00:31 +08002840 if (bs->io_limits_enabled) {
2841 info->value->inserted->bps =
2842 bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
2843 info->value->inserted->bps_rd =
2844 bs->io_limits.bps[BLOCK_IO_LIMIT_READ];
2845 info->value->inserted->bps_wr =
2846 bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE];
2847 info->value->inserted->iops =
2848 bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
2849 info->value->inserted->iops_rd =
2850 bs->io_limits.iops[BLOCK_IO_LIMIT_READ];
2851 info->value->inserted->iops_wr =
2852 bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE];
2853 }
bellardb3380822004-03-14 21:38:54 +00002854 }
Luiz Capitulinob2023812011-09-21 17:16:47 -03002855
2856 /* XXX: waiting for the qapi to support GSList */
2857 if (!cur_item) {
2858 head = cur_item = info;
2859 } else {
2860 cur_item->next = info;
2861 cur_item = info;
2862 }
bellardb3380822004-03-14 21:38:54 +00002863 }
Luiz Capitulinod15e5462009-12-10 17:16:06 -02002864
Luiz Capitulinob2023812011-09-21 17:16:47 -03002865 return head;
bellardb3380822004-03-14 21:38:54 +00002866}
thsa36e69d2007-12-02 05:18:19 +00002867
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002868/* Consider exposing this as a full fledged QMP command */
2869static BlockStats *qmp_query_blockstat(const BlockDriverState *bs, Error **errp)
thsa36e69d2007-12-02 05:18:19 +00002870{
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002871 BlockStats *s;
Luiz Capitulino218a5362009-12-10 17:16:07 -02002872
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002873 s = g_malloc0(sizeof(*s));
Luiz Capitulino218a5362009-12-10 17:16:07 -02002874
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002875 if (bs->device_name[0]) {
2876 s->has_device = true;
2877 s->device = g_strdup(bs->device_name);
Kevin Wolf294cc352010-04-28 14:34:01 +02002878 }
2879
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002880 s->stats = g_malloc0(sizeof(*s->stats));
2881 s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ];
2882 s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE];
2883 s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ];
2884 s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE];
2885 s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE;
2886 s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH];
2887 s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE];
2888 s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ];
2889 s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH];
2890
Kevin Wolf294cc352010-04-28 14:34:01 +02002891 if (bs->file) {
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002892 s->has_parent = true;
2893 s->parent = qmp_query_blockstat(bs->file, NULL);
Kevin Wolf294cc352010-04-28 14:34:01 +02002894 }
2895
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002896 return s;
Kevin Wolf294cc352010-04-28 14:34:01 +02002897}
2898
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002899BlockStatsList *qmp_query_blockstats(Error **errp)
Luiz Capitulino218a5362009-12-10 17:16:07 -02002900{
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002901 BlockStatsList *head = NULL, *cur_item = NULL;
thsa36e69d2007-12-02 05:18:19 +00002902 BlockDriverState *bs;
2903
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01002904 QTAILQ_FOREACH(bs, &bdrv_states, list) {
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002905 BlockStatsList *info = g_malloc0(sizeof(*info));
2906 info->value = qmp_query_blockstat(bs, NULL);
2907
2908 /* XXX: waiting for the qapi to support GSList */
2909 if (!cur_item) {
2910 head = cur_item = info;
2911 } else {
2912 cur_item->next = info;
2913 cur_item = info;
2914 }
thsa36e69d2007-12-02 05:18:19 +00002915 }
Luiz Capitulino218a5362009-12-10 17:16:07 -02002916
Luiz Capitulinof11f57e2011-09-22 15:56:36 -03002917 return head;
thsa36e69d2007-12-02 05:18:19 +00002918}
bellardea2384d2004-08-01 21:59:26 +00002919
aliguori045df332009-03-05 23:00:48 +00002920const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2921{
2922 if (bs->backing_hd && bs->backing_hd->encrypted)
2923 return bs->backing_file;
2924 else if (bs->encrypted)
2925 return bs->filename;
2926 else
2927 return NULL;
2928}
2929
ths5fafdf22007-09-16 21:08:06 +00002930void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00002931 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00002932{
Kevin Wolf3574c602011-10-26 11:02:11 +02002933 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00002934}
2935
ths5fafdf22007-09-16 21:08:06 +00002936int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
bellardfaea38e2006-08-05 21:31:00 +00002937 const uint8_t *buf, int nb_sectors)
2938{
2939 BlockDriver *drv = bs->drv;
2940 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002941 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00002942 if (!drv->bdrv_write_compressed)
2943 return -ENOTSUP;
Kevin Wolffbb7b4e2009-05-08 14:47:24 +02002944 if (bdrv_check_request(bs, sector_num, nb_sectors))
2945 return -EIO;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002946
Jan Kiszkac6d22832009-11-30 18:21:20 +01002947 if (bs->dirty_bitmap) {
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02002948 set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2949 }
Jan Kiszkaa55eb922009-11-30 18:21:19 +01002950
bellardfaea38e2006-08-05 21:31:00 +00002951 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
2952}
ths3b46e622007-09-17 08:09:54 +00002953
bellardfaea38e2006-08-05 21:31:00 +00002954int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2955{
2956 BlockDriver *drv = bs->drv;
2957 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00002958 return -ENOMEDIUM;
bellardfaea38e2006-08-05 21:31:00 +00002959 if (!drv->bdrv_get_info)
2960 return -ENOTSUP;
2961 memset(bdi, 0, sizeof(*bdi));
2962 return drv->bdrv_get_info(bs, bdi);
2963}
2964
Christoph Hellwig45566e92009-07-10 23:11:57 +02002965int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
2966 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00002967{
2968 BlockDriver *drv = bs->drv;
2969 if (!drv)
2970 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002971 if (drv->bdrv_save_vmstate)
2972 return drv->bdrv_save_vmstate(bs, buf, pos, size);
2973 if (bs->file)
2974 return bdrv_save_vmstate(bs->file, buf, pos, size);
2975 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00002976}
2977
Christoph Hellwig45566e92009-07-10 23:11:57 +02002978int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
2979 int64_t pos, int size)
aliguori178e08a2009-04-05 19:10:55 +00002980{
2981 BlockDriver *drv = bs->drv;
2982 if (!drv)
2983 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09002984 if (drv->bdrv_load_vmstate)
2985 return drv->bdrv_load_vmstate(bs, buf, pos, size);
2986 if (bs->file)
2987 return bdrv_load_vmstate(bs->file, buf, pos, size);
2988 return -ENOTSUP;
aliguori178e08a2009-04-05 19:10:55 +00002989}
2990
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01002991void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
2992{
2993 BlockDriver *drv = bs->drv;
2994
2995 if (!drv || !drv->bdrv_debug_event) {
2996 return;
2997 }
2998
Blue Swirl0ed8b6f2012-07-08 06:56:53 +00002999 drv->bdrv_debug_event(bs, event);
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01003000
3001}
3002
bellardfaea38e2006-08-05 21:31:00 +00003003/**************************************************************/
3004/* handling of snapshots */
3005
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03003006int bdrv_can_snapshot(BlockDriverState *bs)
3007{
3008 BlockDriver *drv = bs->drv;
Markus Armbruster07b70bf2011-08-03 15:08:11 +02003009 if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Miguel Di Ciurcio Filhofeeee5a2010-06-08 10:40:55 -03003010 return 0;
3011 }
3012
3013 if (!drv->bdrv_snapshot_create) {
3014 if (bs->file != NULL) {
3015 return bdrv_can_snapshot(bs->file);
3016 }
3017 return 0;
3018 }
3019
3020 return 1;
3021}
3022
Blue Swirl199630b2010-07-25 20:49:34 +00003023int bdrv_is_snapshot(BlockDriverState *bs)
3024{
3025 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
3026}
3027
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003028BlockDriverState *bdrv_snapshots(void)
3029{
3030 BlockDriverState *bs;
3031
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003032 if (bs_snapshots) {
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003033 return bs_snapshots;
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003034 }
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003035
3036 bs = NULL;
3037 while ((bs = bdrv_next(bs))) {
3038 if (bdrv_can_snapshot(bs)) {
Markus Armbruster3ac906f2010-07-01 09:30:38 +02003039 bs_snapshots = bs;
3040 return bs;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003041 }
3042 }
3043 return NULL;
Markus Armbrusterf9092b12010-06-25 10:33:39 +02003044}
3045
ths5fafdf22007-09-16 21:08:06 +00003046int bdrv_snapshot_create(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003047 QEMUSnapshotInfo *sn_info)
3048{
3049 BlockDriver *drv = bs->drv;
3050 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003051 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003052 if (drv->bdrv_snapshot_create)
3053 return drv->bdrv_snapshot_create(bs, sn_info);
3054 if (bs->file)
3055 return bdrv_snapshot_create(bs->file, sn_info);
3056 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003057}
3058
ths5fafdf22007-09-16 21:08:06 +00003059int bdrv_snapshot_goto(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003060 const char *snapshot_id)
3061{
3062 BlockDriver *drv = bs->drv;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003063 int ret, open_ret;
3064
bellardfaea38e2006-08-05 21:31:00 +00003065 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003066 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003067 if (drv->bdrv_snapshot_goto)
3068 return drv->bdrv_snapshot_goto(bs, snapshot_id);
3069
3070 if (bs->file) {
3071 drv->bdrv_close(bs);
3072 ret = bdrv_snapshot_goto(bs->file, snapshot_id);
3073 open_ret = drv->bdrv_open(bs, bs->open_flags);
3074 if (open_ret < 0) {
3075 bdrv_delete(bs->file);
3076 bs->drv = NULL;
3077 return open_ret;
3078 }
3079 return ret;
3080 }
3081
3082 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003083}
3084
3085int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
3086{
3087 BlockDriver *drv = bs->drv;
3088 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003089 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003090 if (drv->bdrv_snapshot_delete)
3091 return drv->bdrv_snapshot_delete(bs, snapshot_id);
3092 if (bs->file)
3093 return bdrv_snapshot_delete(bs->file, snapshot_id);
3094 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003095}
3096
ths5fafdf22007-09-16 21:08:06 +00003097int bdrv_snapshot_list(BlockDriverState *bs,
bellardfaea38e2006-08-05 21:31:00 +00003098 QEMUSnapshotInfo **psn_info)
3099{
3100 BlockDriver *drv = bs->drv;
3101 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00003102 return -ENOMEDIUM;
MORITA Kazutaka7cdb1f62010-05-28 11:44:58 +09003103 if (drv->bdrv_snapshot_list)
3104 return drv->bdrv_snapshot_list(bs, psn_info);
3105 if (bs->file)
3106 return bdrv_snapshot_list(bs->file, psn_info);
3107 return -ENOTSUP;
bellardfaea38e2006-08-05 21:31:00 +00003108}
3109
edison51ef6722010-09-21 19:58:41 -07003110int bdrv_snapshot_load_tmp(BlockDriverState *bs,
3111 const char *snapshot_name)
3112{
3113 BlockDriver *drv = bs->drv;
3114 if (!drv) {
3115 return -ENOMEDIUM;
3116 }
3117 if (!bs->read_only) {
3118 return -EINVAL;
3119 }
3120 if (drv->bdrv_snapshot_load_tmp) {
3121 return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
3122 }
3123 return -ENOTSUP;
3124}
3125
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00003126BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3127 const char *backing_file)
3128{
3129 if (!bs->drv) {
3130 return NULL;
3131 }
3132
3133 if (bs->backing_hd) {
3134 if (strcmp(bs->backing_file, backing_file) == 0) {
3135 return bs->backing_hd;
3136 } else {
3137 return bdrv_find_backing_image(bs->backing_hd, backing_file);
3138 }
3139 }
3140
3141 return NULL;
3142}
3143
Benoît Canetf198fd12012-08-02 10:22:47 +02003144int bdrv_get_backing_file_depth(BlockDriverState *bs)
3145{
3146 if (!bs->drv) {
3147 return 0;
3148 }
3149
3150 if (!bs->backing_hd) {
3151 return 0;
3152 }
3153
3154 return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
3155}
3156
Jeff Cody79fac562012-09-27 13:29:15 -04003157BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3158{
3159 BlockDriverState *curr_bs = NULL;
3160
3161 if (!bs) {
3162 return NULL;
3163 }
3164
3165 curr_bs = bs;
3166
3167 while (curr_bs->backing_hd) {
3168 curr_bs = curr_bs->backing_hd;
3169 }
3170 return curr_bs;
3171}
3172
bellardfaea38e2006-08-05 21:31:00 +00003173#define NB_SUFFIXES 4
3174
3175char *get_human_readable_size(char *buf, int buf_size, int64_t size)
3176{
3177 static const char suffixes[NB_SUFFIXES] = "KMGT";
3178 int64_t base;
3179 int i;
3180
3181 if (size <= 999) {
3182 snprintf(buf, buf_size, "%" PRId64, size);
3183 } else {
3184 base = 1024;
3185 for(i = 0; i < NB_SUFFIXES; i++) {
3186 if (size < (10 * base)) {
ths5fafdf22007-09-16 21:08:06 +00003187 snprintf(buf, buf_size, "%0.1f%c",
bellardfaea38e2006-08-05 21:31:00 +00003188 (double)size / base,
3189 suffixes[i]);
3190 break;
3191 } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
ths5fafdf22007-09-16 21:08:06 +00003192 snprintf(buf, buf_size, "%" PRId64 "%c",
bellardfaea38e2006-08-05 21:31:00 +00003193 ((size + (base >> 1)) / base),
3194 suffixes[i]);
3195 break;
3196 }
3197 base = base * 1024;
3198 }
3199 }
3200 return buf;
3201}
3202
3203char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
3204{
3205 char buf1[128], date_buf[128], clock_buf[128];
bellard3b9f94e2007-01-07 17:27:07 +00003206#ifdef _WIN32
3207 struct tm *ptm;
3208#else
bellardfaea38e2006-08-05 21:31:00 +00003209 struct tm tm;
bellard3b9f94e2007-01-07 17:27:07 +00003210#endif
bellardfaea38e2006-08-05 21:31:00 +00003211 time_t ti;
3212 int64_t secs;
3213
3214 if (!sn) {
ths5fafdf22007-09-16 21:08:06 +00003215 snprintf(buf, buf_size,
3216 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00003217 "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
3218 } else {
3219 ti = sn->date_sec;
bellard3b9f94e2007-01-07 17:27:07 +00003220#ifdef _WIN32
3221 ptm = localtime(&ti);
3222 strftime(date_buf, sizeof(date_buf),
3223 "%Y-%m-%d %H:%M:%S", ptm);
3224#else
bellardfaea38e2006-08-05 21:31:00 +00003225 localtime_r(&ti, &tm);
3226 strftime(date_buf, sizeof(date_buf),
3227 "%Y-%m-%d %H:%M:%S", &tm);
bellard3b9f94e2007-01-07 17:27:07 +00003228#endif
bellardfaea38e2006-08-05 21:31:00 +00003229 secs = sn->vm_clock_nsec / 1000000000;
3230 snprintf(clock_buf, sizeof(clock_buf),
3231 "%02d:%02d:%02d.%03d",
3232 (int)(secs / 3600),
3233 (int)((secs / 60) % 60),
ths5fafdf22007-09-16 21:08:06 +00003234 (int)(secs % 60),
bellardfaea38e2006-08-05 21:31:00 +00003235 (int)((sn->vm_clock_nsec / 1000000) % 1000));
3236 snprintf(buf, buf_size,
ths5fafdf22007-09-16 21:08:06 +00003237 "%-10s%-20s%7s%20s%15s",
bellardfaea38e2006-08-05 21:31:00 +00003238 sn->id_str, sn->name,
3239 get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
3240 date_buf,
3241 clock_buf);
3242 }
3243 return buf;
3244}
3245
bellard83f64092006-08-01 16:21:11 +00003246/**************************************************************/
3247/* async I/Os */
3248
aliguori3b69e4b2009-01-22 16:59:24 +00003249BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
aliguorif141eaf2009-04-07 18:43:24 +00003250 QEMUIOVector *qiov, int nb_sectors,
aliguori3b69e4b2009-01-22 16:59:24 +00003251 BlockDriverCompletionFunc *cb, void *opaque)
3252{
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01003253 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
3254
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003255 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003256 cb, opaque, false);
bellard83f64092006-08-01 16:21:11 +00003257}
3258
aliguorif141eaf2009-04-07 18:43:24 +00003259BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
3260 QEMUIOVector *qiov, int nb_sectors,
3261 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00003262{
Stefan Hajnoczibbf0a442010-10-05 14:28:53 +01003263 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
3264
Stefan Hajnoczi1a6e1152011-10-13 13:08:25 +01003265 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003266 cb, opaque, true);
bellard83f64092006-08-01 16:21:11 +00003267}
3268
Kevin Wolf40b4f532009-09-09 17:53:37 +02003269
3270typedef struct MultiwriteCB {
3271 int error;
3272 int num_requests;
3273 int num_callbacks;
3274 struct {
3275 BlockDriverCompletionFunc *cb;
3276 void *opaque;
3277 QEMUIOVector *free_qiov;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003278 } callbacks[];
3279} MultiwriteCB;
3280
3281static void multiwrite_user_cb(MultiwriteCB *mcb)
3282{
3283 int i;
3284
3285 for (i = 0; i < mcb->num_callbacks; i++) {
3286 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
Stefan Hajnoczi1e1ea482010-04-21 20:35:45 +01003287 if (mcb->callbacks[i].free_qiov) {
3288 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
3289 }
Anthony Liguori7267c092011-08-20 22:09:37 -05003290 g_free(mcb->callbacks[i].free_qiov);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003291 }
3292}
3293
3294static void multiwrite_cb(void *opaque, int ret)
3295{
3296 MultiwriteCB *mcb = opaque;
3297
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01003298 trace_multiwrite_cb(mcb, ret);
3299
Kevin Wolfcb6d3ca2010-04-01 22:48:44 +02003300 if (ret < 0 && !mcb->error) {
Kevin Wolf40b4f532009-09-09 17:53:37 +02003301 mcb->error = ret;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003302 }
3303
3304 mcb->num_requests--;
3305 if (mcb->num_requests == 0) {
Kevin Wolfde189a12010-07-01 16:08:51 +02003306 multiwrite_user_cb(mcb);
Anthony Liguori7267c092011-08-20 22:09:37 -05003307 g_free(mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003308 }
3309}
3310
3311static int multiwrite_req_compare(const void *a, const void *b)
3312{
Christoph Hellwig77be4362010-05-19 20:53:10 +02003313 const BlockRequest *req1 = a, *req2 = b;
3314
3315 /*
3316 * Note that we can't simply subtract req2->sector from req1->sector
3317 * here as that could overflow the return value.
3318 */
3319 if (req1->sector > req2->sector) {
3320 return 1;
3321 } else if (req1->sector < req2->sector) {
3322 return -1;
3323 } else {
3324 return 0;
3325 }
Kevin Wolf40b4f532009-09-09 17:53:37 +02003326}
3327
3328/*
3329 * Takes a bunch of requests and tries to merge them. Returns the number of
3330 * requests that remain after merging.
3331 */
3332static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
3333 int num_reqs, MultiwriteCB *mcb)
3334{
3335 int i, outidx;
3336
3337 // Sort requests by start sector
3338 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
3339
3340 // Check if adjacent requests touch the same clusters. If so, combine them,
3341 // filling up gaps with zero sectors.
3342 outidx = 0;
3343 for (i = 1; i < num_reqs; i++) {
3344 int merge = 0;
3345 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
3346
Paolo Bonzinib6a127a2012-02-21 16:43:52 +01003347 // Handle exactly sequential writes and overlapping writes.
Kevin Wolf40b4f532009-09-09 17:53:37 +02003348 if (reqs[i].sector <= oldreq_last) {
3349 merge = 1;
3350 }
3351
Christoph Hellwige2a305f2010-01-26 14:49:08 +01003352 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
3353 merge = 0;
3354 }
3355
Kevin Wolf40b4f532009-09-09 17:53:37 +02003356 if (merge) {
3357 size_t size;
Anthony Liguori7267c092011-08-20 22:09:37 -05003358 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
Kevin Wolf40b4f532009-09-09 17:53:37 +02003359 qemu_iovec_init(qiov,
3360 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
3361
3362 // Add the first request to the merged one. If the requests are
3363 // overlapping, drop the last sectors of the first request.
3364 size = (reqs[i].sector - reqs[outidx].sector) << 9;
Michael Tokarev1b093c42012-03-12 21:28:06 +04003365 qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003366
Paolo Bonzinib6a127a2012-02-21 16:43:52 +01003367 // We should need to add any zeros between the two requests
3368 assert (reqs[i].sector <= oldreq_last);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003369
3370 // Add the second request
Michael Tokarev1b093c42012-03-12 21:28:06 +04003371 qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003372
Kevin Wolfcbf1dff2010-05-21 11:09:42 +02003373 reqs[outidx].nb_sectors = qiov->size >> 9;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003374 reqs[outidx].qiov = qiov;
3375
3376 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
3377 } else {
3378 outidx++;
3379 reqs[outidx].sector = reqs[i].sector;
3380 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
3381 reqs[outidx].qiov = reqs[i].qiov;
3382 }
3383 }
3384
3385 return outidx + 1;
3386}
3387
3388/*
3389 * Submit multiple AIO write requests at once.
3390 *
3391 * On success, the function returns 0 and all requests in the reqs array have
3392 * been submitted. In error case this function returns -1, and any of the
3393 * requests may or may not be submitted yet. In particular, this means that the
3394 * callback will be called for some of the requests, for others it won't. The
3395 * caller must check the error field of the BlockRequest to wait for the right
3396 * callbacks (if error != 0, no callback will be called).
3397 *
3398 * The implementation may modify the contents of the reqs array, e.g. to merge
3399 * requests. However, the fields opaque and error are left unmodified as they
3400 * are used to signal failure for a single request to the caller.
3401 */
3402int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
3403{
Kevin Wolf40b4f532009-09-09 17:53:37 +02003404 MultiwriteCB *mcb;
3405 int i;
3406
Ryan Harper301db7c2011-03-07 10:01:04 -06003407 /* don't submit writes if we don't have a medium */
3408 if (bs->drv == NULL) {
3409 for (i = 0; i < num_reqs; i++) {
3410 reqs[i].error = -ENOMEDIUM;
3411 }
3412 return -1;
3413 }
3414
Kevin Wolf40b4f532009-09-09 17:53:37 +02003415 if (num_reqs == 0) {
3416 return 0;
3417 }
3418
3419 // Create MultiwriteCB structure
Anthony Liguori7267c092011-08-20 22:09:37 -05003420 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
Kevin Wolf40b4f532009-09-09 17:53:37 +02003421 mcb->num_requests = 0;
3422 mcb->num_callbacks = num_reqs;
3423
3424 for (i = 0; i < num_reqs; i++) {
3425 mcb->callbacks[i].cb = reqs[i].cb;
3426 mcb->callbacks[i].opaque = reqs[i].opaque;
3427 }
3428
3429 // Check for mergable requests
3430 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
3431
Stefan Hajnoczi6d519a52010-05-22 18:15:08 +01003432 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
3433
Paolo Bonzinidf9309f2011-11-14 17:50:50 +01003434 /* Run the aio requests. */
3435 mcb->num_requests = num_reqs;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003436 for (i = 0; i < num_reqs; i++) {
Paolo Bonziniad54ae82011-11-30 09:12:30 +01003437 bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
Kevin Wolf40b4f532009-09-09 17:53:37 +02003438 reqs[i].nb_sectors, multiwrite_cb, mcb);
Kevin Wolf40b4f532009-09-09 17:53:37 +02003439 }
3440
3441 return 0;
Kevin Wolf40b4f532009-09-09 17:53:37 +02003442}
3443
bellard83f64092006-08-01 16:21:11 +00003444void bdrv_aio_cancel(BlockDriverAIOCB *acb)
pbrookce1a14d2006-08-07 02:38:06 +00003445{
aliguori6bbff9a2009-03-20 18:25:59 +00003446 acb->pool->cancel(acb);
bellard83f64092006-08-01 16:21:11 +00003447}
3448
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08003449/* block I/O throttling */
3450static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
3451 bool is_write, double elapsed_time, uint64_t *wait)
3452{
3453 uint64_t bps_limit = 0;
3454 double bytes_limit, bytes_base, bytes_res;
3455 double slice_time, wait_time;
3456
3457 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
3458 bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
3459 } else if (bs->io_limits.bps[is_write]) {
3460 bps_limit = bs->io_limits.bps[is_write];
3461 } else {
3462 if (wait) {
3463 *wait = 0;
3464 }
3465
3466 return false;
3467 }
3468
3469 slice_time = bs->slice_end - bs->slice_start;
3470 slice_time /= (NANOSECONDS_PER_SECOND);
3471 bytes_limit = bps_limit * slice_time;
3472 bytes_base = bs->nr_bytes[is_write] - bs->io_base.bytes[is_write];
3473 if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
3474 bytes_base += bs->nr_bytes[!is_write] - bs->io_base.bytes[!is_write];
3475 }
3476
3477 /* bytes_base: the bytes of data which have been read/written; and
3478 * it is obtained from the history statistic info.
3479 * bytes_res: the remaining bytes of data which need to be read/written.
3480 * (bytes_base + bytes_res) / bps_limit: used to calcuate
3481 * the total time for completing reading/writting all data.
3482 */
3483 bytes_res = (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
3484
3485 if (bytes_base + bytes_res <= bytes_limit) {
3486 if (wait) {
3487 *wait = 0;
3488 }
3489
3490 return false;
3491 }
3492
3493 /* Calc approx time to dispatch */
3494 wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time;
3495
3496 /* When the I/O rate at runtime exceeds the limits,
3497 * bs->slice_end need to be extended in order that the current statistic
3498 * info can be kept until the timer fire, so it is increased and tuned
3499 * based on the result of experiment.
3500 */
3501 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
3502 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
3503 if (wait) {
3504 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
3505 }
3506
3507 return true;
3508}
3509
3510static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
3511 double elapsed_time, uint64_t *wait)
3512{
3513 uint64_t iops_limit = 0;
3514 double ios_limit, ios_base;
3515 double slice_time, wait_time;
3516
3517 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
3518 iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
3519 } else if (bs->io_limits.iops[is_write]) {
3520 iops_limit = bs->io_limits.iops[is_write];
3521 } else {
3522 if (wait) {
3523 *wait = 0;
3524 }
3525
3526 return false;
3527 }
3528
3529 slice_time = bs->slice_end - bs->slice_start;
3530 slice_time /= (NANOSECONDS_PER_SECOND);
3531 ios_limit = iops_limit * slice_time;
3532 ios_base = bs->nr_ops[is_write] - bs->io_base.ios[is_write];
3533 if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
3534 ios_base += bs->nr_ops[!is_write] - bs->io_base.ios[!is_write];
3535 }
3536
3537 if (ios_base + 1 <= ios_limit) {
3538 if (wait) {
3539 *wait = 0;
3540 }
3541
3542 return false;
3543 }
3544
3545 /* Calc approx time to dispatch */
3546 wait_time = (ios_base + 1) / iops_limit;
3547 if (wait_time > elapsed_time) {
3548 wait_time = wait_time - elapsed_time;
3549 } else {
3550 wait_time = 0;
3551 }
3552
3553 bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
3554 bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
3555 if (wait) {
3556 *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
3557 }
3558
3559 return true;
3560}
3561
3562static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
3563 bool is_write, int64_t *wait)
3564{
3565 int64_t now, max_wait;
3566 uint64_t bps_wait = 0, iops_wait = 0;
3567 double elapsed_time;
3568 int bps_ret, iops_ret;
3569
3570 now = qemu_get_clock_ns(vm_clock);
3571 if ((bs->slice_start < now)
3572 && (bs->slice_end > now)) {
3573 bs->slice_end = now + bs->slice_time;
3574 } else {
3575 bs->slice_time = 5 * BLOCK_IO_SLICE_TIME;
3576 bs->slice_start = now;
3577 bs->slice_end = now + bs->slice_time;
3578
3579 bs->io_base.bytes[is_write] = bs->nr_bytes[is_write];
3580 bs->io_base.bytes[!is_write] = bs->nr_bytes[!is_write];
3581
3582 bs->io_base.ios[is_write] = bs->nr_ops[is_write];
3583 bs->io_base.ios[!is_write] = bs->nr_ops[!is_write];
3584 }
3585
3586 elapsed_time = now - bs->slice_start;
3587 elapsed_time /= (NANOSECONDS_PER_SECOND);
3588
3589 bps_ret = bdrv_exceed_bps_limits(bs, nb_sectors,
3590 is_write, elapsed_time, &bps_wait);
3591 iops_ret = bdrv_exceed_iops_limits(bs, is_write,
3592 elapsed_time, &iops_wait);
3593 if (bps_ret || iops_ret) {
3594 max_wait = bps_wait > iops_wait ? bps_wait : iops_wait;
3595 if (wait) {
3596 *wait = max_wait;
3597 }
3598
3599 now = qemu_get_clock_ns(vm_clock);
3600 if (bs->slice_end < now + max_wait) {
3601 bs->slice_end = now + max_wait;
3602 }
3603
3604 return true;
3605 }
3606
3607 if (wait) {
3608 *wait = 0;
3609 }
3610
3611 return false;
3612}
pbrookce1a14d2006-08-07 02:38:06 +00003613
bellard83f64092006-08-01 16:21:11 +00003614/**************************************************************/
3615/* async block device emulation */
3616
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003617typedef struct BlockDriverAIOCBSync {
3618 BlockDriverAIOCB common;
3619 QEMUBH *bh;
3620 int ret;
3621 /* vector translation state */
3622 QEMUIOVector *qiov;
3623 uint8_t *bounce;
3624 int is_write;
3625} BlockDriverAIOCBSync;
3626
3627static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
3628{
Kevin Wolfb666d232010-05-05 11:44:39 +02003629 BlockDriverAIOCBSync *acb =
3630 container_of(blockacb, BlockDriverAIOCBSync, common);
Dor Laor6a7ad292009-06-01 12:07:23 +03003631 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03003632 acb->bh = NULL;
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003633 qemu_aio_release(acb);
3634}
3635
3636static AIOPool bdrv_em_aio_pool = {
3637 .aiocb_size = sizeof(BlockDriverAIOCBSync),
3638 .cancel = bdrv_aio_cancel_em,
3639};
3640
bellard83f64092006-08-01 16:21:11 +00003641static void bdrv_aio_bh_cb(void *opaque)
bellardbeac80c2006-06-26 20:08:57 +00003642{
pbrookce1a14d2006-08-07 02:38:06 +00003643 BlockDriverAIOCBSync *acb = opaque;
aliguorif141eaf2009-04-07 18:43:24 +00003644
aliguorif141eaf2009-04-07 18:43:24 +00003645 if (!acb->is_write)
Michael Tokarev03396142012-06-07 20:17:55 +04003646 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
aliguoriceb42de2009-04-07 18:43:28 +00003647 qemu_vfree(acb->bounce);
pbrookce1a14d2006-08-07 02:38:06 +00003648 acb->common.cb(acb->common.opaque, acb->ret);
Dor Laor6a7ad292009-06-01 12:07:23 +03003649 qemu_bh_delete(acb->bh);
Avi Kivity36afc452009-06-23 16:20:36 +03003650 acb->bh = NULL;
pbrookce1a14d2006-08-07 02:38:06 +00003651 qemu_aio_release(acb);
bellardbeac80c2006-06-26 20:08:57 +00003652}
bellardbeac80c2006-06-26 20:08:57 +00003653
aliguorif141eaf2009-04-07 18:43:24 +00003654static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
3655 int64_t sector_num,
3656 QEMUIOVector *qiov,
3657 int nb_sectors,
3658 BlockDriverCompletionFunc *cb,
3659 void *opaque,
3660 int is_write)
3661
bellardea2384d2004-08-01 21:59:26 +00003662{
pbrookce1a14d2006-08-07 02:38:06 +00003663 BlockDriverAIOCBSync *acb;
pbrookce1a14d2006-08-07 02:38:06 +00003664
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003665 acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
aliguorif141eaf2009-04-07 18:43:24 +00003666 acb->is_write = is_write;
3667 acb->qiov = qiov;
aliguorie268ca52009-04-22 20:20:00 +00003668 acb->bounce = qemu_blockalign(bs, qiov->size);
Paolo Bonzini3f3aace2011-11-14 17:50:54 +01003669 acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
aliguorif141eaf2009-04-07 18:43:24 +00003670
3671 if (is_write) {
Michael Tokarevd5e6b162012-06-07 20:21:06 +04003672 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
Stefan Hajnoczi1ed20ac2011-10-13 13:08:21 +01003673 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
aliguorif141eaf2009-04-07 18:43:24 +00003674 } else {
Stefan Hajnoczi1ed20ac2011-10-13 13:08:21 +01003675 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
aliguorif141eaf2009-04-07 18:43:24 +00003676 }
3677
pbrookce1a14d2006-08-07 02:38:06 +00003678 qemu_bh_schedule(acb->bh);
aliguorif141eaf2009-04-07 18:43:24 +00003679
pbrookce1a14d2006-08-07 02:38:06 +00003680 return &acb->common;
pbrook7a6cba62006-06-04 11:39:07 +00003681}
3682
aliguorif141eaf2009-04-07 18:43:24 +00003683static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
3684 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
pbrookce1a14d2006-08-07 02:38:06 +00003685 BlockDriverCompletionFunc *cb, void *opaque)
bellard83f64092006-08-01 16:21:11 +00003686{
aliguorif141eaf2009-04-07 18:43:24 +00003687 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
bellard83f64092006-08-01 16:21:11 +00003688}
3689
aliguorif141eaf2009-04-07 18:43:24 +00003690static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
3691 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3692 BlockDriverCompletionFunc *cb, void *opaque)
3693{
3694 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
3695}
3696
Kevin Wolf68485422011-06-30 10:05:46 +02003697
3698typedef struct BlockDriverAIOCBCoroutine {
3699 BlockDriverAIOCB common;
3700 BlockRequest req;
3701 bool is_write;
3702 QEMUBH* bh;
3703} BlockDriverAIOCBCoroutine;
3704
3705static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
3706{
3707 qemu_aio_flush();
3708}
3709
3710static AIOPool bdrv_em_co_aio_pool = {
3711 .aiocb_size = sizeof(BlockDriverAIOCBCoroutine),
3712 .cancel = bdrv_aio_co_cancel_em,
3713};
3714
Paolo Bonzini35246a62011-10-14 10:41:29 +02003715static void bdrv_co_em_bh(void *opaque)
Kevin Wolf68485422011-06-30 10:05:46 +02003716{
3717 BlockDriverAIOCBCoroutine *acb = opaque;
3718
3719 acb->common.cb(acb->common.opaque, acb->req.error);
3720 qemu_bh_delete(acb->bh);
3721 qemu_aio_release(acb);
3722}
3723
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003724/* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
3725static void coroutine_fn bdrv_co_do_rw(void *opaque)
3726{
3727 BlockDriverAIOCBCoroutine *acb = opaque;
3728 BlockDriverState *bs = acb->common.bs;
3729
3730 if (!acb->is_write) {
3731 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
Stefan Hajnoczi470c0502012-01-18 14:40:42 +00003732 acb->req.nb_sectors, acb->req.qiov, 0);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003733 } else {
3734 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
Stefan Hajnoczif08f2dd2012-02-07 13:27:25 +00003735 acb->req.nb_sectors, acb->req.qiov, 0);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003736 }
3737
Paolo Bonzini35246a62011-10-14 10:41:29 +02003738 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
Stefan Hajnoczib2a61372011-10-13 13:08:23 +01003739 qemu_bh_schedule(acb->bh);
3740}
3741
Kevin Wolf68485422011-06-30 10:05:46 +02003742static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
3743 int64_t sector_num,
3744 QEMUIOVector *qiov,
3745 int nb_sectors,
3746 BlockDriverCompletionFunc *cb,
3747 void *opaque,
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003748 bool is_write)
Kevin Wolf68485422011-06-30 10:05:46 +02003749{
3750 Coroutine *co;
3751 BlockDriverAIOCBCoroutine *acb;
3752
3753 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3754 acb->req.sector = sector_num;
3755 acb->req.nb_sectors = nb_sectors;
3756 acb->req.qiov = qiov;
3757 acb->is_write = is_write;
3758
Stefan Hajnoczi8c5873d2011-10-13 21:09:28 +01003759 co = qemu_coroutine_create(bdrv_co_do_rw);
Kevin Wolf68485422011-06-30 10:05:46 +02003760 qemu_coroutine_enter(co, acb);
3761
3762 return &acb->common;
3763}
3764
Paolo Bonzini07f07612011-10-17 12:32:12 +02003765static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003766{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003767 BlockDriverAIOCBCoroutine *acb = opaque;
3768 BlockDriverState *bs = acb->common.bs;
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003769
Paolo Bonzini07f07612011-10-17 12:32:12 +02003770 acb->req.error = bdrv_co_flush(bs);
3771 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003772 qemu_bh_schedule(acb->bh);
Christoph Hellwigb2e12bc2009-09-04 19:01:49 +02003773}
3774
Paolo Bonzini07f07612011-10-17 12:32:12 +02003775BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
Alexander Graf016f5cf2010-05-26 17:51:49 +02003776 BlockDriverCompletionFunc *cb, void *opaque)
3777{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003778 trace_bdrv_aio_flush(bs, opaque);
Alexander Graf016f5cf2010-05-26 17:51:49 +02003779
Paolo Bonzini07f07612011-10-17 12:32:12 +02003780 Coroutine *co;
3781 BlockDriverAIOCBCoroutine *acb;
Alexander Graf016f5cf2010-05-26 17:51:49 +02003782
Paolo Bonzini07f07612011-10-17 12:32:12 +02003783 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3784 co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
3785 qemu_coroutine_enter(co, acb);
Alexander Graf016f5cf2010-05-26 17:51:49 +02003786
Alexander Graf016f5cf2010-05-26 17:51:49 +02003787 return &acb->common;
3788}
3789
Paolo Bonzini4265d622011-10-17 12:32:14 +02003790static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
3791{
3792 BlockDriverAIOCBCoroutine *acb = opaque;
3793 BlockDriverState *bs = acb->common.bs;
3794
3795 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
3796 acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3797 qemu_bh_schedule(acb->bh);
3798}
3799
3800BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
3801 int64_t sector_num, int nb_sectors,
3802 BlockDriverCompletionFunc *cb, void *opaque)
3803{
3804 Coroutine *co;
3805 BlockDriverAIOCBCoroutine *acb;
3806
3807 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
3808
3809 acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
3810 acb->req.sector = sector_num;
3811 acb->req.nb_sectors = nb_sectors;
3812 co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
3813 qemu_coroutine_enter(co, acb);
3814
3815 return &acb->common;
3816}
3817
bellardea2384d2004-08-01 21:59:26 +00003818void bdrv_init(void)
3819{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05003820 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00003821}
pbrookce1a14d2006-08-07 02:38:06 +00003822
Markus Armbrustereb852012009-10-27 18:41:44 +01003823void bdrv_init_with_whitelist(void)
3824{
3825 use_bdrv_whitelist = 1;
3826 bdrv_init();
3827}
3828
Christoph Hellwigc16b5a22009-05-25 12:37:32 +02003829void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
3830 BlockDriverCompletionFunc *cb, void *opaque)
aliguori6bbff9a2009-03-20 18:25:59 +00003831{
pbrookce1a14d2006-08-07 02:38:06 +00003832 BlockDriverAIOCB *acb;
3833
aliguori6bbff9a2009-03-20 18:25:59 +00003834 if (pool->free_aiocb) {
3835 acb = pool->free_aiocb;
3836 pool->free_aiocb = acb->next;
pbrookce1a14d2006-08-07 02:38:06 +00003837 } else {
Anthony Liguori7267c092011-08-20 22:09:37 -05003838 acb = g_malloc0(pool->aiocb_size);
aliguori6bbff9a2009-03-20 18:25:59 +00003839 acb->pool = pool;
pbrookce1a14d2006-08-07 02:38:06 +00003840 }
3841 acb->bs = bs;
3842 acb->cb = cb;
3843 acb->opaque = opaque;
3844 return acb;
3845}
3846
3847void qemu_aio_release(void *p)
3848{
aliguori6bbff9a2009-03-20 18:25:59 +00003849 BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
3850 AIOPool *pool = acb->pool;
3851 acb->next = pool->free_aiocb;
3852 pool->free_aiocb = acb;
pbrookce1a14d2006-08-07 02:38:06 +00003853}
bellard19cb3732006-08-19 11:45:59 +00003854
3855/**************************************************************/
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003856/* Coroutine block device emulation */
3857
3858typedef struct CoroutineIOCompletion {
3859 Coroutine *coroutine;
3860 int ret;
3861} CoroutineIOCompletion;
3862
3863static void bdrv_co_io_em_complete(void *opaque, int ret)
3864{
3865 CoroutineIOCompletion *co = opaque;
3866
3867 co->ret = ret;
3868 qemu_coroutine_enter(co->coroutine, NULL);
3869}
3870
3871static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
3872 int nb_sectors, QEMUIOVector *iov,
3873 bool is_write)
3874{
3875 CoroutineIOCompletion co = {
3876 .coroutine = qemu_coroutine_self(),
3877 };
3878 BlockDriverAIOCB *acb;
3879
3880 if (is_write) {
Stefan Hajnoczia652d162011-10-05 17:17:02 +01003881 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
3882 bdrv_co_io_em_complete, &co);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003883 } else {
Stefan Hajnoczia652d162011-10-05 17:17:02 +01003884 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
3885 bdrv_co_io_em_complete, &co);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003886 }
3887
Stefan Hajnoczi59370aa2011-09-30 17:34:58 +01003888 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
Kevin Wolff9f05dc2011-07-15 13:50:26 +02003889 if (!acb) {
3890 return -EIO;
3891 }
3892 qemu_coroutine_yield();
3893
3894 return co.ret;
3895}
3896
3897static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
3898 int64_t sector_num, int nb_sectors,
3899 QEMUIOVector *iov)
3900{
3901 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
3902}
3903
3904static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
3905 int64_t sector_num, int nb_sectors,
3906 QEMUIOVector *iov)
3907{
3908 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
3909}
3910
Paolo Bonzini07f07612011-10-17 12:32:12 +02003911static void coroutine_fn bdrv_flush_co_entry(void *opaque)
Kevin Wolfe7a8a782011-07-15 16:05:00 +02003912{
Paolo Bonzini07f07612011-10-17 12:32:12 +02003913 RwCo *rwco = opaque;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02003914
Paolo Bonzini07f07612011-10-17 12:32:12 +02003915 rwco->ret = bdrv_co_flush(rwco->bs);
3916}
3917
3918int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
3919{
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003920 int ret;
3921
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003922 if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
Paolo Bonzini07f07612011-10-17 12:32:12 +02003923 return 0;
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003924 }
3925
Kevin Wolfca716362011-11-10 18:13:59 +01003926 /* Write back cached data to the OS even with cache=unsafe */
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003927 if (bs->drv->bdrv_co_flush_to_os) {
3928 ret = bs->drv->bdrv_co_flush_to_os(bs);
3929 if (ret < 0) {
3930 return ret;
3931 }
3932 }
3933
Kevin Wolfca716362011-11-10 18:13:59 +01003934 /* But don't actually force it to the disk with cache=unsafe */
3935 if (bs->open_flags & BDRV_O_NO_FLUSH) {
Kevin Wolfd4c82322012-08-15 12:52:45 +02003936 goto flush_parent;
Kevin Wolfca716362011-11-10 18:13:59 +01003937 }
3938
Kevin Wolfeb489bb2011-11-10 18:10:11 +01003939 if (bs->drv->bdrv_co_flush_to_disk) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003940 ret = bs->drv->bdrv_co_flush_to_disk(bs);
Paolo Bonzini07f07612011-10-17 12:32:12 +02003941 } else if (bs->drv->bdrv_aio_flush) {
3942 BlockDriverAIOCB *acb;
3943 CoroutineIOCompletion co = {
3944 .coroutine = qemu_coroutine_self(),
3945 };
3946
3947 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
3948 if (acb == NULL) {
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003949 ret = -EIO;
Paolo Bonzini07f07612011-10-17 12:32:12 +02003950 } else {
3951 qemu_coroutine_yield();
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003952 ret = co.ret;
Paolo Bonzini07f07612011-10-17 12:32:12 +02003953 }
Paolo Bonzini07f07612011-10-17 12:32:12 +02003954 } else {
3955 /*
3956 * Some block drivers always operate in either writethrough or unsafe
3957 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
3958 * know how the server works (because the behaviour is hardcoded or
3959 * depends on server-side configuration), so we can't ensure that
3960 * everything is safe on disk. Returning an error doesn't work because
3961 * that would break guests even if the server operates in writethrough
3962 * mode.
3963 *
3964 * Let's hope the user knows what he's doing.
3965 */
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003966 ret = 0;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02003967 }
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003968 if (ret < 0) {
3969 return ret;
3970 }
3971
3972 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
3973 * in the case of cache=unsafe, so there are no useless flushes.
3974 */
Kevin Wolfd4c82322012-08-15 12:52:45 +02003975flush_parent:
Paolo Bonzini29cdb252012-03-12 18:26:01 +01003976 return bdrv_co_flush(bs->file);
Paolo Bonzini07f07612011-10-17 12:32:12 +02003977}
3978
Anthony Liguori0f154232011-11-14 15:09:45 -06003979void bdrv_invalidate_cache(BlockDriverState *bs)
3980{
3981 if (bs->drv && bs->drv->bdrv_invalidate_cache) {
3982 bs->drv->bdrv_invalidate_cache(bs);
3983 }
3984}
3985
3986void bdrv_invalidate_cache_all(void)
3987{
3988 BlockDriverState *bs;
3989
3990 QTAILQ_FOREACH(bs, &bdrv_states, list) {
3991 bdrv_invalidate_cache(bs);
3992 }
3993}
3994
Benoît Canet07789262012-03-23 08:36:49 +01003995void bdrv_clear_incoming_migration_all(void)
3996{
3997 BlockDriverState *bs;
3998
3999 QTAILQ_FOREACH(bs, &bdrv_states, list) {
4000 bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
4001 }
4002}
4003
Paolo Bonzini07f07612011-10-17 12:32:12 +02004004int bdrv_flush(BlockDriverState *bs)
4005{
4006 Coroutine *co;
4007 RwCo rwco = {
4008 .bs = bs,
4009 .ret = NOT_DONE,
4010 };
4011
4012 if (qemu_in_coroutine()) {
4013 /* Fast-path if already in coroutine context */
4014 bdrv_flush_co_entry(&rwco);
4015 } else {
4016 co = qemu_coroutine_create(bdrv_flush_co_entry);
4017 qemu_coroutine_enter(co, &rwco);
4018 while (rwco.ret == NOT_DONE) {
4019 qemu_aio_wait();
4020 }
4021 }
4022
4023 return rwco.ret;
Kevin Wolfe7a8a782011-07-15 16:05:00 +02004024}
4025
Paolo Bonzini4265d622011-10-17 12:32:14 +02004026static void coroutine_fn bdrv_discard_co_entry(void *opaque)
4027{
4028 RwCo *rwco = opaque;
4029
4030 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
4031}
4032
4033int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
4034 int nb_sectors)
4035{
4036 if (!bs->drv) {
4037 return -ENOMEDIUM;
4038 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
4039 return -EIO;
4040 } else if (bs->read_only) {
4041 return -EROFS;
4042 } else if (bs->drv->bdrv_co_discard) {
4043 return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors);
4044 } else if (bs->drv->bdrv_aio_discard) {
4045 BlockDriverAIOCB *acb;
4046 CoroutineIOCompletion co = {
4047 .coroutine = qemu_coroutine_self(),
4048 };
4049
4050 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
4051 bdrv_co_io_em_complete, &co);
4052 if (acb == NULL) {
4053 return -EIO;
4054 } else {
4055 qemu_coroutine_yield();
4056 return co.ret;
4057 }
Paolo Bonzini4265d622011-10-17 12:32:14 +02004058 } else {
4059 return 0;
4060 }
4061}
4062
4063int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
4064{
4065 Coroutine *co;
4066 RwCo rwco = {
4067 .bs = bs,
4068 .sector_num = sector_num,
4069 .nb_sectors = nb_sectors,
4070 .ret = NOT_DONE,
4071 };
4072
4073 if (qemu_in_coroutine()) {
4074 /* Fast-path if already in coroutine context */
4075 bdrv_discard_co_entry(&rwco);
4076 } else {
4077 co = qemu_coroutine_create(bdrv_discard_co_entry);
4078 qemu_coroutine_enter(co, &rwco);
4079 while (rwco.ret == NOT_DONE) {
4080 qemu_aio_wait();
4081 }
4082 }
4083
4084 return rwco.ret;
4085}
4086
Kevin Wolff9f05dc2011-07-15 13:50:26 +02004087/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00004088/* removable device support */
4089
4090/**
4091 * Return TRUE if the media is present
4092 */
4093int bdrv_is_inserted(BlockDriverState *bs)
4094{
4095 BlockDriver *drv = bs->drv;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004096
bellard19cb3732006-08-19 11:45:59 +00004097 if (!drv)
4098 return 0;
4099 if (!drv->bdrv_is_inserted)
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004100 return 1;
4101 return drv->bdrv_is_inserted(bs);
bellard19cb3732006-08-19 11:45:59 +00004102}
4103
4104/**
Markus Armbruster8e49ca42011-08-03 15:08:08 +02004105 * Return whether the media changed since the last call to this
4106 * function, or -ENOTSUP if we don't know. Most drivers don't know.
bellard19cb3732006-08-19 11:45:59 +00004107 */
4108int bdrv_media_changed(BlockDriverState *bs)
4109{
4110 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004111
Markus Armbruster8e49ca42011-08-03 15:08:08 +02004112 if (drv && drv->bdrv_media_changed) {
4113 return drv->bdrv_media_changed(bs);
4114 }
4115 return -ENOTSUP;
bellard19cb3732006-08-19 11:45:59 +00004116}
4117
4118/**
4119 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4120 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02004121void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00004122{
4123 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004124
Markus Armbruster822e1cd2011-07-20 18:23:42 +02004125 if (drv && drv->bdrv_eject) {
4126 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00004127 }
Luiz Capitulino6f382ed2012-02-14 13:41:13 -02004128
4129 if (bs->device_name[0] != '\0') {
4130 bdrv_emit_qmp_eject_event(bs, eject_flag);
4131 }
bellard19cb3732006-08-19 11:45:59 +00004132}
4133
bellard19cb3732006-08-19 11:45:59 +00004134/**
4135 * Lock or unlock the media (if it is locked, the user won't be able
4136 * to eject it manually).
4137 */
Markus Armbruster025e8492011-09-06 18:58:47 +02004138void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00004139{
4140 BlockDriver *drv = bs->drv;
4141
Markus Armbruster025e8492011-09-06 18:58:47 +02004142 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01004143
Markus Armbruster025e8492011-09-06 18:58:47 +02004144 if (drv && drv->bdrv_lock_medium) {
4145 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00004146 }
4147}
ths985a03b2007-12-24 16:10:43 +00004148
4149/* needed for generic scsi interface */
4150
4151int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
4152{
4153 BlockDriver *drv = bs->drv;
4154
4155 if (drv && drv->bdrv_ioctl)
4156 return drv->bdrv_ioctl(bs, req, buf);
4157 return -ENOTSUP;
4158}
aliguori7d780662009-03-12 19:57:08 +00004159
aliguori221f7152009-03-28 17:28:41 +00004160BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
4161 unsigned long int req, void *buf,
4162 BlockDriverCompletionFunc *cb, void *opaque)
aliguori7d780662009-03-12 19:57:08 +00004163{
aliguori221f7152009-03-28 17:28:41 +00004164 BlockDriver *drv = bs->drv;
aliguori7d780662009-03-12 19:57:08 +00004165
aliguori221f7152009-03-28 17:28:41 +00004166 if (drv && drv->bdrv_aio_ioctl)
4167 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
4168 return NULL;
aliguori7d780662009-03-12 19:57:08 +00004169}
aliguorie268ca52009-04-22 20:20:00 +00004170
Markus Armbruster7b6f9302011-09-06 18:58:56 +02004171void bdrv_set_buffer_alignment(BlockDriverState *bs, int align)
4172{
4173 bs->buffer_alignment = align;
4174}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004175
aliguorie268ca52009-04-22 20:20:00 +00004176void *qemu_blockalign(BlockDriverState *bs, size_t size)
4177{
4178 return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
4179}
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004180
4181void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
4182{
4183 int64_t bitmap_size;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004184
Liran Schouraaa0eb72010-01-26 10:31:48 +02004185 bs->dirty_count = 0;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004186 if (enable) {
Jan Kiszkac6d22832009-11-30 18:21:20 +01004187 if (!bs->dirty_bitmap) {
4188 bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
Paolo Bonzini71df14f2012-04-12 14:01:04 +02004189 BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG - 1;
4190 bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004191
Paolo Bonzini71df14f2012-04-12 14:01:04 +02004192 bs->dirty_bitmap = g_new0(unsigned long, bitmap_size);
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004193 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004194 } else {
Jan Kiszkac6d22832009-11-30 18:21:20 +01004195 if (bs->dirty_bitmap) {
Anthony Liguori7267c092011-08-20 22:09:37 -05004196 g_free(bs->dirty_bitmap);
Jan Kiszkac6d22832009-11-30 18:21:20 +01004197 bs->dirty_bitmap = NULL;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004198 }
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004199 }
4200}
4201
4202int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
4203{
Jan Kiszka6ea44302009-11-30 18:21:19 +01004204 int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004205
Jan Kiszkac6d22832009-11-30 18:21:20 +01004206 if (bs->dirty_bitmap &&
4207 (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
Marcelo Tosatti6d59fec2010-11-08 17:02:54 -02004208 return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
4209 (1UL << (chunk % (sizeof(unsigned long) * 8))));
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004210 } else {
4211 return 0;
4212 }
4213}
4214
Jan Kiszkaa55eb922009-11-30 18:21:19 +01004215void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
4216 int nr_sectors)
lirans@il.ibm.com7cd1e322009-11-02 15:40:41 +02004217{
4218 set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
4219}
Liran Schouraaa0eb72010-01-26 10:31:48 +02004220
4221int64_t bdrv_get_dirty_count(BlockDriverState *bs)
4222{
4223 return bs->dirty_count;
4224}
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004225
Marcelo Tosattidb593f22011-01-26 12:12:34 -02004226void bdrv_set_in_use(BlockDriverState *bs, int in_use)
4227{
4228 assert(bs->in_use != in_use);
4229 bs->in_use = in_use;
4230}
4231
4232int bdrv_in_use(BlockDriverState *bs)
4233{
4234 return bs->in_use;
4235}
4236
Luiz Capitulino28a72822011-09-26 17:43:50 -03004237void bdrv_iostatus_enable(BlockDriverState *bs)
4238{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004239 bs->iostatus_enabled = true;
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004240 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004241}
4242
4243/* The I/O status is only enabled if the drive explicitly
4244 * enables it _and_ the VM is configured to stop on errors */
4245bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
4246{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004247 return (bs->iostatus_enabled &&
Paolo Bonzini92aa5c62012-09-28 17:22:55 +02004248 (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
4249 bs->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
4250 bs->on_read_error == BLOCKDEV_ON_ERROR_STOP));
Luiz Capitulino28a72822011-09-26 17:43:50 -03004251}
4252
4253void bdrv_iostatus_disable(BlockDriverState *bs)
4254{
Luiz Capitulinod6bf2792011-10-14 17:11:23 -03004255 bs->iostatus_enabled = false;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004256}
4257
4258void bdrv_iostatus_reset(BlockDriverState *bs)
4259{
4260 if (bdrv_iostatus_is_enabled(bs)) {
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004261 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004262 }
4263}
4264
Luiz Capitulino28a72822011-09-26 17:43:50 -03004265void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
4266{
Paolo Bonzini3e1caa52012-09-28 17:22:57 +02004267 assert(bdrv_iostatus_is_enabled(bs));
4268 if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
Luiz Capitulino58e21ef2011-10-14 17:22:24 -03004269 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
4270 BLOCK_DEVICE_IO_STATUS_FAILED;
Luiz Capitulino28a72822011-09-26 17:43:50 -03004271 }
4272}
4273
Christoph Hellwiga597e792011-08-25 08:26:01 +02004274void
4275bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
4276 enum BlockAcctType type)
4277{
4278 assert(type < BDRV_MAX_IOTYPE);
4279
4280 cookie->bytes = bytes;
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02004281 cookie->start_time_ns = get_clock();
Christoph Hellwiga597e792011-08-25 08:26:01 +02004282 cookie->type = type;
4283}
4284
4285void
4286bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
4287{
4288 assert(cookie->type < BDRV_MAX_IOTYPE);
4289
4290 bs->nr_bytes[cookie->type] += cookie->bytes;
4291 bs->nr_ops[cookie->type]++;
Christoph Hellwigc488c7f2011-08-25 08:26:10 +02004292 bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
Christoph Hellwiga597e792011-08-25 08:26:01 +02004293}
4294
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004295int bdrv_img_create(const char *filename, const char *fmt,
4296 const char *base_filename, const char *base_fmt,
4297 char *options, uint64_t img_size, int flags)
4298{
4299 QEMUOptionParameter *param = NULL, *create_options = NULL;
Kevin Wolfd2208942011-06-01 14:03:31 +02004300 QEMUOptionParameter *backing_fmt, *backing_file, *size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004301 BlockDriverState *bs = NULL;
4302 BlockDriver *drv, *proto_drv;
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004303 BlockDriver *backing_drv = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004304 int ret = 0;
4305
4306 /* Find driver and parse its options */
4307 drv = bdrv_find_format(fmt);
4308 if (!drv) {
4309 error_report("Unknown file format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004310 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004311 goto out;
4312 }
4313
4314 proto_drv = bdrv_find_protocol(filename);
4315 if (!proto_drv) {
4316 error_report("Unknown protocol '%s'", filename);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004317 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004318 goto out;
4319 }
4320
4321 create_options = append_option_parameters(create_options,
4322 drv->create_options);
4323 create_options = append_option_parameters(create_options,
4324 proto_drv->create_options);
4325
4326 /* Create parameter list with default values */
4327 param = parse_option_parameters("", create_options, param);
4328
4329 set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
4330
4331 /* Parse -o options */
4332 if (options) {
4333 param = parse_option_parameters(options, create_options, param);
4334 if (param == NULL) {
4335 error_report("Invalid options for file format '%s'.", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004336 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004337 goto out;
4338 }
4339 }
4340
4341 if (base_filename) {
4342 if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
4343 base_filename)) {
4344 error_report("Backing file not supported for file format '%s'",
4345 fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004346 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004347 goto out;
4348 }
4349 }
4350
4351 if (base_fmt) {
4352 if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
4353 error_report("Backing file format not supported for file "
4354 "format '%s'", fmt);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004355 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004356 goto out;
4357 }
4358 }
4359
Jes Sorensen792da932010-12-16 13:52:17 +01004360 backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
4361 if (backing_file && backing_file->value.s) {
4362 if (!strcmp(filename, backing_file->value.s)) {
4363 error_report("Error: Trying to create an image with the "
4364 "same filename as the backing file");
Jes Sorensen4f70f242010-12-16 13:52:18 +01004365 ret = -EINVAL;
Jes Sorensen792da932010-12-16 13:52:17 +01004366 goto out;
4367 }
4368 }
4369
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004370 backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
4371 if (backing_fmt && backing_fmt->value.s) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004372 backing_drv = bdrv_find_format(backing_fmt->value.s);
4373 if (!backing_drv) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004374 error_report("Unknown backing file format '%s'",
4375 backing_fmt->value.s);
Jes Sorensen4f70f242010-12-16 13:52:18 +01004376 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004377 goto out;
4378 }
4379 }
4380
4381 // The size for the image must always be specified, with one exception:
4382 // If we are using a backing file, we can obtain the size from there
Kevin Wolfd2208942011-06-01 14:03:31 +02004383 size = get_option_parameter(param, BLOCK_OPT_SIZE);
4384 if (size && size->value.n == -1) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004385 if (backing_file && backing_file->value.s) {
4386 uint64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004387 char buf[32];
Paolo Bonzini63090da2012-04-12 14:01:03 +02004388 int back_flags;
4389
4390 /* backing files always opened read-only */
4391 back_flags =
4392 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004393
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004394 bs = bdrv_new("");
4395
Paolo Bonzini63090da2012-04-12 14:01:03 +02004396 ret = bdrv_open(bs, backing_file->value.s, back_flags, backing_drv);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004397 if (ret < 0) {
Stefan Hajnoczi96df67d2011-01-24 09:32:20 +00004398 error_report("Could not open '%s'", backing_file->value.s);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004399 goto out;
4400 }
4401 bdrv_get_geometry(bs, &size);
4402 size *= 512;
4403
4404 snprintf(buf, sizeof(buf), "%" PRId64, size);
4405 set_option_parameter(param, BLOCK_OPT_SIZE, buf);
4406 } else {
4407 error_report("Image creation needs a size parameter");
Jes Sorensen4f70f242010-12-16 13:52:18 +01004408 ret = -EINVAL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004409 goto out;
4410 }
4411 }
4412
4413 printf("Formatting '%s', fmt=%s ", filename, fmt);
4414 print_option_parameters(param);
4415 puts("");
4416
4417 ret = bdrv_create(drv, filename, param);
4418
4419 if (ret < 0) {
4420 if (ret == -ENOTSUP) {
4421 error_report("Formatting or formatting option not supported for "
4422 "file format '%s'", fmt);
4423 } else if (ret == -EFBIG) {
4424 error_report("The image size is too large for file format '%s'",
4425 fmt);
4426 } else {
4427 error_report("%s: error while creating %s: %s", filename, fmt,
4428 strerror(-ret));
4429 }
4430 }
4431
4432out:
4433 free_option_parameters(create_options);
4434 free_option_parameters(param);
4435
4436 if (bs) {
4437 bdrv_delete(bs);
4438 }
Jes Sorensen4f70f242010-12-16 13:52:18 +01004439
4440 return ret;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01004441}