xref: /openbmc/qemu/block.c (revision 6ebdcee2d8e9e4b41ffe4e49039927550848b926)
1fc01f7e7Sbellard /*
2fc01f7e7Sbellard  * QEMU System Emulator block driver
3fc01f7e7Sbellard  *
4fc01f7e7Sbellard  * Copyright (c) 2003 Fabrice Bellard
5fc01f7e7Sbellard  *
6fc01f7e7Sbellard  * Permission is hereby granted, free of charge, to any person obtaining a copy
7fc01f7e7Sbellard  * of this software and associated documentation files (the "Software"), to deal
8fc01f7e7Sbellard  * in the Software without restriction, including without limitation the rights
9fc01f7e7Sbellard  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10fc01f7e7Sbellard  * copies of the Software, and to permit persons to whom the Software is
11fc01f7e7Sbellard  * furnished to do so, subject to the following conditions:
12fc01f7e7Sbellard  *
13fc01f7e7Sbellard  * The above copyright notice and this permission notice shall be included in
14fc01f7e7Sbellard  * all copies or substantial portions of the Software.
15fc01f7e7Sbellard  *
16fc01f7e7Sbellard  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17fc01f7e7Sbellard  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18fc01f7e7Sbellard  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19fc01f7e7Sbellard  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20fc01f7e7Sbellard  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21fc01f7e7Sbellard  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22fc01f7e7Sbellard  * THE SOFTWARE.
23fc01f7e7Sbellard  */
243990d09aSblueswir1 #include "config-host.h"
25faf07963Spbrook #include "qemu-common.h"
266d519a5fSStefan Hajnoczi #include "trace.h"
27376253ecSaliguori #include "monitor.h"
28ea2384d3Sbellard #include "block_int.h"
295efa9d5aSAnthony Liguori #include "module.h"
30f795e743SLuiz Capitulino #include "qjson.h"
3168485420SKevin Wolf #include "qemu-coroutine.h"
32b2023818SLuiz Capitulino #include "qmp-commands.h"
330563e191SZhi Yong Wu #include "qemu-timer.h"
34fc01f7e7Sbellard 
3571e72a19SJuan Quintela #ifdef CONFIG_BSD
367674e7bfSbellard #include <sys/types.h>
377674e7bfSbellard #include <sys/stat.h>
387674e7bfSbellard #include <sys/ioctl.h>
3972cf2d4fSBlue Swirl #include <sys/queue.h>
40c5e97233Sblueswir1 #ifndef __DragonFly__
417674e7bfSbellard #include <sys/disk.h>
427674e7bfSbellard #endif
43c5e97233Sblueswir1 #endif
447674e7bfSbellard 
4549dc768dSaliguori #ifdef _WIN32
4649dc768dSaliguori #include <windows.h>
4749dc768dSaliguori #endif
4849dc768dSaliguori 
491c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
501c9805a3SStefan Hajnoczi 
51470c0504SStefan Hajnoczi typedef enum {
52470c0504SStefan Hajnoczi     BDRV_REQ_COPY_ON_READ = 0x1,
53f08f2ddaSStefan Hajnoczi     BDRV_REQ_ZERO_WRITE   = 0x2,
54470c0504SStefan Hajnoczi } BdrvRequestFlags;
55470c0504SStefan Hajnoczi 
567d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
57f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
58f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
59c87c0672Saliguori         BlockDriverCompletionFunc *cb, void *opaque);
60f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
61f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
62ce1a14dcSpbrook         BlockDriverCompletionFunc *cb, void *opaque);
63f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
64f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
65f9f05dc5SKevin Wolf                                          QEMUIOVector *iov);
66f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
67f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
68f9f05dc5SKevin Wolf                                          QEMUIOVector *iov);
69c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
70470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
71470c0504SStefan Hajnoczi     BdrvRequestFlags flags);
721c9805a3SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
73f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
74f08f2ddaSStefan Hajnoczi     BdrvRequestFlags flags);
75b2a61371SStefan Hajnoczi static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
76b2a61371SStefan Hajnoczi                                                int64_t sector_num,
77b2a61371SStefan Hajnoczi                                                QEMUIOVector *qiov,
78b2a61371SStefan Hajnoczi                                                int nb_sectors,
79b2a61371SStefan Hajnoczi                                                BlockDriverCompletionFunc *cb,
80b2a61371SStefan Hajnoczi                                                void *opaque,
818c5873d6SStefan Hajnoczi                                                bool is_write);
82b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque);
83621f0589SKevin Wolf static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
84621f0589SKevin Wolf     int64_t sector_num, int nb_sectors);
85ec530c81Sbellard 
8698f90dbaSZhi Yong Wu static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
8798f90dbaSZhi Yong Wu         bool is_write, double elapsed_time, uint64_t *wait);
8898f90dbaSZhi Yong Wu static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
8998f90dbaSZhi Yong Wu         double elapsed_time, uint64_t *wait);
9098f90dbaSZhi Yong Wu static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
9198f90dbaSZhi Yong Wu         bool is_write, int64_t *wait);
9298f90dbaSZhi Yong Wu 
931b7bdbc1SStefan Hajnoczi static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
941b7bdbc1SStefan Hajnoczi     QTAILQ_HEAD_INITIALIZER(bdrv_states);
957ee930d0Sblueswir1 
968a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
978a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
98ea2384d3Sbellard 
99f9092b10SMarkus Armbruster /* The device to use for VM snapshots */
100f9092b10SMarkus Armbruster static BlockDriverState *bs_snapshots;
101f9092b10SMarkus Armbruster 
102eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
103eb852011SMarkus Armbruster static int use_bdrv_whitelist;
104eb852011SMarkus Armbruster 
1059e0b22f4SStefan Hajnoczi #ifdef _WIN32
1069e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
1079e0b22f4SStefan Hajnoczi {
1089e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
1099e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
1109e0b22f4SStefan Hajnoczi             filename[1] == ':');
1119e0b22f4SStefan Hajnoczi }
1129e0b22f4SStefan Hajnoczi 
1139e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
1149e0b22f4SStefan Hajnoczi {
1159e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
1169e0b22f4SStefan Hajnoczi         filename[2] == '\0')
1179e0b22f4SStefan Hajnoczi         return 1;
1189e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
1199e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
1209e0b22f4SStefan Hajnoczi         return 1;
1219e0b22f4SStefan Hajnoczi     return 0;
1229e0b22f4SStefan Hajnoczi }
1239e0b22f4SStefan Hajnoczi #endif
1249e0b22f4SStefan Hajnoczi 
1250563e191SZhi Yong Wu /* throttling disk I/O limits */
12698f90dbaSZhi Yong Wu void bdrv_io_limits_disable(BlockDriverState *bs)
12798f90dbaSZhi Yong Wu {
12898f90dbaSZhi Yong Wu     bs->io_limits_enabled = false;
12998f90dbaSZhi Yong Wu 
13098f90dbaSZhi Yong Wu     while (qemu_co_queue_next(&bs->throttled_reqs));
13198f90dbaSZhi Yong Wu 
13298f90dbaSZhi Yong Wu     if (bs->block_timer) {
13398f90dbaSZhi Yong Wu         qemu_del_timer(bs->block_timer);
13498f90dbaSZhi Yong Wu         qemu_free_timer(bs->block_timer);
13598f90dbaSZhi Yong Wu         bs->block_timer = NULL;
13698f90dbaSZhi Yong Wu     }
13798f90dbaSZhi Yong Wu 
13898f90dbaSZhi Yong Wu     bs->slice_start = 0;
13998f90dbaSZhi Yong Wu     bs->slice_end   = 0;
14098f90dbaSZhi Yong Wu     bs->slice_time  = 0;
14198f90dbaSZhi Yong Wu     memset(&bs->io_base, 0, sizeof(bs->io_base));
14298f90dbaSZhi Yong Wu }
14398f90dbaSZhi Yong Wu 
1440563e191SZhi Yong Wu static void bdrv_block_timer(void *opaque)
1450563e191SZhi Yong Wu {
1460563e191SZhi Yong Wu     BlockDriverState *bs = opaque;
1470563e191SZhi Yong Wu 
1480563e191SZhi Yong Wu     qemu_co_queue_next(&bs->throttled_reqs);
1490563e191SZhi Yong Wu }
1500563e191SZhi Yong Wu 
1510563e191SZhi Yong Wu void bdrv_io_limits_enable(BlockDriverState *bs)
1520563e191SZhi Yong Wu {
1530563e191SZhi Yong Wu     qemu_co_queue_init(&bs->throttled_reqs);
1540563e191SZhi Yong Wu     bs->block_timer = qemu_new_timer_ns(vm_clock, bdrv_block_timer, bs);
1550563e191SZhi Yong Wu     bs->slice_time  = 5 * BLOCK_IO_SLICE_TIME;
1560563e191SZhi Yong Wu     bs->slice_start = qemu_get_clock_ns(vm_clock);
1570563e191SZhi Yong Wu     bs->slice_end   = bs->slice_start + bs->slice_time;
1580563e191SZhi Yong Wu     memset(&bs->io_base, 0, sizeof(bs->io_base));
1590563e191SZhi Yong Wu     bs->io_limits_enabled = true;
1600563e191SZhi Yong Wu }
1610563e191SZhi Yong Wu 
1620563e191SZhi Yong Wu bool bdrv_io_limits_enabled(BlockDriverState *bs)
1630563e191SZhi Yong Wu {
1640563e191SZhi Yong Wu     BlockIOLimit *io_limits = &bs->io_limits;
1650563e191SZhi Yong Wu     return io_limits->bps[BLOCK_IO_LIMIT_READ]
1660563e191SZhi Yong Wu          || io_limits->bps[BLOCK_IO_LIMIT_WRITE]
1670563e191SZhi Yong Wu          || io_limits->bps[BLOCK_IO_LIMIT_TOTAL]
1680563e191SZhi Yong Wu          || io_limits->iops[BLOCK_IO_LIMIT_READ]
1690563e191SZhi Yong Wu          || io_limits->iops[BLOCK_IO_LIMIT_WRITE]
1700563e191SZhi Yong Wu          || io_limits->iops[BLOCK_IO_LIMIT_TOTAL];
1710563e191SZhi Yong Wu }
1720563e191SZhi Yong Wu 
17398f90dbaSZhi Yong Wu static void bdrv_io_limits_intercept(BlockDriverState *bs,
17498f90dbaSZhi Yong Wu                                      bool is_write, int nb_sectors)
17598f90dbaSZhi Yong Wu {
17698f90dbaSZhi Yong Wu     int64_t wait_time = -1;
17798f90dbaSZhi Yong Wu 
17898f90dbaSZhi Yong Wu     if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
17998f90dbaSZhi Yong Wu         qemu_co_queue_wait(&bs->throttled_reqs);
18098f90dbaSZhi Yong Wu     }
18198f90dbaSZhi Yong Wu 
18298f90dbaSZhi Yong Wu     /* In fact, we hope to keep each request's timing, in FIFO mode. The next
18398f90dbaSZhi Yong Wu      * throttled requests will not be dequeued until the current request is
18498f90dbaSZhi Yong Wu      * allowed to be serviced. So if the current request still exceeds the
18598f90dbaSZhi Yong Wu      * limits, it will be inserted to the head. All requests followed it will
18698f90dbaSZhi Yong Wu      * be still in throttled_reqs queue.
18798f90dbaSZhi Yong Wu      */
18898f90dbaSZhi Yong Wu 
18998f90dbaSZhi Yong Wu     while (bdrv_exceed_io_limits(bs, nb_sectors, is_write, &wait_time)) {
19098f90dbaSZhi Yong Wu         qemu_mod_timer(bs->block_timer,
19198f90dbaSZhi Yong Wu                        wait_time + qemu_get_clock_ns(vm_clock));
19298f90dbaSZhi Yong Wu         qemu_co_queue_wait_insert_head(&bs->throttled_reqs);
19398f90dbaSZhi Yong Wu     }
19498f90dbaSZhi Yong Wu 
19598f90dbaSZhi Yong Wu     qemu_co_queue_next(&bs->throttled_reqs);
19698f90dbaSZhi Yong Wu }
19798f90dbaSZhi Yong Wu 
1989e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
1999e0b22f4SStefan Hajnoczi static int path_has_protocol(const char *path)
2009e0b22f4SStefan Hajnoczi {
201947995c0SPaolo Bonzini     const char *p;
202947995c0SPaolo Bonzini 
2039e0b22f4SStefan Hajnoczi #ifdef _WIN32
2049e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
2059e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
2069e0b22f4SStefan Hajnoczi         return 0;
2079e0b22f4SStefan Hajnoczi     }
208947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
209947995c0SPaolo Bonzini #else
210947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
2119e0b22f4SStefan Hajnoczi #endif
2129e0b22f4SStefan Hajnoczi 
213947995c0SPaolo Bonzini     return *p == ':';
2149e0b22f4SStefan Hajnoczi }
2159e0b22f4SStefan Hajnoczi 
21683f64091Sbellard int path_is_absolute(const char *path)
21783f64091Sbellard {
21821664424Sbellard #ifdef _WIN32
21921664424Sbellard     /* specific case for names like: "\\.\d:" */
220f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
22121664424Sbellard         return 1;
222f53f4da9SPaolo Bonzini     }
223f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
2243b9f94e1Sbellard #else
225f53f4da9SPaolo Bonzini     return (*path == '/');
2263b9f94e1Sbellard #endif
22783f64091Sbellard }
22883f64091Sbellard 
22983f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
23083f64091Sbellard    path to it by considering it is relative to base_path. URL are
23183f64091Sbellard    supported. */
23283f64091Sbellard void path_combine(char *dest, int dest_size,
23383f64091Sbellard                   const char *base_path,
23483f64091Sbellard                   const char *filename)
23583f64091Sbellard {
23683f64091Sbellard     const char *p, *p1;
23783f64091Sbellard     int len;
23883f64091Sbellard 
23983f64091Sbellard     if (dest_size <= 0)
24083f64091Sbellard         return;
24183f64091Sbellard     if (path_is_absolute(filename)) {
24283f64091Sbellard         pstrcpy(dest, dest_size, filename);
24383f64091Sbellard     } else {
24483f64091Sbellard         p = strchr(base_path, ':');
24583f64091Sbellard         if (p)
24683f64091Sbellard             p++;
24783f64091Sbellard         else
24883f64091Sbellard             p = base_path;
2493b9f94e1Sbellard         p1 = strrchr(base_path, '/');
2503b9f94e1Sbellard #ifdef _WIN32
2513b9f94e1Sbellard         {
2523b9f94e1Sbellard             const char *p2;
2533b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
2543b9f94e1Sbellard             if (!p1 || p2 > p1)
2553b9f94e1Sbellard                 p1 = p2;
2563b9f94e1Sbellard         }
2573b9f94e1Sbellard #endif
25883f64091Sbellard         if (p1)
25983f64091Sbellard             p1++;
26083f64091Sbellard         else
26183f64091Sbellard             p1 = base_path;
26283f64091Sbellard         if (p1 > p)
26383f64091Sbellard             p = p1;
26483f64091Sbellard         len = p - base_path;
26583f64091Sbellard         if (len > dest_size - 1)
26683f64091Sbellard             len = dest_size - 1;
26783f64091Sbellard         memcpy(dest, base_path, len);
26883f64091Sbellard         dest[len] = '\0';
26983f64091Sbellard         pstrcat(dest, dest_size, filename);
27083f64091Sbellard     }
27183f64091Sbellard }
27283f64091Sbellard 
273dc5a1371SPaolo Bonzini void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz)
274dc5a1371SPaolo Bonzini {
275dc5a1371SPaolo Bonzini     if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) {
276dc5a1371SPaolo Bonzini         pstrcpy(dest, sz, bs->backing_file);
277dc5a1371SPaolo Bonzini     } else {
278dc5a1371SPaolo Bonzini         path_combine(dest, sz, bs->filename, bs->backing_file);
279dc5a1371SPaolo Bonzini     }
280dc5a1371SPaolo Bonzini }
281dc5a1371SPaolo Bonzini 
2825efa9d5aSAnthony Liguori void bdrv_register(BlockDriver *bdrv)
283ea2384d3Sbellard {
2848c5873d6SStefan Hajnoczi     /* Block drivers without coroutine functions need emulation */
2858c5873d6SStefan Hajnoczi     if (!bdrv->bdrv_co_readv) {
286f9f05dc5SKevin Wolf         bdrv->bdrv_co_readv = bdrv_co_readv_em;
287f9f05dc5SKevin Wolf         bdrv->bdrv_co_writev = bdrv_co_writev_em;
288f9f05dc5SKevin Wolf 
289f8c35c1dSStefan Hajnoczi         /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
290f8c35c1dSStefan Hajnoczi          * the block driver lacks aio we need to emulate that too.
291f8c35c1dSStefan Hajnoczi          */
292f9f05dc5SKevin Wolf         if (!bdrv->bdrv_aio_readv) {
29383f64091Sbellard             /* add AIO emulation layer */
294f141eafeSaliguori             bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
295f141eafeSaliguori             bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
29683f64091Sbellard         }
297f9f05dc5SKevin Wolf     }
298b2e12bc6SChristoph Hellwig 
2998a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
300ea2384d3Sbellard }
301b338082bSbellard 
302b338082bSbellard /* create a new block device (by default it is empty) */
303b338082bSbellard BlockDriverState *bdrv_new(const char *device_name)
304fc01f7e7Sbellard {
3051b7bdbc1SStefan Hajnoczi     BlockDriverState *bs;
306b338082bSbellard 
3077267c094SAnthony Liguori     bs = g_malloc0(sizeof(BlockDriverState));
308b338082bSbellard     pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
309ea2384d3Sbellard     if (device_name[0] != '\0') {
3101b7bdbc1SStefan Hajnoczi         QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
311ea2384d3Sbellard     }
31228a7282aSLuiz Capitulino     bdrv_iostatus_disable(bs);
313b338082bSbellard     return bs;
314b338082bSbellard }
315b338082bSbellard 
316ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name)
317ea2384d3Sbellard {
318ea2384d3Sbellard     BlockDriver *drv1;
3198a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3208a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
321ea2384d3Sbellard             return drv1;
322ea2384d3Sbellard         }
3238a22f02aSStefan Hajnoczi     }
324ea2384d3Sbellard     return NULL;
325ea2384d3Sbellard }
326ea2384d3Sbellard 
327eb852011SMarkus Armbruster static int bdrv_is_whitelisted(BlockDriver *drv)
328eb852011SMarkus Armbruster {
329eb852011SMarkus Armbruster     static const char *whitelist[] = {
330eb852011SMarkus Armbruster         CONFIG_BDRV_WHITELIST
331eb852011SMarkus Armbruster     };
332eb852011SMarkus Armbruster     const char **p;
333eb852011SMarkus Armbruster 
334eb852011SMarkus Armbruster     if (!whitelist[0])
335eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
336eb852011SMarkus Armbruster 
337eb852011SMarkus Armbruster     for (p = whitelist; *p; p++) {
338eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
339eb852011SMarkus Armbruster             return 1;
340eb852011SMarkus Armbruster         }
341eb852011SMarkus Armbruster     }
342eb852011SMarkus Armbruster     return 0;
343eb852011SMarkus Armbruster }
344eb852011SMarkus Armbruster 
345eb852011SMarkus Armbruster BlockDriver *bdrv_find_whitelisted_format(const char *format_name)
346eb852011SMarkus Armbruster {
347eb852011SMarkus Armbruster     BlockDriver *drv = bdrv_find_format(format_name);
348eb852011SMarkus Armbruster     return drv && bdrv_is_whitelisted(drv) ? drv : NULL;
349eb852011SMarkus Armbruster }
350eb852011SMarkus Armbruster 
3515b7e1542SZhi Yong Wu typedef struct CreateCo {
3525b7e1542SZhi Yong Wu     BlockDriver *drv;
3535b7e1542SZhi Yong Wu     char *filename;
3545b7e1542SZhi Yong Wu     QEMUOptionParameter *options;
3555b7e1542SZhi Yong Wu     int ret;
3565b7e1542SZhi Yong Wu } CreateCo;
3575b7e1542SZhi Yong Wu 
3585b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
3595b7e1542SZhi Yong Wu {
3605b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
3615b7e1542SZhi Yong Wu     assert(cco->drv);
3625b7e1542SZhi Yong Wu 
3635b7e1542SZhi Yong Wu     cco->ret = cco->drv->bdrv_create(cco->filename, cco->options);
3645b7e1542SZhi Yong Wu }
3655b7e1542SZhi Yong Wu 
3660e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
3670e7e1989SKevin Wolf     QEMUOptionParameter *options)
368ea2384d3Sbellard {
3695b7e1542SZhi Yong Wu     int ret;
3700e7e1989SKevin Wolf 
3715b7e1542SZhi Yong Wu     Coroutine *co;
3725b7e1542SZhi Yong Wu     CreateCo cco = {
3735b7e1542SZhi Yong Wu         .drv = drv,
3745b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
3755b7e1542SZhi Yong Wu         .options = options,
3765b7e1542SZhi Yong Wu         .ret = NOT_DONE,
3775b7e1542SZhi Yong Wu     };
3785b7e1542SZhi Yong Wu 
3795b7e1542SZhi Yong Wu     if (!drv->bdrv_create) {
3805b7e1542SZhi Yong Wu         return -ENOTSUP;
3815b7e1542SZhi Yong Wu     }
3825b7e1542SZhi Yong Wu 
3835b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
3845b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
3855b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
3865b7e1542SZhi Yong Wu     } else {
3875b7e1542SZhi Yong Wu         co = qemu_coroutine_create(bdrv_create_co_entry);
3885b7e1542SZhi Yong Wu         qemu_coroutine_enter(co, &cco);
3895b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
3905b7e1542SZhi Yong Wu             qemu_aio_wait();
3915b7e1542SZhi Yong Wu         }
3925b7e1542SZhi Yong Wu     }
3935b7e1542SZhi Yong Wu 
3945b7e1542SZhi Yong Wu     ret = cco.ret;
3955b7e1542SZhi Yong Wu     g_free(cco.filename);
3965b7e1542SZhi Yong Wu 
3975b7e1542SZhi Yong Wu     return ret;
398ea2384d3Sbellard }
399ea2384d3Sbellard 
40084a12e66SChristoph Hellwig int bdrv_create_file(const char* filename, QEMUOptionParameter *options)
40184a12e66SChristoph Hellwig {
40284a12e66SChristoph Hellwig     BlockDriver *drv;
40384a12e66SChristoph Hellwig 
404b50cbabcSMORITA Kazutaka     drv = bdrv_find_protocol(filename);
40584a12e66SChristoph Hellwig     if (drv == NULL) {
40616905d71SStefan Hajnoczi         return -ENOENT;
40784a12e66SChristoph Hellwig     }
40884a12e66SChristoph Hellwig 
40984a12e66SChristoph Hellwig     return bdrv_create(drv, filename, options);
41084a12e66SChristoph Hellwig }
41184a12e66SChristoph Hellwig 
412eba25057SJim Meyering /*
413eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
414eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
415eba25057SJim Meyering  */
416eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
417eba25057SJim Meyering {
418d5249393Sbellard #ifdef _WIN32
4193b9f94e1Sbellard     char temp_dir[MAX_PATH];
420eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
421eba25057SJim Meyering        have length MAX_PATH or greater.  */
422eba25057SJim Meyering     assert(size >= MAX_PATH);
423eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
424eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
425eba25057SJim Meyering             ? 0 : -GetLastError());
426d5249393Sbellard #else
427ea2384d3Sbellard     int fd;
4287ccfb2ebSblueswir1     const char *tmpdir;
4290badc1eeSaurel32     tmpdir = getenv("TMPDIR");
4300badc1eeSaurel32     if (!tmpdir)
4310badc1eeSaurel32         tmpdir = "/tmp";
432eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
433eba25057SJim Meyering         return -EOVERFLOW;
434ea2384d3Sbellard     }
435eba25057SJim Meyering     fd = mkstemp(filename);
436fe235a06SDunrong Huang     if (fd < 0) {
437fe235a06SDunrong Huang         return -errno;
438fe235a06SDunrong Huang     }
439fe235a06SDunrong Huang     if (close(fd) != 0) {
440fe235a06SDunrong Huang         unlink(filename);
441eba25057SJim Meyering         return -errno;
442eba25057SJim Meyering     }
443eba25057SJim Meyering     return 0;
444d5249393Sbellard #endif
445eba25057SJim Meyering }
446ea2384d3Sbellard 
447f3a5d3f8SChristoph Hellwig /*
448f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
449f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
450f3a5d3f8SChristoph Hellwig  */
451f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
452f3a5d3f8SChristoph Hellwig {
453508c7cb3SChristoph Hellwig     int score_max = 0, score;
454508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
455f3a5d3f8SChristoph Hellwig 
4568a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
457508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
458508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
459508c7cb3SChristoph Hellwig             if (score > score_max) {
460508c7cb3SChristoph Hellwig                 score_max = score;
461508c7cb3SChristoph Hellwig                 drv = d;
462f3a5d3f8SChristoph Hellwig             }
463508c7cb3SChristoph Hellwig         }
464f3a5d3f8SChristoph Hellwig     }
465f3a5d3f8SChristoph Hellwig 
466508c7cb3SChristoph Hellwig     return drv;
467f3a5d3f8SChristoph Hellwig }
468f3a5d3f8SChristoph Hellwig 
469b50cbabcSMORITA Kazutaka BlockDriver *bdrv_find_protocol(const char *filename)
47084a12e66SChristoph Hellwig {
47184a12e66SChristoph Hellwig     BlockDriver *drv1;
47284a12e66SChristoph Hellwig     char protocol[128];
47384a12e66SChristoph Hellwig     int len;
47484a12e66SChristoph Hellwig     const char *p;
47584a12e66SChristoph Hellwig 
47666f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
47766f82ceeSKevin Wolf 
47839508e7aSChristoph Hellwig     /*
47939508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
48039508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
48139508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
48239508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
48339508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
48439508e7aSChristoph Hellwig      */
48584a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
48639508e7aSChristoph Hellwig     if (drv1) {
48784a12e66SChristoph Hellwig         return drv1;
48884a12e66SChristoph Hellwig     }
48939508e7aSChristoph Hellwig 
4909e0b22f4SStefan Hajnoczi     if (!path_has_protocol(filename)) {
49139508e7aSChristoph Hellwig         return bdrv_find_format("file");
49239508e7aSChristoph Hellwig     }
4939e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
4949e0b22f4SStefan Hajnoczi     assert(p != NULL);
49584a12e66SChristoph Hellwig     len = p - filename;
49684a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
49784a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
49884a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
49984a12e66SChristoph Hellwig     protocol[len] = '\0';
50084a12e66SChristoph Hellwig     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
50184a12e66SChristoph Hellwig         if (drv1->protocol_name &&
50284a12e66SChristoph Hellwig             !strcmp(drv1->protocol_name, protocol)) {
50384a12e66SChristoph Hellwig             return drv1;
50484a12e66SChristoph Hellwig         }
50584a12e66SChristoph Hellwig     }
50684a12e66SChristoph Hellwig     return NULL;
50784a12e66SChristoph Hellwig }
50884a12e66SChristoph Hellwig 
509c98ac35dSStefan Weil static int find_image_format(const char *filename, BlockDriver **pdrv)
510ea2384d3Sbellard {
51183f64091Sbellard     int ret, score, score_max;
512ea2384d3Sbellard     BlockDriver *drv1, *drv;
51383f64091Sbellard     uint8_t buf[2048];
51483f64091Sbellard     BlockDriverState *bs;
515ea2384d3Sbellard 
516f5edb014SNaphtali Sprei     ret = bdrv_file_open(&bs, filename, 0);
517c98ac35dSStefan Weil     if (ret < 0) {
518c98ac35dSStefan Weil         *pdrv = NULL;
519c98ac35dSStefan Weil         return ret;
520c98ac35dSStefan Weil     }
521f8ea0b00SNicholas Bellinger 
52208a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
52308a00559SKevin Wolf     if (bs->sg || !bdrv_is_inserted(bs)) {
5241a396859SNicholas A. Bellinger         bdrv_delete(bs);
525c98ac35dSStefan Weil         drv = bdrv_find_format("raw");
526c98ac35dSStefan Weil         if (!drv) {
527c98ac35dSStefan Weil             ret = -ENOENT;
528c98ac35dSStefan Weil         }
529c98ac35dSStefan Weil         *pdrv = drv;
530c98ac35dSStefan Weil         return ret;
5311a396859SNicholas A. Bellinger     }
532f8ea0b00SNicholas Bellinger 
53383f64091Sbellard     ret = bdrv_pread(bs, 0, buf, sizeof(buf));
53483f64091Sbellard     bdrv_delete(bs);
535ea2384d3Sbellard     if (ret < 0) {
536c98ac35dSStefan Weil         *pdrv = NULL;
537c98ac35dSStefan Weil         return ret;
538ea2384d3Sbellard     }
539ea2384d3Sbellard 
540ea2384d3Sbellard     score_max = 0;
54184a12e66SChristoph Hellwig     drv = NULL;
5428a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
54383f64091Sbellard         if (drv1->bdrv_probe) {
544ea2384d3Sbellard             score = drv1->bdrv_probe(buf, ret, filename);
545ea2384d3Sbellard             if (score > score_max) {
546ea2384d3Sbellard                 score_max = score;
547ea2384d3Sbellard                 drv = drv1;
548ea2384d3Sbellard             }
549ea2384d3Sbellard         }
55083f64091Sbellard     }
551c98ac35dSStefan Weil     if (!drv) {
552c98ac35dSStefan Weil         ret = -ENOENT;
553c98ac35dSStefan Weil     }
554c98ac35dSStefan Weil     *pdrv = drv;
555c98ac35dSStefan Weil     return ret;
556ea2384d3Sbellard }
557ea2384d3Sbellard 
55851762288SStefan Hajnoczi /**
55951762288SStefan Hajnoczi  * Set the current 'total_sectors' value
56051762288SStefan Hajnoczi  */
56151762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
56251762288SStefan Hajnoczi {
56351762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
56451762288SStefan Hajnoczi 
565396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
566396759adSNicholas Bellinger     if (bs->sg)
567396759adSNicholas Bellinger         return 0;
568396759adSNicholas Bellinger 
56951762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
57051762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
57151762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
57251762288SStefan Hajnoczi         if (length < 0) {
57351762288SStefan Hajnoczi             return length;
57451762288SStefan Hajnoczi         }
57551762288SStefan Hajnoczi         hint = length >> BDRV_SECTOR_BITS;
57651762288SStefan Hajnoczi     }
57751762288SStefan Hajnoczi 
57851762288SStefan Hajnoczi     bs->total_sectors = hint;
57951762288SStefan Hajnoczi     return 0;
58051762288SStefan Hajnoczi }
58151762288SStefan Hajnoczi 
582c3993cdcSStefan Hajnoczi /**
583c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
584c3993cdcSStefan Hajnoczi  *
585c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
586c3993cdcSStefan Hajnoczi  */
587c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags)
588c3993cdcSStefan Hajnoczi {
589c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
590c3993cdcSStefan Hajnoczi 
591c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
592c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
59392196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
59492196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
595c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
596c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_CACHE_WB;
597c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
598c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_CACHE_WB;
599c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
600c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
601c3993cdcSStefan Hajnoczi         /* this is the default */
602c3993cdcSStefan Hajnoczi     } else {
603c3993cdcSStefan Hajnoczi         return -1;
604c3993cdcSStefan Hajnoczi     }
605c3993cdcSStefan Hajnoczi 
606c3993cdcSStefan Hajnoczi     return 0;
607c3993cdcSStefan Hajnoczi }
608c3993cdcSStefan Hajnoczi 
60953fec9d3SStefan Hajnoczi /**
61053fec9d3SStefan Hajnoczi  * The copy-on-read flag is actually a reference count so multiple users may
61153fec9d3SStefan Hajnoczi  * use the feature without worrying about clobbering its previous state.
61253fec9d3SStefan Hajnoczi  * Copy-on-read stays enabled until all users have called to disable it.
61353fec9d3SStefan Hajnoczi  */
61453fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs)
61553fec9d3SStefan Hajnoczi {
61653fec9d3SStefan Hajnoczi     bs->copy_on_read++;
61753fec9d3SStefan Hajnoczi }
61853fec9d3SStefan Hajnoczi 
61953fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs)
62053fec9d3SStefan Hajnoczi {
62153fec9d3SStefan Hajnoczi     assert(bs->copy_on_read > 0);
62253fec9d3SStefan Hajnoczi     bs->copy_on_read--;
62353fec9d3SStefan Hajnoczi }
62453fec9d3SStefan Hajnoczi 
625b6ce07aaSKevin Wolf /*
62657915332SKevin Wolf  * Common part for opening disk images and files
62757915332SKevin Wolf  */
62857915332SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, const char *filename,
62957915332SKevin Wolf     int flags, BlockDriver *drv)
63057915332SKevin Wolf {
63157915332SKevin Wolf     int ret, open_flags;
63257915332SKevin Wolf 
63357915332SKevin Wolf     assert(drv != NULL);
6346405875cSPaolo Bonzini     assert(bs->file == NULL);
63557915332SKevin Wolf 
63628dcee10SStefan Hajnoczi     trace_bdrv_open_common(bs, filename, flags, drv->format_name);
63728dcee10SStefan Hajnoczi 
63857915332SKevin Wolf     bs->open_flags = flags;
63957915332SKevin Wolf     bs->buffer_alignment = 512;
64057915332SKevin Wolf 
64153fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
64253fec9d3SStefan Hajnoczi     if ((flags & BDRV_O_RDWR) && (flags & BDRV_O_COPY_ON_READ)) {
64353fec9d3SStefan Hajnoczi         bdrv_enable_copy_on_read(bs);
64453fec9d3SStefan Hajnoczi     }
64553fec9d3SStefan Hajnoczi 
64657915332SKevin Wolf     pstrcpy(bs->filename, sizeof(bs->filename), filename);
64757915332SKevin Wolf 
64857915332SKevin Wolf     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) {
64957915332SKevin Wolf         return -ENOTSUP;
65057915332SKevin Wolf     }
65157915332SKevin Wolf 
65257915332SKevin Wolf     bs->drv = drv;
6537267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
65457915332SKevin Wolf 
65503f541bdSStefan Hajnoczi     bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
656e1e9b0acSPaolo Bonzini     open_flags = flags | BDRV_O_CACHE_WB;
65757915332SKevin Wolf 
65857915332SKevin Wolf     /*
65957915332SKevin Wolf      * Clear flags that are internal to the block layer before opening the
66057915332SKevin Wolf      * image.
66157915332SKevin Wolf      */
662e1e9b0acSPaolo Bonzini     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
66357915332SKevin Wolf 
66457915332SKevin Wolf     /*
665ebabb67aSStefan Weil      * Snapshots should be writable.
66657915332SKevin Wolf      */
66757915332SKevin Wolf     if (bs->is_temporary) {
66857915332SKevin Wolf         open_flags |= BDRV_O_RDWR;
66957915332SKevin Wolf     }
67057915332SKevin Wolf 
671be028adcSJeff Cody     bs->read_only = !(open_flags & BDRV_O_RDWR);
672e7c63796SStefan Hajnoczi 
67366f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
67466f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
67566f82ceeSKevin Wolf         ret = drv->bdrv_file_open(bs, filename, open_flags);
67666f82ceeSKevin Wolf     } else {
67766f82ceeSKevin Wolf         ret = bdrv_file_open(&bs->file, filename, open_flags);
67866f82ceeSKevin Wolf         if (ret >= 0) {
67966f82ceeSKevin Wolf             ret = drv->bdrv_open(bs, open_flags);
68066f82ceeSKevin Wolf         }
68166f82ceeSKevin Wolf     }
68266f82ceeSKevin Wolf 
68357915332SKevin Wolf     if (ret < 0) {
68457915332SKevin Wolf         goto free_and_fail;
68557915332SKevin Wolf     }
68657915332SKevin Wolf 
68751762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
68851762288SStefan Hajnoczi     if (ret < 0) {
68951762288SStefan Hajnoczi         goto free_and_fail;
69057915332SKevin Wolf     }
69151762288SStefan Hajnoczi 
69257915332SKevin Wolf #ifndef _WIN32
69357915332SKevin Wolf     if (bs->is_temporary) {
69457915332SKevin Wolf         unlink(filename);
69557915332SKevin Wolf     }
69657915332SKevin Wolf #endif
69757915332SKevin Wolf     return 0;
69857915332SKevin Wolf 
69957915332SKevin Wolf free_and_fail:
70066f82ceeSKevin Wolf     if (bs->file) {
70166f82ceeSKevin Wolf         bdrv_delete(bs->file);
70266f82ceeSKevin Wolf         bs->file = NULL;
70366f82ceeSKevin Wolf     }
7047267c094SAnthony Liguori     g_free(bs->opaque);
70557915332SKevin Wolf     bs->opaque = NULL;
70657915332SKevin Wolf     bs->drv = NULL;
70757915332SKevin Wolf     return ret;
70857915332SKevin Wolf }
70957915332SKevin Wolf 
71057915332SKevin Wolf /*
711b6ce07aaSKevin Wolf  * Opens a file using a protocol (file, host_device, nbd, ...)
712b6ce07aaSKevin Wolf  */
71383f64091Sbellard int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags)
714b338082bSbellard {
71583f64091Sbellard     BlockDriverState *bs;
7166db95603SChristoph Hellwig     BlockDriver *drv;
71783f64091Sbellard     int ret;
7183b0d4f61Sbellard 
719b50cbabcSMORITA Kazutaka     drv = bdrv_find_protocol(filename);
7206db95603SChristoph Hellwig     if (!drv) {
7216db95603SChristoph Hellwig         return -ENOENT;
7226db95603SChristoph Hellwig     }
7236db95603SChristoph Hellwig 
72483f64091Sbellard     bs = bdrv_new("");
725b6ce07aaSKevin Wolf     ret = bdrv_open_common(bs, filename, flags, drv);
72683f64091Sbellard     if (ret < 0) {
72783f64091Sbellard         bdrv_delete(bs);
72883f64091Sbellard         return ret;
7293b0d4f61Sbellard     }
73071d0770cSaliguori     bs->growable = 1;
73183f64091Sbellard     *pbs = bs;
73283f64091Sbellard     return 0;
7333b0d4f61Sbellard }
7343b0d4f61Sbellard 
735b6ce07aaSKevin Wolf /*
736b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
737b6ce07aaSKevin Wolf  */
738d6e9098eSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
739ea2384d3Sbellard               BlockDriver *drv)
740ea2384d3Sbellard {
741b6ce07aaSKevin Wolf     int ret;
7422b572816SKevin Wolf     char tmp_filename[PATH_MAX];
74333e3963eSbellard 
74483f64091Sbellard     if (flags & BDRV_O_SNAPSHOT) {
745ea2384d3Sbellard         BlockDriverState *bs1;
746ea2384d3Sbellard         int64_t total_size;
7477c96d46eSaliguori         int is_protocol = 0;
74891a073a9SKevin Wolf         BlockDriver *bdrv_qcow2;
74991a073a9SKevin Wolf         QEMUOptionParameter *options;
750b6ce07aaSKevin Wolf         char backing_filename[PATH_MAX];
75133e3963eSbellard 
752ea2384d3Sbellard         /* if snapshot, we create a temporary backing file and open it
753ea2384d3Sbellard            instead of opening 'filename' directly */
754ea2384d3Sbellard 
755ea2384d3Sbellard         /* if there is a backing file, use it */
756ea2384d3Sbellard         bs1 = bdrv_new("");
757d6e9098eSKevin Wolf         ret = bdrv_open(bs1, filename, 0, drv);
75851d7c00cSaliguori         if (ret < 0) {
759ea2384d3Sbellard             bdrv_delete(bs1);
76051d7c00cSaliguori             return ret;
761ea2384d3Sbellard         }
7623e82990bSJes Sorensen         total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
7637c96d46eSaliguori 
7647c96d46eSaliguori         if (bs1->drv && bs1->drv->protocol_name)
7657c96d46eSaliguori             is_protocol = 1;
7667c96d46eSaliguori 
767ea2384d3Sbellard         bdrv_delete(bs1);
768ea2384d3Sbellard 
769eba25057SJim Meyering         ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename));
770eba25057SJim Meyering         if (ret < 0) {
771eba25057SJim Meyering             return ret;
772eba25057SJim Meyering         }
7737c96d46eSaliguori 
7747c96d46eSaliguori         /* Real path is meaningless for protocols */
7757c96d46eSaliguori         if (is_protocol)
7767c96d46eSaliguori             snprintf(backing_filename, sizeof(backing_filename),
7777c96d46eSaliguori                      "%s", filename);
778114cdfa9SKirill A. Shutemov         else if (!realpath(filename, backing_filename))
779114cdfa9SKirill A. Shutemov             return -errno;
7807c96d46eSaliguori 
78191a073a9SKevin Wolf         bdrv_qcow2 = bdrv_find_format("qcow2");
78291a073a9SKevin Wolf         options = parse_option_parameters("", bdrv_qcow2->create_options, NULL);
78391a073a9SKevin Wolf 
7843e82990bSJes Sorensen         set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size);
78591a073a9SKevin Wolf         set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename);
78691a073a9SKevin Wolf         if (drv) {
78791a073a9SKevin Wolf             set_option_parameter(options, BLOCK_OPT_BACKING_FMT,
78891a073a9SKevin Wolf                 drv->format_name);
78991a073a9SKevin Wolf         }
79091a073a9SKevin Wolf 
79191a073a9SKevin Wolf         ret = bdrv_create(bdrv_qcow2, tmp_filename, options);
792d748768cSJan Kiszka         free_option_parameters(options);
79351d7c00cSaliguori         if (ret < 0) {
79451d7c00cSaliguori             return ret;
795ea2384d3Sbellard         }
79691a073a9SKevin Wolf 
797ea2384d3Sbellard         filename = tmp_filename;
79891a073a9SKevin Wolf         drv = bdrv_qcow2;
799ea2384d3Sbellard         bs->is_temporary = 1;
800ea2384d3Sbellard     }
801ea2384d3Sbellard 
802b6ce07aaSKevin Wolf     /* Find the right image format driver */
8036db95603SChristoph Hellwig     if (!drv) {
804c98ac35dSStefan Weil         ret = find_image_format(filename, &drv);
805ea2384d3Sbellard     }
8066987307cSChristoph Hellwig 
80751d7c00cSaliguori     if (!drv) {
80851d7c00cSaliguori         goto unlink_and_fail;
80983f64091Sbellard     }
810b6ce07aaSKevin Wolf 
811be028adcSJeff Cody     if (flags & BDRV_O_RDWR) {
812be028adcSJeff Cody         flags |= BDRV_O_ALLOW_RDWR;
813be028adcSJeff Cody     }
814be028adcSJeff Cody 
815b6ce07aaSKevin Wolf     /* Open the image */
816b6ce07aaSKevin Wolf     ret = bdrv_open_common(bs, filename, flags, drv);
817b6ce07aaSKevin Wolf     if (ret < 0) {
8186987307cSChristoph Hellwig         goto unlink_and_fail;
8196987307cSChristoph Hellwig     }
8206987307cSChristoph Hellwig 
821b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
822b6ce07aaSKevin Wolf     if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') {
823b6ce07aaSKevin Wolf         char backing_filename[PATH_MAX];
824b6ce07aaSKevin Wolf         int back_flags;
825b6ce07aaSKevin Wolf         BlockDriver *back_drv = NULL;
826b6ce07aaSKevin Wolf 
827b6ce07aaSKevin Wolf         bs->backing_hd = bdrv_new("");
828dc5a1371SPaolo Bonzini         bdrv_get_full_backing_filename(bs, backing_filename,
829dc5a1371SPaolo Bonzini                                        sizeof(backing_filename));
830df2dbb4aSStefan Hajnoczi 
831df2dbb4aSStefan Hajnoczi         if (bs->backing_format[0] != '\0') {
832b6ce07aaSKevin Wolf             back_drv = bdrv_find_format(bs->backing_format);
833df2dbb4aSStefan Hajnoczi         }
834b6ce07aaSKevin Wolf 
835b6ce07aaSKevin Wolf         /* backing files always opened read-only */
836b6ce07aaSKevin Wolf         back_flags =
837b6ce07aaSKevin Wolf             flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
838b6ce07aaSKevin Wolf 
839b6ce07aaSKevin Wolf         ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv);
840b6ce07aaSKevin Wolf         if (ret < 0) {
841b6ce07aaSKevin Wolf             bdrv_close(bs);
842b6ce07aaSKevin Wolf             return ret;
843b6ce07aaSKevin Wolf         }
844b6ce07aaSKevin Wolf     }
845b6ce07aaSKevin Wolf 
846b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
8477d4b4ba5SMarkus Armbruster         bdrv_dev_change_media_cb(bs, true);
848b6ce07aaSKevin Wolf     }
849b6ce07aaSKevin Wolf 
85098f90dbaSZhi Yong Wu     /* throttling disk I/O limits */
85198f90dbaSZhi Yong Wu     if (bs->io_limits_enabled) {
85298f90dbaSZhi Yong Wu         bdrv_io_limits_enable(bs);
85398f90dbaSZhi Yong Wu     }
85498f90dbaSZhi Yong Wu 
855b6ce07aaSKevin Wolf     return 0;
856b6ce07aaSKevin Wolf 
857b6ce07aaSKevin Wolf unlink_and_fail:
858b6ce07aaSKevin Wolf     if (bs->is_temporary) {
859b6ce07aaSKevin Wolf         unlink(filename);
860b6ce07aaSKevin Wolf     }
861b6ce07aaSKevin Wolf     return ret;
862b6ce07aaSKevin Wolf }
863b6ce07aaSKevin Wolf 
864e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
865e971aa12SJeff Cody      bool prepared;
866e971aa12SJeff Cody      BDRVReopenState state;
867e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
868e971aa12SJeff Cody } BlockReopenQueueEntry;
869e971aa12SJeff Cody 
870e971aa12SJeff Cody /*
871e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
872e971aa12SJeff Cody  * reopen of multiple devices.
873e971aa12SJeff Cody  *
874e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
875e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
876e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
877e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
878e971aa12SJeff Cody  * atomic 'set'.
879e971aa12SJeff Cody  *
880e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
881e971aa12SJeff Cody  *
882e971aa12SJeff Cody  * flags contains the open flags for the associated bs
883e971aa12SJeff Cody  *
884e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
885e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
886e971aa12SJeff Cody  *
887e971aa12SJeff Cody  */
888e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
889e971aa12SJeff Cody                                     BlockDriverState *bs, int flags)
890e971aa12SJeff Cody {
891e971aa12SJeff Cody     assert(bs != NULL);
892e971aa12SJeff Cody 
893e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
894e971aa12SJeff Cody     if (bs_queue == NULL) {
895e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
896e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
897e971aa12SJeff Cody     }
898e971aa12SJeff Cody 
899e971aa12SJeff Cody     if (bs->file) {
900e971aa12SJeff Cody         bdrv_reopen_queue(bs_queue, bs->file, flags);
901e971aa12SJeff Cody     }
902e971aa12SJeff Cody 
903e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
904e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
905e971aa12SJeff Cody 
906e971aa12SJeff Cody     bs_entry->state.bs = bs;
907e971aa12SJeff Cody     bs_entry->state.flags = flags;
908e971aa12SJeff Cody 
909e971aa12SJeff Cody     return bs_queue;
910e971aa12SJeff Cody }
911e971aa12SJeff Cody 
912e971aa12SJeff Cody /*
913e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
914e971aa12SJeff Cody  *
915e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
916e971aa12SJeff Cody  * via bdrv_reopen_queue().
917e971aa12SJeff Cody  *
918e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
919e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
920e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
921e971aa12SJeff Cody  * data cleaned up.
922e971aa12SJeff Cody  *
923e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
924e971aa12SJeff Cody  * to all devices.
925e971aa12SJeff Cody  *
926e971aa12SJeff Cody  */
927e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
928e971aa12SJeff Cody {
929e971aa12SJeff Cody     int ret = -1;
930e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
931e971aa12SJeff Cody     Error *local_err = NULL;
932e971aa12SJeff Cody 
933e971aa12SJeff Cody     assert(bs_queue != NULL);
934e971aa12SJeff Cody 
935e971aa12SJeff Cody     bdrv_drain_all();
936e971aa12SJeff Cody 
937e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
938e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
939e971aa12SJeff Cody             error_propagate(errp, local_err);
940e971aa12SJeff Cody             goto cleanup;
941e971aa12SJeff Cody         }
942e971aa12SJeff Cody         bs_entry->prepared = true;
943e971aa12SJeff Cody     }
944e971aa12SJeff Cody 
945e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
946e971aa12SJeff Cody      * changes
947e971aa12SJeff Cody      */
948e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
949e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
950e971aa12SJeff Cody     }
951e971aa12SJeff Cody 
952e971aa12SJeff Cody     ret = 0;
953e971aa12SJeff Cody 
954e971aa12SJeff Cody cleanup:
955e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
956e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
957e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
958e971aa12SJeff Cody         }
959e971aa12SJeff Cody         g_free(bs_entry);
960e971aa12SJeff Cody     }
961e971aa12SJeff Cody     g_free(bs_queue);
962e971aa12SJeff Cody     return ret;
963e971aa12SJeff Cody }
964e971aa12SJeff Cody 
965e971aa12SJeff Cody 
966e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
967e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
968e971aa12SJeff Cody {
969e971aa12SJeff Cody     int ret = -1;
970e971aa12SJeff Cody     Error *local_err = NULL;
971e971aa12SJeff Cody     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
972e971aa12SJeff Cody 
973e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
974e971aa12SJeff Cody     if (local_err != NULL) {
975e971aa12SJeff Cody         error_propagate(errp, local_err);
976e971aa12SJeff Cody     }
977e971aa12SJeff Cody     return ret;
978e971aa12SJeff Cody }
979e971aa12SJeff Cody 
980e971aa12SJeff Cody 
981e971aa12SJeff Cody /*
982e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
983e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
984e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
985e971aa12SJeff Cody  *
986e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
987e971aa12SJeff Cody  * flags are the new open flags
988e971aa12SJeff Cody  * queue is the reopen queue
989e971aa12SJeff Cody  *
990e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
991e971aa12SJeff Cody  * as well.
992e971aa12SJeff Cody  *
993e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
994e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
995e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
996e971aa12SJeff Cody  *
997e971aa12SJeff Cody  */
998e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
999e971aa12SJeff Cody                         Error **errp)
1000e971aa12SJeff Cody {
1001e971aa12SJeff Cody     int ret = -1;
1002e971aa12SJeff Cody     Error *local_err = NULL;
1003e971aa12SJeff Cody     BlockDriver *drv;
1004e971aa12SJeff Cody 
1005e971aa12SJeff Cody     assert(reopen_state != NULL);
1006e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
1007e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1008e971aa12SJeff Cody 
1009e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
1010e971aa12SJeff Cody      * to r/w */
1011e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1012e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
1013e971aa12SJeff Cody         error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1014e971aa12SJeff Cody                   reopen_state->bs->device_name);
1015e971aa12SJeff Cody         goto error;
1016e971aa12SJeff Cody     }
1017e971aa12SJeff Cody 
1018e971aa12SJeff Cody 
1019e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
1020e971aa12SJeff Cody     if (ret) {
1021e971aa12SJeff Cody         error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1022e971aa12SJeff Cody                   strerror(-ret));
1023e971aa12SJeff Cody         goto error;
1024e971aa12SJeff Cody     }
1025e971aa12SJeff Cody 
1026e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
1027e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1028e971aa12SJeff Cody         if (ret) {
1029e971aa12SJeff Cody             if (local_err != NULL) {
1030e971aa12SJeff Cody                 error_propagate(errp, local_err);
1031e971aa12SJeff Cody             } else {
1032e971aa12SJeff Cody                 error_set(errp, QERR_OPEN_FILE_FAILED,
1033e971aa12SJeff Cody                           reopen_state->bs->filename);
1034e971aa12SJeff Cody             }
1035e971aa12SJeff Cody             goto error;
1036e971aa12SJeff Cody         }
1037e971aa12SJeff Cody     } else {
1038e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
1039e971aa12SJeff Cody          * handler for each supported drv. */
1040e971aa12SJeff Cody         error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1041e971aa12SJeff Cody                   drv->format_name, reopen_state->bs->device_name,
1042e971aa12SJeff Cody                  "reopening of file");
1043e971aa12SJeff Cody         ret = -1;
1044e971aa12SJeff Cody         goto error;
1045e971aa12SJeff Cody     }
1046e971aa12SJeff Cody 
1047e971aa12SJeff Cody     ret = 0;
1048e971aa12SJeff Cody 
1049e971aa12SJeff Cody error:
1050e971aa12SJeff Cody     return ret;
1051e971aa12SJeff Cody }
1052e971aa12SJeff Cody 
1053e971aa12SJeff Cody /*
1054e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1055e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
1056e971aa12SJeff Cody  * the active BlockDriverState contents.
1057e971aa12SJeff Cody  */
1058e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1059e971aa12SJeff Cody {
1060e971aa12SJeff Cody     BlockDriver *drv;
1061e971aa12SJeff Cody 
1062e971aa12SJeff Cody     assert(reopen_state != NULL);
1063e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1064e971aa12SJeff Cody     assert(drv != NULL);
1065e971aa12SJeff Cody 
1066e971aa12SJeff Cody     /* If there are any driver level actions to take */
1067e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
1068e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
1069e971aa12SJeff Cody     }
1070e971aa12SJeff Cody 
1071e971aa12SJeff Cody     /* set BDS specific flags now */
1072e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
1073e971aa12SJeff Cody     reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1074e971aa12SJeff Cody                                               BDRV_O_CACHE_WB);
1075e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
1076e971aa12SJeff Cody }
1077e971aa12SJeff Cody 
1078e971aa12SJeff Cody /*
1079e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
1080e971aa12SJeff Cody  * reopen_state
1081e971aa12SJeff Cody  */
1082e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1083e971aa12SJeff Cody {
1084e971aa12SJeff Cody     BlockDriver *drv;
1085e971aa12SJeff Cody 
1086e971aa12SJeff Cody     assert(reopen_state != NULL);
1087e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1088e971aa12SJeff Cody     assert(drv != NULL);
1089e971aa12SJeff Cody 
1090e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
1091e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
1092e971aa12SJeff Cody     }
1093e971aa12SJeff Cody }
1094e971aa12SJeff Cody 
1095e971aa12SJeff Cody 
1096fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs)
1097fc01f7e7Sbellard {
109880ccf93bSLiu Yuan     bdrv_flush(bs);
109919cb3738Sbellard     if (bs->drv) {
11003e914655SPaolo Bonzini         if (bs->job) {
11013e914655SPaolo Bonzini             block_job_cancel_sync(bs->job);
11023e914655SPaolo Bonzini         }
11037094f12fSKevin Wolf         bdrv_drain_all();
11047094f12fSKevin Wolf 
1105f9092b10SMarkus Armbruster         if (bs == bs_snapshots) {
1106f9092b10SMarkus Armbruster             bs_snapshots = NULL;
1107f9092b10SMarkus Armbruster         }
1108557df6acSStefan Hajnoczi         if (bs->backing_hd) {
1109ea2384d3Sbellard             bdrv_delete(bs->backing_hd);
1110557df6acSStefan Hajnoczi             bs->backing_hd = NULL;
1111557df6acSStefan Hajnoczi         }
1112ea2384d3Sbellard         bs->drv->bdrv_close(bs);
11137267c094SAnthony Liguori         g_free(bs->opaque);
1114ea2384d3Sbellard #ifdef _WIN32
1115ea2384d3Sbellard         if (bs->is_temporary) {
1116ea2384d3Sbellard             unlink(bs->filename);
1117ea2384d3Sbellard         }
111867b915a5Sbellard #endif
1119ea2384d3Sbellard         bs->opaque = NULL;
1120ea2384d3Sbellard         bs->drv = NULL;
112153fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
1122a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
1123a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
11246405875cSPaolo Bonzini         bs->total_sectors = 0;
11256405875cSPaolo Bonzini         bs->encrypted = 0;
11266405875cSPaolo Bonzini         bs->valid_key = 0;
11276405875cSPaolo Bonzini         bs->sg = 0;
11286405875cSPaolo Bonzini         bs->growable = 0;
1129b338082bSbellard 
113066f82ceeSKevin Wolf         if (bs->file != NULL) {
11310ac9377dSPaolo Bonzini             bdrv_delete(bs->file);
11320ac9377dSPaolo Bonzini             bs->file = NULL;
113366f82ceeSKevin Wolf         }
11349ca11154SPavel Hrdina     }
113566f82ceeSKevin Wolf 
11367d4b4ba5SMarkus Armbruster     bdrv_dev_change_media_cb(bs, false);
113798f90dbaSZhi Yong Wu 
113898f90dbaSZhi Yong Wu     /*throttling disk I/O limits*/
113998f90dbaSZhi Yong Wu     if (bs->io_limits_enabled) {
114098f90dbaSZhi Yong Wu         bdrv_io_limits_disable(bs);
114198f90dbaSZhi Yong Wu     }
1142b338082bSbellard }
1143b338082bSbellard 
11442bc93fedSMORITA Kazutaka void bdrv_close_all(void)
11452bc93fedSMORITA Kazutaka {
11462bc93fedSMORITA Kazutaka     BlockDriverState *bs;
11472bc93fedSMORITA Kazutaka 
11482bc93fedSMORITA Kazutaka     QTAILQ_FOREACH(bs, &bdrv_states, list) {
11492bc93fedSMORITA Kazutaka         bdrv_close(bs);
11502bc93fedSMORITA Kazutaka     }
11512bc93fedSMORITA Kazutaka }
11522bc93fedSMORITA Kazutaka 
1153922453bcSStefan Hajnoczi /*
1154922453bcSStefan Hajnoczi  * Wait for pending requests to complete across all BlockDriverStates
1155922453bcSStefan Hajnoczi  *
1156922453bcSStefan Hajnoczi  * This function does not flush data to disk, use bdrv_flush_all() for that
1157922453bcSStefan Hajnoczi  * after calling this function.
11584c355d53SZhi Yong Wu  *
11594c355d53SZhi Yong Wu  * Note that completion of an asynchronous I/O operation can trigger any
11604c355d53SZhi Yong Wu  * number of other I/O operations on other devices---for example a coroutine
11614c355d53SZhi Yong Wu  * can be arbitrarily complex and a constant flow of I/O can come until the
11624c355d53SZhi Yong Wu  * coroutine is complete.  Because of this, it is not possible to have a
11634c355d53SZhi Yong Wu  * function to drain a single device's I/O queue.
1164922453bcSStefan Hajnoczi  */
1165922453bcSStefan Hajnoczi void bdrv_drain_all(void)
1166922453bcSStefan Hajnoczi {
1167922453bcSStefan Hajnoczi     BlockDriverState *bs;
11684c355d53SZhi Yong Wu     bool busy;
1169922453bcSStefan Hajnoczi 
11704c355d53SZhi Yong Wu     do {
11714c355d53SZhi Yong Wu         busy = qemu_aio_wait();
11724c355d53SZhi Yong Wu 
11734c355d53SZhi Yong Wu         /* FIXME: We do not have timer support here, so this is effectively
11744c355d53SZhi Yong Wu          * a busy wait.
11754c355d53SZhi Yong Wu          */
11764c355d53SZhi Yong Wu         QTAILQ_FOREACH(bs, &bdrv_states, list) {
11774c355d53SZhi Yong Wu             if (!qemu_co_queue_empty(&bs->throttled_reqs)) {
11784c355d53SZhi Yong Wu                 qemu_co_queue_restart_all(&bs->throttled_reqs);
11794c355d53SZhi Yong Wu                 busy = true;
11804c355d53SZhi Yong Wu             }
11814c355d53SZhi Yong Wu         }
11824c355d53SZhi Yong Wu     } while (busy);
1183922453bcSStefan Hajnoczi 
1184922453bcSStefan Hajnoczi     /* If requests are still pending there is a bug somewhere */
1185922453bcSStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
1186922453bcSStefan Hajnoczi         assert(QLIST_EMPTY(&bs->tracked_requests));
1187922453bcSStefan Hajnoczi         assert(qemu_co_queue_empty(&bs->throttled_reqs));
1188922453bcSStefan Hajnoczi     }
1189922453bcSStefan Hajnoczi }
1190922453bcSStefan Hajnoczi 
1191d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list.
1192d22b2f41SRyan Harper    Also, NULL terminate the device_name to prevent double remove */
1193d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs)
1194d22b2f41SRyan Harper {
1195d22b2f41SRyan Harper     if (bs->device_name[0] != '\0') {
1196d22b2f41SRyan Harper         QTAILQ_REMOVE(&bdrv_states, bs, list);
1197d22b2f41SRyan Harper     }
1198d22b2f41SRyan Harper     bs->device_name[0] = '\0';
1199d22b2f41SRyan Harper }
1200d22b2f41SRyan Harper 
1201e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs)
1202e023b2e2SPaolo Bonzini {
1203e023b2e2SPaolo Bonzini     if (bs->drv && bs->drv->bdrv_rebind) {
1204e023b2e2SPaolo Bonzini         bs->drv->bdrv_rebind(bs);
1205e023b2e2SPaolo Bonzini     }
1206e023b2e2SPaolo Bonzini }
1207e023b2e2SPaolo Bonzini 
12084ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
12094ddc07caSPaolo Bonzini                                      BlockDriverState *bs_src)
12104ddc07caSPaolo Bonzini {
12114ddc07caSPaolo Bonzini     /* move some fields that need to stay attached to the device */
12124ddc07caSPaolo Bonzini     bs_dest->open_flags         = bs_src->open_flags;
12134ddc07caSPaolo Bonzini 
12144ddc07caSPaolo Bonzini     /* dev info */
12154ddc07caSPaolo Bonzini     bs_dest->dev_ops            = bs_src->dev_ops;
12164ddc07caSPaolo Bonzini     bs_dest->dev_opaque         = bs_src->dev_opaque;
12174ddc07caSPaolo Bonzini     bs_dest->dev                = bs_src->dev;
12184ddc07caSPaolo Bonzini     bs_dest->buffer_alignment   = bs_src->buffer_alignment;
12194ddc07caSPaolo Bonzini     bs_dest->copy_on_read       = bs_src->copy_on_read;
12204ddc07caSPaolo Bonzini 
12214ddc07caSPaolo Bonzini     bs_dest->enable_write_cache = bs_src->enable_write_cache;
12224ddc07caSPaolo Bonzini 
12234ddc07caSPaolo Bonzini     /* i/o timing parameters */
12244ddc07caSPaolo Bonzini     bs_dest->slice_time         = bs_src->slice_time;
12254ddc07caSPaolo Bonzini     bs_dest->slice_start        = bs_src->slice_start;
12264ddc07caSPaolo Bonzini     bs_dest->slice_end          = bs_src->slice_end;
12274ddc07caSPaolo Bonzini     bs_dest->io_limits          = bs_src->io_limits;
12284ddc07caSPaolo Bonzini     bs_dest->io_base            = bs_src->io_base;
12294ddc07caSPaolo Bonzini     bs_dest->throttled_reqs     = bs_src->throttled_reqs;
12304ddc07caSPaolo Bonzini     bs_dest->block_timer        = bs_src->block_timer;
12314ddc07caSPaolo Bonzini     bs_dest->io_limits_enabled  = bs_src->io_limits_enabled;
12324ddc07caSPaolo Bonzini 
12334ddc07caSPaolo Bonzini     /* r/w error */
12344ddc07caSPaolo Bonzini     bs_dest->on_read_error      = bs_src->on_read_error;
12354ddc07caSPaolo Bonzini     bs_dest->on_write_error     = bs_src->on_write_error;
12364ddc07caSPaolo Bonzini 
12374ddc07caSPaolo Bonzini     /* i/o status */
12384ddc07caSPaolo Bonzini     bs_dest->iostatus_enabled   = bs_src->iostatus_enabled;
12394ddc07caSPaolo Bonzini     bs_dest->iostatus           = bs_src->iostatus;
12404ddc07caSPaolo Bonzini 
12414ddc07caSPaolo Bonzini     /* dirty bitmap */
12424ddc07caSPaolo Bonzini     bs_dest->dirty_count        = bs_src->dirty_count;
12434ddc07caSPaolo Bonzini     bs_dest->dirty_bitmap       = bs_src->dirty_bitmap;
12444ddc07caSPaolo Bonzini 
12454ddc07caSPaolo Bonzini     /* job */
12464ddc07caSPaolo Bonzini     bs_dest->in_use             = bs_src->in_use;
12474ddc07caSPaolo Bonzini     bs_dest->job                = bs_src->job;
12484ddc07caSPaolo Bonzini 
12494ddc07caSPaolo Bonzini     /* keep the same entry in bdrv_states */
12504ddc07caSPaolo Bonzini     pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
12514ddc07caSPaolo Bonzini             bs_src->device_name);
12524ddc07caSPaolo Bonzini     bs_dest->list = bs_src->list;
12534ddc07caSPaolo Bonzini }
12544ddc07caSPaolo Bonzini 
12554ddc07caSPaolo Bonzini /*
12564ddc07caSPaolo Bonzini  * Swap bs contents for two image chains while they are live,
12574ddc07caSPaolo Bonzini  * while keeping required fields on the BlockDriverState that is
12584ddc07caSPaolo Bonzini  * actually attached to a device.
12594ddc07caSPaolo Bonzini  *
12604ddc07caSPaolo Bonzini  * This will modify the BlockDriverState fields, and swap contents
12614ddc07caSPaolo Bonzini  * between bs_new and bs_old. Both bs_new and bs_old are modified.
12624ddc07caSPaolo Bonzini  *
12634ddc07caSPaolo Bonzini  * bs_new is required to be anonymous.
12644ddc07caSPaolo Bonzini  *
12654ddc07caSPaolo Bonzini  * This function does not create any image files.
12664ddc07caSPaolo Bonzini  */
12674ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
12684ddc07caSPaolo Bonzini {
12694ddc07caSPaolo Bonzini     BlockDriverState tmp;
12704ddc07caSPaolo Bonzini 
12714ddc07caSPaolo Bonzini     /* bs_new must be anonymous and shouldn't have anything fancy enabled */
12724ddc07caSPaolo Bonzini     assert(bs_new->device_name[0] == '\0');
12734ddc07caSPaolo Bonzini     assert(bs_new->dirty_bitmap == NULL);
12744ddc07caSPaolo Bonzini     assert(bs_new->job == NULL);
12754ddc07caSPaolo Bonzini     assert(bs_new->dev == NULL);
12764ddc07caSPaolo Bonzini     assert(bs_new->in_use == 0);
12774ddc07caSPaolo Bonzini     assert(bs_new->io_limits_enabled == false);
12784ddc07caSPaolo Bonzini     assert(bs_new->block_timer == NULL);
12794ddc07caSPaolo Bonzini 
12804ddc07caSPaolo Bonzini     tmp = *bs_new;
12814ddc07caSPaolo Bonzini     *bs_new = *bs_old;
12824ddc07caSPaolo Bonzini     *bs_old = tmp;
12834ddc07caSPaolo Bonzini 
12844ddc07caSPaolo Bonzini     /* there are some fields that should not be swapped, move them back */
12854ddc07caSPaolo Bonzini     bdrv_move_feature_fields(&tmp, bs_old);
12864ddc07caSPaolo Bonzini     bdrv_move_feature_fields(bs_old, bs_new);
12874ddc07caSPaolo Bonzini     bdrv_move_feature_fields(bs_new, &tmp);
12884ddc07caSPaolo Bonzini 
12894ddc07caSPaolo Bonzini     /* bs_new shouldn't be in bdrv_states even after the swap!  */
12904ddc07caSPaolo Bonzini     assert(bs_new->device_name[0] == '\0');
12914ddc07caSPaolo Bonzini 
12924ddc07caSPaolo Bonzini     /* Check a few fields that should remain attached to the device */
12934ddc07caSPaolo Bonzini     assert(bs_new->dev == NULL);
12944ddc07caSPaolo Bonzini     assert(bs_new->job == NULL);
12954ddc07caSPaolo Bonzini     assert(bs_new->in_use == 0);
12964ddc07caSPaolo Bonzini     assert(bs_new->io_limits_enabled == false);
12974ddc07caSPaolo Bonzini     assert(bs_new->block_timer == NULL);
12984ddc07caSPaolo Bonzini 
12994ddc07caSPaolo Bonzini     bdrv_rebind(bs_new);
13004ddc07caSPaolo Bonzini     bdrv_rebind(bs_old);
13014ddc07caSPaolo Bonzini }
13024ddc07caSPaolo Bonzini 
13038802d1fdSJeff Cody /*
13048802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
13058802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
13068802d1fdSJeff Cody  *
13078802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
13088802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
13098802d1fdSJeff Cody  *
1310f6801b83SJeff Cody  * bs_new is required to be anonymous.
1311f6801b83SJeff Cody  *
13128802d1fdSJeff Cody  * This function does not create any image files.
13138802d1fdSJeff Cody  */
13148802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
13158802d1fdSJeff Cody {
13164ddc07caSPaolo Bonzini     bdrv_swap(bs_new, bs_top);
13178802d1fdSJeff Cody 
13188802d1fdSJeff Cody     /* The contents of 'tmp' will become bs_top, as we are
13198802d1fdSJeff Cody      * swapping bs_new and bs_top contents. */
13204ddc07caSPaolo Bonzini     bs_top->backing_hd = bs_new;
13214ddc07caSPaolo Bonzini     bs_top->open_flags &= ~BDRV_O_NO_BACKING;
13224ddc07caSPaolo Bonzini     pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file),
13234ddc07caSPaolo Bonzini             bs_new->filename);
13244ddc07caSPaolo Bonzini     pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format),
13254ddc07caSPaolo Bonzini             bs_new->drv ? bs_new->drv->format_name : "");
13268802d1fdSJeff Cody }
13278802d1fdSJeff Cody 
1328b338082bSbellard void bdrv_delete(BlockDriverState *bs)
1329b338082bSbellard {
1330fa879d62SMarkus Armbruster     assert(!bs->dev);
13313e914655SPaolo Bonzini     assert(!bs->job);
13323e914655SPaolo Bonzini     assert(!bs->in_use);
133318846deeSMarkus Armbruster 
13341b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
1335d22b2f41SRyan Harper     bdrv_make_anon(bs);
133634c6f050Saurel32 
1337b338082bSbellard     bdrv_close(bs);
133866f82ceeSKevin Wolf 
1339f9092b10SMarkus Armbruster     assert(bs != bs_snapshots);
13407267c094SAnthony Liguori     g_free(bs);
1341fc01f7e7Sbellard }
1342fc01f7e7Sbellard 
1343fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev)
1344fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */
134518846deeSMarkus Armbruster {
1346fa879d62SMarkus Armbruster     if (bs->dev) {
134718846deeSMarkus Armbruster         return -EBUSY;
134818846deeSMarkus Armbruster     }
1349fa879d62SMarkus Armbruster     bs->dev = dev;
135028a7282aSLuiz Capitulino     bdrv_iostatus_reset(bs);
135118846deeSMarkus Armbruster     return 0;
135218846deeSMarkus Armbruster }
135318846deeSMarkus Armbruster 
1354fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */
1355fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
135618846deeSMarkus Armbruster {
1357fa879d62SMarkus Armbruster     if (bdrv_attach_dev(bs, dev) < 0) {
1358fa879d62SMarkus Armbruster         abort();
1359fa879d62SMarkus Armbruster     }
1360fa879d62SMarkus Armbruster }
1361fa879d62SMarkus Armbruster 
1362fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev)
1363fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */
1364fa879d62SMarkus Armbruster {
1365fa879d62SMarkus Armbruster     assert(bs->dev == dev);
1366fa879d62SMarkus Armbruster     bs->dev = NULL;
13670e49de52SMarkus Armbruster     bs->dev_ops = NULL;
13680e49de52SMarkus Armbruster     bs->dev_opaque = NULL;
136929e05f20SMarkus Armbruster     bs->buffer_alignment = 512;
137018846deeSMarkus Armbruster }
137118846deeSMarkus Armbruster 
1372fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */
1373fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs)
137418846deeSMarkus Armbruster {
1375fa879d62SMarkus Armbruster     return bs->dev;
137618846deeSMarkus Armbruster }
137718846deeSMarkus Armbruster 
13780e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
13790e49de52SMarkus Armbruster                       void *opaque)
13800e49de52SMarkus Armbruster {
13810e49de52SMarkus Armbruster     bs->dev_ops = ops;
13820e49de52SMarkus Armbruster     bs->dev_opaque = opaque;
13832c6942faSMarkus Armbruster     if (bdrv_dev_has_removable_media(bs) && bs == bs_snapshots) {
13842c6942faSMarkus Armbruster         bs_snapshots = NULL;
13852c6942faSMarkus Armbruster     }
13860e49de52SMarkus Armbruster }
13870e49de52SMarkus Armbruster 
1388329c0a48SLuiz Capitulino void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv,
1389329c0a48SLuiz Capitulino                                BlockQMPEventAction action, int is_read)
1390329c0a48SLuiz Capitulino {
1391329c0a48SLuiz Capitulino     QObject *data;
1392329c0a48SLuiz Capitulino     const char *action_str;
1393329c0a48SLuiz Capitulino 
1394329c0a48SLuiz Capitulino     switch (action) {
1395329c0a48SLuiz Capitulino     case BDRV_ACTION_REPORT:
1396329c0a48SLuiz Capitulino         action_str = "report";
1397329c0a48SLuiz Capitulino         break;
1398329c0a48SLuiz Capitulino     case BDRV_ACTION_IGNORE:
1399329c0a48SLuiz Capitulino         action_str = "ignore";
1400329c0a48SLuiz Capitulino         break;
1401329c0a48SLuiz Capitulino     case BDRV_ACTION_STOP:
1402329c0a48SLuiz Capitulino         action_str = "stop";
1403329c0a48SLuiz Capitulino         break;
1404329c0a48SLuiz Capitulino     default:
1405329c0a48SLuiz Capitulino         abort();
1406329c0a48SLuiz Capitulino     }
1407329c0a48SLuiz Capitulino 
1408329c0a48SLuiz Capitulino     data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1409329c0a48SLuiz Capitulino                               bdrv->device_name,
1410329c0a48SLuiz Capitulino                               action_str,
1411329c0a48SLuiz Capitulino                               is_read ? "read" : "write");
1412329c0a48SLuiz Capitulino     monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data);
1413329c0a48SLuiz Capitulino 
1414329c0a48SLuiz Capitulino     qobject_decref(data);
1415329c0a48SLuiz Capitulino }
1416329c0a48SLuiz Capitulino 
14176f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected)
14186f382ed2SLuiz Capitulino {
14196f382ed2SLuiz Capitulino     QObject *data;
14206f382ed2SLuiz Capitulino 
14216f382ed2SLuiz Capitulino     data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }",
14226f382ed2SLuiz Capitulino                               bdrv_get_device_name(bs), ejected);
14236f382ed2SLuiz Capitulino     monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data);
14246f382ed2SLuiz Capitulino 
14256f382ed2SLuiz Capitulino     qobject_decref(data);
14266f382ed2SLuiz Capitulino }
14276f382ed2SLuiz Capitulino 
14287d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
14290e49de52SMarkus Armbruster {
1430145feb17SMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->change_media_cb) {
14316f382ed2SLuiz Capitulino         bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
14327d4b4ba5SMarkus Armbruster         bs->dev_ops->change_media_cb(bs->dev_opaque, load);
14336f382ed2SLuiz Capitulino         if (tray_was_closed) {
14346f382ed2SLuiz Capitulino             /* tray open */
14356f382ed2SLuiz Capitulino             bdrv_emit_qmp_eject_event(bs, true);
14366f382ed2SLuiz Capitulino         }
14376f382ed2SLuiz Capitulino         if (load) {
14386f382ed2SLuiz Capitulino             /* tray close */
14396f382ed2SLuiz Capitulino             bdrv_emit_qmp_eject_event(bs, false);
14406f382ed2SLuiz Capitulino         }
1441145feb17SMarkus Armbruster     }
1442145feb17SMarkus Armbruster }
1443145feb17SMarkus Armbruster 
14442c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs)
14452c6942faSMarkus Armbruster {
14462c6942faSMarkus Armbruster     return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
14472c6942faSMarkus Armbruster }
14482c6942faSMarkus Armbruster 
1449025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
1450025ccaa7SPaolo Bonzini {
1451025ccaa7SPaolo Bonzini     if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
1452025ccaa7SPaolo Bonzini         bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
1453025ccaa7SPaolo Bonzini     }
1454025ccaa7SPaolo Bonzini }
1455025ccaa7SPaolo Bonzini 
1456e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs)
1457e4def80bSMarkus Armbruster {
1458e4def80bSMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->is_tray_open) {
1459e4def80bSMarkus Armbruster         return bs->dev_ops->is_tray_open(bs->dev_opaque);
1460e4def80bSMarkus Armbruster     }
1461e4def80bSMarkus Armbruster     return false;
1462e4def80bSMarkus Armbruster }
1463e4def80bSMarkus Armbruster 
1464145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs)
1465145feb17SMarkus Armbruster {
1466145feb17SMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->resize_cb) {
1467145feb17SMarkus Armbruster         bs->dev_ops->resize_cb(bs->dev_opaque);
14680e49de52SMarkus Armbruster     }
14690e49de52SMarkus Armbruster }
14700e49de52SMarkus Armbruster 
1471f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
1472f107639aSMarkus Armbruster {
1473f107639aSMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
1474f107639aSMarkus Armbruster         return bs->dev_ops->is_medium_locked(bs->dev_opaque);
1475f107639aSMarkus Armbruster     }
1476f107639aSMarkus Armbruster     return false;
1477f107639aSMarkus Armbruster }
1478f107639aSMarkus Armbruster 
1479e97fc193Saliguori /*
1480e97fc193Saliguori  * Run consistency checks on an image
1481e97fc193Saliguori  *
1482e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
1483a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
1484e076f338SKevin Wolf  * check are stored in res.
1485e97fc193Saliguori  */
14864534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
1487e97fc193Saliguori {
1488e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
1489e97fc193Saliguori         return -ENOTSUP;
1490e97fc193Saliguori     }
1491e97fc193Saliguori 
1492e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
14934534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
1494e97fc193Saliguori }
1495e97fc193Saliguori 
14968a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048
14978a426614SKevin Wolf 
149833e3963eSbellard /* commit COW file into the raw image */
149933e3963eSbellard int bdrv_commit(BlockDriverState *bs)
150033e3963eSbellard {
150119cb3738Sbellard     BlockDriver *drv = bs->drv;
15028a426614SKevin Wolf     int64_t sector, total_sectors;
15038a426614SKevin Wolf     int n, ro, open_flags;
15040bce597dSJeff Cody     int ret = 0;
15058a426614SKevin Wolf     uint8_t *buf;
15064dca4b63SNaphtali Sprei     char filename[1024];
150733e3963eSbellard 
150819cb3738Sbellard     if (!drv)
150919cb3738Sbellard         return -ENOMEDIUM;
151033e3963eSbellard 
15114dca4b63SNaphtali Sprei     if (!bs->backing_hd) {
15124dca4b63SNaphtali Sprei         return -ENOTSUP;
15134dca4b63SNaphtali Sprei     }
15144dca4b63SNaphtali Sprei 
15152d3735d3SStefan Hajnoczi     if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) {
15162d3735d3SStefan Hajnoczi         return -EBUSY;
15172d3735d3SStefan Hajnoczi     }
15182d3735d3SStefan Hajnoczi 
15194dca4b63SNaphtali Sprei     ro = bs->backing_hd->read_only;
15204dca4b63SNaphtali Sprei     strncpy(filename, bs->backing_hd->filename, sizeof(filename));
15214dca4b63SNaphtali Sprei     open_flags =  bs->backing_hd->open_flags;
15224dca4b63SNaphtali Sprei 
15234dca4b63SNaphtali Sprei     if (ro) {
15240bce597dSJeff Cody         if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
15250bce597dSJeff Cody             return -EACCES;
15264dca4b63SNaphtali Sprei         }
1527ea2384d3Sbellard     }
1528ea2384d3Sbellard 
15296ea44308SJan Kiszka     total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
15307267c094SAnthony Liguori     buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
15318a426614SKevin Wolf 
15328a426614SKevin Wolf     for (sector = 0; sector < total_sectors; sector += n) {
153305c4af54SStefan Hajnoczi         if (bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) {
15348a426614SKevin Wolf 
15358a426614SKevin Wolf             if (bdrv_read(bs, sector, buf, n) != 0) {
15364dca4b63SNaphtali Sprei                 ret = -EIO;
15374dca4b63SNaphtali Sprei                 goto ro_cleanup;
153833e3963eSbellard             }
153933e3963eSbellard 
15408a426614SKevin Wolf             if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
15414dca4b63SNaphtali Sprei                 ret = -EIO;
15424dca4b63SNaphtali Sprei                 goto ro_cleanup;
154333e3963eSbellard             }
154433e3963eSbellard         }
154533e3963eSbellard     }
154695389c86Sbellard 
15471d44952fSChristoph Hellwig     if (drv->bdrv_make_empty) {
15481d44952fSChristoph Hellwig         ret = drv->bdrv_make_empty(bs);
15491d44952fSChristoph Hellwig         bdrv_flush(bs);
15501d44952fSChristoph Hellwig     }
155195389c86Sbellard 
15523f5075aeSChristoph Hellwig     /*
15533f5075aeSChristoph Hellwig      * Make sure all data we wrote to the backing device is actually
15543f5075aeSChristoph Hellwig      * stable on disk.
15553f5075aeSChristoph Hellwig      */
15563f5075aeSChristoph Hellwig     if (bs->backing_hd)
15573f5075aeSChristoph Hellwig         bdrv_flush(bs->backing_hd);
15584dca4b63SNaphtali Sprei 
15594dca4b63SNaphtali Sprei ro_cleanup:
15607267c094SAnthony Liguori     g_free(buf);
15614dca4b63SNaphtali Sprei 
15624dca4b63SNaphtali Sprei     if (ro) {
15630bce597dSJeff Cody         /* ignoring error return here */
15640bce597dSJeff Cody         bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
15654dca4b63SNaphtali Sprei     }
15664dca4b63SNaphtali Sprei 
15671d44952fSChristoph Hellwig     return ret;
156833e3963eSbellard }
156933e3963eSbellard 
1570e8877497SStefan Hajnoczi int bdrv_commit_all(void)
15716ab4b5abSMarkus Armbruster {
15726ab4b5abSMarkus Armbruster     BlockDriverState *bs;
15736ab4b5abSMarkus Armbruster 
15746ab4b5abSMarkus Armbruster     QTAILQ_FOREACH(bs, &bdrv_states, list) {
1575e8877497SStefan Hajnoczi         int ret = bdrv_commit(bs);
1576e8877497SStefan Hajnoczi         if (ret < 0) {
1577e8877497SStefan Hajnoczi             return ret;
15786ab4b5abSMarkus Armbruster         }
15796ab4b5abSMarkus Armbruster     }
1580e8877497SStefan Hajnoczi     return 0;
1581e8877497SStefan Hajnoczi }
15826ab4b5abSMarkus Armbruster 
1583dbffbdcfSStefan Hajnoczi struct BdrvTrackedRequest {
1584dbffbdcfSStefan Hajnoczi     BlockDriverState *bs;
1585dbffbdcfSStefan Hajnoczi     int64_t sector_num;
1586dbffbdcfSStefan Hajnoczi     int nb_sectors;
1587dbffbdcfSStefan Hajnoczi     bool is_write;
1588dbffbdcfSStefan Hajnoczi     QLIST_ENTRY(BdrvTrackedRequest) list;
15895f8b6491SStefan Hajnoczi     Coroutine *co; /* owner, used for deadlock detection */
1590f4658285SStefan Hajnoczi     CoQueue wait_queue; /* coroutines blocked on this request */
1591dbffbdcfSStefan Hajnoczi };
1592dbffbdcfSStefan Hajnoczi 
1593dbffbdcfSStefan Hajnoczi /**
1594dbffbdcfSStefan Hajnoczi  * Remove an active request from the tracked requests list
1595dbffbdcfSStefan Hajnoczi  *
1596dbffbdcfSStefan Hajnoczi  * This function should be called when a tracked request is completing.
1597dbffbdcfSStefan Hajnoczi  */
1598dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req)
1599dbffbdcfSStefan Hajnoczi {
1600dbffbdcfSStefan Hajnoczi     QLIST_REMOVE(req, list);
1601f4658285SStefan Hajnoczi     qemu_co_queue_restart_all(&req->wait_queue);
1602dbffbdcfSStefan Hajnoczi }
1603dbffbdcfSStefan Hajnoczi 
1604dbffbdcfSStefan Hajnoczi /**
1605dbffbdcfSStefan Hajnoczi  * Add an active request to the tracked requests list
1606dbffbdcfSStefan Hajnoczi  */
1607dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req,
1608dbffbdcfSStefan Hajnoczi                                   BlockDriverState *bs,
1609dbffbdcfSStefan Hajnoczi                                   int64_t sector_num,
1610dbffbdcfSStefan Hajnoczi                                   int nb_sectors, bool is_write)
1611dbffbdcfSStefan Hajnoczi {
1612dbffbdcfSStefan Hajnoczi     *req = (BdrvTrackedRequest){
1613dbffbdcfSStefan Hajnoczi         .bs = bs,
1614dbffbdcfSStefan Hajnoczi         .sector_num = sector_num,
1615dbffbdcfSStefan Hajnoczi         .nb_sectors = nb_sectors,
1616dbffbdcfSStefan Hajnoczi         .is_write = is_write,
16175f8b6491SStefan Hajnoczi         .co = qemu_coroutine_self(),
1618dbffbdcfSStefan Hajnoczi     };
1619dbffbdcfSStefan Hajnoczi 
1620f4658285SStefan Hajnoczi     qemu_co_queue_init(&req->wait_queue);
1621f4658285SStefan Hajnoczi 
1622dbffbdcfSStefan Hajnoczi     QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
1623dbffbdcfSStefan Hajnoczi }
1624dbffbdcfSStefan Hajnoczi 
1625d83947acSStefan Hajnoczi /**
1626d83947acSStefan Hajnoczi  * Round a region to cluster boundaries
1627d83947acSStefan Hajnoczi  */
1628d83947acSStefan Hajnoczi static void round_to_clusters(BlockDriverState *bs,
1629d83947acSStefan Hajnoczi                               int64_t sector_num, int nb_sectors,
1630d83947acSStefan Hajnoczi                               int64_t *cluster_sector_num,
1631d83947acSStefan Hajnoczi                               int *cluster_nb_sectors)
1632d83947acSStefan Hajnoczi {
1633d83947acSStefan Hajnoczi     BlockDriverInfo bdi;
1634d83947acSStefan Hajnoczi 
1635d83947acSStefan Hajnoczi     if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
1636d83947acSStefan Hajnoczi         *cluster_sector_num = sector_num;
1637d83947acSStefan Hajnoczi         *cluster_nb_sectors = nb_sectors;
1638d83947acSStefan Hajnoczi     } else {
1639d83947acSStefan Hajnoczi         int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
1640d83947acSStefan Hajnoczi         *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
1641d83947acSStefan Hajnoczi         *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
1642d83947acSStefan Hajnoczi                                             nb_sectors, c);
1643d83947acSStefan Hajnoczi     }
1644d83947acSStefan Hajnoczi }
1645d83947acSStefan Hajnoczi 
1646f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req,
1647f4658285SStefan Hajnoczi                                      int64_t sector_num, int nb_sectors) {
1648d83947acSStefan Hajnoczi     /*        aaaa   bbbb */
1649d83947acSStefan Hajnoczi     if (sector_num >= req->sector_num + req->nb_sectors) {
1650d83947acSStefan Hajnoczi         return false;
1651d83947acSStefan Hajnoczi     }
1652d83947acSStefan Hajnoczi     /* bbbb   aaaa        */
1653d83947acSStefan Hajnoczi     if (req->sector_num >= sector_num + nb_sectors) {
1654d83947acSStefan Hajnoczi         return false;
1655d83947acSStefan Hajnoczi     }
1656d83947acSStefan Hajnoczi     return true;
1657f4658285SStefan Hajnoczi }
1658f4658285SStefan Hajnoczi 
1659f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs,
1660f4658285SStefan Hajnoczi         int64_t sector_num, int nb_sectors)
1661f4658285SStefan Hajnoczi {
1662f4658285SStefan Hajnoczi     BdrvTrackedRequest *req;
1663d83947acSStefan Hajnoczi     int64_t cluster_sector_num;
1664d83947acSStefan Hajnoczi     int cluster_nb_sectors;
1665f4658285SStefan Hajnoczi     bool retry;
1666f4658285SStefan Hajnoczi 
1667d83947acSStefan Hajnoczi     /* If we touch the same cluster it counts as an overlap.  This guarantees
1668d83947acSStefan Hajnoczi      * that allocating writes will be serialized and not race with each other
1669d83947acSStefan Hajnoczi      * for the same cluster.  For example, in copy-on-read it ensures that the
1670d83947acSStefan Hajnoczi      * CoR read and write operations are atomic and guest writes cannot
1671d83947acSStefan Hajnoczi      * interleave between them.
1672d83947acSStefan Hajnoczi      */
1673d83947acSStefan Hajnoczi     round_to_clusters(bs, sector_num, nb_sectors,
1674d83947acSStefan Hajnoczi                       &cluster_sector_num, &cluster_nb_sectors);
1675d83947acSStefan Hajnoczi 
1676f4658285SStefan Hajnoczi     do {
1677f4658285SStefan Hajnoczi         retry = false;
1678f4658285SStefan Hajnoczi         QLIST_FOREACH(req, &bs->tracked_requests, list) {
1679d83947acSStefan Hajnoczi             if (tracked_request_overlaps(req, cluster_sector_num,
1680d83947acSStefan Hajnoczi                                          cluster_nb_sectors)) {
16815f8b6491SStefan Hajnoczi                 /* Hitting this means there was a reentrant request, for
16825f8b6491SStefan Hajnoczi                  * example, a block driver issuing nested requests.  This must
16835f8b6491SStefan Hajnoczi                  * never happen since it means deadlock.
16845f8b6491SStefan Hajnoczi                  */
16855f8b6491SStefan Hajnoczi                 assert(qemu_coroutine_self() != req->co);
16865f8b6491SStefan Hajnoczi 
1687f4658285SStefan Hajnoczi                 qemu_co_queue_wait(&req->wait_queue);
1688f4658285SStefan Hajnoczi                 retry = true;
1689f4658285SStefan Hajnoczi                 break;
1690f4658285SStefan Hajnoczi             }
1691f4658285SStefan Hajnoczi         }
1692f4658285SStefan Hajnoczi     } while (retry);
1693f4658285SStefan Hajnoczi }
1694f4658285SStefan Hajnoczi 
1695756e6736SKevin Wolf /*
1696756e6736SKevin Wolf  * Return values:
1697756e6736SKevin Wolf  * 0        - success
1698756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
1699756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
1700756e6736SKevin Wolf  *            image file header
1701756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
1702756e6736SKevin Wolf  */
1703756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
1704756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
1705756e6736SKevin Wolf {
1706756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
1707469ef350SPaolo Bonzini     int ret;
1708756e6736SKevin Wolf 
17095f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
17105f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
17115f377794SPaolo Bonzini         return -EINVAL;
17125f377794SPaolo Bonzini     }
17135f377794SPaolo Bonzini 
1714756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
1715469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
1716756e6736SKevin Wolf     } else {
1717469ef350SPaolo Bonzini         ret = -ENOTSUP;
1718756e6736SKevin Wolf     }
1719469ef350SPaolo Bonzini 
1720469ef350SPaolo Bonzini     if (ret == 0) {
1721469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
1722469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
1723469ef350SPaolo Bonzini     }
1724469ef350SPaolo Bonzini     return ret;
1725756e6736SKevin Wolf }
1726756e6736SKevin Wolf 
1727*6ebdcee2SJeff Cody /*
1728*6ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
1729*6ebdcee2SJeff Cody  *
1730*6ebdcee2SJeff Cody  * active is the current topmost image.
1731*6ebdcee2SJeff Cody  *
1732*6ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
1733*6ebdcee2SJeff Cody  * or if active == bs.
1734*6ebdcee2SJeff Cody  */
1735*6ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
1736*6ebdcee2SJeff Cody                                     BlockDriverState *bs)
1737*6ebdcee2SJeff Cody {
1738*6ebdcee2SJeff Cody     BlockDriverState *overlay = NULL;
1739*6ebdcee2SJeff Cody     BlockDriverState *intermediate;
1740*6ebdcee2SJeff Cody 
1741*6ebdcee2SJeff Cody     assert(active != NULL);
1742*6ebdcee2SJeff Cody     assert(bs != NULL);
1743*6ebdcee2SJeff Cody 
1744*6ebdcee2SJeff Cody     /* if bs is the same as active, then by definition it has no overlay
1745*6ebdcee2SJeff Cody      */
1746*6ebdcee2SJeff Cody     if (active == bs) {
1747*6ebdcee2SJeff Cody         return NULL;
1748*6ebdcee2SJeff Cody     }
1749*6ebdcee2SJeff Cody 
1750*6ebdcee2SJeff Cody     intermediate = active;
1751*6ebdcee2SJeff Cody     while (intermediate->backing_hd) {
1752*6ebdcee2SJeff Cody         if (intermediate->backing_hd == bs) {
1753*6ebdcee2SJeff Cody             overlay = intermediate;
1754*6ebdcee2SJeff Cody             break;
1755*6ebdcee2SJeff Cody         }
1756*6ebdcee2SJeff Cody         intermediate = intermediate->backing_hd;
1757*6ebdcee2SJeff Cody     }
1758*6ebdcee2SJeff Cody 
1759*6ebdcee2SJeff Cody     return overlay;
1760*6ebdcee2SJeff Cody }
1761*6ebdcee2SJeff Cody 
1762*6ebdcee2SJeff Cody typedef struct BlkIntermediateStates {
1763*6ebdcee2SJeff Cody     BlockDriverState *bs;
1764*6ebdcee2SJeff Cody     QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
1765*6ebdcee2SJeff Cody } BlkIntermediateStates;
1766*6ebdcee2SJeff Cody 
1767*6ebdcee2SJeff Cody 
1768*6ebdcee2SJeff Cody /*
1769*6ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
1770*6ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
1771*6ebdcee2SJeff Cody  *
1772*6ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
1773*6ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
1774*6ebdcee2SJeff Cody  *
1775*6ebdcee2SJeff Cody  * E.g., this will convert the following chain:
1776*6ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
1777*6ebdcee2SJeff Cody  *
1778*6ebdcee2SJeff Cody  * to
1779*6ebdcee2SJeff Cody  *
1780*6ebdcee2SJeff Cody  * bottom <- base <- active
1781*6ebdcee2SJeff Cody  *
1782*6ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
1783*6ebdcee2SJeff Cody  *
1784*6ebdcee2SJeff Cody  * base <- intermediate <- top <- active
1785*6ebdcee2SJeff Cody  *
1786*6ebdcee2SJeff Cody  * to
1787*6ebdcee2SJeff Cody  *
1788*6ebdcee2SJeff Cody  * base <- active
1789*6ebdcee2SJeff Cody  *
1790*6ebdcee2SJeff Cody  * Error conditions:
1791*6ebdcee2SJeff Cody  *  if active == top, that is considered an error
1792*6ebdcee2SJeff Cody  *
1793*6ebdcee2SJeff Cody  */
1794*6ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
1795*6ebdcee2SJeff Cody                            BlockDriverState *base)
1796*6ebdcee2SJeff Cody {
1797*6ebdcee2SJeff Cody     BlockDriverState *intermediate;
1798*6ebdcee2SJeff Cody     BlockDriverState *base_bs = NULL;
1799*6ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
1800*6ebdcee2SJeff Cody     BlkIntermediateStates *intermediate_state, *next;
1801*6ebdcee2SJeff Cody     int ret = -EIO;
1802*6ebdcee2SJeff Cody 
1803*6ebdcee2SJeff Cody     QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
1804*6ebdcee2SJeff Cody     QSIMPLEQ_INIT(&states_to_delete);
1805*6ebdcee2SJeff Cody 
1806*6ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
1807*6ebdcee2SJeff Cody         goto exit;
1808*6ebdcee2SJeff Cody     }
1809*6ebdcee2SJeff Cody 
1810*6ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
1811*6ebdcee2SJeff Cody 
1812*6ebdcee2SJeff Cody     if (new_top_bs == NULL) {
1813*6ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
1814*6ebdcee2SJeff Cody         goto exit;
1815*6ebdcee2SJeff Cody     }
1816*6ebdcee2SJeff Cody 
1817*6ebdcee2SJeff Cody     /* special case of new_top_bs->backing_hd already pointing to base - nothing
1818*6ebdcee2SJeff Cody      * to do, no intermediate images */
1819*6ebdcee2SJeff Cody     if (new_top_bs->backing_hd == base) {
1820*6ebdcee2SJeff Cody         ret = 0;
1821*6ebdcee2SJeff Cody         goto exit;
1822*6ebdcee2SJeff Cody     }
1823*6ebdcee2SJeff Cody 
1824*6ebdcee2SJeff Cody     intermediate = top;
1825*6ebdcee2SJeff Cody 
1826*6ebdcee2SJeff Cody     /* now we will go down through the list, and add each BDS we find
1827*6ebdcee2SJeff Cody      * into our deletion queue, until we hit the 'base'
1828*6ebdcee2SJeff Cody      */
1829*6ebdcee2SJeff Cody     while (intermediate) {
1830*6ebdcee2SJeff Cody         intermediate_state = g_malloc0(sizeof(BlkIntermediateStates));
1831*6ebdcee2SJeff Cody         intermediate_state->bs = intermediate;
1832*6ebdcee2SJeff Cody         QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
1833*6ebdcee2SJeff Cody 
1834*6ebdcee2SJeff Cody         if (intermediate->backing_hd == base) {
1835*6ebdcee2SJeff Cody             base_bs = intermediate->backing_hd;
1836*6ebdcee2SJeff Cody             break;
1837*6ebdcee2SJeff Cody         }
1838*6ebdcee2SJeff Cody         intermediate = intermediate->backing_hd;
1839*6ebdcee2SJeff Cody     }
1840*6ebdcee2SJeff Cody     if (base_bs == NULL) {
1841*6ebdcee2SJeff Cody         /* something went wrong, we did not end at the base. safely
1842*6ebdcee2SJeff Cody          * unravel everything, and exit with error */
1843*6ebdcee2SJeff Cody         goto exit;
1844*6ebdcee2SJeff Cody     }
1845*6ebdcee2SJeff Cody 
1846*6ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
1847*6ebdcee2SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, base_bs->filename,
1848*6ebdcee2SJeff Cody                                    base_bs->drv ? base_bs->drv->format_name : "");
1849*6ebdcee2SJeff Cody     if (ret) {
1850*6ebdcee2SJeff Cody         goto exit;
1851*6ebdcee2SJeff Cody     }
1852*6ebdcee2SJeff Cody     new_top_bs->backing_hd = base_bs;
1853*6ebdcee2SJeff Cody 
1854*6ebdcee2SJeff Cody 
1855*6ebdcee2SJeff Cody     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1856*6ebdcee2SJeff Cody         /* so that bdrv_close() does not recursively close the chain */
1857*6ebdcee2SJeff Cody         intermediate_state->bs->backing_hd = NULL;
1858*6ebdcee2SJeff Cody         bdrv_delete(intermediate_state->bs);
1859*6ebdcee2SJeff Cody     }
1860*6ebdcee2SJeff Cody     ret = 0;
1861*6ebdcee2SJeff Cody 
1862*6ebdcee2SJeff Cody exit:
1863*6ebdcee2SJeff Cody     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
1864*6ebdcee2SJeff Cody         g_free(intermediate_state);
1865*6ebdcee2SJeff Cody     }
1866*6ebdcee2SJeff Cody     return ret;
1867*6ebdcee2SJeff Cody }
1868*6ebdcee2SJeff Cody 
1869*6ebdcee2SJeff Cody 
187071d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
187171d0770cSaliguori                                    size_t size)
187271d0770cSaliguori {
187371d0770cSaliguori     int64_t len;
187471d0770cSaliguori 
187571d0770cSaliguori     if (!bdrv_is_inserted(bs))
187671d0770cSaliguori         return -ENOMEDIUM;
187771d0770cSaliguori 
187871d0770cSaliguori     if (bs->growable)
187971d0770cSaliguori         return 0;
188071d0770cSaliguori 
188171d0770cSaliguori     len = bdrv_getlength(bs);
188271d0770cSaliguori 
1883fbb7b4e0SKevin Wolf     if (offset < 0)
1884fbb7b4e0SKevin Wolf         return -EIO;
1885fbb7b4e0SKevin Wolf 
1886fbb7b4e0SKevin Wolf     if ((offset > len) || (len - offset < size))
188771d0770cSaliguori         return -EIO;
188871d0770cSaliguori 
188971d0770cSaliguori     return 0;
189071d0770cSaliguori }
189171d0770cSaliguori 
189271d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
189371d0770cSaliguori                               int nb_sectors)
189471d0770cSaliguori {
1895eb5a3165SJes Sorensen     return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
1896eb5a3165SJes Sorensen                                    nb_sectors * BDRV_SECTOR_SIZE);
189771d0770cSaliguori }
189871d0770cSaliguori 
18991c9805a3SStefan Hajnoczi typedef struct RwCo {
19001c9805a3SStefan Hajnoczi     BlockDriverState *bs;
19011c9805a3SStefan Hajnoczi     int64_t sector_num;
19021c9805a3SStefan Hajnoczi     int nb_sectors;
19031c9805a3SStefan Hajnoczi     QEMUIOVector *qiov;
19041c9805a3SStefan Hajnoczi     bool is_write;
19051c9805a3SStefan Hajnoczi     int ret;
19061c9805a3SStefan Hajnoczi } RwCo;
19071c9805a3SStefan Hajnoczi 
19081c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque)
1909fc01f7e7Sbellard {
19101c9805a3SStefan Hajnoczi     RwCo *rwco = opaque;
1911fc01f7e7Sbellard 
19121c9805a3SStefan Hajnoczi     if (!rwco->is_write) {
19131c9805a3SStefan Hajnoczi         rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num,
1914470c0504SStefan Hajnoczi                                      rwco->nb_sectors, rwco->qiov, 0);
19151c9805a3SStefan Hajnoczi     } else {
19161c9805a3SStefan Hajnoczi         rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num,
1917f08f2ddaSStefan Hajnoczi                                       rwco->nb_sectors, rwco->qiov, 0);
19181c9805a3SStefan Hajnoczi     }
19191c9805a3SStefan Hajnoczi }
1920e7a8a783SKevin Wolf 
19211c9805a3SStefan Hajnoczi /*
19221c9805a3SStefan Hajnoczi  * Process a synchronous request using coroutines
19231c9805a3SStefan Hajnoczi  */
19241c9805a3SStefan Hajnoczi static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
19251c9805a3SStefan Hajnoczi                       int nb_sectors, bool is_write)
19261c9805a3SStefan Hajnoczi {
1927e7a8a783SKevin Wolf     QEMUIOVector qiov;
1928e7a8a783SKevin Wolf     struct iovec iov = {
1929e7a8a783SKevin Wolf         .iov_base = (void *)buf,
1930e7a8a783SKevin Wolf         .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
1931e7a8a783SKevin Wolf     };
19321c9805a3SStefan Hajnoczi     Coroutine *co;
19331c9805a3SStefan Hajnoczi     RwCo rwco = {
19341c9805a3SStefan Hajnoczi         .bs = bs,
19351c9805a3SStefan Hajnoczi         .sector_num = sector_num,
19361c9805a3SStefan Hajnoczi         .nb_sectors = nb_sectors,
19371c9805a3SStefan Hajnoczi         .qiov = &qiov,
19381c9805a3SStefan Hajnoczi         .is_write = is_write,
19391c9805a3SStefan Hajnoczi         .ret = NOT_DONE,
19401c9805a3SStefan Hajnoczi     };
1941e7a8a783SKevin Wolf 
1942e7a8a783SKevin Wolf     qemu_iovec_init_external(&qiov, &iov, 1);
19431c9805a3SStefan Hajnoczi 
1944498e386cSZhi Yong Wu     /**
1945498e386cSZhi Yong Wu      * In sync call context, when the vcpu is blocked, this throttling timer
1946498e386cSZhi Yong Wu      * will not fire; so the I/O throttling function has to be disabled here
1947498e386cSZhi Yong Wu      * if it has been enabled.
1948498e386cSZhi Yong Wu      */
1949498e386cSZhi Yong Wu     if (bs->io_limits_enabled) {
1950498e386cSZhi Yong Wu         fprintf(stderr, "Disabling I/O throttling on '%s' due "
1951498e386cSZhi Yong Wu                         "to synchronous I/O.\n", bdrv_get_device_name(bs));
1952498e386cSZhi Yong Wu         bdrv_io_limits_disable(bs);
1953498e386cSZhi Yong Wu     }
1954498e386cSZhi Yong Wu 
19551c9805a3SStefan Hajnoczi     if (qemu_in_coroutine()) {
19561c9805a3SStefan Hajnoczi         /* Fast-path if already in coroutine context */
19571c9805a3SStefan Hajnoczi         bdrv_rw_co_entry(&rwco);
19581c9805a3SStefan Hajnoczi     } else {
19591c9805a3SStefan Hajnoczi         co = qemu_coroutine_create(bdrv_rw_co_entry);
19601c9805a3SStefan Hajnoczi         qemu_coroutine_enter(co, &rwco);
19611c9805a3SStefan Hajnoczi         while (rwco.ret == NOT_DONE) {
19621c9805a3SStefan Hajnoczi             qemu_aio_wait();
19631c9805a3SStefan Hajnoczi         }
19641c9805a3SStefan Hajnoczi     }
19651c9805a3SStefan Hajnoczi     return rwco.ret;
1966e7a8a783SKevin Wolf }
1967e7a8a783SKevin Wolf 
19681c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */
19691c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num,
19701c9805a3SStefan Hajnoczi               uint8_t *buf, int nb_sectors)
19711c9805a3SStefan Hajnoczi {
19721c9805a3SStefan Hajnoczi     return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false);
197383f64091Sbellard }
1974fc01f7e7Sbellard 
197507d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */
197607d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
197707d27a44SMarkus Armbruster                           uint8_t *buf, int nb_sectors)
197807d27a44SMarkus Armbruster {
197907d27a44SMarkus Armbruster     bool enabled;
198007d27a44SMarkus Armbruster     int ret;
198107d27a44SMarkus Armbruster 
198207d27a44SMarkus Armbruster     enabled = bs->io_limits_enabled;
198307d27a44SMarkus Armbruster     bs->io_limits_enabled = false;
198407d27a44SMarkus Armbruster     ret = bdrv_read(bs, 0, buf, 1);
198507d27a44SMarkus Armbruster     bs->io_limits_enabled = enabled;
198607d27a44SMarkus Armbruster     return ret;
198707d27a44SMarkus Armbruster }
198807d27a44SMarkus Armbruster 
198971df14fcSPaolo Bonzini #define BITS_PER_LONG  (sizeof(unsigned long) * 8)
199071df14fcSPaolo Bonzini 
19917cd1e32aSlirans@il.ibm.com static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num,
19927cd1e32aSlirans@il.ibm.com                              int nb_sectors, int dirty)
19937cd1e32aSlirans@il.ibm.com {
19947cd1e32aSlirans@il.ibm.com     int64_t start, end;
1995c6d22830SJan Kiszka     unsigned long val, idx, bit;
1996a55eb92cSJan Kiszka 
19976ea44308SJan Kiszka     start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK;
1998c6d22830SJan Kiszka     end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK;
19997cd1e32aSlirans@il.ibm.com 
20007cd1e32aSlirans@il.ibm.com     for (; start <= end; start++) {
200171df14fcSPaolo Bonzini         idx = start / BITS_PER_LONG;
200271df14fcSPaolo Bonzini         bit = start % BITS_PER_LONG;
2003c6d22830SJan Kiszka         val = bs->dirty_bitmap[idx];
2004c6d22830SJan Kiszka         if (dirty) {
20056d59fec1SMarcelo Tosatti             if (!(val & (1UL << bit))) {
2006aaa0eb75SLiran Schour                 bs->dirty_count++;
20076d59fec1SMarcelo Tosatti                 val |= 1UL << bit;
2008aaa0eb75SLiran Schour             }
2009c6d22830SJan Kiszka         } else {
20106d59fec1SMarcelo Tosatti             if (val & (1UL << bit)) {
2011aaa0eb75SLiran Schour                 bs->dirty_count--;
20126d59fec1SMarcelo Tosatti                 val &= ~(1UL << bit);
2013c6d22830SJan Kiszka             }
2014aaa0eb75SLiran Schour         }
2015c6d22830SJan Kiszka         bs->dirty_bitmap[idx] = val;
20167cd1e32aSlirans@il.ibm.com     }
20177cd1e32aSlirans@il.ibm.com }
20187cd1e32aSlirans@il.ibm.com 
201919cb3738Sbellard /* Return < 0 if error. Important errors are:
202019cb3738Sbellard   -EIO         generic I/O error (may happen for all errors)
202119cb3738Sbellard   -ENOMEDIUM   No media inserted.
202219cb3738Sbellard   -EINVAL      Invalid sector number or nb_sectors
202319cb3738Sbellard   -EACCES      Trying to write a read-only device
202419cb3738Sbellard */
2025fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num,
2026fc01f7e7Sbellard                const uint8_t *buf, int nb_sectors)
2027fc01f7e7Sbellard {
20281c9805a3SStefan Hajnoczi     return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true);
202983f64091Sbellard }
203083f64091Sbellard 
2031eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset,
2032eda578e5Saliguori                void *buf, int count1)
203383f64091Sbellard {
20346ea44308SJan Kiszka     uint8_t tmp_buf[BDRV_SECTOR_SIZE];
203583f64091Sbellard     int len, nb_sectors, count;
203683f64091Sbellard     int64_t sector_num;
20379a8c4cceSKevin Wolf     int ret;
203883f64091Sbellard 
203983f64091Sbellard     count = count1;
204083f64091Sbellard     /* first read to align to sector start */
20416ea44308SJan Kiszka     len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
204283f64091Sbellard     if (len > count)
204383f64091Sbellard         len = count;
20446ea44308SJan Kiszka     sector_num = offset >> BDRV_SECTOR_BITS;
204583f64091Sbellard     if (len > 0) {
20469a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
20479a8c4cceSKevin Wolf             return ret;
20486ea44308SJan Kiszka         memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
204983f64091Sbellard         count -= len;
205083f64091Sbellard         if (count == 0)
205183f64091Sbellard             return count1;
205283f64091Sbellard         sector_num++;
205383f64091Sbellard         buf += len;
205483f64091Sbellard     }
205583f64091Sbellard 
205683f64091Sbellard     /* read the sectors "in place" */
20576ea44308SJan Kiszka     nb_sectors = count >> BDRV_SECTOR_BITS;
205883f64091Sbellard     if (nb_sectors > 0) {
20599a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
20609a8c4cceSKevin Wolf             return ret;
206183f64091Sbellard         sector_num += nb_sectors;
20626ea44308SJan Kiszka         len = nb_sectors << BDRV_SECTOR_BITS;
206383f64091Sbellard         buf += len;
206483f64091Sbellard         count -= len;
206583f64091Sbellard     }
206683f64091Sbellard 
206783f64091Sbellard     /* add data from the last sector */
206883f64091Sbellard     if (count > 0) {
20699a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
20709a8c4cceSKevin Wolf             return ret;
207183f64091Sbellard         memcpy(buf, tmp_buf, count);
207283f64091Sbellard     }
207383f64091Sbellard     return count1;
207483f64091Sbellard }
207583f64091Sbellard 
2076eda578e5Saliguori int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
2077eda578e5Saliguori                 const void *buf, int count1)
207883f64091Sbellard {
20796ea44308SJan Kiszka     uint8_t tmp_buf[BDRV_SECTOR_SIZE];
208083f64091Sbellard     int len, nb_sectors, count;
208183f64091Sbellard     int64_t sector_num;
20829a8c4cceSKevin Wolf     int ret;
208383f64091Sbellard 
208483f64091Sbellard     count = count1;
208583f64091Sbellard     /* first write to align to sector start */
20866ea44308SJan Kiszka     len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
208783f64091Sbellard     if (len > count)
208883f64091Sbellard         len = count;
20896ea44308SJan Kiszka     sector_num = offset >> BDRV_SECTOR_BITS;
209083f64091Sbellard     if (len > 0) {
20919a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
20929a8c4cceSKevin Wolf             return ret;
20936ea44308SJan Kiszka         memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len);
20949a8c4cceSKevin Wolf         if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
20959a8c4cceSKevin Wolf             return ret;
209683f64091Sbellard         count -= len;
209783f64091Sbellard         if (count == 0)
209883f64091Sbellard             return count1;
209983f64091Sbellard         sector_num++;
210083f64091Sbellard         buf += len;
210183f64091Sbellard     }
210283f64091Sbellard 
210383f64091Sbellard     /* write the sectors "in place" */
21046ea44308SJan Kiszka     nb_sectors = count >> BDRV_SECTOR_BITS;
210583f64091Sbellard     if (nb_sectors > 0) {
21069a8c4cceSKevin Wolf         if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0)
21079a8c4cceSKevin Wolf             return ret;
210883f64091Sbellard         sector_num += nb_sectors;
21096ea44308SJan Kiszka         len = nb_sectors << BDRV_SECTOR_BITS;
211083f64091Sbellard         buf += len;
211183f64091Sbellard         count -= len;
211283f64091Sbellard     }
211383f64091Sbellard 
211483f64091Sbellard     /* add data from the last sector */
211583f64091Sbellard     if (count > 0) {
21169a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
21179a8c4cceSKevin Wolf             return ret;
211883f64091Sbellard         memcpy(tmp_buf, buf, count);
21199a8c4cceSKevin Wolf         if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
21209a8c4cceSKevin Wolf             return ret;
212183f64091Sbellard     }
212283f64091Sbellard     return count1;
212383f64091Sbellard }
212483f64091Sbellard 
2125f08145feSKevin Wolf /*
2126f08145feSKevin Wolf  * Writes to the file and ensures that no writes are reordered across this
2127f08145feSKevin Wolf  * request (acts as a barrier)
2128f08145feSKevin Wolf  *
2129f08145feSKevin Wolf  * Returns 0 on success, -errno in error cases.
2130f08145feSKevin Wolf  */
2131f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2132f08145feSKevin Wolf     const void *buf, int count)
2133f08145feSKevin Wolf {
2134f08145feSKevin Wolf     int ret;
2135f08145feSKevin Wolf 
2136f08145feSKevin Wolf     ret = bdrv_pwrite(bs, offset, buf, count);
2137f08145feSKevin Wolf     if (ret < 0) {
2138f08145feSKevin Wolf         return ret;
2139f08145feSKevin Wolf     }
2140f08145feSKevin Wolf 
2141f05fa4adSPaolo Bonzini     /* No flush needed for cache modes that already do it */
2142f05fa4adSPaolo Bonzini     if (bs->enable_write_cache) {
2143f08145feSKevin Wolf         bdrv_flush(bs);
2144f08145feSKevin Wolf     }
2145f08145feSKevin Wolf 
2146f08145feSKevin Wolf     return 0;
2147f08145feSKevin Wolf }
2148f08145feSKevin Wolf 
2149470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
2150ab185921SStefan Hajnoczi         int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2151ab185921SStefan Hajnoczi {
2152ab185921SStefan Hajnoczi     /* Perform I/O through a temporary buffer so that users who scribble over
2153ab185921SStefan Hajnoczi      * their read buffer while the operation is in progress do not end up
2154ab185921SStefan Hajnoczi      * modifying the image file.  This is critical for zero-copy guest I/O
2155ab185921SStefan Hajnoczi      * where anything might happen inside guest memory.
2156ab185921SStefan Hajnoczi      */
2157ab185921SStefan Hajnoczi     void *bounce_buffer;
2158ab185921SStefan Hajnoczi 
215979c053bdSStefan Hajnoczi     BlockDriver *drv = bs->drv;
2160ab185921SStefan Hajnoczi     struct iovec iov;
2161ab185921SStefan Hajnoczi     QEMUIOVector bounce_qiov;
2162ab185921SStefan Hajnoczi     int64_t cluster_sector_num;
2163ab185921SStefan Hajnoczi     int cluster_nb_sectors;
2164ab185921SStefan Hajnoczi     size_t skip_bytes;
2165ab185921SStefan Hajnoczi     int ret;
2166ab185921SStefan Hajnoczi 
2167ab185921SStefan Hajnoczi     /* Cover entire cluster so no additional backing file I/O is required when
2168ab185921SStefan Hajnoczi      * allocating cluster in the image file.
2169ab185921SStefan Hajnoczi      */
2170ab185921SStefan Hajnoczi     round_to_clusters(bs, sector_num, nb_sectors,
2171ab185921SStefan Hajnoczi                       &cluster_sector_num, &cluster_nb_sectors);
2172ab185921SStefan Hajnoczi 
2173470c0504SStefan Hajnoczi     trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2174ab185921SStefan Hajnoczi                                    cluster_sector_num, cluster_nb_sectors);
2175ab185921SStefan Hajnoczi 
2176ab185921SStefan Hajnoczi     iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2177ab185921SStefan Hajnoczi     iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
2178ab185921SStefan Hajnoczi     qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2179ab185921SStefan Hajnoczi 
218079c053bdSStefan Hajnoczi     ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2181ab185921SStefan Hajnoczi                              &bounce_qiov);
2182ab185921SStefan Hajnoczi     if (ret < 0) {
2183ab185921SStefan Hajnoczi         goto err;
2184ab185921SStefan Hajnoczi     }
2185ab185921SStefan Hajnoczi 
218679c053bdSStefan Hajnoczi     if (drv->bdrv_co_write_zeroes &&
218779c053bdSStefan Hajnoczi         buffer_is_zero(bounce_buffer, iov.iov_len)) {
2188621f0589SKevin Wolf         ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
218979c053bdSStefan Hajnoczi                                       cluster_nb_sectors);
219079c053bdSStefan Hajnoczi     } else {
2191f05fa4adSPaolo Bonzini         /* This does not change the data on the disk, it is not necessary
2192f05fa4adSPaolo Bonzini          * to flush even in cache=writethrough mode.
2193f05fa4adSPaolo Bonzini          */
219479c053bdSStefan Hajnoczi         ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
2195ab185921SStefan Hajnoczi                                   &bounce_qiov);
219679c053bdSStefan Hajnoczi     }
219779c053bdSStefan Hajnoczi 
2198ab185921SStefan Hajnoczi     if (ret < 0) {
2199ab185921SStefan Hajnoczi         /* It might be okay to ignore write errors for guest requests.  If this
2200ab185921SStefan Hajnoczi          * is a deliberate copy-on-read then we don't want to ignore the error.
2201ab185921SStefan Hajnoczi          * Simply report it in all cases.
2202ab185921SStefan Hajnoczi          */
2203ab185921SStefan Hajnoczi         goto err;
2204ab185921SStefan Hajnoczi     }
2205ab185921SStefan Hajnoczi 
2206ab185921SStefan Hajnoczi     skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
220703396148SMichael Tokarev     qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2208ab185921SStefan Hajnoczi                         nb_sectors * BDRV_SECTOR_SIZE);
2209ab185921SStefan Hajnoczi 
2210ab185921SStefan Hajnoczi err:
2211ab185921SStefan Hajnoczi     qemu_vfree(bounce_buffer);
2212ab185921SStefan Hajnoczi     return ret;
2213ab185921SStefan Hajnoczi }
2214ab185921SStefan Hajnoczi 
2215c5fbe571SStefan Hajnoczi /*
2216c5fbe571SStefan Hajnoczi  * Handle a read request in coroutine context
2217c5fbe571SStefan Hajnoczi  */
2218c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
2219470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2220470c0504SStefan Hajnoczi     BdrvRequestFlags flags)
2221da1fa91dSKevin Wolf {
2222da1fa91dSKevin Wolf     BlockDriver *drv = bs->drv;
2223dbffbdcfSStefan Hajnoczi     BdrvTrackedRequest req;
2224dbffbdcfSStefan Hajnoczi     int ret;
2225da1fa91dSKevin Wolf 
2226da1fa91dSKevin Wolf     if (!drv) {
2227da1fa91dSKevin Wolf         return -ENOMEDIUM;
2228da1fa91dSKevin Wolf     }
2229da1fa91dSKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2230da1fa91dSKevin Wolf         return -EIO;
2231da1fa91dSKevin Wolf     }
2232da1fa91dSKevin Wolf 
223398f90dbaSZhi Yong Wu     /* throttling disk read I/O */
223498f90dbaSZhi Yong Wu     if (bs->io_limits_enabled) {
223598f90dbaSZhi Yong Wu         bdrv_io_limits_intercept(bs, false, nb_sectors);
223698f90dbaSZhi Yong Wu     }
223798f90dbaSZhi Yong Wu 
2238f4658285SStefan Hajnoczi     if (bs->copy_on_read) {
2239470c0504SStefan Hajnoczi         flags |= BDRV_REQ_COPY_ON_READ;
2240470c0504SStefan Hajnoczi     }
2241470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2242470c0504SStefan Hajnoczi         bs->copy_on_read_in_flight++;
2243470c0504SStefan Hajnoczi     }
2244470c0504SStefan Hajnoczi 
2245470c0504SStefan Hajnoczi     if (bs->copy_on_read_in_flight) {
2246f4658285SStefan Hajnoczi         wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2247f4658285SStefan Hajnoczi     }
2248f4658285SStefan Hajnoczi 
2249dbffbdcfSStefan Hajnoczi     tracked_request_begin(&req, bs, sector_num, nb_sectors, false);
2250ab185921SStefan Hajnoczi 
2251470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2252ab185921SStefan Hajnoczi         int pnum;
2253ab185921SStefan Hajnoczi 
2254ab185921SStefan Hajnoczi         ret = bdrv_co_is_allocated(bs, sector_num, nb_sectors, &pnum);
2255ab185921SStefan Hajnoczi         if (ret < 0) {
2256ab185921SStefan Hajnoczi             goto out;
2257ab185921SStefan Hajnoczi         }
2258ab185921SStefan Hajnoczi 
2259ab185921SStefan Hajnoczi         if (!ret || pnum != nb_sectors) {
2260470c0504SStefan Hajnoczi             ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
2261ab185921SStefan Hajnoczi             goto out;
2262ab185921SStefan Hajnoczi         }
2263ab185921SStefan Hajnoczi     }
2264ab185921SStefan Hajnoczi 
2265dbffbdcfSStefan Hajnoczi     ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
2266ab185921SStefan Hajnoczi 
2267ab185921SStefan Hajnoczi out:
2268dbffbdcfSStefan Hajnoczi     tracked_request_end(&req);
2269470c0504SStefan Hajnoczi 
2270470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2271470c0504SStefan Hajnoczi         bs->copy_on_read_in_flight--;
2272470c0504SStefan Hajnoczi     }
2273470c0504SStefan Hajnoczi 
2274dbffbdcfSStefan Hajnoczi     return ret;
2275da1fa91dSKevin Wolf }
2276da1fa91dSKevin Wolf 
2277c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
2278da1fa91dSKevin Wolf     int nb_sectors, QEMUIOVector *qiov)
2279da1fa91dSKevin Wolf {
2280c5fbe571SStefan Hajnoczi     trace_bdrv_co_readv(bs, sector_num, nb_sectors);
2281da1fa91dSKevin Wolf 
2282470c0504SStefan Hajnoczi     return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
2283470c0504SStefan Hajnoczi }
2284470c0504SStefan Hajnoczi 
2285470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
2286470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2287470c0504SStefan Hajnoczi {
2288470c0504SStefan Hajnoczi     trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
2289470c0504SStefan Hajnoczi 
2290470c0504SStefan Hajnoczi     return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
2291470c0504SStefan Hajnoczi                             BDRV_REQ_COPY_ON_READ);
2292c5fbe571SStefan Hajnoczi }
2293c5fbe571SStefan Hajnoczi 
2294f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
2295f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors)
2296f08f2ddaSStefan Hajnoczi {
2297f08f2ddaSStefan Hajnoczi     BlockDriver *drv = bs->drv;
2298f08f2ddaSStefan Hajnoczi     QEMUIOVector qiov;
2299f08f2ddaSStefan Hajnoczi     struct iovec iov;
2300f08f2ddaSStefan Hajnoczi     int ret;
2301f08f2ddaSStefan Hajnoczi 
2302621f0589SKevin Wolf     /* TODO Emulate only part of misaligned requests instead of letting block
2303621f0589SKevin Wolf      * drivers return -ENOTSUP and emulate everything */
2304621f0589SKevin Wolf 
2305f08f2ddaSStefan Hajnoczi     /* First try the efficient write zeroes operation */
2306f08f2ddaSStefan Hajnoczi     if (drv->bdrv_co_write_zeroes) {
2307621f0589SKevin Wolf         ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2308621f0589SKevin Wolf         if (ret != -ENOTSUP) {
2309621f0589SKevin Wolf             return ret;
2310621f0589SKevin Wolf         }
2311f08f2ddaSStefan Hajnoczi     }
2312f08f2ddaSStefan Hajnoczi 
2313f08f2ddaSStefan Hajnoczi     /* Fall back to bounce buffer if write zeroes is unsupported */
2314f08f2ddaSStefan Hajnoczi     iov.iov_len  = nb_sectors * BDRV_SECTOR_SIZE;
2315f08f2ddaSStefan Hajnoczi     iov.iov_base = qemu_blockalign(bs, iov.iov_len);
2316f08f2ddaSStefan Hajnoczi     memset(iov.iov_base, 0, iov.iov_len);
2317f08f2ddaSStefan Hajnoczi     qemu_iovec_init_external(&qiov, &iov, 1);
2318f08f2ddaSStefan Hajnoczi 
2319f08f2ddaSStefan Hajnoczi     ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov);
2320f08f2ddaSStefan Hajnoczi 
2321f08f2ddaSStefan Hajnoczi     qemu_vfree(iov.iov_base);
2322f08f2ddaSStefan Hajnoczi     return ret;
2323f08f2ddaSStefan Hajnoczi }
2324f08f2ddaSStefan Hajnoczi 
2325c5fbe571SStefan Hajnoczi /*
2326c5fbe571SStefan Hajnoczi  * Handle a write request in coroutine context
2327c5fbe571SStefan Hajnoczi  */
2328c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
2329f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2330f08f2ddaSStefan Hajnoczi     BdrvRequestFlags flags)
2331c5fbe571SStefan Hajnoczi {
2332c5fbe571SStefan Hajnoczi     BlockDriver *drv = bs->drv;
2333dbffbdcfSStefan Hajnoczi     BdrvTrackedRequest req;
23346b7cb247SStefan Hajnoczi     int ret;
2335da1fa91dSKevin Wolf 
2336da1fa91dSKevin Wolf     if (!bs->drv) {
2337da1fa91dSKevin Wolf         return -ENOMEDIUM;
2338da1fa91dSKevin Wolf     }
2339da1fa91dSKevin Wolf     if (bs->read_only) {
2340da1fa91dSKevin Wolf         return -EACCES;
2341da1fa91dSKevin Wolf     }
2342da1fa91dSKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2343da1fa91dSKevin Wolf         return -EIO;
2344da1fa91dSKevin Wolf     }
2345da1fa91dSKevin Wolf 
234698f90dbaSZhi Yong Wu     /* throttling disk write I/O */
234798f90dbaSZhi Yong Wu     if (bs->io_limits_enabled) {
234898f90dbaSZhi Yong Wu         bdrv_io_limits_intercept(bs, true, nb_sectors);
234998f90dbaSZhi Yong Wu     }
235098f90dbaSZhi Yong Wu 
2351470c0504SStefan Hajnoczi     if (bs->copy_on_read_in_flight) {
2352f4658285SStefan Hajnoczi         wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2353f4658285SStefan Hajnoczi     }
2354f4658285SStefan Hajnoczi 
2355dbffbdcfSStefan Hajnoczi     tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
2356dbffbdcfSStefan Hajnoczi 
2357f08f2ddaSStefan Hajnoczi     if (flags & BDRV_REQ_ZERO_WRITE) {
2358f08f2ddaSStefan Hajnoczi         ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors);
2359f08f2ddaSStefan Hajnoczi     } else {
23606b7cb247SStefan Hajnoczi         ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
2361f08f2ddaSStefan Hajnoczi     }
23626b7cb247SStefan Hajnoczi 
2363f05fa4adSPaolo Bonzini     if (ret == 0 && !bs->enable_write_cache) {
2364f05fa4adSPaolo Bonzini         ret = bdrv_co_flush(bs);
2365f05fa4adSPaolo Bonzini     }
2366f05fa4adSPaolo Bonzini 
2367da1fa91dSKevin Wolf     if (bs->dirty_bitmap) {
2368da1fa91dSKevin Wolf         set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
2369da1fa91dSKevin Wolf     }
2370da1fa91dSKevin Wolf 
2371da1fa91dSKevin Wolf     if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2372da1fa91dSKevin Wolf         bs->wr_highest_sector = sector_num + nb_sectors - 1;
2373da1fa91dSKevin Wolf     }
2374da1fa91dSKevin Wolf 
2375dbffbdcfSStefan Hajnoczi     tracked_request_end(&req);
2376dbffbdcfSStefan Hajnoczi 
23776b7cb247SStefan Hajnoczi     return ret;
2378da1fa91dSKevin Wolf }
2379da1fa91dSKevin Wolf 
2380c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
2381c5fbe571SStefan Hajnoczi     int nb_sectors, QEMUIOVector *qiov)
2382c5fbe571SStefan Hajnoczi {
2383c5fbe571SStefan Hajnoczi     trace_bdrv_co_writev(bs, sector_num, nb_sectors);
2384c5fbe571SStefan Hajnoczi 
2385f08f2ddaSStefan Hajnoczi     return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
2386f08f2ddaSStefan Hajnoczi }
2387f08f2ddaSStefan Hajnoczi 
2388f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
2389f08f2ddaSStefan Hajnoczi                                       int64_t sector_num, int nb_sectors)
2390f08f2ddaSStefan Hajnoczi {
2391f08f2ddaSStefan Hajnoczi     trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2392f08f2ddaSStefan Hajnoczi 
2393f08f2ddaSStefan Hajnoczi     return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
2394f08f2ddaSStefan Hajnoczi                              BDRV_REQ_ZERO_WRITE);
2395c5fbe571SStefan Hajnoczi }
2396c5fbe571SStefan Hajnoczi 
239783f64091Sbellard /**
239883f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
239983f64091Sbellard  */
240083f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
240183f64091Sbellard {
240283f64091Sbellard     BlockDriver *drv = bs->drv;
240351762288SStefan Hajnoczi     int ret;
240483f64091Sbellard     if (!drv)
240519cb3738Sbellard         return -ENOMEDIUM;
240683f64091Sbellard     if (!drv->bdrv_truncate)
240783f64091Sbellard         return -ENOTSUP;
240859f2689dSNaphtali Sprei     if (bs->read_only)
240959f2689dSNaphtali Sprei         return -EACCES;
24108591675fSMarcelo Tosatti     if (bdrv_in_use(bs))
24118591675fSMarcelo Tosatti         return -EBUSY;
241251762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
241351762288SStefan Hajnoczi     if (ret == 0) {
241451762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2415145feb17SMarkus Armbruster         bdrv_dev_resize_cb(bs);
241651762288SStefan Hajnoczi     }
241751762288SStefan Hajnoczi     return ret;
241883f64091Sbellard }
241983f64091Sbellard 
242083f64091Sbellard /**
24214a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
24224a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
24234a1d5e1fSFam Zheng  */
24244a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
24254a1d5e1fSFam Zheng {
24264a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
24274a1d5e1fSFam Zheng     if (!drv) {
24284a1d5e1fSFam Zheng         return -ENOMEDIUM;
24294a1d5e1fSFam Zheng     }
24304a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
24314a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
24324a1d5e1fSFam Zheng     }
24334a1d5e1fSFam Zheng     if (bs->file) {
24344a1d5e1fSFam Zheng         return bdrv_get_allocated_file_size(bs->file);
24354a1d5e1fSFam Zheng     }
24364a1d5e1fSFam Zheng     return -ENOTSUP;
24374a1d5e1fSFam Zheng }
24384a1d5e1fSFam Zheng 
24394a1d5e1fSFam Zheng /**
244083f64091Sbellard  * Length of a file in bytes. Return < 0 if error or unknown.
244183f64091Sbellard  */
244283f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs)
244383f64091Sbellard {
244483f64091Sbellard     BlockDriver *drv = bs->drv;
244583f64091Sbellard     if (!drv)
244619cb3738Sbellard         return -ENOMEDIUM;
244751762288SStefan Hajnoczi 
24482c6942faSMarkus Armbruster     if (bs->growable || bdrv_dev_has_removable_media(bs)) {
244946a4e4e6SStefan Hajnoczi         if (drv->bdrv_getlength) {
245083f64091Sbellard             return drv->bdrv_getlength(bs);
2451fc01f7e7Sbellard         }
245246a4e4e6SStefan Hajnoczi     }
245346a4e4e6SStefan Hajnoczi     return bs->total_sectors * BDRV_SECTOR_SIZE;
245446a4e4e6SStefan Hajnoczi }
2455fc01f7e7Sbellard 
245619cb3738Sbellard /* return 0 as number of sectors if no device present or error */
245796b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2458fc01f7e7Sbellard {
245919cb3738Sbellard     int64_t length;
246019cb3738Sbellard     length = bdrv_getlength(bs);
246119cb3738Sbellard     if (length < 0)
246219cb3738Sbellard         length = 0;
246319cb3738Sbellard     else
24646ea44308SJan Kiszka         length = length >> BDRV_SECTOR_BITS;
246519cb3738Sbellard     *nb_sectors_ptr = length;
2466fc01f7e7Sbellard }
2467cf98951bSbellard 
24680563e191SZhi Yong Wu /* throttling disk io limits */
24690563e191SZhi Yong Wu void bdrv_set_io_limits(BlockDriverState *bs,
24700563e191SZhi Yong Wu                         BlockIOLimit *io_limits)
24710563e191SZhi Yong Wu {
24720563e191SZhi Yong Wu     bs->io_limits = *io_limits;
24730563e191SZhi Yong Wu     bs->io_limits_enabled = bdrv_io_limits_enabled(bs);
24740563e191SZhi Yong Wu }
24750563e191SZhi Yong Wu 
2476abd7f68dSMarkus Armbruster void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
2477abd7f68dSMarkus Armbruster                        BlockErrorAction on_write_error)
2478abd7f68dSMarkus Armbruster {
2479abd7f68dSMarkus Armbruster     bs->on_read_error = on_read_error;
2480abd7f68dSMarkus Armbruster     bs->on_write_error = on_write_error;
2481abd7f68dSMarkus Armbruster }
2482abd7f68dSMarkus Armbruster 
2483abd7f68dSMarkus Armbruster BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read)
2484abd7f68dSMarkus Armbruster {
2485abd7f68dSMarkus Armbruster     return is_read ? bs->on_read_error : bs->on_write_error;
2486abd7f68dSMarkus Armbruster }
2487abd7f68dSMarkus Armbruster 
2488b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs)
2489b338082bSbellard {
2490b338082bSbellard     return bs->read_only;
2491b338082bSbellard }
2492b338082bSbellard 
2493985a03b0Sths int bdrv_is_sg(BlockDriverState *bs)
2494985a03b0Sths {
2495985a03b0Sths     return bs->sg;
2496985a03b0Sths }
2497985a03b0Sths 
2498e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs)
2499e900a7b7SChristoph Hellwig {
2500e900a7b7SChristoph Hellwig     return bs->enable_write_cache;
2501e900a7b7SChristoph Hellwig }
2502e900a7b7SChristoph Hellwig 
2503425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
2504425b0148SPaolo Bonzini {
2505425b0148SPaolo Bonzini     bs->enable_write_cache = wce;
250655b110f2SJeff Cody 
250755b110f2SJeff Cody     /* so a reopen() will preserve wce */
250855b110f2SJeff Cody     if (wce) {
250955b110f2SJeff Cody         bs->open_flags |= BDRV_O_CACHE_WB;
251055b110f2SJeff Cody     } else {
251155b110f2SJeff Cody         bs->open_flags &= ~BDRV_O_CACHE_WB;
251255b110f2SJeff Cody     }
2513425b0148SPaolo Bonzini }
2514425b0148SPaolo Bonzini 
2515ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs)
2516ea2384d3Sbellard {
2517ea2384d3Sbellard     if (bs->backing_hd && bs->backing_hd->encrypted)
2518ea2384d3Sbellard         return 1;
2519ea2384d3Sbellard     return bs->encrypted;
2520ea2384d3Sbellard }
2521ea2384d3Sbellard 
2522c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs)
2523c0f4ce77Saliguori {
2524c0f4ce77Saliguori     BlockDriverState *backing_hd = bs->backing_hd;
2525c0f4ce77Saliguori 
2526c0f4ce77Saliguori     if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
2527c0f4ce77Saliguori         return 1;
2528c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2529c0f4ce77Saliguori }
2530c0f4ce77Saliguori 
2531ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2532ea2384d3Sbellard {
2533ea2384d3Sbellard     int ret;
2534ea2384d3Sbellard     if (bs->backing_hd && bs->backing_hd->encrypted) {
2535ea2384d3Sbellard         ret = bdrv_set_key(bs->backing_hd, key);
2536ea2384d3Sbellard         if (ret < 0)
2537ea2384d3Sbellard             return ret;
2538ea2384d3Sbellard         if (!bs->encrypted)
2539ea2384d3Sbellard             return 0;
2540ea2384d3Sbellard     }
2541fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2542fd04a2aeSShahar Havivi         return -EINVAL;
2543fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2544fd04a2aeSShahar Havivi         return -ENOMEDIUM;
2545fd04a2aeSShahar Havivi     }
2546c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
2547bb5fc20fSaliguori     if (ret < 0) {
2548bb5fc20fSaliguori         bs->valid_key = 0;
2549bb5fc20fSaliguori     } else if (!bs->valid_key) {
2550bb5fc20fSaliguori         bs->valid_key = 1;
2551bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
25527d4b4ba5SMarkus Armbruster         bdrv_dev_change_media_cb(bs, true);
2553bb5fc20fSaliguori     }
2554c0f4ce77Saliguori     return ret;
2555ea2384d3Sbellard }
2556ea2384d3Sbellard 
2557f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
2558ea2384d3Sbellard {
2559f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
2560ea2384d3Sbellard }
2561ea2384d3Sbellard 
2562ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
2563ea2384d3Sbellard                          void *opaque)
2564ea2384d3Sbellard {
2565ea2384d3Sbellard     BlockDriver *drv;
2566ea2384d3Sbellard 
25678a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
2568ea2384d3Sbellard         it(opaque, drv->format_name);
2569ea2384d3Sbellard     }
2570ea2384d3Sbellard }
2571ea2384d3Sbellard 
2572b338082bSbellard BlockDriverState *bdrv_find(const char *name)
2573b338082bSbellard {
2574b338082bSbellard     BlockDriverState *bs;
2575b338082bSbellard 
25761b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
25771b7bdbc1SStefan Hajnoczi         if (!strcmp(name, bs->device_name)) {
2578b338082bSbellard             return bs;
2579b338082bSbellard         }
25801b7bdbc1SStefan Hajnoczi     }
2581b338082bSbellard     return NULL;
2582b338082bSbellard }
2583b338082bSbellard 
25842f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs)
25852f399b0aSMarkus Armbruster {
25862f399b0aSMarkus Armbruster     if (!bs) {
25872f399b0aSMarkus Armbruster         return QTAILQ_FIRST(&bdrv_states);
25882f399b0aSMarkus Armbruster     }
25892f399b0aSMarkus Armbruster     return QTAILQ_NEXT(bs, list);
25902f399b0aSMarkus Armbruster }
25912f399b0aSMarkus Armbruster 
259251de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
259381d0912dSbellard {
259481d0912dSbellard     BlockDriverState *bs;
259581d0912dSbellard 
25961b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
259751de9760Saliguori         it(opaque, bs);
259881d0912dSbellard     }
259981d0912dSbellard }
260081d0912dSbellard 
2601ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs)
2602ea2384d3Sbellard {
2603ea2384d3Sbellard     return bs->device_name;
2604ea2384d3Sbellard }
2605ea2384d3Sbellard 
2606c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
2607c8433287SMarkus Armbruster {
2608c8433287SMarkus Armbruster     return bs->open_flags;
2609c8433287SMarkus Armbruster }
2610c8433287SMarkus Armbruster 
2611c6ca28d6Saliguori void bdrv_flush_all(void)
2612c6ca28d6Saliguori {
2613c6ca28d6Saliguori     BlockDriverState *bs;
2614c6ca28d6Saliguori 
26151b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
2616c6ca28d6Saliguori         bdrv_flush(bs);
2617c6ca28d6Saliguori     }
26181b7bdbc1SStefan Hajnoczi }
2619c6ca28d6Saliguori 
2620f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
2621f2feebbdSKevin Wolf {
2622f2feebbdSKevin Wolf     assert(bs->drv);
2623f2feebbdSKevin Wolf 
2624336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
2625336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
2626f2feebbdSKevin Wolf     }
2627f2feebbdSKevin Wolf 
2628f2feebbdSKevin Wolf     return 1;
2629f2feebbdSKevin Wolf }
2630f2feebbdSKevin Wolf 
2631376ae3f1SStefan Hajnoczi typedef struct BdrvCoIsAllocatedData {
2632376ae3f1SStefan Hajnoczi     BlockDriverState *bs;
2633376ae3f1SStefan Hajnoczi     int64_t sector_num;
2634376ae3f1SStefan Hajnoczi     int nb_sectors;
2635376ae3f1SStefan Hajnoczi     int *pnum;
2636376ae3f1SStefan Hajnoczi     int ret;
2637376ae3f1SStefan Hajnoczi     bool done;
2638376ae3f1SStefan Hajnoczi } BdrvCoIsAllocatedData;
2639376ae3f1SStefan Hajnoczi 
2640f58c7b35Sths /*
2641f58c7b35Sths  * Returns true iff the specified sector is present in the disk image. Drivers
2642f58c7b35Sths  * not implementing the functionality are assumed to not support backing files,
2643f58c7b35Sths  * hence all their sectors are reported as allocated.
2644f58c7b35Sths  *
2645bd9533e3SStefan Hajnoczi  * If 'sector_num' is beyond the end of the disk image the return value is 0
2646bd9533e3SStefan Hajnoczi  * and 'pnum' is set to 0.
2647bd9533e3SStefan Hajnoczi  *
2648f58c7b35Sths  * 'pnum' is set to the number of sectors (including and immediately following
2649f58c7b35Sths  * the specified sector) that are known to be in the same
2650f58c7b35Sths  * allocated/unallocated state.
2651f58c7b35Sths  *
2652bd9533e3SStefan Hajnoczi  * 'nb_sectors' is the max value 'pnum' should be set to.  If nb_sectors goes
2653bd9533e3SStefan Hajnoczi  * beyond the end of the disk image it will be clamped.
2654f58c7b35Sths  */
2655060f51c9SStefan Hajnoczi int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
2656060f51c9SStefan Hajnoczi                                       int nb_sectors, int *pnum)
2657f58c7b35Sths {
2658f58c7b35Sths     int64_t n;
2659bd9533e3SStefan Hajnoczi 
26606aebab14SStefan Hajnoczi     if (sector_num >= bs->total_sectors) {
26616aebab14SStefan Hajnoczi         *pnum = 0;
26626aebab14SStefan Hajnoczi         return 0;
26636aebab14SStefan Hajnoczi     }
2664bd9533e3SStefan Hajnoczi 
26656aebab14SStefan Hajnoczi     n = bs->total_sectors - sector_num;
2666bd9533e3SStefan Hajnoczi     if (n < nb_sectors) {
2667bd9533e3SStefan Hajnoczi         nb_sectors = n;
2668bd9533e3SStefan Hajnoczi     }
2669bd9533e3SStefan Hajnoczi 
2670bd9533e3SStefan Hajnoczi     if (!bs->drv->bdrv_co_is_allocated) {
2671bd9533e3SStefan Hajnoczi         *pnum = nb_sectors;
26726aebab14SStefan Hajnoczi         return 1;
26736aebab14SStefan Hajnoczi     }
26746aebab14SStefan Hajnoczi 
2675060f51c9SStefan Hajnoczi     return bs->drv->bdrv_co_is_allocated(bs, sector_num, nb_sectors, pnum);
2676060f51c9SStefan Hajnoczi }
2677060f51c9SStefan Hajnoczi 
2678060f51c9SStefan Hajnoczi /* Coroutine wrapper for bdrv_is_allocated() */
2679060f51c9SStefan Hajnoczi static void coroutine_fn bdrv_is_allocated_co_entry(void *opaque)
2680060f51c9SStefan Hajnoczi {
2681060f51c9SStefan Hajnoczi     BdrvCoIsAllocatedData *data = opaque;
2682060f51c9SStefan Hajnoczi     BlockDriverState *bs = data->bs;
2683060f51c9SStefan Hajnoczi 
2684060f51c9SStefan Hajnoczi     data->ret = bdrv_co_is_allocated(bs, data->sector_num, data->nb_sectors,
2685060f51c9SStefan Hajnoczi                                      data->pnum);
2686060f51c9SStefan Hajnoczi     data->done = true;
2687060f51c9SStefan Hajnoczi }
2688060f51c9SStefan Hajnoczi 
2689060f51c9SStefan Hajnoczi /*
2690060f51c9SStefan Hajnoczi  * Synchronous wrapper around bdrv_co_is_allocated().
2691060f51c9SStefan Hajnoczi  *
2692060f51c9SStefan Hajnoczi  * See bdrv_co_is_allocated() for details.
2693060f51c9SStefan Hajnoczi  */
2694060f51c9SStefan Hajnoczi int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
2695060f51c9SStefan Hajnoczi                       int *pnum)
2696060f51c9SStefan Hajnoczi {
2697376ae3f1SStefan Hajnoczi     Coroutine *co;
2698376ae3f1SStefan Hajnoczi     BdrvCoIsAllocatedData data = {
2699376ae3f1SStefan Hajnoczi         .bs = bs,
2700376ae3f1SStefan Hajnoczi         .sector_num = sector_num,
2701376ae3f1SStefan Hajnoczi         .nb_sectors = nb_sectors,
2702376ae3f1SStefan Hajnoczi         .pnum = pnum,
2703376ae3f1SStefan Hajnoczi         .done = false,
2704376ae3f1SStefan Hajnoczi     };
2705376ae3f1SStefan Hajnoczi 
2706376ae3f1SStefan Hajnoczi     co = qemu_coroutine_create(bdrv_is_allocated_co_entry);
2707376ae3f1SStefan Hajnoczi     qemu_coroutine_enter(co, &data);
2708376ae3f1SStefan Hajnoczi     while (!data.done) {
2709376ae3f1SStefan Hajnoczi         qemu_aio_wait();
2710376ae3f1SStefan Hajnoczi     }
2711376ae3f1SStefan Hajnoczi     return data.ret;
2712376ae3f1SStefan Hajnoczi }
2713f58c7b35Sths 
2714188a7bbfSPaolo Bonzini /*
2715188a7bbfSPaolo Bonzini  * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
2716188a7bbfSPaolo Bonzini  *
2717188a7bbfSPaolo Bonzini  * Return true if the given sector is allocated in any image between
2718188a7bbfSPaolo Bonzini  * BASE and TOP (inclusive).  BASE can be NULL to check if the given
2719188a7bbfSPaolo Bonzini  * sector is allocated in any image of the chain.  Return false otherwise.
2720188a7bbfSPaolo Bonzini  *
2721188a7bbfSPaolo Bonzini  * 'pnum' is set to the number of sectors (including and immediately following
2722188a7bbfSPaolo Bonzini  *  the specified sector) that are known to be in the same
2723188a7bbfSPaolo Bonzini  *  allocated/unallocated state.
2724188a7bbfSPaolo Bonzini  *
2725188a7bbfSPaolo Bonzini  */
2726188a7bbfSPaolo Bonzini int coroutine_fn bdrv_co_is_allocated_above(BlockDriverState *top,
2727188a7bbfSPaolo Bonzini                                             BlockDriverState *base,
2728188a7bbfSPaolo Bonzini                                             int64_t sector_num,
2729188a7bbfSPaolo Bonzini                                             int nb_sectors, int *pnum)
2730188a7bbfSPaolo Bonzini {
2731188a7bbfSPaolo Bonzini     BlockDriverState *intermediate;
2732188a7bbfSPaolo Bonzini     int ret, n = nb_sectors;
2733188a7bbfSPaolo Bonzini 
2734188a7bbfSPaolo Bonzini     intermediate = top;
2735188a7bbfSPaolo Bonzini     while (intermediate && intermediate != base) {
2736188a7bbfSPaolo Bonzini         int pnum_inter;
2737188a7bbfSPaolo Bonzini         ret = bdrv_co_is_allocated(intermediate, sector_num, nb_sectors,
2738188a7bbfSPaolo Bonzini                                    &pnum_inter);
2739188a7bbfSPaolo Bonzini         if (ret < 0) {
2740188a7bbfSPaolo Bonzini             return ret;
2741188a7bbfSPaolo Bonzini         } else if (ret) {
2742188a7bbfSPaolo Bonzini             *pnum = pnum_inter;
2743188a7bbfSPaolo Bonzini             return 1;
2744188a7bbfSPaolo Bonzini         }
2745188a7bbfSPaolo Bonzini 
2746188a7bbfSPaolo Bonzini         /*
2747188a7bbfSPaolo Bonzini          * [sector_num, nb_sectors] is unallocated on top but intermediate
2748188a7bbfSPaolo Bonzini          * might have
2749188a7bbfSPaolo Bonzini          *
2750188a7bbfSPaolo Bonzini          * [sector_num+x, nr_sectors] allocated.
2751188a7bbfSPaolo Bonzini          */
2752188a7bbfSPaolo Bonzini         if (n > pnum_inter) {
2753188a7bbfSPaolo Bonzini             n = pnum_inter;
2754188a7bbfSPaolo Bonzini         }
2755188a7bbfSPaolo Bonzini 
2756188a7bbfSPaolo Bonzini         intermediate = intermediate->backing_hd;
2757188a7bbfSPaolo Bonzini     }
2758188a7bbfSPaolo Bonzini 
2759188a7bbfSPaolo Bonzini     *pnum = n;
2760188a7bbfSPaolo Bonzini     return 0;
2761188a7bbfSPaolo Bonzini }
2762188a7bbfSPaolo Bonzini 
2763b2023818SLuiz Capitulino BlockInfoList *qmp_query_block(Error **errp)
2764b338082bSbellard {
2765b2023818SLuiz Capitulino     BlockInfoList *head = NULL, *cur_item = NULL;
2766d15e5465SLuiz Capitulino     BlockDriverState *bs;
2767d15e5465SLuiz Capitulino 
27681b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
2769b2023818SLuiz Capitulino         BlockInfoList *info = g_malloc0(sizeof(*info));
2770d15e5465SLuiz Capitulino 
2771b2023818SLuiz Capitulino         info->value = g_malloc0(sizeof(*info->value));
2772b2023818SLuiz Capitulino         info->value->device = g_strdup(bs->device_name);
2773b2023818SLuiz Capitulino         info->value->type = g_strdup("unknown");
2774b2023818SLuiz Capitulino         info->value->locked = bdrv_dev_is_medium_locked(bs);
2775b2023818SLuiz Capitulino         info->value->removable = bdrv_dev_has_removable_media(bs);
2776d15e5465SLuiz Capitulino 
2777e4def80bSMarkus Armbruster         if (bdrv_dev_has_removable_media(bs)) {
2778b2023818SLuiz Capitulino             info->value->has_tray_open = true;
2779b2023818SLuiz Capitulino             info->value->tray_open = bdrv_dev_is_tray_open(bs);
2780e4def80bSMarkus Armbruster         }
2781f04ef601SLuiz Capitulino 
2782f04ef601SLuiz Capitulino         if (bdrv_iostatus_is_enabled(bs)) {
2783b2023818SLuiz Capitulino             info->value->has_io_status = true;
2784b2023818SLuiz Capitulino             info->value->io_status = bs->iostatus;
2785f04ef601SLuiz Capitulino         }
2786f04ef601SLuiz Capitulino 
2787d15e5465SLuiz Capitulino         if (bs->drv) {
2788b2023818SLuiz Capitulino             info->value->has_inserted = true;
2789b2023818SLuiz Capitulino             info->value->inserted = g_malloc0(sizeof(*info->value->inserted));
2790b2023818SLuiz Capitulino             info->value->inserted->file = g_strdup(bs->filename);
2791b2023818SLuiz Capitulino             info->value->inserted->ro = bs->read_only;
2792b2023818SLuiz Capitulino             info->value->inserted->drv = g_strdup(bs->drv->format_name);
2793b2023818SLuiz Capitulino             info->value->inserted->encrypted = bs->encrypted;
2794c75a1a8aSLuiz Capitulino             info->value->inserted->encryption_key_missing = bdrv_key_required(bs);
2795b2023818SLuiz Capitulino             if (bs->backing_file[0]) {
2796b2023818SLuiz Capitulino                 info->value->inserted->has_backing_file = true;
2797b2023818SLuiz Capitulino                 info->value->inserted->backing_file = g_strdup(bs->backing_file);
2798b2023818SLuiz Capitulino             }
2799727f005eSZhi Yong Wu 
28002e3e3317SBenoît Canet             info->value->inserted->backing_file_depth =
28012e3e3317SBenoît Canet                 bdrv_get_backing_file_depth(bs);
28022e3e3317SBenoît Canet 
2803727f005eSZhi Yong Wu             if (bs->io_limits_enabled) {
2804727f005eSZhi Yong Wu                 info->value->inserted->bps =
2805727f005eSZhi Yong Wu                                bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
2806727f005eSZhi Yong Wu                 info->value->inserted->bps_rd =
2807727f005eSZhi Yong Wu                                bs->io_limits.bps[BLOCK_IO_LIMIT_READ];
2808727f005eSZhi Yong Wu                 info->value->inserted->bps_wr =
2809727f005eSZhi Yong Wu                                bs->io_limits.bps[BLOCK_IO_LIMIT_WRITE];
2810727f005eSZhi Yong Wu                 info->value->inserted->iops =
2811727f005eSZhi Yong Wu                                bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
2812727f005eSZhi Yong Wu                 info->value->inserted->iops_rd =
2813727f005eSZhi Yong Wu                                bs->io_limits.iops[BLOCK_IO_LIMIT_READ];
2814727f005eSZhi Yong Wu                 info->value->inserted->iops_wr =
2815727f005eSZhi Yong Wu                                bs->io_limits.iops[BLOCK_IO_LIMIT_WRITE];
2816727f005eSZhi Yong Wu             }
2817d15e5465SLuiz Capitulino         }
2818d15e5465SLuiz Capitulino 
2819b2023818SLuiz Capitulino         /* XXX: waiting for the qapi to support GSList */
2820b2023818SLuiz Capitulino         if (!cur_item) {
2821b2023818SLuiz Capitulino             head = cur_item = info;
2822b2023818SLuiz Capitulino         } else {
2823b2023818SLuiz Capitulino             cur_item->next = info;
2824b2023818SLuiz Capitulino             cur_item = info;
2825d15e5465SLuiz Capitulino         }
2826d15e5465SLuiz Capitulino     }
2827d15e5465SLuiz Capitulino 
2828b2023818SLuiz Capitulino     return head;
2829b338082bSbellard }
2830a36e69ddSths 
2831f11f57e4SLuiz Capitulino /* Consider exposing this as a full fledged QMP command */
2832f11f57e4SLuiz Capitulino static BlockStats *qmp_query_blockstat(const BlockDriverState *bs, Error **errp)
2833a36e69ddSths {
2834f11f57e4SLuiz Capitulino     BlockStats *s;
2835218a536aSLuiz Capitulino 
2836f11f57e4SLuiz Capitulino     s = g_malloc0(sizeof(*s));
2837218a536aSLuiz Capitulino 
2838f11f57e4SLuiz Capitulino     if (bs->device_name[0]) {
2839f11f57e4SLuiz Capitulino         s->has_device = true;
2840f11f57e4SLuiz Capitulino         s->device = g_strdup(bs->device_name);
2841218a536aSLuiz Capitulino     }
2842218a536aSLuiz Capitulino 
2843f11f57e4SLuiz Capitulino     s->stats = g_malloc0(sizeof(*s->stats));
2844f11f57e4SLuiz Capitulino     s->stats->rd_bytes = bs->nr_bytes[BDRV_ACCT_READ];
2845f11f57e4SLuiz Capitulino     s->stats->wr_bytes = bs->nr_bytes[BDRV_ACCT_WRITE];
2846f11f57e4SLuiz Capitulino     s->stats->rd_operations = bs->nr_ops[BDRV_ACCT_READ];
2847f11f57e4SLuiz Capitulino     s->stats->wr_operations = bs->nr_ops[BDRV_ACCT_WRITE];
2848f11f57e4SLuiz Capitulino     s->stats->wr_highest_offset = bs->wr_highest_sector * BDRV_SECTOR_SIZE;
2849f11f57e4SLuiz Capitulino     s->stats->flush_operations = bs->nr_ops[BDRV_ACCT_FLUSH];
2850f11f57e4SLuiz Capitulino     s->stats->wr_total_time_ns = bs->total_time_ns[BDRV_ACCT_WRITE];
2851f11f57e4SLuiz Capitulino     s->stats->rd_total_time_ns = bs->total_time_ns[BDRV_ACCT_READ];
2852f11f57e4SLuiz Capitulino     s->stats->flush_total_time_ns = bs->total_time_ns[BDRV_ACCT_FLUSH];
2853294cc35fSKevin Wolf 
2854294cc35fSKevin Wolf     if (bs->file) {
2855f11f57e4SLuiz Capitulino         s->has_parent = true;
2856f11f57e4SLuiz Capitulino         s->parent = qmp_query_blockstat(bs->file, NULL);
2857294cc35fSKevin Wolf     }
2858294cc35fSKevin Wolf 
2859f11f57e4SLuiz Capitulino     return s;
2860294cc35fSKevin Wolf }
2861294cc35fSKevin Wolf 
2862f11f57e4SLuiz Capitulino BlockStatsList *qmp_query_blockstats(Error **errp)
2863218a536aSLuiz Capitulino {
2864f11f57e4SLuiz Capitulino     BlockStatsList *head = NULL, *cur_item = NULL;
2865a36e69ddSths     BlockDriverState *bs;
2866a36e69ddSths 
28671b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
2868f11f57e4SLuiz Capitulino         BlockStatsList *info = g_malloc0(sizeof(*info));
2869f11f57e4SLuiz Capitulino         info->value = qmp_query_blockstat(bs, NULL);
2870f11f57e4SLuiz Capitulino 
2871f11f57e4SLuiz Capitulino         /* XXX: waiting for the qapi to support GSList */
2872f11f57e4SLuiz Capitulino         if (!cur_item) {
2873f11f57e4SLuiz Capitulino             head = cur_item = info;
2874f11f57e4SLuiz Capitulino         } else {
2875f11f57e4SLuiz Capitulino             cur_item->next = info;
2876f11f57e4SLuiz Capitulino             cur_item = info;
2877f11f57e4SLuiz Capitulino         }
2878a36e69ddSths     }
2879218a536aSLuiz Capitulino 
2880f11f57e4SLuiz Capitulino     return head;
2881a36e69ddSths }
2882ea2384d3Sbellard 
2883045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
2884045df330Saliguori {
2885045df330Saliguori     if (bs->backing_hd && bs->backing_hd->encrypted)
2886045df330Saliguori         return bs->backing_file;
2887045df330Saliguori     else if (bs->encrypted)
2888045df330Saliguori         return bs->filename;
2889045df330Saliguori     else
2890045df330Saliguori         return NULL;
2891045df330Saliguori }
2892045df330Saliguori 
289383f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
289483f64091Sbellard                                char *filename, int filename_size)
289583f64091Sbellard {
289683f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
289783f64091Sbellard }
289883f64091Sbellard 
2899faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
2900faea38e7Sbellard                           const uint8_t *buf, int nb_sectors)
2901faea38e7Sbellard {
2902faea38e7Sbellard     BlockDriver *drv = bs->drv;
2903faea38e7Sbellard     if (!drv)
290419cb3738Sbellard         return -ENOMEDIUM;
2905faea38e7Sbellard     if (!drv->bdrv_write_compressed)
2906faea38e7Sbellard         return -ENOTSUP;
2907fbb7b4e0SKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors))
2908fbb7b4e0SKevin Wolf         return -EIO;
29097cd1e32aSlirans@il.ibm.com 
2910c6d22830SJan Kiszka     if (bs->dirty_bitmap) {
29117cd1e32aSlirans@il.ibm.com         set_dirty_bitmap(bs, sector_num, nb_sectors, 1);
29127cd1e32aSlirans@il.ibm.com     }
29137cd1e32aSlirans@il.ibm.com 
2914faea38e7Sbellard     return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
2915faea38e7Sbellard }
2916faea38e7Sbellard 
2917faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
2918faea38e7Sbellard {
2919faea38e7Sbellard     BlockDriver *drv = bs->drv;
2920faea38e7Sbellard     if (!drv)
292119cb3738Sbellard         return -ENOMEDIUM;
2922faea38e7Sbellard     if (!drv->bdrv_get_info)
2923faea38e7Sbellard         return -ENOTSUP;
2924faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
2925faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
2926faea38e7Sbellard }
2927faea38e7Sbellard 
292845566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
292945566e9cSChristoph Hellwig                       int64_t pos, int size)
2930178e08a5Saliguori {
2931178e08a5Saliguori     BlockDriver *drv = bs->drv;
2932178e08a5Saliguori     if (!drv)
2933178e08a5Saliguori         return -ENOMEDIUM;
29347cdb1f6dSMORITA Kazutaka     if (drv->bdrv_save_vmstate)
293545566e9cSChristoph Hellwig         return drv->bdrv_save_vmstate(bs, buf, pos, size);
29367cdb1f6dSMORITA Kazutaka     if (bs->file)
29377cdb1f6dSMORITA Kazutaka         return bdrv_save_vmstate(bs->file, buf, pos, size);
29387cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
2939178e08a5Saliguori }
2940178e08a5Saliguori 
294145566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
294245566e9cSChristoph Hellwig                       int64_t pos, int size)
2943178e08a5Saliguori {
2944178e08a5Saliguori     BlockDriver *drv = bs->drv;
2945178e08a5Saliguori     if (!drv)
2946178e08a5Saliguori         return -ENOMEDIUM;
29477cdb1f6dSMORITA Kazutaka     if (drv->bdrv_load_vmstate)
294845566e9cSChristoph Hellwig         return drv->bdrv_load_vmstate(bs, buf, pos, size);
29497cdb1f6dSMORITA Kazutaka     if (bs->file)
29507cdb1f6dSMORITA Kazutaka         return bdrv_load_vmstate(bs->file, buf, pos, size);
29517cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
2952178e08a5Saliguori }
2953178e08a5Saliguori 
29548b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
29558b9b0cc2SKevin Wolf {
29568b9b0cc2SKevin Wolf     BlockDriver *drv = bs->drv;
29578b9b0cc2SKevin Wolf 
29588b9b0cc2SKevin Wolf     if (!drv || !drv->bdrv_debug_event) {
29598b9b0cc2SKevin Wolf         return;
29608b9b0cc2SKevin Wolf     }
29618b9b0cc2SKevin Wolf 
29620ed8b6f6SBlue Swirl     drv->bdrv_debug_event(bs, event);
29638b9b0cc2SKevin Wolf 
29648b9b0cc2SKevin Wolf }
29658b9b0cc2SKevin Wolf 
2966faea38e7Sbellard /**************************************************************/
2967faea38e7Sbellard /* handling of snapshots */
2968faea38e7Sbellard 
2969feeee5acSMiguel Di Ciurcio Filho int bdrv_can_snapshot(BlockDriverState *bs)
2970feeee5acSMiguel Di Ciurcio Filho {
2971feeee5acSMiguel Di Ciurcio Filho     BlockDriver *drv = bs->drv;
297207b70bfbSMarkus Armbruster     if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
2973feeee5acSMiguel Di Ciurcio Filho         return 0;
2974feeee5acSMiguel Di Ciurcio Filho     }
2975feeee5acSMiguel Di Ciurcio Filho 
2976feeee5acSMiguel Di Ciurcio Filho     if (!drv->bdrv_snapshot_create) {
2977feeee5acSMiguel Di Ciurcio Filho         if (bs->file != NULL) {
2978feeee5acSMiguel Di Ciurcio Filho             return bdrv_can_snapshot(bs->file);
2979feeee5acSMiguel Di Ciurcio Filho         }
2980feeee5acSMiguel Di Ciurcio Filho         return 0;
2981feeee5acSMiguel Di Ciurcio Filho     }
2982feeee5acSMiguel Di Ciurcio Filho 
2983feeee5acSMiguel Di Ciurcio Filho     return 1;
2984feeee5acSMiguel Di Ciurcio Filho }
2985feeee5acSMiguel Di Ciurcio Filho 
2986199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
2987199630b6SBlue Swirl {
2988199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
2989199630b6SBlue Swirl }
2990199630b6SBlue Swirl 
2991f9092b10SMarkus Armbruster BlockDriverState *bdrv_snapshots(void)
2992f9092b10SMarkus Armbruster {
2993f9092b10SMarkus Armbruster     BlockDriverState *bs;
2994f9092b10SMarkus Armbruster 
29953ac906f7SMarkus Armbruster     if (bs_snapshots) {
2996f9092b10SMarkus Armbruster         return bs_snapshots;
29973ac906f7SMarkus Armbruster     }
2998f9092b10SMarkus Armbruster 
2999f9092b10SMarkus Armbruster     bs = NULL;
3000f9092b10SMarkus Armbruster     while ((bs = bdrv_next(bs))) {
3001f9092b10SMarkus Armbruster         if (bdrv_can_snapshot(bs)) {
30023ac906f7SMarkus Armbruster             bs_snapshots = bs;
30033ac906f7SMarkus Armbruster             return bs;
3004f9092b10SMarkus Armbruster         }
3005f9092b10SMarkus Armbruster     }
3006f9092b10SMarkus Armbruster     return NULL;
3007f9092b10SMarkus Armbruster }
3008f9092b10SMarkus Armbruster 
3009faea38e7Sbellard int bdrv_snapshot_create(BlockDriverState *bs,
3010faea38e7Sbellard                          QEMUSnapshotInfo *sn_info)
3011faea38e7Sbellard {
3012faea38e7Sbellard     BlockDriver *drv = bs->drv;
3013faea38e7Sbellard     if (!drv)
301419cb3738Sbellard         return -ENOMEDIUM;
30157cdb1f6dSMORITA Kazutaka     if (drv->bdrv_snapshot_create)
3016faea38e7Sbellard         return drv->bdrv_snapshot_create(bs, sn_info);
30177cdb1f6dSMORITA Kazutaka     if (bs->file)
30187cdb1f6dSMORITA Kazutaka         return bdrv_snapshot_create(bs->file, sn_info);
30197cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3020faea38e7Sbellard }
3021faea38e7Sbellard 
3022faea38e7Sbellard int bdrv_snapshot_goto(BlockDriverState *bs,
3023faea38e7Sbellard                        const char *snapshot_id)
3024faea38e7Sbellard {
3025faea38e7Sbellard     BlockDriver *drv = bs->drv;
30267cdb1f6dSMORITA Kazutaka     int ret, open_ret;
30277cdb1f6dSMORITA Kazutaka 
3028faea38e7Sbellard     if (!drv)
302919cb3738Sbellard         return -ENOMEDIUM;
30307cdb1f6dSMORITA Kazutaka     if (drv->bdrv_snapshot_goto)
3031faea38e7Sbellard         return drv->bdrv_snapshot_goto(bs, snapshot_id);
30327cdb1f6dSMORITA Kazutaka 
30337cdb1f6dSMORITA Kazutaka     if (bs->file) {
30347cdb1f6dSMORITA Kazutaka         drv->bdrv_close(bs);
30357cdb1f6dSMORITA Kazutaka         ret = bdrv_snapshot_goto(bs->file, snapshot_id);
30367cdb1f6dSMORITA Kazutaka         open_ret = drv->bdrv_open(bs, bs->open_flags);
30377cdb1f6dSMORITA Kazutaka         if (open_ret < 0) {
30387cdb1f6dSMORITA Kazutaka             bdrv_delete(bs->file);
30397cdb1f6dSMORITA Kazutaka             bs->drv = NULL;
30407cdb1f6dSMORITA Kazutaka             return open_ret;
30417cdb1f6dSMORITA Kazutaka         }
30427cdb1f6dSMORITA Kazutaka         return ret;
30437cdb1f6dSMORITA Kazutaka     }
30447cdb1f6dSMORITA Kazutaka 
30457cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3046faea38e7Sbellard }
3047faea38e7Sbellard 
3048faea38e7Sbellard int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id)
3049faea38e7Sbellard {
3050faea38e7Sbellard     BlockDriver *drv = bs->drv;
3051faea38e7Sbellard     if (!drv)
305219cb3738Sbellard         return -ENOMEDIUM;
30537cdb1f6dSMORITA Kazutaka     if (drv->bdrv_snapshot_delete)
3054faea38e7Sbellard         return drv->bdrv_snapshot_delete(bs, snapshot_id);
30557cdb1f6dSMORITA Kazutaka     if (bs->file)
30567cdb1f6dSMORITA Kazutaka         return bdrv_snapshot_delete(bs->file, snapshot_id);
30577cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3058faea38e7Sbellard }
3059faea38e7Sbellard 
3060faea38e7Sbellard int bdrv_snapshot_list(BlockDriverState *bs,
3061faea38e7Sbellard                        QEMUSnapshotInfo **psn_info)
3062faea38e7Sbellard {
3063faea38e7Sbellard     BlockDriver *drv = bs->drv;
3064faea38e7Sbellard     if (!drv)
306519cb3738Sbellard         return -ENOMEDIUM;
30667cdb1f6dSMORITA Kazutaka     if (drv->bdrv_snapshot_list)
3067faea38e7Sbellard         return drv->bdrv_snapshot_list(bs, psn_info);
30687cdb1f6dSMORITA Kazutaka     if (bs->file)
30697cdb1f6dSMORITA Kazutaka         return bdrv_snapshot_list(bs->file, psn_info);
30707cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3071faea38e7Sbellard }
3072faea38e7Sbellard 
307351ef6727Sedison int bdrv_snapshot_load_tmp(BlockDriverState *bs,
307451ef6727Sedison         const char *snapshot_name)
307551ef6727Sedison {
307651ef6727Sedison     BlockDriver *drv = bs->drv;
307751ef6727Sedison     if (!drv) {
307851ef6727Sedison         return -ENOMEDIUM;
307951ef6727Sedison     }
308051ef6727Sedison     if (!bs->read_only) {
308151ef6727Sedison         return -EINVAL;
308251ef6727Sedison     }
308351ef6727Sedison     if (drv->bdrv_snapshot_load_tmp) {
308451ef6727Sedison         return drv->bdrv_snapshot_load_tmp(bs, snapshot_name);
308551ef6727Sedison     }
308651ef6727Sedison     return -ENOTSUP;
308751ef6727Sedison }
308851ef6727Sedison 
3089e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3090e8a6bb9cSMarcelo Tosatti         const char *backing_file)
3091e8a6bb9cSMarcelo Tosatti {
3092e8a6bb9cSMarcelo Tosatti     if (!bs->drv) {
3093e8a6bb9cSMarcelo Tosatti         return NULL;
3094e8a6bb9cSMarcelo Tosatti     }
3095e8a6bb9cSMarcelo Tosatti 
3096e8a6bb9cSMarcelo Tosatti     if (bs->backing_hd) {
3097e8a6bb9cSMarcelo Tosatti         if (strcmp(bs->backing_file, backing_file) == 0) {
3098e8a6bb9cSMarcelo Tosatti             return bs->backing_hd;
3099e8a6bb9cSMarcelo Tosatti         } else {
3100e8a6bb9cSMarcelo Tosatti             return bdrv_find_backing_image(bs->backing_hd, backing_file);
3101e8a6bb9cSMarcelo Tosatti         }
3102e8a6bb9cSMarcelo Tosatti     }
3103e8a6bb9cSMarcelo Tosatti 
3104e8a6bb9cSMarcelo Tosatti     return NULL;
3105e8a6bb9cSMarcelo Tosatti }
3106e8a6bb9cSMarcelo Tosatti 
3107f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3108f198fd1cSBenoît Canet {
3109f198fd1cSBenoît Canet     if (!bs->drv) {
3110f198fd1cSBenoît Canet         return 0;
3111f198fd1cSBenoît Canet     }
3112f198fd1cSBenoît Canet 
3113f198fd1cSBenoît Canet     if (!bs->backing_hd) {
3114f198fd1cSBenoît Canet         return 0;
3115f198fd1cSBenoît Canet     }
3116f198fd1cSBenoît Canet 
3117f198fd1cSBenoît Canet     return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
3118f198fd1cSBenoît Canet }
3119f198fd1cSBenoît Canet 
3120faea38e7Sbellard #define NB_SUFFIXES 4
3121faea38e7Sbellard 
3122faea38e7Sbellard char *get_human_readable_size(char *buf, int buf_size, int64_t size)
3123faea38e7Sbellard {
3124faea38e7Sbellard     static const char suffixes[NB_SUFFIXES] = "KMGT";
3125faea38e7Sbellard     int64_t base;
3126faea38e7Sbellard     int i;
3127faea38e7Sbellard 
3128faea38e7Sbellard     if (size <= 999) {
3129faea38e7Sbellard         snprintf(buf, buf_size, "%" PRId64, size);
3130faea38e7Sbellard     } else {
3131faea38e7Sbellard         base = 1024;
3132faea38e7Sbellard         for(i = 0; i < NB_SUFFIXES; i++) {
3133faea38e7Sbellard             if (size < (10 * base)) {
3134faea38e7Sbellard                 snprintf(buf, buf_size, "%0.1f%c",
3135faea38e7Sbellard                          (double)size / base,
3136faea38e7Sbellard                          suffixes[i]);
3137faea38e7Sbellard                 break;
3138faea38e7Sbellard             } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) {
3139faea38e7Sbellard                 snprintf(buf, buf_size, "%" PRId64 "%c",
3140faea38e7Sbellard                          ((size + (base >> 1)) / base),
3141faea38e7Sbellard                          suffixes[i]);
3142faea38e7Sbellard                 break;
3143faea38e7Sbellard             }
3144faea38e7Sbellard             base = base * 1024;
3145faea38e7Sbellard         }
3146faea38e7Sbellard     }
3147faea38e7Sbellard     return buf;
3148faea38e7Sbellard }
3149faea38e7Sbellard 
3150faea38e7Sbellard char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn)
3151faea38e7Sbellard {
3152faea38e7Sbellard     char buf1[128], date_buf[128], clock_buf[128];
31533b9f94e1Sbellard #ifdef _WIN32
31543b9f94e1Sbellard     struct tm *ptm;
31553b9f94e1Sbellard #else
3156faea38e7Sbellard     struct tm tm;
31573b9f94e1Sbellard #endif
3158faea38e7Sbellard     time_t ti;
3159faea38e7Sbellard     int64_t secs;
3160faea38e7Sbellard 
3161faea38e7Sbellard     if (!sn) {
3162faea38e7Sbellard         snprintf(buf, buf_size,
3163faea38e7Sbellard                  "%-10s%-20s%7s%20s%15s",
3164faea38e7Sbellard                  "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK");
3165faea38e7Sbellard     } else {
3166faea38e7Sbellard         ti = sn->date_sec;
31673b9f94e1Sbellard #ifdef _WIN32
31683b9f94e1Sbellard         ptm = localtime(&ti);
31693b9f94e1Sbellard         strftime(date_buf, sizeof(date_buf),
31703b9f94e1Sbellard                  "%Y-%m-%d %H:%M:%S", ptm);
31713b9f94e1Sbellard #else
3172faea38e7Sbellard         localtime_r(&ti, &tm);
3173faea38e7Sbellard         strftime(date_buf, sizeof(date_buf),
3174faea38e7Sbellard                  "%Y-%m-%d %H:%M:%S", &tm);
31753b9f94e1Sbellard #endif
3176faea38e7Sbellard         secs = sn->vm_clock_nsec / 1000000000;
3177faea38e7Sbellard         snprintf(clock_buf, sizeof(clock_buf),
3178faea38e7Sbellard                  "%02d:%02d:%02d.%03d",
3179faea38e7Sbellard                  (int)(secs / 3600),
3180faea38e7Sbellard                  (int)((secs / 60) % 60),
3181faea38e7Sbellard                  (int)(secs % 60),
3182faea38e7Sbellard                  (int)((sn->vm_clock_nsec / 1000000) % 1000));
3183faea38e7Sbellard         snprintf(buf, buf_size,
3184faea38e7Sbellard                  "%-10s%-20s%7s%20s%15s",
3185faea38e7Sbellard                  sn->id_str, sn->name,
3186faea38e7Sbellard                  get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size),
3187faea38e7Sbellard                  date_buf,
3188faea38e7Sbellard                  clock_buf);
3189faea38e7Sbellard     }
3190faea38e7Sbellard     return buf;
3191faea38e7Sbellard }
3192faea38e7Sbellard 
3193ea2384d3Sbellard /**************************************************************/
319483f64091Sbellard /* async I/Os */
3195ea2384d3Sbellard 
31963b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
3197f141eafeSaliguori                                  QEMUIOVector *qiov, int nb_sectors,
319883f64091Sbellard                                  BlockDriverCompletionFunc *cb, void *opaque)
3199ea2384d3Sbellard {
3200bbf0a440SStefan Hajnoczi     trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
3201bbf0a440SStefan Hajnoczi 
3202b2a61371SStefan Hajnoczi     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
32038c5873d6SStefan Hajnoczi                                  cb, opaque, false);
320483f64091Sbellard }
320583f64091Sbellard 
3206f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
3207f141eafeSaliguori                                   QEMUIOVector *qiov, int nb_sectors,
320883f64091Sbellard                                   BlockDriverCompletionFunc *cb, void *opaque)
32097674e7bfSbellard {
3210bbf0a440SStefan Hajnoczi     trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
3211bbf0a440SStefan Hajnoczi 
32121a6e115bSStefan Hajnoczi     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
32138c5873d6SStefan Hajnoczi                                  cb, opaque, true);
321483f64091Sbellard }
321583f64091Sbellard 
321640b4f539SKevin Wolf 
321740b4f539SKevin Wolf typedef struct MultiwriteCB {
321840b4f539SKevin Wolf     int error;
321940b4f539SKevin Wolf     int num_requests;
322040b4f539SKevin Wolf     int num_callbacks;
322140b4f539SKevin Wolf     struct {
322240b4f539SKevin Wolf         BlockDriverCompletionFunc *cb;
322340b4f539SKevin Wolf         void *opaque;
322440b4f539SKevin Wolf         QEMUIOVector *free_qiov;
322540b4f539SKevin Wolf     } callbacks[];
322640b4f539SKevin Wolf } MultiwriteCB;
322740b4f539SKevin Wolf 
322840b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb)
322940b4f539SKevin Wolf {
323040b4f539SKevin Wolf     int i;
323140b4f539SKevin Wolf 
323240b4f539SKevin Wolf     for (i = 0; i < mcb->num_callbacks; i++) {
323340b4f539SKevin Wolf         mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
32341e1ea48dSStefan Hajnoczi         if (mcb->callbacks[i].free_qiov) {
32351e1ea48dSStefan Hajnoczi             qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
32361e1ea48dSStefan Hajnoczi         }
32377267c094SAnthony Liguori         g_free(mcb->callbacks[i].free_qiov);
323840b4f539SKevin Wolf     }
323940b4f539SKevin Wolf }
324040b4f539SKevin Wolf 
324140b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret)
324240b4f539SKevin Wolf {
324340b4f539SKevin Wolf     MultiwriteCB *mcb = opaque;
324440b4f539SKevin Wolf 
32456d519a5fSStefan Hajnoczi     trace_multiwrite_cb(mcb, ret);
32466d519a5fSStefan Hajnoczi 
3247cb6d3ca0SKevin Wolf     if (ret < 0 && !mcb->error) {
324840b4f539SKevin Wolf         mcb->error = ret;
324940b4f539SKevin Wolf     }
325040b4f539SKevin Wolf 
325140b4f539SKevin Wolf     mcb->num_requests--;
325240b4f539SKevin Wolf     if (mcb->num_requests == 0) {
325340b4f539SKevin Wolf         multiwrite_user_cb(mcb);
32547267c094SAnthony Liguori         g_free(mcb);
325540b4f539SKevin Wolf     }
325640b4f539SKevin Wolf }
325740b4f539SKevin Wolf 
325840b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b)
325940b4f539SKevin Wolf {
326077be4366SChristoph Hellwig     const BlockRequest *req1 = a, *req2 = b;
326177be4366SChristoph Hellwig 
326277be4366SChristoph Hellwig     /*
326377be4366SChristoph Hellwig      * Note that we can't simply subtract req2->sector from req1->sector
326477be4366SChristoph Hellwig      * here as that could overflow the return value.
326577be4366SChristoph Hellwig      */
326677be4366SChristoph Hellwig     if (req1->sector > req2->sector) {
326777be4366SChristoph Hellwig         return 1;
326877be4366SChristoph Hellwig     } else if (req1->sector < req2->sector) {
326977be4366SChristoph Hellwig         return -1;
327077be4366SChristoph Hellwig     } else {
327177be4366SChristoph Hellwig         return 0;
327277be4366SChristoph Hellwig     }
327340b4f539SKevin Wolf }
327440b4f539SKevin Wolf 
327540b4f539SKevin Wolf /*
327640b4f539SKevin Wolf  * Takes a bunch of requests and tries to merge them. Returns the number of
327740b4f539SKevin Wolf  * requests that remain after merging.
327840b4f539SKevin Wolf  */
327940b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
328040b4f539SKevin Wolf     int num_reqs, MultiwriteCB *mcb)
328140b4f539SKevin Wolf {
328240b4f539SKevin Wolf     int i, outidx;
328340b4f539SKevin Wolf 
328440b4f539SKevin Wolf     // Sort requests by start sector
328540b4f539SKevin Wolf     qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
328640b4f539SKevin Wolf 
328740b4f539SKevin Wolf     // Check if adjacent requests touch the same clusters. If so, combine them,
328840b4f539SKevin Wolf     // filling up gaps with zero sectors.
328940b4f539SKevin Wolf     outidx = 0;
329040b4f539SKevin Wolf     for (i = 1; i < num_reqs; i++) {
329140b4f539SKevin Wolf         int merge = 0;
329240b4f539SKevin Wolf         int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
329340b4f539SKevin Wolf 
3294b6a127a1SPaolo Bonzini         // Handle exactly sequential writes and overlapping writes.
329540b4f539SKevin Wolf         if (reqs[i].sector <= oldreq_last) {
329640b4f539SKevin Wolf             merge = 1;
329740b4f539SKevin Wolf         }
329840b4f539SKevin Wolf 
3299e2a305fbSChristoph Hellwig         if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
3300e2a305fbSChristoph Hellwig             merge = 0;
3301e2a305fbSChristoph Hellwig         }
3302e2a305fbSChristoph Hellwig 
330340b4f539SKevin Wolf         if (merge) {
330440b4f539SKevin Wolf             size_t size;
33057267c094SAnthony Liguori             QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
330640b4f539SKevin Wolf             qemu_iovec_init(qiov,
330740b4f539SKevin Wolf                 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
330840b4f539SKevin Wolf 
330940b4f539SKevin Wolf             // Add the first request to the merged one. If the requests are
331040b4f539SKevin Wolf             // overlapping, drop the last sectors of the first request.
331140b4f539SKevin Wolf             size = (reqs[i].sector - reqs[outidx].sector) << 9;
33121b093c48SMichael Tokarev             qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
331340b4f539SKevin Wolf 
3314b6a127a1SPaolo Bonzini             // We should need to add any zeros between the two requests
3315b6a127a1SPaolo Bonzini             assert (reqs[i].sector <= oldreq_last);
331640b4f539SKevin Wolf 
331740b4f539SKevin Wolf             // Add the second request
33181b093c48SMichael Tokarev             qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
331940b4f539SKevin Wolf 
3320cbf1dff2SKevin Wolf             reqs[outidx].nb_sectors = qiov->size >> 9;
332140b4f539SKevin Wolf             reqs[outidx].qiov = qiov;
332240b4f539SKevin Wolf 
332340b4f539SKevin Wolf             mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
332440b4f539SKevin Wolf         } else {
332540b4f539SKevin Wolf             outidx++;
332640b4f539SKevin Wolf             reqs[outidx].sector     = reqs[i].sector;
332740b4f539SKevin Wolf             reqs[outidx].nb_sectors = reqs[i].nb_sectors;
332840b4f539SKevin Wolf             reqs[outidx].qiov       = reqs[i].qiov;
332940b4f539SKevin Wolf         }
333040b4f539SKevin Wolf     }
333140b4f539SKevin Wolf 
333240b4f539SKevin Wolf     return outidx + 1;
333340b4f539SKevin Wolf }
333440b4f539SKevin Wolf 
333540b4f539SKevin Wolf /*
333640b4f539SKevin Wolf  * Submit multiple AIO write requests at once.
333740b4f539SKevin Wolf  *
333840b4f539SKevin Wolf  * On success, the function returns 0 and all requests in the reqs array have
333940b4f539SKevin Wolf  * been submitted. In error case this function returns -1, and any of the
334040b4f539SKevin Wolf  * requests may or may not be submitted yet. In particular, this means that the
334140b4f539SKevin Wolf  * callback will be called for some of the requests, for others it won't. The
334240b4f539SKevin Wolf  * caller must check the error field of the BlockRequest to wait for the right
334340b4f539SKevin Wolf  * callbacks (if error != 0, no callback will be called).
334440b4f539SKevin Wolf  *
334540b4f539SKevin Wolf  * The implementation may modify the contents of the reqs array, e.g. to merge
334640b4f539SKevin Wolf  * requests. However, the fields opaque and error are left unmodified as they
334740b4f539SKevin Wolf  * are used to signal failure for a single request to the caller.
334840b4f539SKevin Wolf  */
334940b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
335040b4f539SKevin Wolf {
335140b4f539SKevin Wolf     MultiwriteCB *mcb;
335240b4f539SKevin Wolf     int i;
335340b4f539SKevin Wolf 
3354301db7c2SRyan Harper     /* don't submit writes if we don't have a medium */
3355301db7c2SRyan Harper     if (bs->drv == NULL) {
3356301db7c2SRyan Harper         for (i = 0; i < num_reqs; i++) {
3357301db7c2SRyan Harper             reqs[i].error = -ENOMEDIUM;
3358301db7c2SRyan Harper         }
3359301db7c2SRyan Harper         return -1;
3360301db7c2SRyan Harper     }
3361301db7c2SRyan Harper 
336240b4f539SKevin Wolf     if (num_reqs == 0) {
336340b4f539SKevin Wolf         return 0;
336440b4f539SKevin Wolf     }
336540b4f539SKevin Wolf 
336640b4f539SKevin Wolf     // Create MultiwriteCB structure
33677267c094SAnthony Liguori     mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
336840b4f539SKevin Wolf     mcb->num_requests = 0;
336940b4f539SKevin Wolf     mcb->num_callbacks = num_reqs;
337040b4f539SKevin Wolf 
337140b4f539SKevin Wolf     for (i = 0; i < num_reqs; i++) {
337240b4f539SKevin Wolf         mcb->callbacks[i].cb = reqs[i].cb;
337340b4f539SKevin Wolf         mcb->callbacks[i].opaque = reqs[i].opaque;
337440b4f539SKevin Wolf     }
337540b4f539SKevin Wolf 
337640b4f539SKevin Wolf     // Check for mergable requests
337740b4f539SKevin Wolf     num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
337840b4f539SKevin Wolf 
33796d519a5fSStefan Hajnoczi     trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
33806d519a5fSStefan Hajnoczi 
3381df9309fbSPaolo Bonzini     /* Run the aio requests. */
3382df9309fbSPaolo Bonzini     mcb->num_requests = num_reqs;
338340b4f539SKevin Wolf     for (i = 0; i < num_reqs; i++) {
3384ad54ae80SPaolo Bonzini         bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
338540b4f539SKevin Wolf             reqs[i].nb_sectors, multiwrite_cb, mcb);
338640b4f539SKevin Wolf     }
338740b4f539SKevin Wolf 
338840b4f539SKevin Wolf     return 0;
338940b4f539SKevin Wolf }
339040b4f539SKevin Wolf 
339183f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb)
339283f64091Sbellard {
33936bbff9a0Saliguori     acb->pool->cancel(acb);
339483f64091Sbellard }
339583f64091Sbellard 
339698f90dbaSZhi Yong Wu /* block I/O throttling */
339798f90dbaSZhi Yong Wu static bool bdrv_exceed_bps_limits(BlockDriverState *bs, int nb_sectors,
339898f90dbaSZhi Yong Wu                  bool is_write, double elapsed_time, uint64_t *wait)
339998f90dbaSZhi Yong Wu {
340098f90dbaSZhi Yong Wu     uint64_t bps_limit = 0;
340198f90dbaSZhi Yong Wu     double   bytes_limit, bytes_base, bytes_res;
340298f90dbaSZhi Yong Wu     double   slice_time, wait_time;
340398f90dbaSZhi Yong Wu 
340498f90dbaSZhi Yong Wu     if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
340598f90dbaSZhi Yong Wu         bps_limit = bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL];
340698f90dbaSZhi Yong Wu     } else if (bs->io_limits.bps[is_write]) {
340798f90dbaSZhi Yong Wu         bps_limit = bs->io_limits.bps[is_write];
340898f90dbaSZhi Yong Wu     } else {
340998f90dbaSZhi Yong Wu         if (wait) {
341098f90dbaSZhi Yong Wu             *wait = 0;
341198f90dbaSZhi Yong Wu         }
341298f90dbaSZhi Yong Wu 
341398f90dbaSZhi Yong Wu         return false;
341498f90dbaSZhi Yong Wu     }
341598f90dbaSZhi Yong Wu 
341698f90dbaSZhi Yong Wu     slice_time = bs->slice_end - bs->slice_start;
341798f90dbaSZhi Yong Wu     slice_time /= (NANOSECONDS_PER_SECOND);
341898f90dbaSZhi Yong Wu     bytes_limit = bps_limit * slice_time;
341998f90dbaSZhi Yong Wu     bytes_base  = bs->nr_bytes[is_write] - bs->io_base.bytes[is_write];
342098f90dbaSZhi Yong Wu     if (bs->io_limits.bps[BLOCK_IO_LIMIT_TOTAL]) {
342198f90dbaSZhi Yong Wu         bytes_base += bs->nr_bytes[!is_write] - bs->io_base.bytes[!is_write];
342298f90dbaSZhi Yong Wu     }
342398f90dbaSZhi Yong Wu 
342498f90dbaSZhi Yong Wu     /* bytes_base: the bytes of data which have been read/written; and
342598f90dbaSZhi Yong Wu      *             it is obtained from the history statistic info.
342698f90dbaSZhi Yong Wu      * bytes_res: the remaining bytes of data which need to be read/written.
342798f90dbaSZhi Yong Wu      * (bytes_base + bytes_res) / bps_limit: used to calcuate
342898f90dbaSZhi Yong Wu      *             the total time for completing reading/writting all data.
342998f90dbaSZhi Yong Wu      */
343098f90dbaSZhi Yong Wu     bytes_res   = (unsigned) nb_sectors * BDRV_SECTOR_SIZE;
343198f90dbaSZhi Yong Wu 
343298f90dbaSZhi Yong Wu     if (bytes_base + bytes_res <= bytes_limit) {
343398f90dbaSZhi Yong Wu         if (wait) {
343498f90dbaSZhi Yong Wu             *wait = 0;
343598f90dbaSZhi Yong Wu         }
343698f90dbaSZhi Yong Wu 
343798f90dbaSZhi Yong Wu         return false;
343898f90dbaSZhi Yong Wu     }
343998f90dbaSZhi Yong Wu 
344098f90dbaSZhi Yong Wu     /* Calc approx time to dispatch */
344198f90dbaSZhi Yong Wu     wait_time = (bytes_base + bytes_res) / bps_limit - elapsed_time;
344298f90dbaSZhi Yong Wu 
344398f90dbaSZhi Yong Wu     /* When the I/O rate at runtime exceeds the limits,
344498f90dbaSZhi Yong Wu      * bs->slice_end need to be extended in order that the current statistic
344598f90dbaSZhi Yong Wu      * info can be kept until the timer fire, so it is increased and tuned
344698f90dbaSZhi Yong Wu      * based on the result of experiment.
344798f90dbaSZhi Yong Wu      */
344898f90dbaSZhi Yong Wu     bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
344998f90dbaSZhi Yong Wu     bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
345098f90dbaSZhi Yong Wu     if (wait) {
345198f90dbaSZhi Yong Wu         *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
345298f90dbaSZhi Yong Wu     }
345398f90dbaSZhi Yong Wu 
345498f90dbaSZhi Yong Wu     return true;
345598f90dbaSZhi Yong Wu }
345698f90dbaSZhi Yong Wu 
345798f90dbaSZhi Yong Wu static bool bdrv_exceed_iops_limits(BlockDriverState *bs, bool is_write,
345898f90dbaSZhi Yong Wu                              double elapsed_time, uint64_t *wait)
345998f90dbaSZhi Yong Wu {
346098f90dbaSZhi Yong Wu     uint64_t iops_limit = 0;
346198f90dbaSZhi Yong Wu     double   ios_limit, ios_base;
346298f90dbaSZhi Yong Wu     double   slice_time, wait_time;
346398f90dbaSZhi Yong Wu 
346498f90dbaSZhi Yong Wu     if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
346598f90dbaSZhi Yong Wu         iops_limit = bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL];
346698f90dbaSZhi Yong Wu     } else if (bs->io_limits.iops[is_write]) {
346798f90dbaSZhi Yong Wu         iops_limit = bs->io_limits.iops[is_write];
346898f90dbaSZhi Yong Wu     } else {
346998f90dbaSZhi Yong Wu         if (wait) {
347098f90dbaSZhi Yong Wu             *wait = 0;
347198f90dbaSZhi Yong Wu         }
347298f90dbaSZhi Yong Wu 
347398f90dbaSZhi Yong Wu         return false;
347498f90dbaSZhi Yong Wu     }
347598f90dbaSZhi Yong Wu 
347698f90dbaSZhi Yong Wu     slice_time = bs->slice_end - bs->slice_start;
347798f90dbaSZhi Yong Wu     slice_time /= (NANOSECONDS_PER_SECOND);
347898f90dbaSZhi Yong Wu     ios_limit  = iops_limit * slice_time;
347998f90dbaSZhi Yong Wu     ios_base   = bs->nr_ops[is_write] - bs->io_base.ios[is_write];
348098f90dbaSZhi Yong Wu     if (bs->io_limits.iops[BLOCK_IO_LIMIT_TOTAL]) {
348198f90dbaSZhi Yong Wu         ios_base += bs->nr_ops[!is_write] - bs->io_base.ios[!is_write];
348298f90dbaSZhi Yong Wu     }
348398f90dbaSZhi Yong Wu 
348498f90dbaSZhi Yong Wu     if (ios_base + 1 <= ios_limit) {
348598f90dbaSZhi Yong Wu         if (wait) {
348698f90dbaSZhi Yong Wu             *wait = 0;
348798f90dbaSZhi Yong Wu         }
348898f90dbaSZhi Yong Wu 
348998f90dbaSZhi Yong Wu         return false;
349098f90dbaSZhi Yong Wu     }
349198f90dbaSZhi Yong Wu 
349298f90dbaSZhi Yong Wu     /* Calc approx time to dispatch */
349398f90dbaSZhi Yong Wu     wait_time = (ios_base + 1) / iops_limit;
349498f90dbaSZhi Yong Wu     if (wait_time > elapsed_time) {
349598f90dbaSZhi Yong Wu         wait_time = wait_time - elapsed_time;
349698f90dbaSZhi Yong Wu     } else {
349798f90dbaSZhi Yong Wu         wait_time = 0;
349898f90dbaSZhi Yong Wu     }
349998f90dbaSZhi Yong Wu 
350098f90dbaSZhi Yong Wu     bs->slice_time = wait_time * BLOCK_IO_SLICE_TIME * 10;
350198f90dbaSZhi Yong Wu     bs->slice_end += bs->slice_time - 3 * BLOCK_IO_SLICE_TIME;
350298f90dbaSZhi Yong Wu     if (wait) {
350398f90dbaSZhi Yong Wu         *wait = wait_time * BLOCK_IO_SLICE_TIME * 10;
350498f90dbaSZhi Yong Wu     }
350598f90dbaSZhi Yong Wu 
350698f90dbaSZhi Yong Wu     return true;
350798f90dbaSZhi Yong Wu }
350898f90dbaSZhi Yong Wu 
350998f90dbaSZhi Yong Wu static bool bdrv_exceed_io_limits(BlockDriverState *bs, int nb_sectors,
351098f90dbaSZhi Yong Wu                            bool is_write, int64_t *wait)
351198f90dbaSZhi Yong Wu {
351298f90dbaSZhi Yong Wu     int64_t  now, max_wait;
351398f90dbaSZhi Yong Wu     uint64_t bps_wait = 0, iops_wait = 0;
351498f90dbaSZhi Yong Wu     double   elapsed_time;
351598f90dbaSZhi Yong Wu     int      bps_ret, iops_ret;
351698f90dbaSZhi Yong Wu 
351798f90dbaSZhi Yong Wu     now = qemu_get_clock_ns(vm_clock);
351898f90dbaSZhi Yong Wu     if ((bs->slice_start < now)
351998f90dbaSZhi Yong Wu         && (bs->slice_end > now)) {
352098f90dbaSZhi Yong Wu         bs->slice_end = now + bs->slice_time;
352198f90dbaSZhi Yong Wu     } else {
352298f90dbaSZhi Yong Wu         bs->slice_time  =  5 * BLOCK_IO_SLICE_TIME;
352398f90dbaSZhi Yong Wu         bs->slice_start = now;
352498f90dbaSZhi Yong Wu         bs->slice_end   = now + bs->slice_time;
352598f90dbaSZhi Yong Wu 
352698f90dbaSZhi Yong Wu         bs->io_base.bytes[is_write]  = bs->nr_bytes[is_write];
352798f90dbaSZhi Yong Wu         bs->io_base.bytes[!is_write] = bs->nr_bytes[!is_write];
352898f90dbaSZhi Yong Wu 
352998f90dbaSZhi Yong Wu         bs->io_base.ios[is_write]    = bs->nr_ops[is_write];
353098f90dbaSZhi Yong Wu         bs->io_base.ios[!is_write]   = bs->nr_ops[!is_write];
353198f90dbaSZhi Yong Wu     }
353298f90dbaSZhi Yong Wu 
353398f90dbaSZhi Yong Wu     elapsed_time  = now - bs->slice_start;
353498f90dbaSZhi Yong Wu     elapsed_time  /= (NANOSECONDS_PER_SECOND);
353598f90dbaSZhi Yong Wu 
353698f90dbaSZhi Yong Wu     bps_ret  = bdrv_exceed_bps_limits(bs, nb_sectors,
353798f90dbaSZhi Yong Wu                                       is_write, elapsed_time, &bps_wait);
353898f90dbaSZhi Yong Wu     iops_ret = bdrv_exceed_iops_limits(bs, is_write,
353998f90dbaSZhi Yong Wu                                       elapsed_time, &iops_wait);
354098f90dbaSZhi Yong Wu     if (bps_ret || iops_ret) {
354198f90dbaSZhi Yong Wu         max_wait = bps_wait > iops_wait ? bps_wait : iops_wait;
354298f90dbaSZhi Yong Wu         if (wait) {
354398f90dbaSZhi Yong Wu             *wait = max_wait;
354498f90dbaSZhi Yong Wu         }
354598f90dbaSZhi Yong Wu 
354698f90dbaSZhi Yong Wu         now = qemu_get_clock_ns(vm_clock);
354798f90dbaSZhi Yong Wu         if (bs->slice_end < now + max_wait) {
354898f90dbaSZhi Yong Wu             bs->slice_end = now + max_wait;
354998f90dbaSZhi Yong Wu         }
355098f90dbaSZhi Yong Wu 
355198f90dbaSZhi Yong Wu         return true;
355298f90dbaSZhi Yong Wu     }
355398f90dbaSZhi Yong Wu 
355498f90dbaSZhi Yong Wu     if (wait) {
355598f90dbaSZhi Yong Wu         *wait = 0;
355698f90dbaSZhi Yong Wu     }
355798f90dbaSZhi Yong Wu 
355898f90dbaSZhi Yong Wu     return false;
355998f90dbaSZhi Yong Wu }
356083f64091Sbellard 
356183f64091Sbellard /**************************************************************/
356283f64091Sbellard /* async block device emulation */
356383f64091Sbellard 
3564c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync {
3565c16b5a2cSChristoph Hellwig     BlockDriverAIOCB common;
3566c16b5a2cSChristoph Hellwig     QEMUBH *bh;
3567c16b5a2cSChristoph Hellwig     int ret;
3568c16b5a2cSChristoph Hellwig     /* vector translation state */
3569c16b5a2cSChristoph Hellwig     QEMUIOVector *qiov;
3570c16b5a2cSChristoph Hellwig     uint8_t *bounce;
3571c16b5a2cSChristoph Hellwig     int is_write;
3572c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync;
3573c16b5a2cSChristoph Hellwig 
3574c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
3575c16b5a2cSChristoph Hellwig {
3576b666d239SKevin Wolf     BlockDriverAIOCBSync *acb =
3577b666d239SKevin Wolf         container_of(blockacb, BlockDriverAIOCBSync, common);
35786a7ad299SDor Laor     qemu_bh_delete(acb->bh);
357936afc451SAvi Kivity     acb->bh = NULL;
3580c16b5a2cSChristoph Hellwig     qemu_aio_release(acb);
3581c16b5a2cSChristoph Hellwig }
3582c16b5a2cSChristoph Hellwig 
3583c16b5a2cSChristoph Hellwig static AIOPool bdrv_em_aio_pool = {
3584c16b5a2cSChristoph Hellwig     .aiocb_size         = sizeof(BlockDriverAIOCBSync),
3585c16b5a2cSChristoph Hellwig     .cancel             = bdrv_aio_cancel_em,
3586c16b5a2cSChristoph Hellwig };
3587c16b5a2cSChristoph Hellwig 
358883f64091Sbellard static void bdrv_aio_bh_cb(void *opaque)
3589beac80cdSbellard {
3590ce1a14dcSpbrook     BlockDriverAIOCBSync *acb = opaque;
3591f141eafeSaliguori 
3592f141eafeSaliguori     if (!acb->is_write)
359303396148SMichael Tokarev         qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
3594ceb42de8Saliguori     qemu_vfree(acb->bounce);
3595ce1a14dcSpbrook     acb->common.cb(acb->common.opaque, acb->ret);
35966a7ad299SDor Laor     qemu_bh_delete(acb->bh);
359736afc451SAvi Kivity     acb->bh = NULL;
3598ce1a14dcSpbrook     qemu_aio_release(acb);
3599beac80cdSbellard }
3600beac80cdSbellard 
3601f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
3602f141eafeSaliguori                                             int64_t sector_num,
3603f141eafeSaliguori                                             QEMUIOVector *qiov,
3604f141eafeSaliguori                                             int nb_sectors,
3605f141eafeSaliguori                                             BlockDriverCompletionFunc *cb,
3606f141eafeSaliguori                                             void *opaque,
3607f141eafeSaliguori                                             int is_write)
3608f141eafeSaliguori 
3609ea2384d3Sbellard {
3610ce1a14dcSpbrook     BlockDriverAIOCBSync *acb;
361183f64091Sbellard 
3612c16b5a2cSChristoph Hellwig     acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque);
3613f141eafeSaliguori     acb->is_write = is_write;
3614f141eafeSaliguori     acb->qiov = qiov;
3615e268ca52Saliguori     acb->bounce = qemu_blockalign(bs, qiov->size);
3616ce1a14dcSpbrook     acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
3617f141eafeSaliguori 
3618f141eafeSaliguori     if (is_write) {
3619d5e6b161SMichael Tokarev         qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
36201ed20acfSStefan Hajnoczi         acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
3621f141eafeSaliguori     } else {
36221ed20acfSStefan Hajnoczi         acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
3623f141eafeSaliguori     }
3624f141eafeSaliguori 
3625ce1a14dcSpbrook     qemu_bh_schedule(acb->bh);
3626f141eafeSaliguori 
3627ce1a14dcSpbrook     return &acb->common;
36287a6cba61Spbrook }
36297a6cba61Spbrook 
3630f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
3631f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3632ce1a14dcSpbrook         BlockDriverCompletionFunc *cb, void *opaque)
363383f64091Sbellard {
3634f141eafeSaliguori     return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
363583f64091Sbellard }
363683f64091Sbellard 
3637f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
3638f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3639f141eafeSaliguori         BlockDriverCompletionFunc *cb, void *opaque)
3640f141eafeSaliguori {
3641f141eafeSaliguori     return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
3642f141eafeSaliguori }
3643f141eafeSaliguori 
364468485420SKevin Wolf 
364568485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine {
364668485420SKevin Wolf     BlockDriverAIOCB common;
364768485420SKevin Wolf     BlockRequest req;
364868485420SKevin Wolf     bool is_write;
364968485420SKevin Wolf     QEMUBH* bh;
365068485420SKevin Wolf } BlockDriverAIOCBCoroutine;
365168485420SKevin Wolf 
365268485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
365368485420SKevin Wolf {
365468485420SKevin Wolf     qemu_aio_flush();
365568485420SKevin Wolf }
365668485420SKevin Wolf 
365768485420SKevin Wolf static AIOPool bdrv_em_co_aio_pool = {
365868485420SKevin Wolf     .aiocb_size         = sizeof(BlockDriverAIOCBCoroutine),
365968485420SKevin Wolf     .cancel             = bdrv_aio_co_cancel_em,
366068485420SKevin Wolf };
366168485420SKevin Wolf 
366235246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque)
366368485420SKevin Wolf {
366468485420SKevin Wolf     BlockDriverAIOCBCoroutine *acb = opaque;
366568485420SKevin Wolf 
366668485420SKevin Wolf     acb->common.cb(acb->common.opaque, acb->req.error);
366768485420SKevin Wolf     qemu_bh_delete(acb->bh);
366868485420SKevin Wolf     qemu_aio_release(acb);
366968485420SKevin Wolf }
367068485420SKevin Wolf 
3671b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
3672b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque)
3673b2a61371SStefan Hajnoczi {
3674b2a61371SStefan Hajnoczi     BlockDriverAIOCBCoroutine *acb = opaque;
3675b2a61371SStefan Hajnoczi     BlockDriverState *bs = acb->common.bs;
3676b2a61371SStefan Hajnoczi 
3677b2a61371SStefan Hajnoczi     if (!acb->is_write) {
3678b2a61371SStefan Hajnoczi         acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
3679470c0504SStefan Hajnoczi             acb->req.nb_sectors, acb->req.qiov, 0);
3680b2a61371SStefan Hajnoczi     } else {
3681b2a61371SStefan Hajnoczi         acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
3682f08f2ddaSStefan Hajnoczi             acb->req.nb_sectors, acb->req.qiov, 0);
3683b2a61371SStefan Hajnoczi     }
3684b2a61371SStefan Hajnoczi 
368535246a68SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3686b2a61371SStefan Hajnoczi     qemu_bh_schedule(acb->bh);
3687b2a61371SStefan Hajnoczi }
3688b2a61371SStefan Hajnoczi 
368968485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
369068485420SKevin Wolf                                                int64_t sector_num,
369168485420SKevin Wolf                                                QEMUIOVector *qiov,
369268485420SKevin Wolf                                                int nb_sectors,
369368485420SKevin Wolf                                                BlockDriverCompletionFunc *cb,
369468485420SKevin Wolf                                                void *opaque,
36958c5873d6SStefan Hajnoczi                                                bool is_write)
369668485420SKevin Wolf {
369768485420SKevin Wolf     Coroutine *co;
369868485420SKevin Wolf     BlockDriverAIOCBCoroutine *acb;
369968485420SKevin Wolf 
370068485420SKevin Wolf     acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
370168485420SKevin Wolf     acb->req.sector = sector_num;
370268485420SKevin Wolf     acb->req.nb_sectors = nb_sectors;
370368485420SKevin Wolf     acb->req.qiov = qiov;
370468485420SKevin Wolf     acb->is_write = is_write;
370568485420SKevin Wolf 
37068c5873d6SStefan Hajnoczi     co = qemu_coroutine_create(bdrv_co_do_rw);
370768485420SKevin Wolf     qemu_coroutine_enter(co, acb);
370868485420SKevin Wolf 
370968485420SKevin Wolf     return &acb->common;
371068485420SKevin Wolf }
371168485420SKevin Wolf 
371207f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
3713b2e12bc6SChristoph Hellwig {
371407f07615SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb = opaque;
371507f07615SPaolo Bonzini     BlockDriverState *bs = acb->common.bs;
3716b2e12bc6SChristoph Hellwig 
371707f07615SPaolo Bonzini     acb->req.error = bdrv_co_flush(bs);
371807f07615SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3719b2e12bc6SChristoph Hellwig     qemu_bh_schedule(acb->bh);
3720b2e12bc6SChristoph Hellwig }
3721b2e12bc6SChristoph Hellwig 
372207f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
3723016f5cf6SAlexander Graf         BlockDriverCompletionFunc *cb, void *opaque)
3724016f5cf6SAlexander Graf {
372507f07615SPaolo Bonzini     trace_bdrv_aio_flush(bs, opaque);
3726016f5cf6SAlexander Graf 
372707f07615SPaolo Bonzini     Coroutine *co;
372807f07615SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb;
3729016f5cf6SAlexander Graf 
373007f07615SPaolo Bonzini     acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
373107f07615SPaolo Bonzini     co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
373207f07615SPaolo Bonzini     qemu_coroutine_enter(co, acb);
3733016f5cf6SAlexander Graf 
3734016f5cf6SAlexander Graf     return &acb->common;
3735016f5cf6SAlexander Graf }
3736016f5cf6SAlexander Graf 
37374265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
37384265d620SPaolo Bonzini {
37394265d620SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb = opaque;
37404265d620SPaolo Bonzini     BlockDriverState *bs = acb->common.bs;
37414265d620SPaolo Bonzini 
37424265d620SPaolo Bonzini     acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
37434265d620SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
37444265d620SPaolo Bonzini     qemu_bh_schedule(acb->bh);
37454265d620SPaolo Bonzini }
37464265d620SPaolo Bonzini 
37474265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
37484265d620SPaolo Bonzini         int64_t sector_num, int nb_sectors,
37494265d620SPaolo Bonzini         BlockDriverCompletionFunc *cb, void *opaque)
37504265d620SPaolo Bonzini {
37514265d620SPaolo Bonzini     Coroutine *co;
37524265d620SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb;
37534265d620SPaolo Bonzini 
37544265d620SPaolo Bonzini     trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
37554265d620SPaolo Bonzini 
37564265d620SPaolo Bonzini     acb = qemu_aio_get(&bdrv_em_co_aio_pool, bs, cb, opaque);
37574265d620SPaolo Bonzini     acb->req.sector = sector_num;
37584265d620SPaolo Bonzini     acb->req.nb_sectors = nb_sectors;
37594265d620SPaolo Bonzini     co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
37604265d620SPaolo Bonzini     qemu_coroutine_enter(co, acb);
37614265d620SPaolo Bonzini 
37624265d620SPaolo Bonzini     return &acb->common;
37634265d620SPaolo Bonzini }
37644265d620SPaolo Bonzini 
3765ea2384d3Sbellard void bdrv_init(void)
3766ea2384d3Sbellard {
37675efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3768ea2384d3Sbellard }
3769ce1a14dcSpbrook 
3770eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3771eb852011SMarkus Armbruster {
3772eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3773eb852011SMarkus Armbruster     bdrv_init();
3774eb852011SMarkus Armbruster }
3775eb852011SMarkus Armbruster 
3776c16b5a2cSChristoph Hellwig void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs,
37776bbff9a0Saliguori                    BlockDriverCompletionFunc *cb, void *opaque)
37786bbff9a0Saliguori {
3779ce1a14dcSpbrook     BlockDriverAIOCB *acb;
3780ce1a14dcSpbrook 
37816bbff9a0Saliguori     if (pool->free_aiocb) {
37826bbff9a0Saliguori         acb = pool->free_aiocb;
37836bbff9a0Saliguori         pool->free_aiocb = acb->next;
3784ce1a14dcSpbrook     } else {
37857267c094SAnthony Liguori         acb = g_malloc0(pool->aiocb_size);
37866bbff9a0Saliguori         acb->pool = pool;
3787ce1a14dcSpbrook     }
3788ce1a14dcSpbrook     acb->bs = bs;
3789ce1a14dcSpbrook     acb->cb = cb;
3790ce1a14dcSpbrook     acb->opaque = opaque;
3791ce1a14dcSpbrook     return acb;
3792ce1a14dcSpbrook }
3793ce1a14dcSpbrook 
3794ce1a14dcSpbrook void qemu_aio_release(void *p)
3795ce1a14dcSpbrook {
37966bbff9a0Saliguori     BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p;
37976bbff9a0Saliguori     AIOPool *pool = acb->pool;
37986bbff9a0Saliguori     acb->next = pool->free_aiocb;
37996bbff9a0Saliguori     pool->free_aiocb = acb;
3800ce1a14dcSpbrook }
380119cb3738Sbellard 
380219cb3738Sbellard /**************************************************************/
3803f9f05dc5SKevin Wolf /* Coroutine block device emulation */
3804f9f05dc5SKevin Wolf 
3805f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion {
3806f9f05dc5SKevin Wolf     Coroutine *coroutine;
3807f9f05dc5SKevin Wolf     int ret;
3808f9f05dc5SKevin Wolf } CoroutineIOCompletion;
3809f9f05dc5SKevin Wolf 
3810f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret)
3811f9f05dc5SKevin Wolf {
3812f9f05dc5SKevin Wolf     CoroutineIOCompletion *co = opaque;
3813f9f05dc5SKevin Wolf 
3814f9f05dc5SKevin Wolf     co->ret = ret;
3815f9f05dc5SKevin Wolf     qemu_coroutine_enter(co->coroutine, NULL);
3816f9f05dc5SKevin Wolf }
3817f9f05dc5SKevin Wolf 
3818f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
3819f9f05dc5SKevin Wolf                                       int nb_sectors, QEMUIOVector *iov,
3820f9f05dc5SKevin Wolf                                       bool is_write)
3821f9f05dc5SKevin Wolf {
3822f9f05dc5SKevin Wolf     CoroutineIOCompletion co = {
3823f9f05dc5SKevin Wolf         .coroutine = qemu_coroutine_self(),
3824f9f05dc5SKevin Wolf     };
3825f9f05dc5SKevin Wolf     BlockDriverAIOCB *acb;
3826f9f05dc5SKevin Wolf 
3827f9f05dc5SKevin Wolf     if (is_write) {
3828a652d160SStefan Hajnoczi         acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
3829f9f05dc5SKevin Wolf                                        bdrv_co_io_em_complete, &co);
3830f9f05dc5SKevin Wolf     } else {
3831a652d160SStefan Hajnoczi         acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
3832f9f05dc5SKevin Wolf                                       bdrv_co_io_em_complete, &co);
3833f9f05dc5SKevin Wolf     }
3834f9f05dc5SKevin Wolf 
383559370aaaSStefan Hajnoczi     trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
3836f9f05dc5SKevin Wolf     if (!acb) {
3837f9f05dc5SKevin Wolf         return -EIO;
3838f9f05dc5SKevin Wolf     }
3839f9f05dc5SKevin Wolf     qemu_coroutine_yield();
3840f9f05dc5SKevin Wolf 
3841f9f05dc5SKevin Wolf     return co.ret;
3842f9f05dc5SKevin Wolf }
3843f9f05dc5SKevin Wolf 
3844f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
3845f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
3846f9f05dc5SKevin Wolf                                          QEMUIOVector *iov)
3847f9f05dc5SKevin Wolf {
3848f9f05dc5SKevin Wolf     return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
3849f9f05dc5SKevin Wolf }
3850f9f05dc5SKevin Wolf 
3851f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
3852f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
3853f9f05dc5SKevin Wolf                                          QEMUIOVector *iov)
3854f9f05dc5SKevin Wolf {
3855f9f05dc5SKevin Wolf     return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
3856f9f05dc5SKevin Wolf }
3857f9f05dc5SKevin Wolf 
385807f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque)
3859e7a8a783SKevin Wolf {
386007f07615SPaolo Bonzini     RwCo *rwco = opaque;
386107f07615SPaolo Bonzini 
386207f07615SPaolo Bonzini     rwco->ret = bdrv_co_flush(rwco->bs);
386307f07615SPaolo Bonzini }
386407f07615SPaolo Bonzini 
386507f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
386607f07615SPaolo Bonzini {
3867eb489bb1SKevin Wolf     int ret;
3868eb489bb1SKevin Wolf 
386929cdb251SPaolo Bonzini     if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
387007f07615SPaolo Bonzini         return 0;
3871eb489bb1SKevin Wolf     }
3872eb489bb1SKevin Wolf 
3873ca716364SKevin Wolf     /* Write back cached data to the OS even with cache=unsafe */
3874eb489bb1SKevin Wolf     if (bs->drv->bdrv_co_flush_to_os) {
3875eb489bb1SKevin Wolf         ret = bs->drv->bdrv_co_flush_to_os(bs);
3876eb489bb1SKevin Wolf         if (ret < 0) {
3877eb489bb1SKevin Wolf             return ret;
3878eb489bb1SKevin Wolf         }
3879eb489bb1SKevin Wolf     }
3880eb489bb1SKevin Wolf 
3881ca716364SKevin Wolf     /* But don't actually force it to the disk with cache=unsafe */
3882ca716364SKevin Wolf     if (bs->open_flags & BDRV_O_NO_FLUSH) {
3883d4c82329SKevin Wolf         goto flush_parent;
3884ca716364SKevin Wolf     }
3885ca716364SKevin Wolf 
3886eb489bb1SKevin Wolf     if (bs->drv->bdrv_co_flush_to_disk) {
388729cdb251SPaolo Bonzini         ret = bs->drv->bdrv_co_flush_to_disk(bs);
388807f07615SPaolo Bonzini     } else if (bs->drv->bdrv_aio_flush) {
388907f07615SPaolo Bonzini         BlockDriverAIOCB *acb;
3890e7a8a783SKevin Wolf         CoroutineIOCompletion co = {
3891e7a8a783SKevin Wolf             .coroutine = qemu_coroutine_self(),
3892e7a8a783SKevin Wolf         };
3893e7a8a783SKevin Wolf 
389407f07615SPaolo Bonzini         acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
389507f07615SPaolo Bonzini         if (acb == NULL) {
389629cdb251SPaolo Bonzini             ret = -EIO;
389707f07615SPaolo Bonzini         } else {
3898e7a8a783SKevin Wolf             qemu_coroutine_yield();
389929cdb251SPaolo Bonzini             ret = co.ret;
3900e7a8a783SKevin Wolf         }
390107f07615SPaolo Bonzini     } else {
390207f07615SPaolo Bonzini         /*
390307f07615SPaolo Bonzini          * Some block drivers always operate in either writethrough or unsafe
390407f07615SPaolo Bonzini          * mode and don't support bdrv_flush therefore. Usually qemu doesn't
390507f07615SPaolo Bonzini          * know how the server works (because the behaviour is hardcoded or
390607f07615SPaolo Bonzini          * depends on server-side configuration), so we can't ensure that
390707f07615SPaolo Bonzini          * everything is safe on disk. Returning an error doesn't work because
390807f07615SPaolo Bonzini          * that would break guests even if the server operates in writethrough
390907f07615SPaolo Bonzini          * mode.
391007f07615SPaolo Bonzini          *
391107f07615SPaolo Bonzini          * Let's hope the user knows what he's doing.
391207f07615SPaolo Bonzini          */
391329cdb251SPaolo Bonzini         ret = 0;
391407f07615SPaolo Bonzini     }
391529cdb251SPaolo Bonzini     if (ret < 0) {
391629cdb251SPaolo Bonzini         return ret;
391729cdb251SPaolo Bonzini     }
391829cdb251SPaolo Bonzini 
391929cdb251SPaolo Bonzini     /* Now flush the underlying protocol.  It will also have BDRV_O_NO_FLUSH
392029cdb251SPaolo Bonzini      * in the case of cache=unsafe, so there are no useless flushes.
392129cdb251SPaolo Bonzini      */
3922d4c82329SKevin Wolf flush_parent:
392329cdb251SPaolo Bonzini     return bdrv_co_flush(bs->file);
392407f07615SPaolo Bonzini }
392507f07615SPaolo Bonzini 
39260f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs)
39270f15423cSAnthony Liguori {
39280f15423cSAnthony Liguori     if (bs->drv && bs->drv->bdrv_invalidate_cache) {
39290f15423cSAnthony Liguori         bs->drv->bdrv_invalidate_cache(bs);
39300f15423cSAnthony Liguori     }
39310f15423cSAnthony Liguori }
39320f15423cSAnthony Liguori 
39330f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void)
39340f15423cSAnthony Liguori {
39350f15423cSAnthony Liguori     BlockDriverState *bs;
39360f15423cSAnthony Liguori 
39370f15423cSAnthony Liguori     QTAILQ_FOREACH(bs, &bdrv_states, list) {
39380f15423cSAnthony Liguori         bdrv_invalidate_cache(bs);
39390f15423cSAnthony Liguori     }
39400f15423cSAnthony Liguori }
39410f15423cSAnthony Liguori 
394207789269SBenoît Canet void bdrv_clear_incoming_migration_all(void)
394307789269SBenoît Canet {
394407789269SBenoît Canet     BlockDriverState *bs;
394507789269SBenoît Canet 
394607789269SBenoît Canet     QTAILQ_FOREACH(bs, &bdrv_states, list) {
394707789269SBenoît Canet         bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
394807789269SBenoît Canet     }
394907789269SBenoît Canet }
395007789269SBenoît Canet 
395107f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs)
395207f07615SPaolo Bonzini {
395307f07615SPaolo Bonzini     Coroutine *co;
395407f07615SPaolo Bonzini     RwCo rwco = {
395507f07615SPaolo Bonzini         .bs = bs,
395607f07615SPaolo Bonzini         .ret = NOT_DONE,
395707f07615SPaolo Bonzini     };
395807f07615SPaolo Bonzini 
395907f07615SPaolo Bonzini     if (qemu_in_coroutine()) {
396007f07615SPaolo Bonzini         /* Fast-path if already in coroutine context */
396107f07615SPaolo Bonzini         bdrv_flush_co_entry(&rwco);
396207f07615SPaolo Bonzini     } else {
396307f07615SPaolo Bonzini         co = qemu_coroutine_create(bdrv_flush_co_entry);
396407f07615SPaolo Bonzini         qemu_coroutine_enter(co, &rwco);
396507f07615SPaolo Bonzini         while (rwco.ret == NOT_DONE) {
396607f07615SPaolo Bonzini             qemu_aio_wait();
396707f07615SPaolo Bonzini         }
396807f07615SPaolo Bonzini     }
396907f07615SPaolo Bonzini 
397007f07615SPaolo Bonzini     return rwco.ret;
397107f07615SPaolo Bonzini }
3972e7a8a783SKevin Wolf 
39734265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque)
39744265d620SPaolo Bonzini {
39754265d620SPaolo Bonzini     RwCo *rwco = opaque;
39764265d620SPaolo Bonzini 
39774265d620SPaolo Bonzini     rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
39784265d620SPaolo Bonzini }
39794265d620SPaolo Bonzini 
39804265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
39814265d620SPaolo Bonzini                                  int nb_sectors)
39824265d620SPaolo Bonzini {
39834265d620SPaolo Bonzini     if (!bs->drv) {
39844265d620SPaolo Bonzini         return -ENOMEDIUM;
39854265d620SPaolo Bonzini     } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
39864265d620SPaolo Bonzini         return -EIO;
39874265d620SPaolo Bonzini     } else if (bs->read_only) {
39884265d620SPaolo Bonzini         return -EROFS;
39894265d620SPaolo Bonzini     } else if (bs->drv->bdrv_co_discard) {
39904265d620SPaolo Bonzini         return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors);
39914265d620SPaolo Bonzini     } else if (bs->drv->bdrv_aio_discard) {
39924265d620SPaolo Bonzini         BlockDriverAIOCB *acb;
39934265d620SPaolo Bonzini         CoroutineIOCompletion co = {
39944265d620SPaolo Bonzini             .coroutine = qemu_coroutine_self(),
39954265d620SPaolo Bonzini         };
39964265d620SPaolo Bonzini 
39974265d620SPaolo Bonzini         acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
39984265d620SPaolo Bonzini                                         bdrv_co_io_em_complete, &co);
39994265d620SPaolo Bonzini         if (acb == NULL) {
40004265d620SPaolo Bonzini             return -EIO;
40014265d620SPaolo Bonzini         } else {
40024265d620SPaolo Bonzini             qemu_coroutine_yield();
40034265d620SPaolo Bonzini             return co.ret;
40044265d620SPaolo Bonzini         }
40054265d620SPaolo Bonzini     } else {
40064265d620SPaolo Bonzini         return 0;
40074265d620SPaolo Bonzini     }
40084265d620SPaolo Bonzini }
40094265d620SPaolo Bonzini 
40104265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
40114265d620SPaolo Bonzini {
40124265d620SPaolo Bonzini     Coroutine *co;
40134265d620SPaolo Bonzini     RwCo rwco = {
40144265d620SPaolo Bonzini         .bs = bs,
40154265d620SPaolo Bonzini         .sector_num = sector_num,
40164265d620SPaolo Bonzini         .nb_sectors = nb_sectors,
40174265d620SPaolo Bonzini         .ret = NOT_DONE,
40184265d620SPaolo Bonzini     };
40194265d620SPaolo Bonzini 
40204265d620SPaolo Bonzini     if (qemu_in_coroutine()) {
40214265d620SPaolo Bonzini         /* Fast-path if already in coroutine context */
40224265d620SPaolo Bonzini         bdrv_discard_co_entry(&rwco);
40234265d620SPaolo Bonzini     } else {
40244265d620SPaolo Bonzini         co = qemu_coroutine_create(bdrv_discard_co_entry);
40254265d620SPaolo Bonzini         qemu_coroutine_enter(co, &rwco);
40264265d620SPaolo Bonzini         while (rwco.ret == NOT_DONE) {
40274265d620SPaolo Bonzini             qemu_aio_wait();
40284265d620SPaolo Bonzini         }
40294265d620SPaolo Bonzini     }
40304265d620SPaolo Bonzini 
40314265d620SPaolo Bonzini     return rwco.ret;
40324265d620SPaolo Bonzini }
40334265d620SPaolo Bonzini 
4034f9f05dc5SKevin Wolf /**************************************************************/
403519cb3738Sbellard /* removable device support */
403619cb3738Sbellard 
403719cb3738Sbellard /**
403819cb3738Sbellard  * Return TRUE if the media is present
403919cb3738Sbellard  */
404019cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs)
404119cb3738Sbellard {
404219cb3738Sbellard     BlockDriver *drv = bs->drv;
4043a1aff5bfSMarkus Armbruster 
404419cb3738Sbellard     if (!drv)
404519cb3738Sbellard         return 0;
404619cb3738Sbellard     if (!drv->bdrv_is_inserted)
4047a1aff5bfSMarkus Armbruster         return 1;
4048a1aff5bfSMarkus Armbruster     return drv->bdrv_is_inserted(bs);
404919cb3738Sbellard }
405019cb3738Sbellard 
405119cb3738Sbellard /**
40528e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
40538e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
405419cb3738Sbellard  */
405519cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
405619cb3738Sbellard {
405719cb3738Sbellard     BlockDriver *drv = bs->drv;
405819cb3738Sbellard 
40598e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
40608e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
40618e49ca46SMarkus Armbruster     }
40628e49ca46SMarkus Armbruster     return -ENOTSUP;
406319cb3738Sbellard }
406419cb3738Sbellard 
406519cb3738Sbellard /**
406619cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
406719cb3738Sbellard  */
4068f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
406919cb3738Sbellard {
407019cb3738Sbellard     BlockDriver *drv = bs->drv;
407119cb3738Sbellard 
4072822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4073822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
407419cb3738Sbellard     }
40756f382ed2SLuiz Capitulino 
40766f382ed2SLuiz Capitulino     if (bs->device_name[0] != '\0') {
40776f382ed2SLuiz Capitulino         bdrv_emit_qmp_eject_event(bs, eject_flag);
40786f382ed2SLuiz Capitulino     }
407919cb3738Sbellard }
408019cb3738Sbellard 
408119cb3738Sbellard /**
408219cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
408319cb3738Sbellard  * to eject it manually).
408419cb3738Sbellard  */
4085025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
408619cb3738Sbellard {
408719cb3738Sbellard     BlockDriver *drv = bs->drv;
408819cb3738Sbellard 
4089025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4090b8c6d095SStefan Hajnoczi 
4091025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4092025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
409319cb3738Sbellard     }
409419cb3738Sbellard }
4095985a03b0Sths 
4096985a03b0Sths /* needed for generic scsi interface */
4097985a03b0Sths 
4098985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
4099985a03b0Sths {
4100985a03b0Sths     BlockDriver *drv = bs->drv;
4101985a03b0Sths 
4102985a03b0Sths     if (drv && drv->bdrv_ioctl)
4103985a03b0Sths         return drv->bdrv_ioctl(bs, req, buf);
4104985a03b0Sths     return -ENOTSUP;
4105985a03b0Sths }
41067d780669Saliguori 
4107221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
4108221f715dSaliguori         unsigned long int req, void *buf,
41097d780669Saliguori         BlockDriverCompletionFunc *cb, void *opaque)
41107d780669Saliguori {
4111221f715dSaliguori     BlockDriver *drv = bs->drv;
41127d780669Saliguori 
4113221f715dSaliguori     if (drv && drv->bdrv_aio_ioctl)
4114221f715dSaliguori         return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
4115221f715dSaliguori     return NULL;
41167d780669Saliguori }
4117e268ca52Saliguori 
41187b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align)
41197b6f9300SMarkus Armbruster {
41207b6f9300SMarkus Armbruster     bs->buffer_alignment = align;
41217b6f9300SMarkus Armbruster }
41227cd1e32aSlirans@il.ibm.com 
4123e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size)
4124e268ca52Saliguori {
4125e268ca52Saliguori     return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
4126e268ca52Saliguori }
41277cd1e32aSlirans@il.ibm.com 
41287cd1e32aSlirans@il.ibm.com void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable)
41297cd1e32aSlirans@il.ibm.com {
41307cd1e32aSlirans@il.ibm.com     int64_t bitmap_size;
4131a55eb92cSJan Kiszka 
4132aaa0eb75SLiran Schour     bs->dirty_count = 0;
41337cd1e32aSlirans@il.ibm.com     if (enable) {
4134c6d22830SJan Kiszka         if (!bs->dirty_bitmap) {
4135c6d22830SJan Kiszka             bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) +
413671df14fcSPaolo Bonzini                     BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG - 1;
413771df14fcSPaolo Bonzini             bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * BITS_PER_LONG;
41387cd1e32aSlirans@il.ibm.com 
413971df14fcSPaolo Bonzini             bs->dirty_bitmap = g_new0(unsigned long, bitmap_size);
41407cd1e32aSlirans@il.ibm.com         }
41417cd1e32aSlirans@il.ibm.com     } else {
4142c6d22830SJan Kiszka         if (bs->dirty_bitmap) {
41437267c094SAnthony Liguori             g_free(bs->dirty_bitmap);
4144c6d22830SJan Kiszka             bs->dirty_bitmap = NULL;
41457cd1e32aSlirans@il.ibm.com         }
41467cd1e32aSlirans@il.ibm.com     }
41477cd1e32aSlirans@il.ibm.com }
41487cd1e32aSlirans@il.ibm.com 
41497cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
41507cd1e32aSlirans@il.ibm.com {
41516ea44308SJan Kiszka     int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK;
41527cd1e32aSlirans@il.ibm.com 
4153c6d22830SJan Kiszka     if (bs->dirty_bitmap &&
4154c6d22830SJan Kiszka         (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) {
41556d59fec1SMarcelo Tosatti         return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] &
41566d59fec1SMarcelo Tosatti             (1UL << (chunk % (sizeof(unsigned long) * 8))));
41577cd1e32aSlirans@il.ibm.com     } else {
41587cd1e32aSlirans@il.ibm.com         return 0;
41597cd1e32aSlirans@il.ibm.com     }
41607cd1e32aSlirans@il.ibm.com }
41617cd1e32aSlirans@il.ibm.com 
41627cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
41637cd1e32aSlirans@il.ibm.com                       int nr_sectors)
41647cd1e32aSlirans@il.ibm.com {
41657cd1e32aSlirans@il.ibm.com     set_dirty_bitmap(bs, cur_sector, nr_sectors, 0);
41667cd1e32aSlirans@il.ibm.com }
4167aaa0eb75SLiran Schour 
4168aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs)
4169aaa0eb75SLiran Schour {
4170aaa0eb75SLiran Schour     return bs->dirty_count;
4171aaa0eb75SLiran Schour }
4172f88e1a42SJes Sorensen 
4173db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use)
4174db593f25SMarcelo Tosatti {
4175db593f25SMarcelo Tosatti     assert(bs->in_use != in_use);
4176db593f25SMarcelo Tosatti     bs->in_use = in_use;
4177db593f25SMarcelo Tosatti }
4178db593f25SMarcelo Tosatti 
4179db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs)
4180db593f25SMarcelo Tosatti {
4181db593f25SMarcelo Tosatti     return bs->in_use;
4182db593f25SMarcelo Tosatti }
4183db593f25SMarcelo Tosatti 
418428a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs)
418528a7282aSLuiz Capitulino {
4186d6bf279eSLuiz Capitulino     bs->iostatus_enabled = true;
418758e21ef5SLuiz Capitulino     bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
418828a7282aSLuiz Capitulino }
418928a7282aSLuiz Capitulino 
419028a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly
419128a7282aSLuiz Capitulino  * enables it _and_ the VM is configured to stop on errors */
419228a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
419328a7282aSLuiz Capitulino {
4194d6bf279eSLuiz Capitulino     return (bs->iostatus_enabled &&
419528a7282aSLuiz Capitulino            (bs->on_write_error == BLOCK_ERR_STOP_ENOSPC ||
419628a7282aSLuiz Capitulino             bs->on_write_error == BLOCK_ERR_STOP_ANY    ||
419728a7282aSLuiz Capitulino             bs->on_read_error == BLOCK_ERR_STOP_ANY));
419828a7282aSLuiz Capitulino }
419928a7282aSLuiz Capitulino 
420028a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs)
420128a7282aSLuiz Capitulino {
4202d6bf279eSLuiz Capitulino     bs->iostatus_enabled = false;
420328a7282aSLuiz Capitulino }
420428a7282aSLuiz Capitulino 
420528a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs)
420628a7282aSLuiz Capitulino {
420728a7282aSLuiz Capitulino     if (bdrv_iostatus_is_enabled(bs)) {
420858e21ef5SLuiz Capitulino         bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
420928a7282aSLuiz Capitulino     }
421028a7282aSLuiz Capitulino }
421128a7282aSLuiz Capitulino 
421228a7282aSLuiz Capitulino /* XXX: Today this is set by device models because it makes the implementation
421328a7282aSLuiz Capitulino    quite simple. However, the block layer knows about the error, so it's
421428a7282aSLuiz Capitulino    possible to implement this without device models being involved */
421528a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
421628a7282aSLuiz Capitulino {
421758e21ef5SLuiz Capitulino     if (bdrv_iostatus_is_enabled(bs) &&
421858e21ef5SLuiz Capitulino         bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
421928a7282aSLuiz Capitulino         assert(error >= 0);
422058e21ef5SLuiz Capitulino         bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
422158e21ef5SLuiz Capitulino                                          BLOCK_DEVICE_IO_STATUS_FAILED;
422228a7282aSLuiz Capitulino     }
422328a7282aSLuiz Capitulino }
422428a7282aSLuiz Capitulino 
4225a597e79cSChristoph Hellwig void
4226a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
4227a597e79cSChristoph Hellwig         enum BlockAcctType type)
4228a597e79cSChristoph Hellwig {
4229a597e79cSChristoph Hellwig     assert(type < BDRV_MAX_IOTYPE);
4230a597e79cSChristoph Hellwig 
4231a597e79cSChristoph Hellwig     cookie->bytes = bytes;
4232c488c7f6SChristoph Hellwig     cookie->start_time_ns = get_clock();
4233a597e79cSChristoph Hellwig     cookie->type = type;
4234a597e79cSChristoph Hellwig }
4235a597e79cSChristoph Hellwig 
4236a597e79cSChristoph Hellwig void
4237a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
4238a597e79cSChristoph Hellwig {
4239a597e79cSChristoph Hellwig     assert(cookie->type < BDRV_MAX_IOTYPE);
4240a597e79cSChristoph Hellwig 
4241a597e79cSChristoph Hellwig     bs->nr_bytes[cookie->type] += cookie->bytes;
4242a597e79cSChristoph Hellwig     bs->nr_ops[cookie->type]++;
4243c488c7f6SChristoph Hellwig     bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
4244a597e79cSChristoph Hellwig }
4245a597e79cSChristoph Hellwig 
4246f88e1a42SJes Sorensen int bdrv_img_create(const char *filename, const char *fmt,
4247f88e1a42SJes Sorensen                     const char *base_filename, const char *base_fmt,
4248f88e1a42SJes Sorensen                     char *options, uint64_t img_size, int flags)
4249f88e1a42SJes Sorensen {
4250f88e1a42SJes Sorensen     QEMUOptionParameter *param = NULL, *create_options = NULL;
4251d220894eSKevin Wolf     QEMUOptionParameter *backing_fmt, *backing_file, *size;
4252f88e1a42SJes Sorensen     BlockDriverState *bs = NULL;
4253f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
425496df67d1SStefan Hajnoczi     BlockDriver *backing_drv = NULL;
4255f88e1a42SJes Sorensen     int ret = 0;
4256f88e1a42SJes Sorensen 
4257f88e1a42SJes Sorensen     /* Find driver and parse its options */
4258f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4259f88e1a42SJes Sorensen     if (!drv) {
4260f88e1a42SJes Sorensen         error_report("Unknown file format '%s'", fmt);
42614f70f249SJes Sorensen         ret = -EINVAL;
4262f88e1a42SJes Sorensen         goto out;
4263f88e1a42SJes Sorensen     }
4264f88e1a42SJes Sorensen 
4265f88e1a42SJes Sorensen     proto_drv = bdrv_find_protocol(filename);
4266f88e1a42SJes Sorensen     if (!proto_drv) {
4267f88e1a42SJes Sorensen         error_report("Unknown protocol '%s'", filename);
42684f70f249SJes Sorensen         ret = -EINVAL;
4269f88e1a42SJes Sorensen         goto out;
4270f88e1a42SJes Sorensen     }
4271f88e1a42SJes Sorensen 
4272f88e1a42SJes Sorensen     create_options = append_option_parameters(create_options,
4273f88e1a42SJes Sorensen                                               drv->create_options);
4274f88e1a42SJes Sorensen     create_options = append_option_parameters(create_options,
4275f88e1a42SJes Sorensen                                               proto_drv->create_options);
4276f88e1a42SJes Sorensen 
4277f88e1a42SJes Sorensen     /* Create parameter list with default values */
4278f88e1a42SJes Sorensen     param = parse_option_parameters("", create_options, param);
4279f88e1a42SJes Sorensen 
4280f88e1a42SJes Sorensen     set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
4281f88e1a42SJes Sorensen 
4282f88e1a42SJes Sorensen     /* Parse -o options */
4283f88e1a42SJes Sorensen     if (options) {
4284f88e1a42SJes Sorensen         param = parse_option_parameters(options, create_options, param);
4285f88e1a42SJes Sorensen         if (param == NULL) {
4286f88e1a42SJes Sorensen             error_report("Invalid options for file format '%s'.", fmt);
42874f70f249SJes Sorensen             ret = -EINVAL;
4288f88e1a42SJes Sorensen             goto out;
4289f88e1a42SJes Sorensen         }
4290f88e1a42SJes Sorensen     }
4291f88e1a42SJes Sorensen 
4292f88e1a42SJes Sorensen     if (base_filename) {
4293f88e1a42SJes Sorensen         if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
4294f88e1a42SJes Sorensen                                  base_filename)) {
4295f88e1a42SJes Sorensen             error_report("Backing file not supported for file format '%s'",
4296f88e1a42SJes Sorensen                          fmt);
42974f70f249SJes Sorensen             ret = -EINVAL;
4298f88e1a42SJes Sorensen             goto out;
4299f88e1a42SJes Sorensen         }
4300f88e1a42SJes Sorensen     }
4301f88e1a42SJes Sorensen 
4302f88e1a42SJes Sorensen     if (base_fmt) {
4303f88e1a42SJes Sorensen         if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
4304f88e1a42SJes Sorensen             error_report("Backing file format not supported for file "
4305f88e1a42SJes Sorensen                          "format '%s'", fmt);
43064f70f249SJes Sorensen             ret = -EINVAL;
4307f88e1a42SJes Sorensen             goto out;
4308f88e1a42SJes Sorensen         }
4309f88e1a42SJes Sorensen     }
4310f88e1a42SJes Sorensen 
4311792da93aSJes Sorensen     backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
4312792da93aSJes Sorensen     if (backing_file && backing_file->value.s) {
4313792da93aSJes Sorensen         if (!strcmp(filename, backing_file->value.s)) {
4314792da93aSJes Sorensen             error_report("Error: Trying to create an image with the "
4315792da93aSJes Sorensen                          "same filename as the backing file");
43164f70f249SJes Sorensen             ret = -EINVAL;
4317792da93aSJes Sorensen             goto out;
4318792da93aSJes Sorensen         }
4319792da93aSJes Sorensen     }
4320792da93aSJes Sorensen 
4321f88e1a42SJes Sorensen     backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
4322f88e1a42SJes Sorensen     if (backing_fmt && backing_fmt->value.s) {
432396df67d1SStefan Hajnoczi         backing_drv = bdrv_find_format(backing_fmt->value.s);
432496df67d1SStefan Hajnoczi         if (!backing_drv) {
4325f88e1a42SJes Sorensen             error_report("Unknown backing file format '%s'",
4326f88e1a42SJes Sorensen                          backing_fmt->value.s);
43274f70f249SJes Sorensen             ret = -EINVAL;
4328f88e1a42SJes Sorensen             goto out;
4329f88e1a42SJes Sorensen         }
4330f88e1a42SJes Sorensen     }
4331f88e1a42SJes Sorensen 
4332f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
4333f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
4334d220894eSKevin Wolf     size = get_option_parameter(param, BLOCK_OPT_SIZE);
4335d220894eSKevin Wolf     if (size && size->value.n == -1) {
4336f88e1a42SJes Sorensen         if (backing_file && backing_file->value.s) {
4337f88e1a42SJes Sorensen             uint64_t size;
4338f88e1a42SJes Sorensen             char buf[32];
433963090dacSPaolo Bonzini             int back_flags;
434063090dacSPaolo Bonzini 
434163090dacSPaolo Bonzini             /* backing files always opened read-only */
434263090dacSPaolo Bonzini             back_flags =
434363090dacSPaolo Bonzini                 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4344f88e1a42SJes Sorensen 
4345f88e1a42SJes Sorensen             bs = bdrv_new("");
4346f88e1a42SJes Sorensen 
434763090dacSPaolo Bonzini             ret = bdrv_open(bs, backing_file->value.s, back_flags, backing_drv);
4348f88e1a42SJes Sorensen             if (ret < 0) {
434996df67d1SStefan Hajnoczi                 error_report("Could not open '%s'", backing_file->value.s);
4350f88e1a42SJes Sorensen                 goto out;
4351f88e1a42SJes Sorensen             }
4352f88e1a42SJes Sorensen             bdrv_get_geometry(bs, &size);
4353f88e1a42SJes Sorensen             size *= 512;
4354f88e1a42SJes Sorensen 
4355f88e1a42SJes Sorensen             snprintf(buf, sizeof(buf), "%" PRId64, size);
4356f88e1a42SJes Sorensen             set_option_parameter(param, BLOCK_OPT_SIZE, buf);
4357f88e1a42SJes Sorensen         } else {
4358f88e1a42SJes Sorensen             error_report("Image creation needs a size parameter");
43594f70f249SJes Sorensen             ret = -EINVAL;
4360f88e1a42SJes Sorensen             goto out;
4361f88e1a42SJes Sorensen         }
4362f88e1a42SJes Sorensen     }
4363f88e1a42SJes Sorensen 
4364f88e1a42SJes Sorensen     printf("Formatting '%s', fmt=%s ", filename, fmt);
4365f88e1a42SJes Sorensen     print_option_parameters(param);
4366f88e1a42SJes Sorensen     puts("");
4367f88e1a42SJes Sorensen 
4368f88e1a42SJes Sorensen     ret = bdrv_create(drv, filename, param);
4369f88e1a42SJes Sorensen 
4370f88e1a42SJes Sorensen     if (ret < 0) {
4371f88e1a42SJes Sorensen         if (ret == -ENOTSUP) {
4372f88e1a42SJes Sorensen             error_report("Formatting or formatting option not supported for "
4373f88e1a42SJes Sorensen                          "file format '%s'", fmt);
4374f88e1a42SJes Sorensen         } else if (ret == -EFBIG) {
4375f88e1a42SJes Sorensen             error_report("The image size is too large for file format '%s'",
4376f88e1a42SJes Sorensen                          fmt);
4377f88e1a42SJes Sorensen         } else {
4378f88e1a42SJes Sorensen             error_report("%s: error while creating %s: %s", filename, fmt,
4379f88e1a42SJes Sorensen                          strerror(-ret));
4380f88e1a42SJes Sorensen         }
4381f88e1a42SJes Sorensen     }
4382f88e1a42SJes Sorensen 
4383f88e1a42SJes Sorensen out:
4384f88e1a42SJes Sorensen     free_option_parameters(create_options);
4385f88e1a42SJes Sorensen     free_option_parameters(param);
4386f88e1a42SJes Sorensen 
4387f88e1a42SJes Sorensen     if (bs) {
4388f88e1a42SJes Sorensen         bdrv_delete(bs);
4389f88e1a42SJes Sorensen     }
43904f70f249SJes Sorensen 
43914f70f249SJes Sorensen     return ret;
4392f88e1a42SJes Sorensen }
4393eeec61f2SStefan Hajnoczi 
4394eeec61f2SStefan Hajnoczi void *block_job_create(const BlockJobType *job_type, BlockDriverState *bs,
4395c83c66c3SStefan Hajnoczi                        int64_t speed, BlockDriverCompletionFunc *cb,
4396c83c66c3SStefan Hajnoczi                        void *opaque, Error **errp)
4397eeec61f2SStefan Hajnoczi {
4398eeec61f2SStefan Hajnoczi     BlockJob *job;
4399eeec61f2SStefan Hajnoczi 
4400eeec61f2SStefan Hajnoczi     if (bs->job || bdrv_in_use(bs)) {
4401fd7f8c65SStefan Hajnoczi         error_set(errp, QERR_DEVICE_IN_USE, bdrv_get_device_name(bs));
4402eeec61f2SStefan Hajnoczi         return NULL;
4403eeec61f2SStefan Hajnoczi     }
4404eeec61f2SStefan Hajnoczi     bdrv_set_in_use(bs, 1);
4405eeec61f2SStefan Hajnoczi 
4406eeec61f2SStefan Hajnoczi     job = g_malloc0(job_type->instance_size);
4407eeec61f2SStefan Hajnoczi     job->job_type      = job_type;
4408eeec61f2SStefan Hajnoczi     job->bs            = bs;
4409eeec61f2SStefan Hajnoczi     job->cb            = cb;
4410eeec61f2SStefan Hajnoczi     job->opaque        = opaque;
44114513eafeSPaolo Bonzini     job->busy          = true;
4412eeec61f2SStefan Hajnoczi     bs->job = job;
4413c83c66c3SStefan Hajnoczi 
4414c83c66c3SStefan Hajnoczi     /* Only set speed when necessary to avoid NotSupported error */
4415c83c66c3SStefan Hajnoczi     if (speed != 0) {
4416c83c66c3SStefan Hajnoczi         Error *local_err = NULL;
4417c83c66c3SStefan Hajnoczi 
4418c83c66c3SStefan Hajnoczi         block_job_set_speed(job, speed, &local_err);
4419c83c66c3SStefan Hajnoczi         if (error_is_set(&local_err)) {
4420c83c66c3SStefan Hajnoczi             bs->job = NULL;
4421c83c66c3SStefan Hajnoczi             g_free(job);
4422c83c66c3SStefan Hajnoczi             bdrv_set_in_use(bs, 0);
4423c83c66c3SStefan Hajnoczi             error_propagate(errp, local_err);
4424c83c66c3SStefan Hajnoczi             return NULL;
4425c83c66c3SStefan Hajnoczi         }
4426c83c66c3SStefan Hajnoczi     }
4427eeec61f2SStefan Hajnoczi     return job;
4428eeec61f2SStefan Hajnoczi }
4429eeec61f2SStefan Hajnoczi 
4430eeec61f2SStefan Hajnoczi void block_job_complete(BlockJob *job, int ret)
4431eeec61f2SStefan Hajnoczi {
4432eeec61f2SStefan Hajnoczi     BlockDriverState *bs = job->bs;
4433eeec61f2SStefan Hajnoczi 
4434eeec61f2SStefan Hajnoczi     assert(bs->job == job);
4435eeec61f2SStefan Hajnoczi     job->cb(job->opaque, ret);
4436eeec61f2SStefan Hajnoczi     bs->job = NULL;
4437eeec61f2SStefan Hajnoczi     g_free(job);
4438eeec61f2SStefan Hajnoczi     bdrv_set_in_use(bs, 0);
4439eeec61f2SStefan Hajnoczi }
4440eeec61f2SStefan Hajnoczi 
4441882ec7ceSStefan Hajnoczi void block_job_set_speed(BlockJob *job, int64_t speed, Error **errp)
4442eeec61f2SStefan Hajnoczi {
44439e6636c7SStefan Hajnoczi     Error *local_err = NULL;
44449f25ecccSPaolo Bonzini 
4445eeec61f2SStefan Hajnoczi     if (!job->job_type->set_speed) {
44469e6636c7SStefan Hajnoczi         error_set(errp, QERR_NOT_SUPPORTED);
44479e6636c7SStefan Hajnoczi         return;
4448eeec61f2SStefan Hajnoczi     }
4449882ec7ceSStefan Hajnoczi     job->job_type->set_speed(job, speed, &local_err);
44509e6636c7SStefan Hajnoczi     if (error_is_set(&local_err)) {
44519e6636c7SStefan Hajnoczi         error_propagate(errp, local_err);
44529e6636c7SStefan Hajnoczi         return;
44539e6636c7SStefan Hajnoczi     }
44549e6636c7SStefan Hajnoczi 
4455882ec7ceSStefan Hajnoczi     job->speed = speed;
44569f25ecccSPaolo Bonzini }
4457eeec61f2SStefan Hajnoczi 
4458eeec61f2SStefan Hajnoczi void block_job_cancel(BlockJob *job)
4459eeec61f2SStefan Hajnoczi {
4460eeec61f2SStefan Hajnoczi     job->cancelled = true;
4461fa4478d5SPaolo Bonzini     if (job->co && !job->busy) {
4462fa4478d5SPaolo Bonzini         qemu_coroutine_enter(job->co, NULL);
4463fa4478d5SPaolo Bonzini     }
4464eeec61f2SStefan Hajnoczi }
4465eeec61f2SStefan Hajnoczi 
4466eeec61f2SStefan Hajnoczi bool block_job_is_cancelled(BlockJob *job)
4467eeec61f2SStefan Hajnoczi {
4468eeec61f2SStefan Hajnoczi     return job->cancelled;
4469eeec61f2SStefan Hajnoczi }
44703e914655SPaolo Bonzini 
4471fa4478d5SPaolo Bonzini struct BlockCancelData {
4472fa4478d5SPaolo Bonzini     BlockJob *job;
4473fa4478d5SPaolo Bonzini     BlockDriverCompletionFunc *cb;
4474fa4478d5SPaolo Bonzini     void *opaque;
4475fa4478d5SPaolo Bonzini     bool cancelled;
4476fa4478d5SPaolo Bonzini     int ret;
4477fa4478d5SPaolo Bonzini };
4478fa4478d5SPaolo Bonzini 
4479fa4478d5SPaolo Bonzini static void block_job_cancel_cb(void *opaque, int ret)
44803e914655SPaolo Bonzini {
4481fa4478d5SPaolo Bonzini     struct BlockCancelData *data = opaque;
4482fa4478d5SPaolo Bonzini 
4483fa4478d5SPaolo Bonzini     data->cancelled = block_job_is_cancelled(data->job);
4484fa4478d5SPaolo Bonzini     data->ret = ret;
4485fa4478d5SPaolo Bonzini     data->cb(data->opaque, ret);
4486fa4478d5SPaolo Bonzini }
4487fa4478d5SPaolo Bonzini 
4488fa4478d5SPaolo Bonzini int block_job_cancel_sync(BlockJob *job)
4489fa4478d5SPaolo Bonzini {
4490fa4478d5SPaolo Bonzini     struct BlockCancelData data;
44913e914655SPaolo Bonzini     BlockDriverState *bs = job->bs;
44923e914655SPaolo Bonzini 
44933e914655SPaolo Bonzini     assert(bs->job == job);
4494fa4478d5SPaolo Bonzini 
4495fa4478d5SPaolo Bonzini     /* Set up our own callback to store the result and chain to
4496fa4478d5SPaolo Bonzini      * the original callback.
4497fa4478d5SPaolo Bonzini      */
4498fa4478d5SPaolo Bonzini     data.job = job;
4499fa4478d5SPaolo Bonzini     data.cb = job->cb;
4500fa4478d5SPaolo Bonzini     data.opaque = job->opaque;
4501fa4478d5SPaolo Bonzini     data.ret = -EINPROGRESS;
4502fa4478d5SPaolo Bonzini     job->cb = block_job_cancel_cb;
4503fa4478d5SPaolo Bonzini     job->opaque = &data;
45043e914655SPaolo Bonzini     block_job_cancel(job);
4505fa4478d5SPaolo Bonzini     while (data.ret == -EINPROGRESS) {
45063e914655SPaolo Bonzini         qemu_aio_wait();
45073e914655SPaolo Bonzini     }
4508fa4478d5SPaolo Bonzini     return (data.cancelled && data.ret == 0) ? -ECANCELED : data.ret;
45093e914655SPaolo Bonzini }
45104513eafeSPaolo Bonzini 
45114513eafeSPaolo Bonzini void block_job_sleep_ns(BlockJob *job, QEMUClock *clock, int64_t ns)
45124513eafeSPaolo Bonzini {
45134513eafeSPaolo Bonzini     /* Check cancellation *before* setting busy = false, too!  */
45144513eafeSPaolo Bonzini     if (!block_job_is_cancelled(job)) {
45154513eafeSPaolo Bonzini         job->busy = false;
45164513eafeSPaolo Bonzini         co_sleep_ns(clock, ns);
45174513eafeSPaolo Bonzini         job->busy = true;
45184513eafeSPaolo Bonzini     }
45194513eafeSPaolo Bonzini }
4520