xref: /openbmc/qemu/block.c (revision cc84d90ff54c025190dbe49ec5fea1268217c5f2)
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"
2783c9089eSPaolo Bonzini #include "monitor/monitor.h"
28737e150eSPaolo Bonzini #include "block/block_int.h"
29737e150eSPaolo Bonzini #include "block/blockjob.h"
301de7afc9SPaolo Bonzini #include "qemu/module.h"
317b1b5d19SPaolo Bonzini #include "qapi/qmp/qjson.h"
329c17d615SPaolo Bonzini #include "sysemu/sysemu.h"
331de7afc9SPaolo Bonzini #include "qemu/notify.h"
34737e150eSPaolo Bonzini #include "block/coroutine.h"
35b2023818SLuiz Capitulino #include "qmp-commands.h"
361de7afc9SPaolo Bonzini #include "qemu/timer.h"
37fc01f7e7Sbellard 
3871e72a19SJuan Quintela #ifdef CONFIG_BSD
397674e7bfSbellard #include <sys/types.h>
407674e7bfSbellard #include <sys/stat.h>
417674e7bfSbellard #include <sys/ioctl.h>
4272cf2d4fSBlue Swirl #include <sys/queue.h>
43c5e97233Sblueswir1 #ifndef __DragonFly__
447674e7bfSbellard #include <sys/disk.h>
457674e7bfSbellard #endif
46c5e97233Sblueswir1 #endif
477674e7bfSbellard 
4849dc768dSaliguori #ifdef _WIN32
4949dc768dSaliguori #include <windows.h>
5049dc768dSaliguori #endif
5149dc768dSaliguori 
521c9805a3SStefan Hajnoczi #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
531c9805a3SStefan Hajnoczi 
54470c0504SStefan Hajnoczi typedef enum {
55470c0504SStefan Hajnoczi     BDRV_REQ_COPY_ON_READ = 0x1,
56f08f2ddaSStefan Hajnoczi     BDRV_REQ_ZERO_WRITE   = 0x2,
57470c0504SStefan Hajnoczi } BdrvRequestFlags;
58470c0504SStefan Hajnoczi 
597d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
60f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
61f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
62c87c0672Saliguori         BlockDriverCompletionFunc *cb, void *opaque);
63f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
64f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
65ce1a14dcSpbrook         BlockDriverCompletionFunc *cb, void *opaque);
66f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
67f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
68f9f05dc5SKevin Wolf                                          QEMUIOVector *iov);
69f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
70f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
71f9f05dc5SKevin Wolf                                          QEMUIOVector *iov);
72c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
73470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
74470c0504SStefan Hajnoczi     BdrvRequestFlags flags);
751c9805a3SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
76f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
77f08f2ddaSStefan Hajnoczi     BdrvRequestFlags flags);
78b2a61371SStefan Hajnoczi static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
79b2a61371SStefan Hajnoczi                                                int64_t sector_num,
80b2a61371SStefan Hajnoczi                                                QEMUIOVector *qiov,
81b2a61371SStefan Hajnoczi                                                int nb_sectors,
82b2a61371SStefan Hajnoczi                                                BlockDriverCompletionFunc *cb,
83b2a61371SStefan Hajnoczi                                                void *opaque,
848c5873d6SStefan Hajnoczi                                                bool is_write);
85b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque);
86621f0589SKevin Wolf static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
87621f0589SKevin Wolf     int64_t sector_num, int nb_sectors);
88ec530c81Sbellard 
891b7bdbc1SStefan Hajnoczi static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
901b7bdbc1SStefan Hajnoczi     QTAILQ_HEAD_INITIALIZER(bdrv_states);
917ee930d0Sblueswir1 
928a22f02aSStefan Hajnoczi static QLIST_HEAD(, BlockDriver) bdrv_drivers =
938a22f02aSStefan Hajnoczi     QLIST_HEAD_INITIALIZER(bdrv_drivers);
94ea2384d3Sbellard 
95eb852011SMarkus Armbruster /* If non-zero, use only whitelisted block drivers */
96eb852011SMarkus Armbruster static int use_bdrv_whitelist;
97eb852011SMarkus Armbruster 
989e0b22f4SStefan Hajnoczi #ifdef _WIN32
999e0b22f4SStefan Hajnoczi static int is_windows_drive_prefix(const char *filename)
1009e0b22f4SStefan Hajnoczi {
1019e0b22f4SStefan Hajnoczi     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
1029e0b22f4SStefan Hajnoczi              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
1039e0b22f4SStefan Hajnoczi             filename[1] == ':');
1049e0b22f4SStefan Hajnoczi }
1059e0b22f4SStefan Hajnoczi 
1069e0b22f4SStefan Hajnoczi int is_windows_drive(const char *filename)
1079e0b22f4SStefan Hajnoczi {
1089e0b22f4SStefan Hajnoczi     if (is_windows_drive_prefix(filename) &&
1099e0b22f4SStefan Hajnoczi         filename[2] == '\0')
1109e0b22f4SStefan Hajnoczi         return 1;
1119e0b22f4SStefan Hajnoczi     if (strstart(filename, "\\\\.\\", NULL) ||
1129e0b22f4SStefan Hajnoczi         strstart(filename, "//./", NULL))
1139e0b22f4SStefan Hajnoczi         return 1;
1149e0b22f4SStefan Hajnoczi     return 0;
1159e0b22f4SStefan Hajnoczi }
1169e0b22f4SStefan Hajnoczi #endif
1179e0b22f4SStefan Hajnoczi 
1180563e191SZhi Yong Wu /* throttling disk I/O limits */
119cc0681c4SBenoît Canet void bdrv_set_io_limits(BlockDriverState *bs,
120cc0681c4SBenoît Canet                         ThrottleConfig *cfg)
121cc0681c4SBenoît Canet {
122cc0681c4SBenoît Canet     int i;
123cc0681c4SBenoît Canet 
124cc0681c4SBenoît Canet     throttle_config(&bs->throttle_state, cfg);
125cc0681c4SBenoît Canet 
126cc0681c4SBenoît Canet     for (i = 0; i < 2; i++) {
127cc0681c4SBenoît Canet         qemu_co_enter_next(&bs->throttled_reqs[i]);
128cc0681c4SBenoît Canet     }
129cc0681c4SBenoît Canet }
130cc0681c4SBenoît Canet 
131cc0681c4SBenoît Canet /* this function drain all the throttled IOs */
132cc0681c4SBenoît Canet static bool bdrv_start_throttled_reqs(BlockDriverState *bs)
133cc0681c4SBenoît Canet {
134cc0681c4SBenoît Canet     bool drained = false;
135cc0681c4SBenoît Canet     bool enabled = bs->io_limits_enabled;
136cc0681c4SBenoît Canet     int i;
137cc0681c4SBenoît Canet 
138cc0681c4SBenoît Canet     bs->io_limits_enabled = false;
139cc0681c4SBenoît Canet 
140cc0681c4SBenoît Canet     for (i = 0; i < 2; i++) {
141cc0681c4SBenoît Canet         while (qemu_co_enter_next(&bs->throttled_reqs[i])) {
142cc0681c4SBenoît Canet             drained = true;
143cc0681c4SBenoît Canet         }
144cc0681c4SBenoît Canet     }
145cc0681c4SBenoît Canet 
146cc0681c4SBenoît Canet     bs->io_limits_enabled = enabled;
147cc0681c4SBenoît Canet 
148cc0681c4SBenoît Canet     return drained;
149cc0681c4SBenoît Canet }
150cc0681c4SBenoît Canet 
15198f90dbaSZhi Yong Wu void bdrv_io_limits_disable(BlockDriverState *bs)
15298f90dbaSZhi Yong Wu {
15398f90dbaSZhi Yong Wu     bs->io_limits_enabled = false;
15498f90dbaSZhi Yong Wu 
155cc0681c4SBenoît Canet     bdrv_start_throttled_reqs(bs);
15698f90dbaSZhi Yong Wu 
157cc0681c4SBenoît Canet     throttle_destroy(&bs->throttle_state);
15898f90dbaSZhi Yong Wu }
15998f90dbaSZhi Yong Wu 
160cc0681c4SBenoît Canet static void bdrv_throttle_read_timer_cb(void *opaque)
1610563e191SZhi Yong Wu {
1620563e191SZhi Yong Wu     BlockDriverState *bs = opaque;
163cc0681c4SBenoît Canet     qemu_co_enter_next(&bs->throttled_reqs[0]);
1640563e191SZhi Yong Wu }
1650563e191SZhi Yong Wu 
166cc0681c4SBenoît Canet static void bdrv_throttle_write_timer_cb(void *opaque)
167cc0681c4SBenoît Canet {
168cc0681c4SBenoît Canet     BlockDriverState *bs = opaque;
169cc0681c4SBenoît Canet     qemu_co_enter_next(&bs->throttled_reqs[1]);
170cc0681c4SBenoît Canet }
171cc0681c4SBenoît Canet 
172cc0681c4SBenoît Canet /* should be called before bdrv_set_io_limits if a limit is set */
1730563e191SZhi Yong Wu void bdrv_io_limits_enable(BlockDriverState *bs)
1740563e191SZhi Yong Wu {
175cc0681c4SBenoît Canet     assert(!bs->io_limits_enabled);
176cc0681c4SBenoît Canet     throttle_init(&bs->throttle_state,
177cc0681c4SBenoît Canet                   QEMU_CLOCK_VIRTUAL,
178cc0681c4SBenoît Canet                   bdrv_throttle_read_timer_cb,
179cc0681c4SBenoît Canet                   bdrv_throttle_write_timer_cb,
180cc0681c4SBenoît Canet                   bs);
1810563e191SZhi Yong Wu     bs->io_limits_enabled = true;
1820563e191SZhi Yong Wu }
1830563e191SZhi Yong Wu 
184cc0681c4SBenoît Canet /* This function makes an IO wait if needed
185cc0681c4SBenoît Canet  *
186cc0681c4SBenoît Canet  * @nb_sectors: the number of sectors of the IO
187cc0681c4SBenoît Canet  * @is_write:   is the IO a write
18898f90dbaSZhi Yong Wu  */
189cc0681c4SBenoît Canet static void bdrv_io_limits_intercept(BlockDriverState *bs,
190cc0681c4SBenoît Canet                                      int nb_sectors,
191cc0681c4SBenoît Canet                                      bool is_write)
192cc0681c4SBenoît Canet {
193cc0681c4SBenoît Canet     /* does this io must wait */
194cc0681c4SBenoît Canet     bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write);
19598f90dbaSZhi Yong Wu 
196cc0681c4SBenoît Canet     /* if must wait or any request of this type throttled queue the IO */
197cc0681c4SBenoît Canet     if (must_wait ||
198cc0681c4SBenoît Canet         !qemu_co_queue_empty(&bs->throttled_reqs[is_write])) {
199cc0681c4SBenoît Canet         qemu_co_queue_wait(&bs->throttled_reqs[is_write]);
20098f90dbaSZhi Yong Wu     }
20198f90dbaSZhi Yong Wu 
202cc0681c4SBenoît Canet     /* the IO will be executed, do the accounting */
203cc0681c4SBenoît Canet     throttle_account(&bs->throttle_state,
204cc0681c4SBenoît Canet                      is_write,
205cc0681c4SBenoît Canet                      nb_sectors * BDRV_SECTOR_SIZE);
206cc0681c4SBenoît Canet 
207cc0681c4SBenoît Canet     /* if the next request must wait -> do nothing */
208cc0681c4SBenoît Canet     if (throttle_schedule_timer(&bs->throttle_state, is_write)) {
209cc0681c4SBenoît Canet         return;
210cc0681c4SBenoît Canet     }
211cc0681c4SBenoît Canet 
212cc0681c4SBenoît Canet     /* else queue next request for execution */
213cc0681c4SBenoît Canet     qemu_co_queue_next(&bs->throttled_reqs[is_write]);
21498f90dbaSZhi Yong Wu }
21598f90dbaSZhi Yong Wu 
2169e0b22f4SStefan Hajnoczi /* check if the path starts with "<protocol>:" */
2179e0b22f4SStefan Hajnoczi static int path_has_protocol(const char *path)
2189e0b22f4SStefan Hajnoczi {
219947995c0SPaolo Bonzini     const char *p;
220947995c0SPaolo Bonzini 
2219e0b22f4SStefan Hajnoczi #ifdef _WIN32
2229e0b22f4SStefan Hajnoczi     if (is_windows_drive(path) ||
2239e0b22f4SStefan Hajnoczi         is_windows_drive_prefix(path)) {
2249e0b22f4SStefan Hajnoczi         return 0;
2259e0b22f4SStefan Hajnoczi     }
226947995c0SPaolo Bonzini     p = path + strcspn(path, ":/\\");
227947995c0SPaolo Bonzini #else
228947995c0SPaolo Bonzini     p = path + strcspn(path, ":/");
2299e0b22f4SStefan Hajnoczi #endif
2309e0b22f4SStefan Hajnoczi 
231947995c0SPaolo Bonzini     return *p == ':';
2329e0b22f4SStefan Hajnoczi }
2339e0b22f4SStefan Hajnoczi 
23483f64091Sbellard int path_is_absolute(const char *path)
23583f64091Sbellard {
23621664424Sbellard #ifdef _WIN32
23721664424Sbellard     /* specific case for names like: "\\.\d:" */
238f53f4da9SPaolo Bonzini     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
23921664424Sbellard         return 1;
240f53f4da9SPaolo Bonzini     }
241f53f4da9SPaolo Bonzini     return (*path == '/' || *path == '\\');
2423b9f94e1Sbellard #else
243f53f4da9SPaolo Bonzini     return (*path == '/');
2443b9f94e1Sbellard #endif
24583f64091Sbellard }
24683f64091Sbellard 
24783f64091Sbellard /* if filename is absolute, just copy it to dest. Otherwise, build a
24883f64091Sbellard    path to it by considering it is relative to base_path. URL are
24983f64091Sbellard    supported. */
25083f64091Sbellard void path_combine(char *dest, int dest_size,
25183f64091Sbellard                   const char *base_path,
25283f64091Sbellard                   const char *filename)
25383f64091Sbellard {
25483f64091Sbellard     const char *p, *p1;
25583f64091Sbellard     int len;
25683f64091Sbellard 
25783f64091Sbellard     if (dest_size <= 0)
25883f64091Sbellard         return;
25983f64091Sbellard     if (path_is_absolute(filename)) {
26083f64091Sbellard         pstrcpy(dest, dest_size, filename);
26183f64091Sbellard     } else {
26283f64091Sbellard         p = strchr(base_path, ':');
26383f64091Sbellard         if (p)
26483f64091Sbellard             p++;
26583f64091Sbellard         else
26683f64091Sbellard             p = base_path;
2673b9f94e1Sbellard         p1 = strrchr(base_path, '/');
2683b9f94e1Sbellard #ifdef _WIN32
2693b9f94e1Sbellard         {
2703b9f94e1Sbellard             const char *p2;
2713b9f94e1Sbellard             p2 = strrchr(base_path, '\\');
2723b9f94e1Sbellard             if (!p1 || p2 > p1)
2733b9f94e1Sbellard                 p1 = p2;
2743b9f94e1Sbellard         }
2753b9f94e1Sbellard #endif
27683f64091Sbellard         if (p1)
27783f64091Sbellard             p1++;
27883f64091Sbellard         else
27983f64091Sbellard             p1 = base_path;
28083f64091Sbellard         if (p1 > p)
28183f64091Sbellard             p = p1;
28283f64091Sbellard         len = p - base_path;
28383f64091Sbellard         if (len > dest_size - 1)
28483f64091Sbellard             len = dest_size - 1;
28583f64091Sbellard         memcpy(dest, base_path, len);
28683f64091Sbellard         dest[len] = '\0';
28783f64091Sbellard         pstrcat(dest, dest_size, filename);
28883f64091Sbellard     }
28983f64091Sbellard }
29083f64091Sbellard 
291dc5a1371SPaolo Bonzini void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz)
292dc5a1371SPaolo Bonzini {
293dc5a1371SPaolo Bonzini     if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) {
294dc5a1371SPaolo Bonzini         pstrcpy(dest, sz, bs->backing_file);
295dc5a1371SPaolo Bonzini     } else {
296dc5a1371SPaolo Bonzini         path_combine(dest, sz, bs->filename, bs->backing_file);
297dc5a1371SPaolo Bonzini     }
298dc5a1371SPaolo Bonzini }
299dc5a1371SPaolo Bonzini 
3005efa9d5aSAnthony Liguori void bdrv_register(BlockDriver *bdrv)
301ea2384d3Sbellard {
3028c5873d6SStefan Hajnoczi     /* Block drivers without coroutine functions need emulation */
3038c5873d6SStefan Hajnoczi     if (!bdrv->bdrv_co_readv) {
304f9f05dc5SKevin Wolf         bdrv->bdrv_co_readv = bdrv_co_readv_em;
305f9f05dc5SKevin Wolf         bdrv->bdrv_co_writev = bdrv_co_writev_em;
306f9f05dc5SKevin Wolf 
307f8c35c1dSStefan Hajnoczi         /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
308f8c35c1dSStefan Hajnoczi          * the block driver lacks aio we need to emulate that too.
309f8c35c1dSStefan Hajnoczi          */
310f9f05dc5SKevin Wolf         if (!bdrv->bdrv_aio_readv) {
31183f64091Sbellard             /* add AIO emulation layer */
312f141eafeSaliguori             bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
313f141eafeSaliguori             bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
31483f64091Sbellard         }
315f9f05dc5SKevin Wolf     }
316b2e12bc6SChristoph Hellwig 
3178a22f02aSStefan Hajnoczi     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
318ea2384d3Sbellard }
319b338082bSbellard 
320b338082bSbellard /* create a new block device (by default it is empty) */
321b338082bSbellard BlockDriverState *bdrv_new(const char *device_name)
322fc01f7e7Sbellard {
3231b7bdbc1SStefan Hajnoczi     BlockDriverState *bs;
324b338082bSbellard 
3257267c094SAnthony Liguori     bs = g_malloc0(sizeof(BlockDriverState));
326b338082bSbellard     pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
327ea2384d3Sbellard     if (device_name[0] != '\0') {
3281b7bdbc1SStefan Hajnoczi         QTAILQ_INSERT_TAIL(&bdrv_states, bs, list);
329ea2384d3Sbellard     }
33028a7282aSLuiz Capitulino     bdrv_iostatus_disable(bs);
331d7d512f6SPaolo Bonzini     notifier_list_init(&bs->close_notifiers);
332d616b224SStefan Hajnoczi     notifier_with_return_list_init(&bs->before_write_notifiers);
333cc0681c4SBenoît Canet     qemu_co_queue_init(&bs->throttled_reqs[0]);
334cc0681c4SBenoît Canet     qemu_co_queue_init(&bs->throttled_reqs[1]);
3359fcb0251SFam Zheng     bs->refcnt = 1;
336d7d512f6SPaolo Bonzini 
337b338082bSbellard     return bs;
338b338082bSbellard }
339b338082bSbellard 
340d7d512f6SPaolo Bonzini void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify)
341d7d512f6SPaolo Bonzini {
342d7d512f6SPaolo Bonzini     notifier_list_add(&bs->close_notifiers, notify);
343d7d512f6SPaolo Bonzini }
344d7d512f6SPaolo Bonzini 
345ea2384d3Sbellard BlockDriver *bdrv_find_format(const char *format_name)
346ea2384d3Sbellard {
347ea2384d3Sbellard     BlockDriver *drv1;
3488a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
3498a22f02aSStefan Hajnoczi         if (!strcmp(drv1->format_name, format_name)) {
350ea2384d3Sbellard             return drv1;
351ea2384d3Sbellard         }
3528a22f02aSStefan Hajnoczi     }
353ea2384d3Sbellard     return NULL;
354ea2384d3Sbellard }
355ea2384d3Sbellard 
356b64ec4e4SFam Zheng static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
357eb852011SMarkus Armbruster {
358b64ec4e4SFam Zheng     static const char *whitelist_rw[] = {
359b64ec4e4SFam Zheng         CONFIG_BDRV_RW_WHITELIST
360b64ec4e4SFam Zheng     };
361b64ec4e4SFam Zheng     static const char *whitelist_ro[] = {
362b64ec4e4SFam Zheng         CONFIG_BDRV_RO_WHITELIST
363eb852011SMarkus Armbruster     };
364eb852011SMarkus Armbruster     const char **p;
365eb852011SMarkus Armbruster 
366b64ec4e4SFam Zheng     if (!whitelist_rw[0] && !whitelist_ro[0]) {
367eb852011SMarkus Armbruster         return 1;               /* no whitelist, anything goes */
368b64ec4e4SFam Zheng     }
369eb852011SMarkus Armbruster 
370b64ec4e4SFam Zheng     for (p = whitelist_rw; *p; p++) {
371eb852011SMarkus Armbruster         if (!strcmp(drv->format_name, *p)) {
372eb852011SMarkus Armbruster             return 1;
373eb852011SMarkus Armbruster         }
374eb852011SMarkus Armbruster     }
375b64ec4e4SFam Zheng     if (read_only) {
376b64ec4e4SFam Zheng         for (p = whitelist_ro; *p; p++) {
377b64ec4e4SFam Zheng             if (!strcmp(drv->format_name, *p)) {
378b64ec4e4SFam Zheng                 return 1;
379b64ec4e4SFam Zheng             }
380b64ec4e4SFam Zheng         }
381b64ec4e4SFam Zheng     }
382eb852011SMarkus Armbruster     return 0;
383eb852011SMarkus Armbruster }
384eb852011SMarkus Armbruster 
385b64ec4e4SFam Zheng BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
386b64ec4e4SFam Zheng                                           bool read_only)
387eb852011SMarkus Armbruster {
388eb852011SMarkus Armbruster     BlockDriver *drv = bdrv_find_format(format_name);
389b64ec4e4SFam Zheng     return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL;
390eb852011SMarkus Armbruster }
391eb852011SMarkus Armbruster 
3925b7e1542SZhi Yong Wu typedef struct CreateCo {
3935b7e1542SZhi Yong Wu     BlockDriver *drv;
3945b7e1542SZhi Yong Wu     char *filename;
3955b7e1542SZhi Yong Wu     QEMUOptionParameter *options;
3965b7e1542SZhi Yong Wu     int ret;
397*cc84d90fSMax Reitz     Error *err;
3985b7e1542SZhi Yong Wu } CreateCo;
3995b7e1542SZhi Yong Wu 
4005b7e1542SZhi Yong Wu static void coroutine_fn bdrv_create_co_entry(void *opaque)
4015b7e1542SZhi Yong Wu {
402*cc84d90fSMax Reitz     Error *local_err = NULL;
403*cc84d90fSMax Reitz     int ret;
404*cc84d90fSMax Reitz 
4055b7e1542SZhi Yong Wu     CreateCo *cco = opaque;
4065b7e1542SZhi Yong Wu     assert(cco->drv);
4075b7e1542SZhi Yong Wu 
408*cc84d90fSMax Reitz     ret = cco->drv->bdrv_create(cco->filename, cco->options, &local_err);
409*cc84d90fSMax Reitz     if (error_is_set(&local_err)) {
410*cc84d90fSMax Reitz         error_propagate(&cco->err, local_err);
411*cc84d90fSMax Reitz     }
412*cc84d90fSMax Reitz     cco->ret = ret;
4135b7e1542SZhi Yong Wu }
4145b7e1542SZhi Yong Wu 
4150e7e1989SKevin Wolf int bdrv_create(BlockDriver *drv, const char* filename,
416*cc84d90fSMax Reitz     QEMUOptionParameter *options, Error **errp)
417ea2384d3Sbellard {
4185b7e1542SZhi Yong Wu     int ret;
4190e7e1989SKevin Wolf 
4205b7e1542SZhi Yong Wu     Coroutine *co;
4215b7e1542SZhi Yong Wu     CreateCo cco = {
4225b7e1542SZhi Yong Wu         .drv = drv,
4235b7e1542SZhi Yong Wu         .filename = g_strdup(filename),
4245b7e1542SZhi Yong Wu         .options = options,
4255b7e1542SZhi Yong Wu         .ret = NOT_DONE,
426*cc84d90fSMax Reitz         .err = NULL,
4275b7e1542SZhi Yong Wu     };
4285b7e1542SZhi Yong Wu 
4295b7e1542SZhi Yong Wu     if (!drv->bdrv_create) {
430*cc84d90fSMax Reitz         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
43180168bffSLuiz Capitulino         ret = -ENOTSUP;
43280168bffSLuiz Capitulino         goto out;
4335b7e1542SZhi Yong Wu     }
4345b7e1542SZhi Yong Wu 
4355b7e1542SZhi Yong Wu     if (qemu_in_coroutine()) {
4365b7e1542SZhi Yong Wu         /* Fast-path if already in coroutine context */
4375b7e1542SZhi Yong Wu         bdrv_create_co_entry(&cco);
4385b7e1542SZhi Yong Wu     } else {
4395b7e1542SZhi Yong Wu         co = qemu_coroutine_create(bdrv_create_co_entry);
4405b7e1542SZhi Yong Wu         qemu_coroutine_enter(co, &cco);
4415b7e1542SZhi Yong Wu         while (cco.ret == NOT_DONE) {
4425b7e1542SZhi Yong Wu             qemu_aio_wait();
4435b7e1542SZhi Yong Wu         }
4445b7e1542SZhi Yong Wu     }
4455b7e1542SZhi Yong Wu 
4465b7e1542SZhi Yong Wu     ret = cco.ret;
447*cc84d90fSMax Reitz     if (ret < 0) {
448*cc84d90fSMax Reitz         if (error_is_set(&cco.err)) {
449*cc84d90fSMax Reitz             error_propagate(errp, cco.err);
450*cc84d90fSMax Reitz         } else {
451*cc84d90fSMax Reitz             error_setg_errno(errp, -ret, "Could not create image");
452*cc84d90fSMax Reitz         }
453*cc84d90fSMax Reitz     }
4545b7e1542SZhi Yong Wu 
45580168bffSLuiz Capitulino out:
45680168bffSLuiz Capitulino     g_free(cco.filename);
4575b7e1542SZhi Yong Wu     return ret;
458ea2384d3Sbellard }
459ea2384d3Sbellard 
460*cc84d90fSMax Reitz int bdrv_create_file(const char* filename, QEMUOptionParameter *options,
461*cc84d90fSMax Reitz                      Error **errp)
46284a12e66SChristoph Hellwig {
46384a12e66SChristoph Hellwig     BlockDriver *drv;
464*cc84d90fSMax Reitz     Error *local_err = NULL;
465*cc84d90fSMax Reitz     int ret;
46684a12e66SChristoph Hellwig 
46798289620SKevin Wolf     drv = bdrv_find_protocol(filename, true);
46884a12e66SChristoph Hellwig     if (drv == NULL) {
469*cc84d90fSMax Reitz         error_setg(errp, "Could not find protocol for file '%s'", filename);
47016905d71SStefan Hajnoczi         return -ENOENT;
47184a12e66SChristoph Hellwig     }
47284a12e66SChristoph Hellwig 
473*cc84d90fSMax Reitz     ret = bdrv_create(drv, filename, options, &local_err);
474*cc84d90fSMax Reitz     if (error_is_set(&local_err)) {
475*cc84d90fSMax Reitz         error_propagate(errp, local_err);
476*cc84d90fSMax Reitz     }
477*cc84d90fSMax Reitz     return ret;
47884a12e66SChristoph Hellwig }
47984a12e66SChristoph Hellwig 
480eba25057SJim Meyering /*
481eba25057SJim Meyering  * Create a uniquely-named empty temporary file.
482eba25057SJim Meyering  * Return 0 upon success, otherwise a negative errno value.
483eba25057SJim Meyering  */
484eba25057SJim Meyering int get_tmp_filename(char *filename, int size)
485eba25057SJim Meyering {
486d5249393Sbellard #ifdef _WIN32
4873b9f94e1Sbellard     char temp_dir[MAX_PATH];
488eba25057SJim Meyering     /* GetTempFileName requires that its output buffer (4th param)
489eba25057SJim Meyering        have length MAX_PATH or greater.  */
490eba25057SJim Meyering     assert(size >= MAX_PATH);
491eba25057SJim Meyering     return (GetTempPath(MAX_PATH, temp_dir)
492eba25057SJim Meyering             && GetTempFileName(temp_dir, "qem", 0, filename)
493eba25057SJim Meyering             ? 0 : -GetLastError());
494d5249393Sbellard #else
495ea2384d3Sbellard     int fd;
4967ccfb2ebSblueswir1     const char *tmpdir;
4970badc1eeSaurel32     tmpdir = getenv("TMPDIR");
4980badc1eeSaurel32     if (!tmpdir)
4990badc1eeSaurel32         tmpdir = "/tmp";
500eba25057SJim Meyering     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
501eba25057SJim Meyering         return -EOVERFLOW;
502ea2384d3Sbellard     }
503eba25057SJim Meyering     fd = mkstemp(filename);
504fe235a06SDunrong Huang     if (fd < 0) {
505fe235a06SDunrong Huang         return -errno;
506fe235a06SDunrong Huang     }
507fe235a06SDunrong Huang     if (close(fd) != 0) {
508fe235a06SDunrong Huang         unlink(filename);
509eba25057SJim Meyering         return -errno;
510eba25057SJim Meyering     }
511eba25057SJim Meyering     return 0;
512d5249393Sbellard #endif
513eba25057SJim Meyering }
514ea2384d3Sbellard 
515f3a5d3f8SChristoph Hellwig /*
516f3a5d3f8SChristoph Hellwig  * Detect host devices. By convention, /dev/cdrom[N] is always
517f3a5d3f8SChristoph Hellwig  * recognized as a host CDROM.
518f3a5d3f8SChristoph Hellwig  */
519f3a5d3f8SChristoph Hellwig static BlockDriver *find_hdev_driver(const char *filename)
520f3a5d3f8SChristoph Hellwig {
521508c7cb3SChristoph Hellwig     int score_max = 0, score;
522508c7cb3SChristoph Hellwig     BlockDriver *drv = NULL, *d;
523f3a5d3f8SChristoph Hellwig 
5248a22f02aSStefan Hajnoczi     QLIST_FOREACH(d, &bdrv_drivers, list) {
525508c7cb3SChristoph Hellwig         if (d->bdrv_probe_device) {
526508c7cb3SChristoph Hellwig             score = d->bdrv_probe_device(filename);
527508c7cb3SChristoph Hellwig             if (score > score_max) {
528508c7cb3SChristoph Hellwig                 score_max = score;
529508c7cb3SChristoph Hellwig                 drv = d;
530f3a5d3f8SChristoph Hellwig             }
531508c7cb3SChristoph Hellwig         }
532f3a5d3f8SChristoph Hellwig     }
533f3a5d3f8SChristoph Hellwig 
534508c7cb3SChristoph Hellwig     return drv;
535f3a5d3f8SChristoph Hellwig }
536f3a5d3f8SChristoph Hellwig 
53798289620SKevin Wolf BlockDriver *bdrv_find_protocol(const char *filename,
53898289620SKevin Wolf                                 bool allow_protocol_prefix)
53984a12e66SChristoph Hellwig {
54084a12e66SChristoph Hellwig     BlockDriver *drv1;
54184a12e66SChristoph Hellwig     char protocol[128];
54284a12e66SChristoph Hellwig     int len;
54384a12e66SChristoph Hellwig     const char *p;
54484a12e66SChristoph Hellwig 
54566f82ceeSKevin Wolf     /* TODO Drivers without bdrv_file_open must be specified explicitly */
54666f82ceeSKevin Wolf 
54739508e7aSChristoph Hellwig     /*
54839508e7aSChristoph Hellwig      * XXX(hch): we really should not let host device detection
54939508e7aSChristoph Hellwig      * override an explicit protocol specification, but moving this
55039508e7aSChristoph Hellwig      * later breaks access to device names with colons in them.
55139508e7aSChristoph Hellwig      * Thanks to the brain-dead persistent naming schemes on udev-
55239508e7aSChristoph Hellwig      * based Linux systems those actually are quite common.
55339508e7aSChristoph Hellwig      */
55484a12e66SChristoph Hellwig     drv1 = find_hdev_driver(filename);
55539508e7aSChristoph Hellwig     if (drv1) {
55684a12e66SChristoph Hellwig         return drv1;
55784a12e66SChristoph Hellwig     }
55839508e7aSChristoph Hellwig 
55998289620SKevin Wolf     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
56039508e7aSChristoph Hellwig         return bdrv_find_format("file");
56139508e7aSChristoph Hellwig     }
56298289620SKevin Wolf 
5639e0b22f4SStefan Hajnoczi     p = strchr(filename, ':');
5649e0b22f4SStefan Hajnoczi     assert(p != NULL);
56584a12e66SChristoph Hellwig     len = p - filename;
56684a12e66SChristoph Hellwig     if (len > sizeof(protocol) - 1)
56784a12e66SChristoph Hellwig         len = sizeof(protocol) - 1;
56884a12e66SChristoph Hellwig     memcpy(protocol, filename, len);
56984a12e66SChristoph Hellwig     protocol[len] = '\0';
57084a12e66SChristoph Hellwig     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
57184a12e66SChristoph Hellwig         if (drv1->protocol_name &&
57284a12e66SChristoph Hellwig             !strcmp(drv1->protocol_name, protocol)) {
57384a12e66SChristoph Hellwig             return drv1;
57484a12e66SChristoph Hellwig         }
57584a12e66SChristoph Hellwig     }
57684a12e66SChristoph Hellwig     return NULL;
57784a12e66SChristoph Hellwig }
57884a12e66SChristoph Hellwig 
579f500a6d3SKevin Wolf static int find_image_format(BlockDriverState *bs, const char *filename,
58034b5d2c6SMax Reitz                              BlockDriver **pdrv, Error **errp)
581ea2384d3Sbellard {
582f500a6d3SKevin Wolf     int score, score_max;
583ea2384d3Sbellard     BlockDriver *drv1, *drv;
58483f64091Sbellard     uint8_t buf[2048];
585f500a6d3SKevin Wolf     int ret = 0;
586f8ea0b00SNicholas Bellinger 
58708a00559SKevin Wolf     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
5888e895599SPaolo Bonzini     if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
589c98ac35dSStefan Weil         drv = bdrv_find_format("raw");
590c98ac35dSStefan Weil         if (!drv) {
59134b5d2c6SMax Reitz             error_setg(errp, "Could not find raw image format");
592c98ac35dSStefan Weil             ret = -ENOENT;
593c98ac35dSStefan Weil         }
594c98ac35dSStefan Weil         *pdrv = drv;
595c98ac35dSStefan Weil         return ret;
5961a396859SNicholas A. Bellinger     }
597f8ea0b00SNicholas Bellinger 
59883f64091Sbellard     ret = bdrv_pread(bs, 0, buf, sizeof(buf));
599ea2384d3Sbellard     if (ret < 0) {
60034b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not read image for determining its "
60134b5d2c6SMax Reitz                          "format");
602c98ac35dSStefan Weil         *pdrv = NULL;
603c98ac35dSStefan Weil         return ret;
604ea2384d3Sbellard     }
605ea2384d3Sbellard 
606ea2384d3Sbellard     score_max = 0;
60784a12e66SChristoph Hellwig     drv = NULL;
6088a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
60983f64091Sbellard         if (drv1->bdrv_probe) {
610ea2384d3Sbellard             score = drv1->bdrv_probe(buf, ret, filename);
611ea2384d3Sbellard             if (score > score_max) {
612ea2384d3Sbellard                 score_max = score;
613ea2384d3Sbellard                 drv = drv1;
614ea2384d3Sbellard             }
615ea2384d3Sbellard         }
61683f64091Sbellard     }
617c98ac35dSStefan Weil     if (!drv) {
61834b5d2c6SMax Reitz         error_setg(errp, "Could not determine image format: No compatible "
61934b5d2c6SMax Reitz                    "driver found");
620c98ac35dSStefan Weil         ret = -ENOENT;
621c98ac35dSStefan Weil     }
622c98ac35dSStefan Weil     *pdrv = drv;
623c98ac35dSStefan Weil     return ret;
624ea2384d3Sbellard }
625ea2384d3Sbellard 
62651762288SStefan Hajnoczi /**
62751762288SStefan Hajnoczi  * Set the current 'total_sectors' value
62851762288SStefan Hajnoczi  */
62951762288SStefan Hajnoczi static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
63051762288SStefan Hajnoczi {
63151762288SStefan Hajnoczi     BlockDriver *drv = bs->drv;
63251762288SStefan Hajnoczi 
633396759adSNicholas Bellinger     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
634396759adSNicholas Bellinger     if (bs->sg)
635396759adSNicholas Bellinger         return 0;
636396759adSNicholas Bellinger 
63751762288SStefan Hajnoczi     /* query actual device if possible, otherwise just trust the hint */
63851762288SStefan Hajnoczi     if (drv->bdrv_getlength) {
63951762288SStefan Hajnoczi         int64_t length = drv->bdrv_getlength(bs);
64051762288SStefan Hajnoczi         if (length < 0) {
64151762288SStefan Hajnoczi             return length;
64251762288SStefan Hajnoczi         }
64351762288SStefan Hajnoczi         hint = length >> BDRV_SECTOR_BITS;
64451762288SStefan Hajnoczi     }
64551762288SStefan Hajnoczi 
64651762288SStefan Hajnoczi     bs->total_sectors = hint;
64751762288SStefan Hajnoczi     return 0;
64851762288SStefan Hajnoczi }
64951762288SStefan Hajnoczi 
650c3993cdcSStefan Hajnoczi /**
6519e8f1835SPaolo Bonzini  * Set open flags for a given discard mode
6529e8f1835SPaolo Bonzini  *
6539e8f1835SPaolo Bonzini  * Return 0 on success, -1 if the discard mode was invalid.
6549e8f1835SPaolo Bonzini  */
6559e8f1835SPaolo Bonzini int bdrv_parse_discard_flags(const char *mode, int *flags)
6569e8f1835SPaolo Bonzini {
6579e8f1835SPaolo Bonzini     *flags &= ~BDRV_O_UNMAP;
6589e8f1835SPaolo Bonzini 
6599e8f1835SPaolo Bonzini     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
6609e8f1835SPaolo Bonzini         /* do nothing */
6619e8f1835SPaolo Bonzini     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
6629e8f1835SPaolo Bonzini         *flags |= BDRV_O_UNMAP;
6639e8f1835SPaolo Bonzini     } else {
6649e8f1835SPaolo Bonzini         return -1;
6659e8f1835SPaolo Bonzini     }
6669e8f1835SPaolo Bonzini 
6679e8f1835SPaolo Bonzini     return 0;
6689e8f1835SPaolo Bonzini }
6699e8f1835SPaolo Bonzini 
6709e8f1835SPaolo Bonzini /**
671c3993cdcSStefan Hajnoczi  * Set open flags for a given cache mode
672c3993cdcSStefan Hajnoczi  *
673c3993cdcSStefan Hajnoczi  * Return 0 on success, -1 if the cache mode was invalid.
674c3993cdcSStefan Hajnoczi  */
675c3993cdcSStefan Hajnoczi int bdrv_parse_cache_flags(const char *mode, int *flags)
676c3993cdcSStefan Hajnoczi {
677c3993cdcSStefan Hajnoczi     *flags &= ~BDRV_O_CACHE_MASK;
678c3993cdcSStefan Hajnoczi 
679c3993cdcSStefan Hajnoczi     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
680c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
68192196b2fSStefan Hajnoczi     } else if (!strcmp(mode, "directsync")) {
68292196b2fSStefan Hajnoczi         *flags |= BDRV_O_NOCACHE;
683c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writeback")) {
684c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_CACHE_WB;
685c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "unsafe")) {
686c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_CACHE_WB;
687c3993cdcSStefan Hajnoczi         *flags |= BDRV_O_NO_FLUSH;
688c3993cdcSStefan Hajnoczi     } else if (!strcmp(mode, "writethrough")) {
689c3993cdcSStefan Hajnoczi         /* this is the default */
690c3993cdcSStefan Hajnoczi     } else {
691c3993cdcSStefan Hajnoczi         return -1;
692c3993cdcSStefan Hajnoczi     }
693c3993cdcSStefan Hajnoczi 
694c3993cdcSStefan Hajnoczi     return 0;
695c3993cdcSStefan Hajnoczi }
696c3993cdcSStefan Hajnoczi 
69753fec9d3SStefan Hajnoczi /**
69853fec9d3SStefan Hajnoczi  * The copy-on-read flag is actually a reference count so multiple users may
69953fec9d3SStefan Hajnoczi  * use the feature without worrying about clobbering its previous state.
70053fec9d3SStefan Hajnoczi  * Copy-on-read stays enabled until all users have called to disable it.
70153fec9d3SStefan Hajnoczi  */
70253fec9d3SStefan Hajnoczi void bdrv_enable_copy_on_read(BlockDriverState *bs)
70353fec9d3SStefan Hajnoczi {
70453fec9d3SStefan Hajnoczi     bs->copy_on_read++;
70553fec9d3SStefan Hajnoczi }
70653fec9d3SStefan Hajnoczi 
70753fec9d3SStefan Hajnoczi void bdrv_disable_copy_on_read(BlockDriverState *bs)
70853fec9d3SStefan Hajnoczi {
70953fec9d3SStefan Hajnoczi     assert(bs->copy_on_read > 0);
71053fec9d3SStefan Hajnoczi     bs->copy_on_read--;
71153fec9d3SStefan Hajnoczi }
71253fec9d3SStefan Hajnoczi 
7137b272452SKevin Wolf static int bdrv_open_flags(BlockDriverState *bs, int flags)
7147b272452SKevin Wolf {
7157b272452SKevin Wolf     int open_flags = flags | BDRV_O_CACHE_WB;
7167b272452SKevin Wolf 
7177b272452SKevin Wolf     /*
7187b272452SKevin Wolf      * Clear flags that are internal to the block layer before opening the
7197b272452SKevin Wolf      * image.
7207b272452SKevin Wolf      */
7217b272452SKevin Wolf     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
7227b272452SKevin Wolf 
7237b272452SKevin Wolf     /*
7247b272452SKevin Wolf      * Snapshots should be writable.
7257b272452SKevin Wolf      */
7267b272452SKevin Wolf     if (bs->is_temporary) {
7277b272452SKevin Wolf         open_flags |= BDRV_O_RDWR;
7287b272452SKevin Wolf     }
7297b272452SKevin Wolf 
7307b272452SKevin Wolf     return open_flags;
7317b272452SKevin Wolf }
7327b272452SKevin Wolf 
733b6ce07aaSKevin Wolf /*
73457915332SKevin Wolf  * Common part for opening disk images and files
735b6ad491aSKevin Wolf  *
736b6ad491aSKevin Wolf  * Removes all processed options from *options.
73757915332SKevin Wolf  */
738f500a6d3SKevin Wolf static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file,
73934b5d2c6SMax Reitz     QDict *options, int flags, BlockDriver *drv, Error **errp)
74057915332SKevin Wolf {
74157915332SKevin Wolf     int ret, open_flags;
742035fccdfSKevin Wolf     const char *filename;
74334b5d2c6SMax Reitz     Error *local_err = NULL;
74457915332SKevin Wolf 
74557915332SKevin Wolf     assert(drv != NULL);
7466405875cSPaolo Bonzini     assert(bs->file == NULL);
747707ff828SKevin Wolf     assert(options != NULL && bs->options != options);
74857915332SKevin Wolf 
74945673671SKevin Wolf     if (file != NULL) {
75045673671SKevin Wolf         filename = file->filename;
75145673671SKevin Wolf     } else {
75245673671SKevin Wolf         filename = qdict_get_try_str(options, "filename");
75345673671SKevin Wolf     }
75445673671SKevin Wolf 
75545673671SKevin Wolf     trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name);
75628dcee10SStefan Hajnoczi 
7575d186eb0SKevin Wolf     /* bdrv_open() with directly using a protocol as drv. This layer is already
7585d186eb0SKevin Wolf      * opened, so assign it to bs (while file becomes a closed BlockDriverState)
7595d186eb0SKevin Wolf      * and return immediately. */
7605d186eb0SKevin Wolf     if (file != NULL && drv->bdrv_file_open) {
7615d186eb0SKevin Wolf         bdrv_swap(file, bs);
7625d186eb0SKevin Wolf         return 0;
7635d186eb0SKevin Wolf     }
7645d186eb0SKevin Wolf 
76557915332SKevin Wolf     bs->open_flags = flags;
76657915332SKevin Wolf     bs->buffer_alignment = 512;
7670d51b4deSAsias He     bs->zero_beyond_eof = true;
768b64ec4e4SFam Zheng     open_flags = bdrv_open_flags(bs, flags);
769b64ec4e4SFam Zheng     bs->read_only = !(open_flags & BDRV_O_RDWR);
770b64ec4e4SFam Zheng 
771b64ec4e4SFam Zheng     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
77234b5d2c6SMax Reitz         error_setg(errp, "Driver '%s' is not whitelisted", drv->format_name);
773b64ec4e4SFam Zheng         return -ENOTSUP;
774b64ec4e4SFam Zheng     }
77557915332SKevin Wolf 
77653fec9d3SStefan Hajnoczi     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
777b64ec4e4SFam Zheng     if (!bs->read_only && (flags & BDRV_O_COPY_ON_READ)) {
77853fec9d3SStefan Hajnoczi         bdrv_enable_copy_on_read(bs);
77953fec9d3SStefan Hajnoczi     }
78053fec9d3SStefan Hajnoczi 
781c2ad1b0cSKevin Wolf     if (filename != NULL) {
78257915332SKevin Wolf         pstrcpy(bs->filename, sizeof(bs->filename), filename);
783c2ad1b0cSKevin Wolf     } else {
784c2ad1b0cSKevin Wolf         bs->filename[0] = '\0';
785c2ad1b0cSKevin Wolf     }
78657915332SKevin Wolf 
78757915332SKevin Wolf     bs->drv = drv;
7887267c094SAnthony Liguori     bs->opaque = g_malloc0(drv->instance_size);
78957915332SKevin Wolf 
79003f541bdSStefan Hajnoczi     bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
791e7c63796SStefan Hajnoczi 
79266f82ceeSKevin Wolf     /* Open the image, either directly or using a protocol */
79366f82ceeSKevin Wolf     if (drv->bdrv_file_open) {
7945d186eb0SKevin Wolf         assert(file == NULL);
795c2ad1b0cSKevin Wolf         assert(drv->bdrv_parse_filename || filename != NULL);
79634b5d2c6SMax Reitz         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
797f500a6d3SKevin Wolf     } else {
7982af5ef70SKevin Wolf         if (file == NULL) {
79934b5d2c6SMax Reitz             error_setg(errp, "Can't use '%s' as a block driver for the "
80034b5d2c6SMax Reitz                        "protocol level", drv->format_name);
8012af5ef70SKevin Wolf             ret = -EINVAL;
8022af5ef70SKevin Wolf             goto free_and_fail;
8032af5ef70SKevin Wolf         }
804f500a6d3SKevin Wolf         bs->file = file;
80534b5d2c6SMax Reitz         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
80666f82ceeSKevin Wolf     }
80766f82ceeSKevin Wolf 
80857915332SKevin Wolf     if (ret < 0) {
80934b5d2c6SMax Reitz         if (error_is_set(&local_err)) {
81034b5d2c6SMax Reitz             error_propagate(errp, local_err);
81134b5d2c6SMax Reitz         } else if (filename) {
81234b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open '%s'", filename);
81334b5d2c6SMax Reitz         } else {
81434b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not open image");
81534b5d2c6SMax Reitz         }
81657915332SKevin Wolf         goto free_and_fail;
81757915332SKevin Wolf     }
81857915332SKevin Wolf 
81951762288SStefan Hajnoczi     ret = refresh_total_sectors(bs, bs->total_sectors);
82051762288SStefan Hajnoczi     if (ret < 0) {
82134b5d2c6SMax Reitz         error_setg_errno(errp, -ret, "Could not refresh total sector count");
82251762288SStefan Hajnoczi         goto free_and_fail;
82357915332SKevin Wolf     }
82451762288SStefan Hajnoczi 
82557915332SKevin Wolf #ifndef _WIN32
82657915332SKevin Wolf     if (bs->is_temporary) {
827c2ad1b0cSKevin Wolf         assert(filename != NULL);
82857915332SKevin Wolf         unlink(filename);
82957915332SKevin Wolf     }
83057915332SKevin Wolf #endif
83157915332SKevin Wolf     return 0;
83257915332SKevin Wolf 
83357915332SKevin Wolf free_and_fail:
83466f82ceeSKevin Wolf     bs->file = NULL;
8357267c094SAnthony Liguori     g_free(bs->opaque);
83657915332SKevin Wolf     bs->opaque = NULL;
83757915332SKevin Wolf     bs->drv = NULL;
83857915332SKevin Wolf     return ret;
83957915332SKevin Wolf }
84057915332SKevin Wolf 
84157915332SKevin Wolf /*
842b6ce07aaSKevin Wolf  * Opens a file using a protocol (file, host_device, nbd, ...)
843787e4a85SKevin Wolf  *
844787e4a85SKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
845787e4a85SKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
846787e4a85SKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
847787e4a85SKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_file_open.
848b6ce07aaSKevin Wolf  */
849787e4a85SKevin Wolf int bdrv_file_open(BlockDriverState **pbs, const char *filename,
85034b5d2c6SMax Reitz                    QDict *options, int flags, Error **errp)
851b338082bSbellard {
85283f64091Sbellard     BlockDriverState *bs;
8536db95603SChristoph Hellwig     BlockDriver *drv;
854c2ad1b0cSKevin Wolf     const char *drvname;
85598289620SKevin Wolf     bool allow_protocol_prefix = false;
85634b5d2c6SMax Reitz     Error *local_err = NULL;
85783f64091Sbellard     int ret;
8583b0d4f61Sbellard 
859707ff828SKevin Wolf     /* NULL means an empty set of options */
860707ff828SKevin Wolf     if (options == NULL) {
861707ff828SKevin Wolf         options = qdict_new();
8623b0d4f61Sbellard     }
863707ff828SKevin Wolf 
864707ff828SKevin Wolf     bs = bdrv_new("");
865707ff828SKevin Wolf     bs->options = options;
866707ff828SKevin Wolf     options = qdict_clone_shallow(options);
867707ff828SKevin Wolf 
868035fccdfSKevin Wolf     /* Fetch the file name from the options QDict if necessary */
869035fccdfSKevin Wolf     if (!filename) {
870035fccdfSKevin Wolf         filename = qdict_get_try_str(options, "filename");
871035fccdfSKevin Wolf     } else if (filename && !qdict_haskey(options, "filename")) {
872035fccdfSKevin Wolf         qdict_put(options, "filename", qstring_from_str(filename));
87398289620SKevin Wolf         allow_protocol_prefix = true;
874035fccdfSKevin Wolf     } else {
87534b5d2c6SMax Reitz         error_setg(errp, "Can't specify 'file' and 'filename' options at the "
87634b5d2c6SMax Reitz                    "same time");
877035fccdfSKevin Wolf         ret = -EINVAL;
878035fccdfSKevin Wolf         goto fail;
879035fccdfSKevin Wolf     }
880035fccdfSKevin Wolf 
881c2ad1b0cSKevin Wolf     /* Find the right block driver */
882c2ad1b0cSKevin Wolf     drvname = qdict_get_try_str(options, "driver");
883c2ad1b0cSKevin Wolf     if (drvname) {
884b64ec4e4SFam Zheng         drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR));
88534b5d2c6SMax Reitz         if (!drv) {
88634b5d2c6SMax Reitz             error_setg(errp, "Unknown driver '%s'", drvname);
88734b5d2c6SMax Reitz         }
888c2ad1b0cSKevin Wolf         qdict_del(options, "driver");
889c2ad1b0cSKevin Wolf     } else if (filename) {
89098289620SKevin Wolf         drv = bdrv_find_protocol(filename, allow_protocol_prefix);
89198289620SKevin Wolf         if (!drv) {
89234b5d2c6SMax Reitz             error_setg(errp, "Unknown protocol");
89398289620SKevin Wolf         }
894c2ad1b0cSKevin Wolf     } else {
89534b5d2c6SMax Reitz         error_setg(errp, "Must specify either driver or file");
896c2ad1b0cSKevin Wolf         drv = NULL;
897c2ad1b0cSKevin Wolf     }
898c2ad1b0cSKevin Wolf 
899c2ad1b0cSKevin Wolf     if (!drv) {
90034b5d2c6SMax Reitz         /* errp has been set already */
901c2ad1b0cSKevin Wolf         ret = -ENOENT;
902c2ad1b0cSKevin Wolf         goto fail;
903c2ad1b0cSKevin Wolf     }
904c2ad1b0cSKevin Wolf 
905c2ad1b0cSKevin Wolf     /* Parse the filename and open it */
906c2ad1b0cSKevin Wolf     if (drv->bdrv_parse_filename && filename) {
9076963a30dSKevin Wolf         drv->bdrv_parse_filename(filename, options, &local_err);
9086963a30dSKevin Wolf         if (error_is_set(&local_err)) {
90934b5d2c6SMax Reitz             error_propagate(errp, local_err);
9106963a30dSKevin Wolf             ret = -EINVAL;
9116963a30dSKevin Wolf             goto fail;
9126963a30dSKevin Wolf         }
91356d1b4d2SKevin Wolf         qdict_del(options, "filename");
914c2ad1b0cSKevin Wolf     } else if (!drv->bdrv_parse_filename && !filename) {
91534b5d2c6SMax Reitz         error_setg(errp, "The '%s' block driver requires a file name",
916c2ad1b0cSKevin Wolf                    drv->format_name);
917c2ad1b0cSKevin Wolf         ret = -EINVAL;
918c2ad1b0cSKevin Wolf         goto fail;
9196963a30dSKevin Wolf     }
9206963a30dSKevin Wolf 
92134b5d2c6SMax Reitz     ret = bdrv_open_common(bs, NULL, options, flags, drv, &local_err);
922707ff828SKevin Wolf     if (ret < 0) {
92334b5d2c6SMax Reitz         error_propagate(errp, local_err);
924707ff828SKevin Wolf         goto fail;
925707ff828SKevin Wolf     }
926707ff828SKevin Wolf 
927707ff828SKevin Wolf     /* Check if any unknown options were used */
928707ff828SKevin Wolf     if (qdict_size(options) != 0) {
929707ff828SKevin Wolf         const QDictEntry *entry = qdict_first(options);
93034b5d2c6SMax Reitz         error_setg(errp, "Block protocol '%s' doesn't support the option '%s'",
931707ff828SKevin Wolf                    drv->format_name, entry->key);
932707ff828SKevin Wolf         ret = -EINVAL;
933707ff828SKevin Wolf         goto fail;
934707ff828SKevin Wolf     }
935707ff828SKevin Wolf     QDECREF(options);
936707ff828SKevin Wolf 
93771d0770cSaliguori     bs->growable = 1;
93883f64091Sbellard     *pbs = bs;
93983f64091Sbellard     return 0;
940707ff828SKevin Wolf 
941707ff828SKevin Wolf fail:
942707ff828SKevin Wolf     QDECREF(options);
943707ff828SKevin Wolf     if (!bs->drv) {
944707ff828SKevin Wolf         QDECREF(bs->options);
945707ff828SKevin Wolf     }
9464f6fd349SFam Zheng     bdrv_unref(bs);
947707ff828SKevin Wolf     return ret;
9483b0d4f61Sbellard }
9493b0d4f61Sbellard 
95031ca6d07SKevin Wolf /*
95131ca6d07SKevin Wolf  * Opens the backing file for a BlockDriverState if not yet open
95231ca6d07SKevin Wolf  *
95331ca6d07SKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
95431ca6d07SKevin Wolf  * empty set of options. The reference to the QDict is transferred to this
95531ca6d07SKevin Wolf  * function (even on failure), so if the caller intends to reuse the dictionary,
95631ca6d07SKevin Wolf  * it needs to use QINCREF() before calling bdrv_file_open.
95731ca6d07SKevin Wolf  */
95834b5d2c6SMax Reitz int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp)
9599156df12SPaolo Bonzini {
9609156df12SPaolo Bonzini     char backing_filename[PATH_MAX];
9619156df12SPaolo Bonzini     int back_flags, ret;
9629156df12SPaolo Bonzini     BlockDriver *back_drv = NULL;
96334b5d2c6SMax Reitz     Error *local_err = NULL;
9649156df12SPaolo Bonzini 
9659156df12SPaolo Bonzini     if (bs->backing_hd != NULL) {
96631ca6d07SKevin Wolf         QDECREF(options);
9679156df12SPaolo Bonzini         return 0;
9689156df12SPaolo Bonzini     }
9699156df12SPaolo Bonzini 
97031ca6d07SKevin Wolf     /* NULL means an empty set of options */
97131ca6d07SKevin Wolf     if (options == NULL) {
97231ca6d07SKevin Wolf         options = qdict_new();
97331ca6d07SKevin Wolf     }
97431ca6d07SKevin Wolf 
9759156df12SPaolo Bonzini     bs->open_flags &= ~BDRV_O_NO_BACKING;
9761cb6f506SKevin Wolf     if (qdict_haskey(options, "file.filename")) {
9771cb6f506SKevin Wolf         backing_filename[0] = '\0';
9781cb6f506SKevin Wolf     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
97931ca6d07SKevin Wolf         QDECREF(options);
9809156df12SPaolo Bonzini         return 0;
9819156df12SPaolo Bonzini     }
9829156df12SPaolo Bonzini 
9839156df12SPaolo Bonzini     bs->backing_hd = bdrv_new("");
9849156df12SPaolo Bonzini     bdrv_get_full_backing_filename(bs, backing_filename,
9859156df12SPaolo Bonzini                                    sizeof(backing_filename));
9869156df12SPaolo Bonzini 
9879156df12SPaolo Bonzini     if (bs->backing_format[0] != '\0') {
9889156df12SPaolo Bonzini         back_drv = bdrv_find_format(bs->backing_format);
9899156df12SPaolo Bonzini     }
9909156df12SPaolo Bonzini 
9919156df12SPaolo Bonzini     /* backing files always opened read-only */
9929156df12SPaolo Bonzini     back_flags = bs->open_flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT);
9939156df12SPaolo Bonzini 
99431ca6d07SKevin Wolf     ret = bdrv_open(bs->backing_hd,
99531ca6d07SKevin Wolf                     *backing_filename ? backing_filename : NULL, options,
99634b5d2c6SMax Reitz                     back_flags, back_drv, &local_err);
9979156df12SPaolo Bonzini     if (ret < 0) {
9984f6fd349SFam Zheng         bdrv_unref(bs->backing_hd);
9999156df12SPaolo Bonzini         bs->backing_hd = NULL;
10009156df12SPaolo Bonzini         bs->open_flags |= BDRV_O_NO_BACKING;
100134b5d2c6SMax Reitz         error_propagate(errp, local_err);
10029156df12SPaolo Bonzini         return ret;
10039156df12SPaolo Bonzini     }
10049156df12SPaolo Bonzini     return 0;
10059156df12SPaolo Bonzini }
10069156df12SPaolo Bonzini 
1007707ff828SKevin Wolf static void extract_subqdict(QDict *src, QDict **dst, const char *start)
1008707ff828SKevin Wolf {
1009707ff828SKevin Wolf     const QDictEntry *entry, *next;
1010707ff828SKevin Wolf     const char *p;
1011707ff828SKevin Wolf 
1012707ff828SKevin Wolf     *dst = qdict_new();
1013707ff828SKevin Wolf     entry = qdict_first(src);
1014707ff828SKevin Wolf 
1015707ff828SKevin Wolf     while (entry != NULL) {
1016707ff828SKevin Wolf         next = qdict_next(src, entry);
1017707ff828SKevin Wolf         if (strstart(entry->key, start, &p)) {
1018707ff828SKevin Wolf             qobject_incref(entry->value);
1019707ff828SKevin Wolf             qdict_put_obj(*dst, p, entry->value);
1020707ff828SKevin Wolf             qdict_del(src, entry->key);
1021707ff828SKevin Wolf         }
1022707ff828SKevin Wolf         entry = next;
1023707ff828SKevin Wolf     }
1024707ff828SKevin Wolf }
1025707ff828SKevin Wolf 
1026b6ce07aaSKevin Wolf /*
1027b6ce07aaSKevin Wolf  * Opens a disk image (raw, qcow2, vmdk, ...)
1028de9c0cecSKevin Wolf  *
1029de9c0cecSKevin Wolf  * options is a QDict of options to pass to the block drivers, or NULL for an
1030de9c0cecSKevin Wolf  * empty set of options. The reference to the QDict belongs to the block layer
1031de9c0cecSKevin Wolf  * after the call (even on failure), so if the caller intends to reuse the
1032de9c0cecSKevin Wolf  * dictionary, it needs to use QINCREF() before calling bdrv_open.
1033b6ce07aaSKevin Wolf  */
1034de9c0cecSKevin Wolf int bdrv_open(BlockDriverState *bs, const char *filename, QDict *options,
103534b5d2c6SMax Reitz               int flags, BlockDriver *drv, Error **errp)
1036ea2384d3Sbellard {
1037b6ce07aaSKevin Wolf     int ret;
103889c9bc3dSStefan Weil     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
103989c9bc3dSStefan Weil     char tmp_filename[PATH_MAX + 1];
1040f500a6d3SKevin Wolf     BlockDriverState *file = NULL;
1041707ff828SKevin Wolf     QDict *file_options = NULL;
104274fe54f2SKevin Wolf     const char *drvname;
104334b5d2c6SMax Reitz     Error *local_err = NULL;
104433e3963eSbellard 
1045de9c0cecSKevin Wolf     /* NULL means an empty set of options */
1046de9c0cecSKevin Wolf     if (options == NULL) {
1047de9c0cecSKevin Wolf         options = qdict_new();
1048de9c0cecSKevin Wolf     }
1049de9c0cecSKevin Wolf 
1050de9c0cecSKevin Wolf     bs->options = options;
1051b6ad491aSKevin Wolf     options = qdict_clone_shallow(options);
1052de9c0cecSKevin Wolf 
1053de9c0cecSKevin Wolf     /* For snapshot=on, create a temporary qcow2 overlay */
105483f64091Sbellard     if (flags & BDRV_O_SNAPSHOT) {
1055ea2384d3Sbellard         BlockDriverState *bs1;
1056ea2384d3Sbellard         int64_t total_size;
105791a073a9SKevin Wolf         BlockDriver *bdrv_qcow2;
105808b392e1SKevin Wolf         QEMUOptionParameter *create_options;
1059b6ce07aaSKevin Wolf         char backing_filename[PATH_MAX];
106033e3963eSbellard 
1061c2ad1b0cSKevin Wolf         if (qdict_size(options) != 0) {
106234b5d2c6SMax Reitz             error_setg(errp, "Can't use snapshot=on with driver-specific options");
1063c2ad1b0cSKevin Wolf             ret = -EINVAL;
1064c2ad1b0cSKevin Wolf             goto fail;
1065c2ad1b0cSKevin Wolf         }
1066c2ad1b0cSKevin Wolf         assert(filename != NULL);
1067c2ad1b0cSKevin Wolf 
1068ea2384d3Sbellard         /* if snapshot, we create a temporary backing file and open it
1069ea2384d3Sbellard            instead of opening 'filename' directly */
1070ea2384d3Sbellard 
1071ea2384d3Sbellard         /* if there is a backing file, use it */
1072ea2384d3Sbellard         bs1 = bdrv_new("");
107334b5d2c6SMax Reitz         ret = bdrv_open(bs1, filename, NULL, 0, drv, &local_err);
107451d7c00cSaliguori         if (ret < 0) {
10754f6fd349SFam Zheng             bdrv_unref(bs1);
1076de9c0cecSKevin Wolf             goto fail;
1077ea2384d3Sbellard         }
10783e82990bSJes Sorensen         total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK;
10797c96d46eSaliguori 
10804f6fd349SFam Zheng         bdrv_unref(bs1);
1081ea2384d3Sbellard 
1082eba25057SJim Meyering         ret = get_tmp_filename(tmp_filename, sizeof(tmp_filename));
1083eba25057SJim Meyering         if (ret < 0) {
108434b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not get temporary filename");
1085de9c0cecSKevin Wolf             goto fail;
1086eba25057SJim Meyering         }
10877c96d46eSaliguori 
10887c96d46eSaliguori         /* Real path is meaningless for protocols */
10894d70655bSStefan Hajnoczi         if (path_has_protocol(filename)) {
10907c96d46eSaliguori             snprintf(backing_filename, sizeof(backing_filename),
10917c96d46eSaliguori                      "%s", filename);
1092de9c0cecSKevin Wolf         } else if (!realpath(filename, backing_filename)) {
109334b5d2c6SMax Reitz             error_setg_errno(errp, errno, "Could not resolve path '%s'", filename);
1094de9c0cecSKevin Wolf             ret = -errno;
1095de9c0cecSKevin Wolf             goto fail;
1096de9c0cecSKevin Wolf         }
10977c96d46eSaliguori 
109891a073a9SKevin Wolf         bdrv_qcow2 = bdrv_find_format("qcow2");
109908b392e1SKevin Wolf         create_options = parse_option_parameters("", bdrv_qcow2->create_options,
110008b392e1SKevin Wolf                                                  NULL);
110191a073a9SKevin Wolf 
110208b392e1SKevin Wolf         set_option_parameter_int(create_options, BLOCK_OPT_SIZE, total_size);
110308b392e1SKevin Wolf         set_option_parameter(create_options, BLOCK_OPT_BACKING_FILE,
110408b392e1SKevin Wolf                              backing_filename);
110591a073a9SKevin Wolf         if (drv) {
110608b392e1SKevin Wolf             set_option_parameter(create_options, BLOCK_OPT_BACKING_FMT,
110791a073a9SKevin Wolf                 drv->format_name);
110891a073a9SKevin Wolf         }
110991a073a9SKevin Wolf 
1110*cc84d90fSMax Reitz         ret = bdrv_create(bdrv_qcow2, tmp_filename, create_options, &local_err);
111108b392e1SKevin Wolf         free_option_parameters(create_options);
111251d7c00cSaliguori         if (ret < 0) {
111334b5d2c6SMax Reitz             error_setg_errno(errp, -ret, "Could not create temporary overlay "
1114*cc84d90fSMax Reitz                              "'%s': %s", tmp_filename,
1115*cc84d90fSMax Reitz                              error_get_pretty(local_err));
1116*cc84d90fSMax Reitz             error_free(local_err);
1117*cc84d90fSMax Reitz             local_err = NULL;
1118de9c0cecSKevin Wolf             goto fail;
1119ea2384d3Sbellard         }
112091a073a9SKevin Wolf 
1121ea2384d3Sbellard         filename = tmp_filename;
112291a073a9SKevin Wolf         drv = bdrv_qcow2;
1123ea2384d3Sbellard         bs->is_temporary = 1;
1124ea2384d3Sbellard     }
1125ea2384d3Sbellard 
1126f500a6d3SKevin Wolf     /* Open image file without format layer */
1127be028adcSJeff Cody     if (flags & BDRV_O_RDWR) {
1128be028adcSJeff Cody         flags |= BDRV_O_ALLOW_RDWR;
1129be028adcSJeff Cody     }
1130be028adcSJeff Cody 
1131707ff828SKevin Wolf     extract_subqdict(options, &file_options, "file.");
1132707ff828SKevin Wolf 
1133707ff828SKevin Wolf     ret = bdrv_file_open(&file, filename, file_options,
113434b5d2c6SMax Reitz                          bdrv_open_flags(bs, flags | BDRV_O_UNMAP), &local_err);
1135f500a6d3SKevin Wolf     if (ret < 0) {
1136de9c0cecSKevin Wolf         goto fail;
1137f500a6d3SKevin Wolf     }
1138f500a6d3SKevin Wolf 
1139f500a6d3SKevin Wolf     /* Find the right image format driver */
114074fe54f2SKevin Wolf     drvname = qdict_get_try_str(options, "driver");
114174fe54f2SKevin Wolf     if (drvname) {
114274fe54f2SKevin Wolf         drv = bdrv_find_whitelisted_format(drvname, !(flags & BDRV_O_RDWR));
114374fe54f2SKevin Wolf         qdict_del(options, "driver");
114474fe54f2SKevin Wolf     }
114574fe54f2SKevin Wolf 
1146f500a6d3SKevin Wolf     if (!drv) {
114734b5d2c6SMax Reitz         ret = find_image_format(file, filename, &drv, &local_err);
1148f500a6d3SKevin Wolf     }
1149f500a6d3SKevin Wolf 
1150f500a6d3SKevin Wolf     if (!drv) {
1151f500a6d3SKevin Wolf         goto unlink_and_fail;
1152f500a6d3SKevin Wolf     }
1153f500a6d3SKevin Wolf 
1154b6ce07aaSKevin Wolf     /* Open the image */
115534b5d2c6SMax Reitz     ret = bdrv_open_common(bs, file, options, flags, drv, &local_err);
1156b6ce07aaSKevin Wolf     if (ret < 0) {
11576987307cSChristoph Hellwig         goto unlink_and_fail;
11586987307cSChristoph Hellwig     }
11596987307cSChristoph Hellwig 
1160f500a6d3SKevin Wolf     if (bs->file != file) {
11614f6fd349SFam Zheng         bdrv_unref(file);
1162f500a6d3SKevin Wolf         file = NULL;
1163f500a6d3SKevin Wolf     }
1164f500a6d3SKevin Wolf 
1165b6ce07aaSKevin Wolf     /* If there is a backing file, use it */
11669156df12SPaolo Bonzini     if ((flags & BDRV_O_NO_BACKING) == 0) {
116731ca6d07SKevin Wolf         QDict *backing_options;
116831ca6d07SKevin Wolf 
116931ca6d07SKevin Wolf         extract_subqdict(options, &backing_options, "backing.");
117034b5d2c6SMax Reitz         ret = bdrv_open_backing_file(bs, backing_options, &local_err);
1171b6ce07aaSKevin Wolf         if (ret < 0) {
1172b6ad491aSKevin Wolf             goto close_and_fail;
1173b6ce07aaSKevin Wolf         }
1174b6ce07aaSKevin Wolf     }
1175b6ce07aaSKevin Wolf 
1176b6ad491aSKevin Wolf     /* Check if any unknown options were used */
1177b6ad491aSKevin Wolf     if (qdict_size(options) != 0) {
1178b6ad491aSKevin Wolf         const QDictEntry *entry = qdict_first(options);
117934b5d2c6SMax Reitz         error_setg(errp, "Block format '%s' used by device '%s' doesn't "
118034b5d2c6SMax Reitz                    "support the option '%s'", drv->format_name, bs->device_name,
118134b5d2c6SMax Reitz                    entry->key);
1182b6ad491aSKevin Wolf 
1183b6ad491aSKevin Wolf         ret = -EINVAL;
1184b6ad491aSKevin Wolf         goto close_and_fail;
1185b6ad491aSKevin Wolf     }
1186b6ad491aSKevin Wolf     QDECREF(options);
1187b6ad491aSKevin Wolf 
1188b6ce07aaSKevin Wolf     if (!bdrv_key_required(bs)) {
11897d4b4ba5SMarkus Armbruster         bdrv_dev_change_media_cb(bs, true);
1190b6ce07aaSKevin Wolf     }
1191b6ce07aaSKevin Wolf 
1192b6ce07aaSKevin Wolf     return 0;
1193b6ce07aaSKevin Wolf 
1194b6ce07aaSKevin Wolf unlink_and_fail:
1195f500a6d3SKevin Wolf     if (file != NULL) {
11964f6fd349SFam Zheng         bdrv_unref(file);
1197f500a6d3SKevin Wolf     }
1198b6ce07aaSKevin Wolf     if (bs->is_temporary) {
1199b6ce07aaSKevin Wolf         unlink(filename);
1200b6ce07aaSKevin Wolf     }
1201de9c0cecSKevin Wolf fail:
1202de9c0cecSKevin Wolf     QDECREF(bs->options);
1203b6ad491aSKevin Wolf     QDECREF(options);
1204de9c0cecSKevin Wolf     bs->options = NULL;
120534b5d2c6SMax Reitz     if (error_is_set(&local_err)) {
120634b5d2c6SMax Reitz         error_propagate(errp, local_err);
120734b5d2c6SMax Reitz     }
1208b6ad491aSKevin Wolf     return ret;
1209de9c0cecSKevin Wolf 
1210b6ad491aSKevin Wolf close_and_fail:
1211b6ad491aSKevin Wolf     bdrv_close(bs);
1212b6ad491aSKevin Wolf     QDECREF(options);
121334b5d2c6SMax Reitz     if (error_is_set(&local_err)) {
121434b5d2c6SMax Reitz         error_propagate(errp, local_err);
121534b5d2c6SMax Reitz     }
1216b6ce07aaSKevin Wolf     return ret;
1217b6ce07aaSKevin Wolf }
1218b6ce07aaSKevin Wolf 
1219e971aa12SJeff Cody typedef struct BlockReopenQueueEntry {
1220e971aa12SJeff Cody      bool prepared;
1221e971aa12SJeff Cody      BDRVReopenState state;
1222e971aa12SJeff Cody      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1223e971aa12SJeff Cody } BlockReopenQueueEntry;
1224e971aa12SJeff Cody 
1225e971aa12SJeff Cody /*
1226e971aa12SJeff Cody  * Adds a BlockDriverState to a simple queue for an atomic, transactional
1227e971aa12SJeff Cody  * reopen of multiple devices.
1228e971aa12SJeff Cody  *
1229e971aa12SJeff Cody  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1230e971aa12SJeff Cody  * already performed, or alternatively may be NULL a new BlockReopenQueue will
1231e971aa12SJeff Cody  * be created and initialized. This newly created BlockReopenQueue should be
1232e971aa12SJeff Cody  * passed back in for subsequent calls that are intended to be of the same
1233e971aa12SJeff Cody  * atomic 'set'.
1234e971aa12SJeff Cody  *
1235e971aa12SJeff Cody  * bs is the BlockDriverState to add to the reopen queue.
1236e971aa12SJeff Cody  *
1237e971aa12SJeff Cody  * flags contains the open flags for the associated bs
1238e971aa12SJeff Cody  *
1239e971aa12SJeff Cody  * returns a pointer to bs_queue, which is either the newly allocated
1240e971aa12SJeff Cody  * bs_queue, or the existing bs_queue being used.
1241e971aa12SJeff Cody  *
1242e971aa12SJeff Cody  */
1243e971aa12SJeff Cody BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
1244e971aa12SJeff Cody                                     BlockDriverState *bs, int flags)
1245e971aa12SJeff Cody {
1246e971aa12SJeff Cody     assert(bs != NULL);
1247e971aa12SJeff Cody 
1248e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry;
1249e971aa12SJeff Cody     if (bs_queue == NULL) {
1250e971aa12SJeff Cody         bs_queue = g_new0(BlockReopenQueue, 1);
1251e971aa12SJeff Cody         QSIMPLEQ_INIT(bs_queue);
1252e971aa12SJeff Cody     }
1253e971aa12SJeff Cody 
1254e971aa12SJeff Cody     if (bs->file) {
1255e971aa12SJeff Cody         bdrv_reopen_queue(bs_queue, bs->file, flags);
1256e971aa12SJeff Cody     }
1257e971aa12SJeff Cody 
1258e971aa12SJeff Cody     bs_entry = g_new0(BlockReopenQueueEntry, 1);
1259e971aa12SJeff Cody     QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1260e971aa12SJeff Cody 
1261e971aa12SJeff Cody     bs_entry->state.bs = bs;
1262e971aa12SJeff Cody     bs_entry->state.flags = flags;
1263e971aa12SJeff Cody 
1264e971aa12SJeff Cody     return bs_queue;
1265e971aa12SJeff Cody }
1266e971aa12SJeff Cody 
1267e971aa12SJeff Cody /*
1268e971aa12SJeff Cody  * Reopen multiple BlockDriverStates atomically & transactionally.
1269e971aa12SJeff Cody  *
1270e971aa12SJeff Cody  * The queue passed in (bs_queue) must have been built up previous
1271e971aa12SJeff Cody  * via bdrv_reopen_queue().
1272e971aa12SJeff Cody  *
1273e971aa12SJeff Cody  * Reopens all BDS specified in the queue, with the appropriate
1274e971aa12SJeff Cody  * flags.  All devices are prepared for reopen, and failure of any
1275e971aa12SJeff Cody  * device will cause all device changes to be abandonded, and intermediate
1276e971aa12SJeff Cody  * data cleaned up.
1277e971aa12SJeff Cody  *
1278e971aa12SJeff Cody  * If all devices prepare successfully, then the changes are committed
1279e971aa12SJeff Cody  * to all devices.
1280e971aa12SJeff Cody  *
1281e971aa12SJeff Cody  */
1282e971aa12SJeff Cody int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1283e971aa12SJeff Cody {
1284e971aa12SJeff Cody     int ret = -1;
1285e971aa12SJeff Cody     BlockReopenQueueEntry *bs_entry, *next;
1286e971aa12SJeff Cody     Error *local_err = NULL;
1287e971aa12SJeff Cody 
1288e971aa12SJeff Cody     assert(bs_queue != NULL);
1289e971aa12SJeff Cody 
1290e971aa12SJeff Cody     bdrv_drain_all();
1291e971aa12SJeff Cody 
1292e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1293e971aa12SJeff Cody         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1294e971aa12SJeff Cody             error_propagate(errp, local_err);
1295e971aa12SJeff Cody             goto cleanup;
1296e971aa12SJeff Cody         }
1297e971aa12SJeff Cody         bs_entry->prepared = true;
1298e971aa12SJeff Cody     }
1299e971aa12SJeff Cody 
1300e971aa12SJeff Cody     /* If we reach this point, we have success and just need to apply the
1301e971aa12SJeff Cody      * changes
1302e971aa12SJeff Cody      */
1303e971aa12SJeff Cody     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1304e971aa12SJeff Cody         bdrv_reopen_commit(&bs_entry->state);
1305e971aa12SJeff Cody     }
1306e971aa12SJeff Cody 
1307e971aa12SJeff Cody     ret = 0;
1308e971aa12SJeff Cody 
1309e971aa12SJeff Cody cleanup:
1310e971aa12SJeff Cody     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1311e971aa12SJeff Cody         if (ret && bs_entry->prepared) {
1312e971aa12SJeff Cody             bdrv_reopen_abort(&bs_entry->state);
1313e971aa12SJeff Cody         }
1314e971aa12SJeff Cody         g_free(bs_entry);
1315e971aa12SJeff Cody     }
1316e971aa12SJeff Cody     g_free(bs_queue);
1317e971aa12SJeff Cody     return ret;
1318e971aa12SJeff Cody }
1319e971aa12SJeff Cody 
1320e971aa12SJeff Cody 
1321e971aa12SJeff Cody /* Reopen a single BlockDriverState with the specified flags. */
1322e971aa12SJeff Cody int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1323e971aa12SJeff Cody {
1324e971aa12SJeff Cody     int ret = -1;
1325e971aa12SJeff Cody     Error *local_err = NULL;
1326e971aa12SJeff Cody     BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
1327e971aa12SJeff Cody 
1328e971aa12SJeff Cody     ret = bdrv_reopen_multiple(queue, &local_err);
1329e971aa12SJeff Cody     if (local_err != NULL) {
1330e971aa12SJeff Cody         error_propagate(errp, local_err);
1331e971aa12SJeff Cody     }
1332e971aa12SJeff Cody     return ret;
1333e971aa12SJeff Cody }
1334e971aa12SJeff Cody 
1335e971aa12SJeff Cody 
1336e971aa12SJeff Cody /*
1337e971aa12SJeff Cody  * Prepares a BlockDriverState for reopen. All changes are staged in the
1338e971aa12SJeff Cody  * 'opaque' field of the BDRVReopenState, which is used and allocated by
1339e971aa12SJeff Cody  * the block driver layer .bdrv_reopen_prepare()
1340e971aa12SJeff Cody  *
1341e971aa12SJeff Cody  * bs is the BlockDriverState to reopen
1342e971aa12SJeff Cody  * flags are the new open flags
1343e971aa12SJeff Cody  * queue is the reopen queue
1344e971aa12SJeff Cody  *
1345e971aa12SJeff Cody  * Returns 0 on success, non-zero on error.  On error errp will be set
1346e971aa12SJeff Cody  * as well.
1347e971aa12SJeff Cody  *
1348e971aa12SJeff Cody  * On failure, bdrv_reopen_abort() will be called to clean up any data.
1349e971aa12SJeff Cody  * It is the responsibility of the caller to then call the abort() or
1350e971aa12SJeff Cody  * commit() for any other BDS that have been left in a prepare() state
1351e971aa12SJeff Cody  *
1352e971aa12SJeff Cody  */
1353e971aa12SJeff Cody int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
1354e971aa12SJeff Cody                         Error **errp)
1355e971aa12SJeff Cody {
1356e971aa12SJeff Cody     int ret = -1;
1357e971aa12SJeff Cody     Error *local_err = NULL;
1358e971aa12SJeff Cody     BlockDriver *drv;
1359e971aa12SJeff Cody 
1360e971aa12SJeff Cody     assert(reopen_state != NULL);
1361e971aa12SJeff Cody     assert(reopen_state->bs->drv != NULL);
1362e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1363e971aa12SJeff Cody 
1364e971aa12SJeff Cody     /* if we are to stay read-only, do not allow permission change
1365e971aa12SJeff Cody      * to r/w */
1366e971aa12SJeff Cody     if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1367e971aa12SJeff Cody         reopen_state->flags & BDRV_O_RDWR) {
1368e971aa12SJeff Cody         error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1369e971aa12SJeff Cody                   reopen_state->bs->device_name);
1370e971aa12SJeff Cody         goto error;
1371e971aa12SJeff Cody     }
1372e971aa12SJeff Cody 
1373e971aa12SJeff Cody 
1374e971aa12SJeff Cody     ret = bdrv_flush(reopen_state->bs);
1375e971aa12SJeff Cody     if (ret) {
1376e971aa12SJeff Cody         error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1377e971aa12SJeff Cody                   strerror(-ret));
1378e971aa12SJeff Cody         goto error;
1379e971aa12SJeff Cody     }
1380e971aa12SJeff Cody 
1381e971aa12SJeff Cody     if (drv->bdrv_reopen_prepare) {
1382e971aa12SJeff Cody         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1383e971aa12SJeff Cody         if (ret) {
1384e971aa12SJeff Cody             if (local_err != NULL) {
1385e971aa12SJeff Cody                 error_propagate(errp, local_err);
1386e971aa12SJeff Cody             } else {
1387d8b6895fSLuiz Capitulino                 error_setg(errp, "failed while preparing to reopen image '%s'",
1388e971aa12SJeff Cody                            reopen_state->bs->filename);
1389e971aa12SJeff Cody             }
1390e971aa12SJeff Cody             goto error;
1391e971aa12SJeff Cody         }
1392e971aa12SJeff Cody     } else {
1393e971aa12SJeff Cody         /* It is currently mandatory to have a bdrv_reopen_prepare()
1394e971aa12SJeff Cody          * handler for each supported drv. */
1395e971aa12SJeff Cody         error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1396e971aa12SJeff Cody                   drv->format_name, reopen_state->bs->device_name,
1397e971aa12SJeff Cody                  "reopening of file");
1398e971aa12SJeff Cody         ret = -1;
1399e971aa12SJeff Cody         goto error;
1400e971aa12SJeff Cody     }
1401e971aa12SJeff Cody 
1402e971aa12SJeff Cody     ret = 0;
1403e971aa12SJeff Cody 
1404e971aa12SJeff Cody error:
1405e971aa12SJeff Cody     return ret;
1406e971aa12SJeff Cody }
1407e971aa12SJeff Cody 
1408e971aa12SJeff Cody /*
1409e971aa12SJeff Cody  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1410e971aa12SJeff Cody  * makes them final by swapping the staging BlockDriverState contents into
1411e971aa12SJeff Cody  * the active BlockDriverState contents.
1412e971aa12SJeff Cody  */
1413e971aa12SJeff Cody void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1414e971aa12SJeff Cody {
1415e971aa12SJeff Cody     BlockDriver *drv;
1416e971aa12SJeff Cody 
1417e971aa12SJeff Cody     assert(reopen_state != NULL);
1418e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1419e971aa12SJeff Cody     assert(drv != NULL);
1420e971aa12SJeff Cody 
1421e971aa12SJeff Cody     /* If there are any driver level actions to take */
1422e971aa12SJeff Cody     if (drv->bdrv_reopen_commit) {
1423e971aa12SJeff Cody         drv->bdrv_reopen_commit(reopen_state);
1424e971aa12SJeff Cody     }
1425e971aa12SJeff Cody 
1426e971aa12SJeff Cody     /* set BDS specific flags now */
1427e971aa12SJeff Cody     reopen_state->bs->open_flags         = reopen_state->flags;
1428e971aa12SJeff Cody     reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1429e971aa12SJeff Cody                                               BDRV_O_CACHE_WB);
1430e971aa12SJeff Cody     reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
1431e971aa12SJeff Cody }
1432e971aa12SJeff Cody 
1433e971aa12SJeff Cody /*
1434e971aa12SJeff Cody  * Abort the reopen, and delete and free the staged changes in
1435e971aa12SJeff Cody  * reopen_state
1436e971aa12SJeff Cody  */
1437e971aa12SJeff Cody void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1438e971aa12SJeff Cody {
1439e971aa12SJeff Cody     BlockDriver *drv;
1440e971aa12SJeff Cody 
1441e971aa12SJeff Cody     assert(reopen_state != NULL);
1442e971aa12SJeff Cody     drv = reopen_state->bs->drv;
1443e971aa12SJeff Cody     assert(drv != NULL);
1444e971aa12SJeff Cody 
1445e971aa12SJeff Cody     if (drv->bdrv_reopen_abort) {
1446e971aa12SJeff Cody         drv->bdrv_reopen_abort(reopen_state);
1447e971aa12SJeff Cody     }
1448e971aa12SJeff Cody }
1449e971aa12SJeff Cody 
1450e971aa12SJeff Cody 
1451fc01f7e7Sbellard void bdrv_close(BlockDriverState *bs)
1452fc01f7e7Sbellard {
14533e914655SPaolo Bonzini     if (bs->job) {
14543e914655SPaolo Bonzini         block_job_cancel_sync(bs->job);
14553e914655SPaolo Bonzini     }
145658fda173SStefan Hajnoczi     bdrv_drain_all(); /* complete I/O */
145758fda173SStefan Hajnoczi     bdrv_flush(bs);
145858fda173SStefan Hajnoczi     bdrv_drain_all(); /* in case flush left pending I/O */
1459d7d512f6SPaolo Bonzini     notifier_list_notify(&bs->close_notifiers, bs);
14607094f12fSKevin Wolf 
14613cbc002cSPaolo Bonzini     if (bs->drv) {
1462557df6acSStefan Hajnoczi         if (bs->backing_hd) {
14634f6fd349SFam Zheng             bdrv_unref(bs->backing_hd);
1464557df6acSStefan Hajnoczi             bs->backing_hd = NULL;
1465557df6acSStefan Hajnoczi         }
1466ea2384d3Sbellard         bs->drv->bdrv_close(bs);
14677267c094SAnthony Liguori         g_free(bs->opaque);
1468ea2384d3Sbellard #ifdef _WIN32
1469ea2384d3Sbellard         if (bs->is_temporary) {
1470ea2384d3Sbellard             unlink(bs->filename);
1471ea2384d3Sbellard         }
147267b915a5Sbellard #endif
1473ea2384d3Sbellard         bs->opaque = NULL;
1474ea2384d3Sbellard         bs->drv = NULL;
147553fec9d3SStefan Hajnoczi         bs->copy_on_read = 0;
1476a275fa42SPaolo Bonzini         bs->backing_file[0] = '\0';
1477a275fa42SPaolo Bonzini         bs->backing_format[0] = '\0';
14786405875cSPaolo Bonzini         bs->total_sectors = 0;
14796405875cSPaolo Bonzini         bs->encrypted = 0;
14806405875cSPaolo Bonzini         bs->valid_key = 0;
14816405875cSPaolo Bonzini         bs->sg = 0;
14826405875cSPaolo Bonzini         bs->growable = 0;
14830d51b4deSAsias He         bs->zero_beyond_eof = false;
1484de9c0cecSKevin Wolf         QDECREF(bs->options);
1485de9c0cecSKevin Wolf         bs->options = NULL;
1486b338082bSbellard 
148766f82ceeSKevin Wolf         if (bs->file != NULL) {
14884f6fd349SFam Zheng             bdrv_unref(bs->file);
14890ac9377dSPaolo Bonzini             bs->file = NULL;
149066f82ceeSKevin Wolf         }
14919ca11154SPavel Hrdina     }
149266f82ceeSKevin Wolf 
14937d4b4ba5SMarkus Armbruster     bdrv_dev_change_media_cb(bs, false);
149498f90dbaSZhi Yong Wu 
149598f90dbaSZhi Yong Wu     /*throttling disk I/O limits*/
149698f90dbaSZhi Yong Wu     if (bs->io_limits_enabled) {
149798f90dbaSZhi Yong Wu         bdrv_io_limits_disable(bs);
149898f90dbaSZhi Yong Wu     }
1499b338082bSbellard }
1500b338082bSbellard 
15012bc93fedSMORITA Kazutaka void bdrv_close_all(void)
15022bc93fedSMORITA Kazutaka {
15032bc93fedSMORITA Kazutaka     BlockDriverState *bs;
15042bc93fedSMORITA Kazutaka 
15052bc93fedSMORITA Kazutaka     QTAILQ_FOREACH(bs, &bdrv_states, list) {
15062bc93fedSMORITA Kazutaka         bdrv_close(bs);
15072bc93fedSMORITA Kazutaka     }
15082bc93fedSMORITA Kazutaka }
15092bc93fedSMORITA Kazutaka 
151088266f5aSStefan Hajnoczi /* Check if any requests are in-flight (including throttled requests) */
151188266f5aSStefan Hajnoczi static bool bdrv_requests_pending(BlockDriverState *bs)
151288266f5aSStefan Hajnoczi {
151388266f5aSStefan Hajnoczi     if (!QLIST_EMPTY(&bs->tracked_requests)) {
151488266f5aSStefan Hajnoczi         return true;
151588266f5aSStefan Hajnoczi     }
1516cc0681c4SBenoît Canet     if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) {
1517cc0681c4SBenoît Canet         return true;
1518cc0681c4SBenoît Canet     }
1519cc0681c4SBenoît Canet     if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) {
152088266f5aSStefan Hajnoczi         return true;
152188266f5aSStefan Hajnoczi     }
152288266f5aSStefan Hajnoczi     if (bs->file && bdrv_requests_pending(bs->file)) {
152388266f5aSStefan Hajnoczi         return true;
152488266f5aSStefan Hajnoczi     }
152588266f5aSStefan Hajnoczi     if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) {
152688266f5aSStefan Hajnoczi         return true;
152788266f5aSStefan Hajnoczi     }
152888266f5aSStefan Hajnoczi     return false;
152988266f5aSStefan Hajnoczi }
153088266f5aSStefan Hajnoczi 
153188266f5aSStefan Hajnoczi static bool bdrv_requests_pending_all(void)
153288266f5aSStefan Hajnoczi {
153388266f5aSStefan Hajnoczi     BlockDriverState *bs;
153488266f5aSStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
153588266f5aSStefan Hajnoczi         if (bdrv_requests_pending(bs)) {
153688266f5aSStefan Hajnoczi             return true;
153788266f5aSStefan Hajnoczi         }
153888266f5aSStefan Hajnoczi     }
153988266f5aSStefan Hajnoczi     return false;
154088266f5aSStefan Hajnoczi }
154188266f5aSStefan Hajnoczi 
1542922453bcSStefan Hajnoczi /*
1543922453bcSStefan Hajnoczi  * Wait for pending requests to complete across all BlockDriverStates
1544922453bcSStefan Hajnoczi  *
1545922453bcSStefan Hajnoczi  * This function does not flush data to disk, use bdrv_flush_all() for that
1546922453bcSStefan Hajnoczi  * after calling this function.
15474c355d53SZhi Yong Wu  *
15484c355d53SZhi Yong Wu  * Note that completion of an asynchronous I/O operation can trigger any
15494c355d53SZhi Yong Wu  * number of other I/O operations on other devices---for example a coroutine
15504c355d53SZhi Yong Wu  * can be arbitrarily complex and a constant flow of I/O can come until the
15514c355d53SZhi Yong Wu  * coroutine is complete.  Because of this, it is not possible to have a
15524c355d53SZhi Yong Wu  * function to drain a single device's I/O queue.
1553922453bcSStefan Hajnoczi  */
1554922453bcSStefan Hajnoczi void bdrv_drain_all(void)
1555922453bcSStefan Hajnoczi {
155688266f5aSStefan Hajnoczi     /* Always run first iteration so any pending completion BHs run */
155788266f5aSStefan Hajnoczi     bool busy = true;
1558922453bcSStefan Hajnoczi     BlockDriverState *bs;
1559922453bcSStefan Hajnoczi 
156088266f5aSStefan Hajnoczi     while (busy) {
15614c355d53SZhi Yong Wu         /* FIXME: We do not have timer support here, so this is effectively
15624c355d53SZhi Yong Wu          * a busy wait.
15634c355d53SZhi Yong Wu          */
15644c355d53SZhi Yong Wu         QTAILQ_FOREACH(bs, &bdrv_states, list) {
1565cc0681c4SBenoît Canet             if (bdrv_start_throttled_reqs(bs)) {
15664c355d53SZhi Yong Wu                 busy = true;
15674c355d53SZhi Yong Wu             }
15684c355d53SZhi Yong Wu         }
1569922453bcSStefan Hajnoczi 
157088266f5aSStefan Hajnoczi         busy = bdrv_requests_pending_all();
157188266f5aSStefan Hajnoczi         busy |= aio_poll(qemu_get_aio_context(), busy);
1572922453bcSStefan Hajnoczi     }
1573922453bcSStefan Hajnoczi }
1574922453bcSStefan Hajnoczi 
1575d22b2f41SRyan Harper /* make a BlockDriverState anonymous by removing from bdrv_state list.
1576d22b2f41SRyan Harper    Also, NULL terminate the device_name to prevent double remove */
1577d22b2f41SRyan Harper void bdrv_make_anon(BlockDriverState *bs)
1578d22b2f41SRyan Harper {
1579d22b2f41SRyan Harper     if (bs->device_name[0] != '\0') {
1580d22b2f41SRyan Harper         QTAILQ_REMOVE(&bdrv_states, bs, list);
1581d22b2f41SRyan Harper     }
1582d22b2f41SRyan Harper     bs->device_name[0] = '\0';
1583d22b2f41SRyan Harper }
1584d22b2f41SRyan Harper 
1585e023b2e2SPaolo Bonzini static void bdrv_rebind(BlockDriverState *bs)
1586e023b2e2SPaolo Bonzini {
1587e023b2e2SPaolo Bonzini     if (bs->drv && bs->drv->bdrv_rebind) {
1588e023b2e2SPaolo Bonzini         bs->drv->bdrv_rebind(bs);
1589e023b2e2SPaolo Bonzini     }
1590e023b2e2SPaolo Bonzini }
1591e023b2e2SPaolo Bonzini 
15924ddc07caSPaolo Bonzini static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
15934ddc07caSPaolo Bonzini                                      BlockDriverState *bs_src)
15944ddc07caSPaolo Bonzini {
15954ddc07caSPaolo Bonzini     /* move some fields that need to stay attached to the device */
15964ddc07caSPaolo Bonzini     bs_dest->open_flags         = bs_src->open_flags;
15974ddc07caSPaolo Bonzini 
15984ddc07caSPaolo Bonzini     /* dev info */
15994ddc07caSPaolo Bonzini     bs_dest->dev_ops            = bs_src->dev_ops;
16004ddc07caSPaolo Bonzini     bs_dest->dev_opaque         = bs_src->dev_opaque;
16014ddc07caSPaolo Bonzini     bs_dest->dev                = bs_src->dev;
16024ddc07caSPaolo Bonzini     bs_dest->buffer_alignment   = bs_src->buffer_alignment;
16034ddc07caSPaolo Bonzini     bs_dest->copy_on_read       = bs_src->copy_on_read;
16044ddc07caSPaolo Bonzini 
16054ddc07caSPaolo Bonzini     bs_dest->enable_write_cache = bs_src->enable_write_cache;
16064ddc07caSPaolo Bonzini 
1607cc0681c4SBenoît Canet     /* i/o throttled req */
1608cc0681c4SBenoît Canet     memcpy(&bs_dest->throttle_state,
1609cc0681c4SBenoît Canet            &bs_src->throttle_state,
1610cc0681c4SBenoît Canet            sizeof(ThrottleState));
1611cc0681c4SBenoît Canet     bs_dest->throttled_reqs[0]  = bs_src->throttled_reqs[0];
1612cc0681c4SBenoît Canet     bs_dest->throttled_reqs[1]  = bs_src->throttled_reqs[1];
16134ddc07caSPaolo Bonzini     bs_dest->io_limits_enabled  = bs_src->io_limits_enabled;
16144ddc07caSPaolo Bonzini 
16154ddc07caSPaolo Bonzini     /* r/w error */
16164ddc07caSPaolo Bonzini     bs_dest->on_read_error      = bs_src->on_read_error;
16174ddc07caSPaolo Bonzini     bs_dest->on_write_error     = bs_src->on_write_error;
16184ddc07caSPaolo Bonzini 
16194ddc07caSPaolo Bonzini     /* i/o status */
16204ddc07caSPaolo Bonzini     bs_dest->iostatus_enabled   = bs_src->iostatus_enabled;
16214ddc07caSPaolo Bonzini     bs_dest->iostatus           = bs_src->iostatus;
16224ddc07caSPaolo Bonzini 
16234ddc07caSPaolo Bonzini     /* dirty bitmap */
16244ddc07caSPaolo Bonzini     bs_dest->dirty_bitmap       = bs_src->dirty_bitmap;
16254ddc07caSPaolo Bonzini 
16269fcb0251SFam Zheng     /* reference count */
16279fcb0251SFam Zheng     bs_dest->refcnt             = bs_src->refcnt;
16289fcb0251SFam Zheng 
16294ddc07caSPaolo Bonzini     /* job */
16304ddc07caSPaolo Bonzini     bs_dest->in_use             = bs_src->in_use;
16314ddc07caSPaolo Bonzini     bs_dest->job                = bs_src->job;
16324ddc07caSPaolo Bonzini 
16334ddc07caSPaolo Bonzini     /* keep the same entry in bdrv_states */
16344ddc07caSPaolo Bonzini     pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
16354ddc07caSPaolo Bonzini             bs_src->device_name);
16364ddc07caSPaolo Bonzini     bs_dest->list = bs_src->list;
16374ddc07caSPaolo Bonzini }
16384ddc07caSPaolo Bonzini 
16394ddc07caSPaolo Bonzini /*
16404ddc07caSPaolo Bonzini  * Swap bs contents for two image chains while they are live,
16414ddc07caSPaolo Bonzini  * while keeping required fields on the BlockDriverState that is
16424ddc07caSPaolo Bonzini  * actually attached to a device.
16434ddc07caSPaolo Bonzini  *
16444ddc07caSPaolo Bonzini  * This will modify the BlockDriverState fields, and swap contents
16454ddc07caSPaolo Bonzini  * between bs_new and bs_old. Both bs_new and bs_old are modified.
16464ddc07caSPaolo Bonzini  *
16474ddc07caSPaolo Bonzini  * bs_new is required to be anonymous.
16484ddc07caSPaolo Bonzini  *
16494ddc07caSPaolo Bonzini  * This function does not create any image files.
16504ddc07caSPaolo Bonzini  */
16514ddc07caSPaolo Bonzini void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
16524ddc07caSPaolo Bonzini {
16534ddc07caSPaolo Bonzini     BlockDriverState tmp;
16544ddc07caSPaolo Bonzini 
16554ddc07caSPaolo Bonzini     /* bs_new must be anonymous and shouldn't have anything fancy enabled */
16564ddc07caSPaolo Bonzini     assert(bs_new->device_name[0] == '\0');
16574ddc07caSPaolo Bonzini     assert(bs_new->dirty_bitmap == NULL);
16584ddc07caSPaolo Bonzini     assert(bs_new->job == NULL);
16594ddc07caSPaolo Bonzini     assert(bs_new->dev == NULL);
16604ddc07caSPaolo Bonzini     assert(bs_new->in_use == 0);
16614ddc07caSPaolo Bonzini     assert(bs_new->io_limits_enabled == false);
1662cc0681c4SBenoît Canet     assert(!throttle_have_timer(&bs_new->throttle_state));
16634ddc07caSPaolo Bonzini 
16644ddc07caSPaolo Bonzini     tmp = *bs_new;
16654ddc07caSPaolo Bonzini     *bs_new = *bs_old;
16664ddc07caSPaolo Bonzini     *bs_old = tmp;
16674ddc07caSPaolo Bonzini 
16684ddc07caSPaolo Bonzini     /* there are some fields that should not be swapped, move them back */
16694ddc07caSPaolo Bonzini     bdrv_move_feature_fields(&tmp, bs_old);
16704ddc07caSPaolo Bonzini     bdrv_move_feature_fields(bs_old, bs_new);
16714ddc07caSPaolo Bonzini     bdrv_move_feature_fields(bs_new, &tmp);
16724ddc07caSPaolo Bonzini 
16734ddc07caSPaolo Bonzini     /* bs_new shouldn't be in bdrv_states even after the swap!  */
16744ddc07caSPaolo Bonzini     assert(bs_new->device_name[0] == '\0');
16754ddc07caSPaolo Bonzini 
16764ddc07caSPaolo Bonzini     /* Check a few fields that should remain attached to the device */
16774ddc07caSPaolo Bonzini     assert(bs_new->dev == NULL);
16784ddc07caSPaolo Bonzini     assert(bs_new->job == NULL);
16794ddc07caSPaolo Bonzini     assert(bs_new->in_use == 0);
16804ddc07caSPaolo Bonzini     assert(bs_new->io_limits_enabled == false);
1681cc0681c4SBenoît Canet     assert(!throttle_have_timer(&bs_new->throttle_state));
16824ddc07caSPaolo Bonzini 
16834ddc07caSPaolo Bonzini     bdrv_rebind(bs_new);
16844ddc07caSPaolo Bonzini     bdrv_rebind(bs_old);
16854ddc07caSPaolo Bonzini }
16864ddc07caSPaolo Bonzini 
16878802d1fdSJeff Cody /*
16888802d1fdSJeff Cody  * Add new bs contents at the top of an image chain while the chain is
16898802d1fdSJeff Cody  * live, while keeping required fields on the top layer.
16908802d1fdSJeff Cody  *
16918802d1fdSJeff Cody  * This will modify the BlockDriverState fields, and swap contents
16928802d1fdSJeff Cody  * between bs_new and bs_top. Both bs_new and bs_top are modified.
16938802d1fdSJeff Cody  *
1694f6801b83SJeff Cody  * bs_new is required to be anonymous.
1695f6801b83SJeff Cody  *
16968802d1fdSJeff Cody  * This function does not create any image files.
16978802d1fdSJeff Cody  */
16988802d1fdSJeff Cody void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
16998802d1fdSJeff Cody {
17004ddc07caSPaolo Bonzini     bdrv_swap(bs_new, bs_top);
17018802d1fdSJeff Cody 
17028802d1fdSJeff Cody     /* The contents of 'tmp' will become bs_top, as we are
17038802d1fdSJeff Cody      * swapping bs_new and bs_top contents. */
17044ddc07caSPaolo Bonzini     bs_top->backing_hd = bs_new;
17054ddc07caSPaolo Bonzini     bs_top->open_flags &= ~BDRV_O_NO_BACKING;
17064ddc07caSPaolo Bonzini     pstrcpy(bs_top->backing_file, sizeof(bs_top->backing_file),
17074ddc07caSPaolo Bonzini             bs_new->filename);
17084ddc07caSPaolo Bonzini     pstrcpy(bs_top->backing_format, sizeof(bs_top->backing_format),
17094ddc07caSPaolo Bonzini             bs_new->drv ? bs_new->drv->format_name : "");
17108802d1fdSJeff Cody }
17118802d1fdSJeff Cody 
17124f6fd349SFam Zheng static void bdrv_delete(BlockDriverState *bs)
1713b338082bSbellard {
1714fa879d62SMarkus Armbruster     assert(!bs->dev);
17153e914655SPaolo Bonzini     assert(!bs->job);
17163e914655SPaolo Bonzini     assert(!bs->in_use);
17174f6fd349SFam Zheng     assert(!bs->refcnt);
171818846deeSMarkus Armbruster 
1719e1b5c52eSStefan Hajnoczi     bdrv_close(bs);
1720e1b5c52eSStefan Hajnoczi 
17211b7bdbc1SStefan Hajnoczi     /* remove from list, if necessary */
1722d22b2f41SRyan Harper     bdrv_make_anon(bs);
172334c6f050Saurel32 
17247267c094SAnthony Liguori     g_free(bs);
1725fc01f7e7Sbellard }
1726fc01f7e7Sbellard 
1727fa879d62SMarkus Armbruster int bdrv_attach_dev(BlockDriverState *bs, void *dev)
1728fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */
172918846deeSMarkus Armbruster {
1730fa879d62SMarkus Armbruster     if (bs->dev) {
173118846deeSMarkus Armbruster         return -EBUSY;
173218846deeSMarkus Armbruster     }
1733fa879d62SMarkus Armbruster     bs->dev = dev;
173428a7282aSLuiz Capitulino     bdrv_iostatus_reset(bs);
173518846deeSMarkus Armbruster     return 0;
173618846deeSMarkus Armbruster }
173718846deeSMarkus Armbruster 
1738fa879d62SMarkus Armbruster /* TODO qdevified devices don't use this, remove when devices are qdevified */
1739fa879d62SMarkus Armbruster void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
174018846deeSMarkus Armbruster {
1741fa879d62SMarkus Armbruster     if (bdrv_attach_dev(bs, dev) < 0) {
1742fa879d62SMarkus Armbruster         abort();
1743fa879d62SMarkus Armbruster     }
1744fa879d62SMarkus Armbruster }
1745fa879d62SMarkus Armbruster 
1746fa879d62SMarkus Armbruster void bdrv_detach_dev(BlockDriverState *bs, void *dev)
1747fa879d62SMarkus Armbruster /* TODO change to DeviceState *dev when all users are qdevified */
1748fa879d62SMarkus Armbruster {
1749fa879d62SMarkus Armbruster     assert(bs->dev == dev);
1750fa879d62SMarkus Armbruster     bs->dev = NULL;
17510e49de52SMarkus Armbruster     bs->dev_ops = NULL;
17520e49de52SMarkus Armbruster     bs->dev_opaque = NULL;
175329e05f20SMarkus Armbruster     bs->buffer_alignment = 512;
175418846deeSMarkus Armbruster }
175518846deeSMarkus Armbruster 
1756fa879d62SMarkus Armbruster /* TODO change to return DeviceState * when all users are qdevified */
1757fa879d62SMarkus Armbruster void *bdrv_get_attached_dev(BlockDriverState *bs)
175818846deeSMarkus Armbruster {
1759fa879d62SMarkus Armbruster     return bs->dev;
176018846deeSMarkus Armbruster }
176118846deeSMarkus Armbruster 
17620e49de52SMarkus Armbruster void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
17630e49de52SMarkus Armbruster                       void *opaque)
17640e49de52SMarkus Armbruster {
17650e49de52SMarkus Armbruster     bs->dev_ops = ops;
17660e49de52SMarkus Armbruster     bs->dev_opaque = opaque;
17670e49de52SMarkus Armbruster }
17680e49de52SMarkus Armbruster 
176932c81a4aSPaolo Bonzini void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv,
177032c81a4aSPaolo Bonzini                                enum MonitorEvent ev,
17711ceee0d5SPaolo Bonzini                                BlockErrorAction action, bool is_read)
1772329c0a48SLuiz Capitulino {
1773329c0a48SLuiz Capitulino     QObject *data;
1774329c0a48SLuiz Capitulino     const char *action_str;
1775329c0a48SLuiz Capitulino 
1776329c0a48SLuiz Capitulino     switch (action) {
1777329c0a48SLuiz Capitulino     case BDRV_ACTION_REPORT:
1778329c0a48SLuiz Capitulino         action_str = "report";
1779329c0a48SLuiz Capitulino         break;
1780329c0a48SLuiz Capitulino     case BDRV_ACTION_IGNORE:
1781329c0a48SLuiz Capitulino         action_str = "ignore";
1782329c0a48SLuiz Capitulino         break;
1783329c0a48SLuiz Capitulino     case BDRV_ACTION_STOP:
1784329c0a48SLuiz Capitulino         action_str = "stop";
1785329c0a48SLuiz Capitulino         break;
1786329c0a48SLuiz Capitulino     default:
1787329c0a48SLuiz Capitulino         abort();
1788329c0a48SLuiz Capitulino     }
1789329c0a48SLuiz Capitulino 
1790329c0a48SLuiz Capitulino     data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }",
1791329c0a48SLuiz Capitulino                               bdrv->device_name,
1792329c0a48SLuiz Capitulino                               action_str,
1793329c0a48SLuiz Capitulino                               is_read ? "read" : "write");
179432c81a4aSPaolo Bonzini     monitor_protocol_event(ev, data);
1795329c0a48SLuiz Capitulino 
1796329c0a48SLuiz Capitulino     qobject_decref(data);
1797329c0a48SLuiz Capitulino }
1798329c0a48SLuiz Capitulino 
17996f382ed2SLuiz Capitulino static void bdrv_emit_qmp_eject_event(BlockDriverState *bs, bool ejected)
18006f382ed2SLuiz Capitulino {
18016f382ed2SLuiz Capitulino     QObject *data;
18026f382ed2SLuiz Capitulino 
18036f382ed2SLuiz Capitulino     data = qobject_from_jsonf("{ 'device': %s, 'tray-open': %i }",
18046f382ed2SLuiz Capitulino                               bdrv_get_device_name(bs), ejected);
18056f382ed2SLuiz Capitulino     monitor_protocol_event(QEVENT_DEVICE_TRAY_MOVED, data);
18066f382ed2SLuiz Capitulino 
18076f382ed2SLuiz Capitulino     qobject_decref(data);
18086f382ed2SLuiz Capitulino }
18096f382ed2SLuiz Capitulino 
18107d4b4ba5SMarkus Armbruster static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
18110e49de52SMarkus Armbruster {
1812145feb17SMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->change_media_cb) {
18136f382ed2SLuiz Capitulino         bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
18147d4b4ba5SMarkus Armbruster         bs->dev_ops->change_media_cb(bs->dev_opaque, load);
18156f382ed2SLuiz Capitulino         if (tray_was_closed) {
18166f382ed2SLuiz Capitulino             /* tray open */
18176f382ed2SLuiz Capitulino             bdrv_emit_qmp_eject_event(bs, true);
18186f382ed2SLuiz Capitulino         }
18196f382ed2SLuiz Capitulino         if (load) {
18206f382ed2SLuiz Capitulino             /* tray close */
18216f382ed2SLuiz Capitulino             bdrv_emit_qmp_eject_event(bs, false);
18226f382ed2SLuiz Capitulino         }
1823145feb17SMarkus Armbruster     }
1824145feb17SMarkus Armbruster }
1825145feb17SMarkus Armbruster 
18262c6942faSMarkus Armbruster bool bdrv_dev_has_removable_media(BlockDriverState *bs)
18272c6942faSMarkus Armbruster {
18282c6942faSMarkus Armbruster     return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
18292c6942faSMarkus Armbruster }
18302c6942faSMarkus Armbruster 
1831025ccaa7SPaolo Bonzini void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
1832025ccaa7SPaolo Bonzini {
1833025ccaa7SPaolo Bonzini     if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
1834025ccaa7SPaolo Bonzini         bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
1835025ccaa7SPaolo Bonzini     }
1836025ccaa7SPaolo Bonzini }
1837025ccaa7SPaolo Bonzini 
1838e4def80bSMarkus Armbruster bool bdrv_dev_is_tray_open(BlockDriverState *bs)
1839e4def80bSMarkus Armbruster {
1840e4def80bSMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->is_tray_open) {
1841e4def80bSMarkus Armbruster         return bs->dev_ops->is_tray_open(bs->dev_opaque);
1842e4def80bSMarkus Armbruster     }
1843e4def80bSMarkus Armbruster     return false;
1844e4def80bSMarkus Armbruster }
1845e4def80bSMarkus Armbruster 
1846145feb17SMarkus Armbruster static void bdrv_dev_resize_cb(BlockDriverState *bs)
1847145feb17SMarkus Armbruster {
1848145feb17SMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->resize_cb) {
1849145feb17SMarkus Armbruster         bs->dev_ops->resize_cb(bs->dev_opaque);
18500e49de52SMarkus Armbruster     }
18510e49de52SMarkus Armbruster }
18520e49de52SMarkus Armbruster 
1853f107639aSMarkus Armbruster bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
1854f107639aSMarkus Armbruster {
1855f107639aSMarkus Armbruster     if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
1856f107639aSMarkus Armbruster         return bs->dev_ops->is_medium_locked(bs->dev_opaque);
1857f107639aSMarkus Armbruster     }
1858f107639aSMarkus Armbruster     return false;
1859f107639aSMarkus Armbruster }
1860f107639aSMarkus Armbruster 
1861e97fc193Saliguori /*
1862e97fc193Saliguori  * Run consistency checks on an image
1863e97fc193Saliguori  *
1864e076f338SKevin Wolf  * Returns 0 if the check could be completed (it doesn't mean that the image is
1865a1c7273bSStefan Weil  * free of errors) or -errno when an internal error occurred. The results of the
1866e076f338SKevin Wolf  * check are stored in res.
1867e97fc193Saliguori  */
18684534ff54SKevin Wolf int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
1869e97fc193Saliguori {
1870e97fc193Saliguori     if (bs->drv->bdrv_check == NULL) {
1871e97fc193Saliguori         return -ENOTSUP;
1872e97fc193Saliguori     }
1873e97fc193Saliguori 
1874e076f338SKevin Wolf     memset(res, 0, sizeof(*res));
18754534ff54SKevin Wolf     return bs->drv->bdrv_check(bs, res, fix);
1876e97fc193Saliguori }
1877e97fc193Saliguori 
18788a426614SKevin Wolf #define COMMIT_BUF_SECTORS 2048
18798a426614SKevin Wolf 
188033e3963eSbellard /* commit COW file into the raw image */
188133e3963eSbellard int bdrv_commit(BlockDriverState *bs)
188233e3963eSbellard {
188319cb3738Sbellard     BlockDriver *drv = bs->drv;
18848a426614SKevin Wolf     int64_t sector, total_sectors;
18858a426614SKevin Wolf     int n, ro, open_flags;
18860bce597dSJeff Cody     int ret = 0;
18878a426614SKevin Wolf     uint8_t *buf;
1888c2cba3d9SJim Meyering     char filename[PATH_MAX];
188933e3963eSbellard 
189019cb3738Sbellard     if (!drv)
189119cb3738Sbellard         return -ENOMEDIUM;
189233e3963eSbellard 
18934dca4b63SNaphtali Sprei     if (!bs->backing_hd) {
18944dca4b63SNaphtali Sprei         return -ENOTSUP;
18954dca4b63SNaphtali Sprei     }
18964dca4b63SNaphtali Sprei 
18972d3735d3SStefan Hajnoczi     if (bdrv_in_use(bs) || bdrv_in_use(bs->backing_hd)) {
18982d3735d3SStefan Hajnoczi         return -EBUSY;
18992d3735d3SStefan Hajnoczi     }
19002d3735d3SStefan Hajnoczi 
19014dca4b63SNaphtali Sprei     ro = bs->backing_hd->read_only;
1902c2cba3d9SJim Meyering     /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
1903c2cba3d9SJim Meyering     pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
19044dca4b63SNaphtali Sprei     open_flags =  bs->backing_hd->open_flags;
19054dca4b63SNaphtali Sprei 
19064dca4b63SNaphtali Sprei     if (ro) {
19070bce597dSJeff Cody         if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
19080bce597dSJeff Cody             return -EACCES;
19094dca4b63SNaphtali Sprei         }
1910ea2384d3Sbellard     }
1911ea2384d3Sbellard 
19126ea44308SJan Kiszka     total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS;
19137267c094SAnthony Liguori     buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
19148a426614SKevin Wolf 
19158a426614SKevin Wolf     for (sector = 0; sector < total_sectors; sector += n) {
1916d663640cSPaolo Bonzini         ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n);
1917d663640cSPaolo Bonzini         if (ret < 0) {
1918d663640cSPaolo Bonzini             goto ro_cleanup;
1919d663640cSPaolo Bonzini         }
1920d663640cSPaolo Bonzini         if (ret) {
19218a426614SKevin Wolf             if (bdrv_read(bs, sector, buf, n) != 0) {
19224dca4b63SNaphtali Sprei                 ret = -EIO;
19234dca4b63SNaphtali Sprei                 goto ro_cleanup;
192433e3963eSbellard             }
192533e3963eSbellard 
19268a426614SKevin Wolf             if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) {
19274dca4b63SNaphtali Sprei                 ret = -EIO;
19284dca4b63SNaphtali Sprei                 goto ro_cleanup;
192933e3963eSbellard             }
193033e3963eSbellard         }
193133e3963eSbellard     }
193295389c86Sbellard 
19331d44952fSChristoph Hellwig     if (drv->bdrv_make_empty) {
19341d44952fSChristoph Hellwig         ret = drv->bdrv_make_empty(bs);
19351d44952fSChristoph Hellwig         bdrv_flush(bs);
19361d44952fSChristoph Hellwig     }
193795389c86Sbellard 
19383f5075aeSChristoph Hellwig     /*
19393f5075aeSChristoph Hellwig      * Make sure all data we wrote to the backing device is actually
19403f5075aeSChristoph Hellwig      * stable on disk.
19413f5075aeSChristoph Hellwig      */
19423f5075aeSChristoph Hellwig     if (bs->backing_hd)
19433f5075aeSChristoph Hellwig         bdrv_flush(bs->backing_hd);
19444dca4b63SNaphtali Sprei 
19454dca4b63SNaphtali Sprei ro_cleanup:
19467267c094SAnthony Liguori     g_free(buf);
19474dca4b63SNaphtali Sprei 
19484dca4b63SNaphtali Sprei     if (ro) {
19490bce597dSJeff Cody         /* ignoring error return here */
19500bce597dSJeff Cody         bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
19514dca4b63SNaphtali Sprei     }
19524dca4b63SNaphtali Sprei 
19531d44952fSChristoph Hellwig     return ret;
195433e3963eSbellard }
195533e3963eSbellard 
1956e8877497SStefan Hajnoczi int bdrv_commit_all(void)
19576ab4b5abSMarkus Armbruster {
19586ab4b5abSMarkus Armbruster     BlockDriverState *bs;
19596ab4b5abSMarkus Armbruster 
19606ab4b5abSMarkus Armbruster     QTAILQ_FOREACH(bs, &bdrv_states, list) {
1961272d2d8eSJeff Cody         if (bs->drv && bs->backing_hd) {
1962e8877497SStefan Hajnoczi             int ret = bdrv_commit(bs);
1963e8877497SStefan Hajnoczi             if (ret < 0) {
1964e8877497SStefan Hajnoczi                 return ret;
19656ab4b5abSMarkus Armbruster             }
19666ab4b5abSMarkus Armbruster         }
1967272d2d8eSJeff Cody     }
1968e8877497SStefan Hajnoczi     return 0;
1969e8877497SStefan Hajnoczi }
19706ab4b5abSMarkus Armbruster 
1971dbffbdcfSStefan Hajnoczi /**
1972dbffbdcfSStefan Hajnoczi  * Remove an active request from the tracked requests list
1973dbffbdcfSStefan Hajnoczi  *
1974dbffbdcfSStefan Hajnoczi  * This function should be called when a tracked request is completing.
1975dbffbdcfSStefan Hajnoczi  */
1976dbffbdcfSStefan Hajnoczi static void tracked_request_end(BdrvTrackedRequest *req)
1977dbffbdcfSStefan Hajnoczi {
1978dbffbdcfSStefan Hajnoczi     QLIST_REMOVE(req, list);
1979f4658285SStefan Hajnoczi     qemu_co_queue_restart_all(&req->wait_queue);
1980dbffbdcfSStefan Hajnoczi }
1981dbffbdcfSStefan Hajnoczi 
1982dbffbdcfSStefan Hajnoczi /**
1983dbffbdcfSStefan Hajnoczi  * Add an active request to the tracked requests list
1984dbffbdcfSStefan Hajnoczi  */
1985dbffbdcfSStefan Hajnoczi static void tracked_request_begin(BdrvTrackedRequest *req,
1986dbffbdcfSStefan Hajnoczi                                   BlockDriverState *bs,
1987dbffbdcfSStefan Hajnoczi                                   int64_t sector_num,
1988dbffbdcfSStefan Hajnoczi                                   int nb_sectors, bool is_write)
1989dbffbdcfSStefan Hajnoczi {
1990dbffbdcfSStefan Hajnoczi     *req = (BdrvTrackedRequest){
1991dbffbdcfSStefan Hajnoczi         .bs = bs,
1992dbffbdcfSStefan Hajnoczi         .sector_num = sector_num,
1993dbffbdcfSStefan Hajnoczi         .nb_sectors = nb_sectors,
1994dbffbdcfSStefan Hajnoczi         .is_write = is_write,
19955f8b6491SStefan Hajnoczi         .co = qemu_coroutine_self(),
1996dbffbdcfSStefan Hajnoczi     };
1997dbffbdcfSStefan Hajnoczi 
1998f4658285SStefan Hajnoczi     qemu_co_queue_init(&req->wait_queue);
1999f4658285SStefan Hajnoczi 
2000dbffbdcfSStefan Hajnoczi     QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
2001dbffbdcfSStefan Hajnoczi }
2002dbffbdcfSStefan Hajnoczi 
2003d83947acSStefan Hajnoczi /**
2004d83947acSStefan Hajnoczi  * Round a region to cluster boundaries
2005d83947acSStefan Hajnoczi  */
2006343bded4SPaolo Bonzini void bdrv_round_to_clusters(BlockDriverState *bs,
2007d83947acSStefan Hajnoczi                             int64_t sector_num, int nb_sectors,
2008d83947acSStefan Hajnoczi                             int64_t *cluster_sector_num,
2009d83947acSStefan Hajnoczi                             int *cluster_nb_sectors)
2010d83947acSStefan Hajnoczi {
2011d83947acSStefan Hajnoczi     BlockDriverInfo bdi;
2012d83947acSStefan Hajnoczi 
2013d83947acSStefan Hajnoczi     if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
2014d83947acSStefan Hajnoczi         *cluster_sector_num = sector_num;
2015d83947acSStefan Hajnoczi         *cluster_nb_sectors = nb_sectors;
2016d83947acSStefan Hajnoczi     } else {
2017d83947acSStefan Hajnoczi         int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
2018d83947acSStefan Hajnoczi         *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
2019d83947acSStefan Hajnoczi         *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
2020d83947acSStefan Hajnoczi                                             nb_sectors, c);
2021d83947acSStefan Hajnoczi     }
2022d83947acSStefan Hajnoczi }
2023d83947acSStefan Hajnoczi 
2024f4658285SStefan Hajnoczi static bool tracked_request_overlaps(BdrvTrackedRequest *req,
2025f4658285SStefan Hajnoczi                                      int64_t sector_num, int nb_sectors) {
2026d83947acSStefan Hajnoczi     /*        aaaa   bbbb */
2027d83947acSStefan Hajnoczi     if (sector_num >= req->sector_num + req->nb_sectors) {
2028d83947acSStefan Hajnoczi         return false;
2029d83947acSStefan Hajnoczi     }
2030d83947acSStefan Hajnoczi     /* bbbb   aaaa        */
2031d83947acSStefan Hajnoczi     if (req->sector_num >= sector_num + nb_sectors) {
2032d83947acSStefan Hajnoczi         return false;
2033d83947acSStefan Hajnoczi     }
2034d83947acSStefan Hajnoczi     return true;
2035f4658285SStefan Hajnoczi }
2036f4658285SStefan Hajnoczi 
2037f4658285SStefan Hajnoczi static void coroutine_fn wait_for_overlapping_requests(BlockDriverState *bs,
2038f4658285SStefan Hajnoczi         int64_t sector_num, int nb_sectors)
2039f4658285SStefan Hajnoczi {
2040f4658285SStefan Hajnoczi     BdrvTrackedRequest *req;
2041d83947acSStefan Hajnoczi     int64_t cluster_sector_num;
2042d83947acSStefan Hajnoczi     int cluster_nb_sectors;
2043f4658285SStefan Hajnoczi     bool retry;
2044f4658285SStefan Hajnoczi 
2045d83947acSStefan Hajnoczi     /* If we touch the same cluster it counts as an overlap.  This guarantees
2046d83947acSStefan Hajnoczi      * that allocating writes will be serialized and not race with each other
2047d83947acSStefan Hajnoczi      * for the same cluster.  For example, in copy-on-read it ensures that the
2048d83947acSStefan Hajnoczi      * CoR read and write operations are atomic and guest writes cannot
2049d83947acSStefan Hajnoczi      * interleave between them.
2050d83947acSStefan Hajnoczi      */
2051343bded4SPaolo Bonzini     bdrv_round_to_clusters(bs, sector_num, nb_sectors,
2052d83947acSStefan Hajnoczi                            &cluster_sector_num, &cluster_nb_sectors);
2053d83947acSStefan Hajnoczi 
2054f4658285SStefan Hajnoczi     do {
2055f4658285SStefan Hajnoczi         retry = false;
2056f4658285SStefan Hajnoczi         QLIST_FOREACH(req, &bs->tracked_requests, list) {
2057d83947acSStefan Hajnoczi             if (tracked_request_overlaps(req, cluster_sector_num,
2058d83947acSStefan Hajnoczi                                          cluster_nb_sectors)) {
20595f8b6491SStefan Hajnoczi                 /* Hitting this means there was a reentrant request, for
20605f8b6491SStefan Hajnoczi                  * example, a block driver issuing nested requests.  This must
20615f8b6491SStefan Hajnoczi                  * never happen since it means deadlock.
20625f8b6491SStefan Hajnoczi                  */
20635f8b6491SStefan Hajnoczi                 assert(qemu_coroutine_self() != req->co);
20645f8b6491SStefan Hajnoczi 
2065f4658285SStefan Hajnoczi                 qemu_co_queue_wait(&req->wait_queue);
2066f4658285SStefan Hajnoczi                 retry = true;
2067f4658285SStefan Hajnoczi                 break;
2068f4658285SStefan Hajnoczi             }
2069f4658285SStefan Hajnoczi         }
2070f4658285SStefan Hajnoczi     } while (retry);
2071f4658285SStefan Hajnoczi }
2072f4658285SStefan Hajnoczi 
2073756e6736SKevin Wolf /*
2074756e6736SKevin Wolf  * Return values:
2075756e6736SKevin Wolf  * 0        - success
2076756e6736SKevin Wolf  * -EINVAL  - backing format specified, but no file
2077756e6736SKevin Wolf  * -ENOSPC  - can't update the backing file because no space is left in the
2078756e6736SKevin Wolf  *            image file header
2079756e6736SKevin Wolf  * -ENOTSUP - format driver doesn't support changing the backing file
2080756e6736SKevin Wolf  */
2081756e6736SKevin Wolf int bdrv_change_backing_file(BlockDriverState *bs,
2082756e6736SKevin Wolf     const char *backing_file, const char *backing_fmt)
2083756e6736SKevin Wolf {
2084756e6736SKevin Wolf     BlockDriver *drv = bs->drv;
2085469ef350SPaolo Bonzini     int ret;
2086756e6736SKevin Wolf 
20875f377794SPaolo Bonzini     /* Backing file format doesn't make sense without a backing file */
20885f377794SPaolo Bonzini     if (backing_fmt && !backing_file) {
20895f377794SPaolo Bonzini         return -EINVAL;
20905f377794SPaolo Bonzini     }
20915f377794SPaolo Bonzini 
2092756e6736SKevin Wolf     if (drv->bdrv_change_backing_file != NULL) {
2093469ef350SPaolo Bonzini         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2094756e6736SKevin Wolf     } else {
2095469ef350SPaolo Bonzini         ret = -ENOTSUP;
2096756e6736SKevin Wolf     }
2097469ef350SPaolo Bonzini 
2098469ef350SPaolo Bonzini     if (ret == 0) {
2099469ef350SPaolo Bonzini         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2100469ef350SPaolo Bonzini         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2101469ef350SPaolo Bonzini     }
2102469ef350SPaolo Bonzini     return ret;
2103756e6736SKevin Wolf }
2104756e6736SKevin Wolf 
21056ebdcee2SJeff Cody /*
21066ebdcee2SJeff Cody  * Finds the image layer in the chain that has 'bs' as its backing file.
21076ebdcee2SJeff Cody  *
21086ebdcee2SJeff Cody  * active is the current topmost image.
21096ebdcee2SJeff Cody  *
21106ebdcee2SJeff Cody  * Returns NULL if bs is not found in active's image chain,
21116ebdcee2SJeff Cody  * or if active == bs.
21126ebdcee2SJeff Cody  */
21136ebdcee2SJeff Cody BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
21146ebdcee2SJeff Cody                                     BlockDriverState *bs)
21156ebdcee2SJeff Cody {
21166ebdcee2SJeff Cody     BlockDriverState *overlay = NULL;
21176ebdcee2SJeff Cody     BlockDriverState *intermediate;
21186ebdcee2SJeff Cody 
21196ebdcee2SJeff Cody     assert(active != NULL);
21206ebdcee2SJeff Cody     assert(bs != NULL);
21216ebdcee2SJeff Cody 
21226ebdcee2SJeff Cody     /* if bs is the same as active, then by definition it has no overlay
21236ebdcee2SJeff Cody      */
21246ebdcee2SJeff Cody     if (active == bs) {
21256ebdcee2SJeff Cody         return NULL;
21266ebdcee2SJeff Cody     }
21276ebdcee2SJeff Cody 
21286ebdcee2SJeff Cody     intermediate = active;
21296ebdcee2SJeff Cody     while (intermediate->backing_hd) {
21306ebdcee2SJeff Cody         if (intermediate->backing_hd == bs) {
21316ebdcee2SJeff Cody             overlay = intermediate;
21326ebdcee2SJeff Cody             break;
21336ebdcee2SJeff Cody         }
21346ebdcee2SJeff Cody         intermediate = intermediate->backing_hd;
21356ebdcee2SJeff Cody     }
21366ebdcee2SJeff Cody 
21376ebdcee2SJeff Cody     return overlay;
21386ebdcee2SJeff Cody }
21396ebdcee2SJeff Cody 
21406ebdcee2SJeff Cody typedef struct BlkIntermediateStates {
21416ebdcee2SJeff Cody     BlockDriverState *bs;
21426ebdcee2SJeff Cody     QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
21436ebdcee2SJeff Cody } BlkIntermediateStates;
21446ebdcee2SJeff Cody 
21456ebdcee2SJeff Cody 
21466ebdcee2SJeff Cody /*
21476ebdcee2SJeff Cody  * Drops images above 'base' up to and including 'top', and sets the image
21486ebdcee2SJeff Cody  * above 'top' to have base as its backing file.
21496ebdcee2SJeff Cody  *
21506ebdcee2SJeff Cody  * Requires that the overlay to 'top' is opened r/w, so that the backing file
21516ebdcee2SJeff Cody  * information in 'bs' can be properly updated.
21526ebdcee2SJeff Cody  *
21536ebdcee2SJeff Cody  * E.g., this will convert the following chain:
21546ebdcee2SJeff Cody  * bottom <- base <- intermediate <- top <- active
21556ebdcee2SJeff Cody  *
21566ebdcee2SJeff Cody  * to
21576ebdcee2SJeff Cody  *
21586ebdcee2SJeff Cody  * bottom <- base <- active
21596ebdcee2SJeff Cody  *
21606ebdcee2SJeff Cody  * It is allowed for bottom==base, in which case it converts:
21616ebdcee2SJeff Cody  *
21626ebdcee2SJeff Cody  * base <- intermediate <- top <- active
21636ebdcee2SJeff Cody  *
21646ebdcee2SJeff Cody  * to
21656ebdcee2SJeff Cody  *
21666ebdcee2SJeff Cody  * base <- active
21676ebdcee2SJeff Cody  *
21686ebdcee2SJeff Cody  * Error conditions:
21696ebdcee2SJeff Cody  *  if active == top, that is considered an error
21706ebdcee2SJeff Cody  *
21716ebdcee2SJeff Cody  */
21726ebdcee2SJeff Cody int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
21736ebdcee2SJeff Cody                            BlockDriverState *base)
21746ebdcee2SJeff Cody {
21756ebdcee2SJeff Cody     BlockDriverState *intermediate;
21766ebdcee2SJeff Cody     BlockDriverState *base_bs = NULL;
21776ebdcee2SJeff Cody     BlockDriverState *new_top_bs = NULL;
21786ebdcee2SJeff Cody     BlkIntermediateStates *intermediate_state, *next;
21796ebdcee2SJeff Cody     int ret = -EIO;
21806ebdcee2SJeff Cody 
21816ebdcee2SJeff Cody     QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
21826ebdcee2SJeff Cody     QSIMPLEQ_INIT(&states_to_delete);
21836ebdcee2SJeff Cody 
21846ebdcee2SJeff Cody     if (!top->drv || !base->drv) {
21856ebdcee2SJeff Cody         goto exit;
21866ebdcee2SJeff Cody     }
21876ebdcee2SJeff Cody 
21886ebdcee2SJeff Cody     new_top_bs = bdrv_find_overlay(active, top);
21896ebdcee2SJeff Cody 
21906ebdcee2SJeff Cody     if (new_top_bs == NULL) {
21916ebdcee2SJeff Cody         /* we could not find the image above 'top', this is an error */
21926ebdcee2SJeff Cody         goto exit;
21936ebdcee2SJeff Cody     }
21946ebdcee2SJeff Cody 
21956ebdcee2SJeff Cody     /* special case of new_top_bs->backing_hd already pointing to base - nothing
21966ebdcee2SJeff Cody      * to do, no intermediate images */
21976ebdcee2SJeff Cody     if (new_top_bs->backing_hd == base) {
21986ebdcee2SJeff Cody         ret = 0;
21996ebdcee2SJeff Cody         goto exit;
22006ebdcee2SJeff Cody     }
22016ebdcee2SJeff Cody 
22026ebdcee2SJeff Cody     intermediate = top;
22036ebdcee2SJeff Cody 
22046ebdcee2SJeff Cody     /* now we will go down through the list, and add each BDS we find
22056ebdcee2SJeff Cody      * into our deletion queue, until we hit the 'base'
22066ebdcee2SJeff Cody      */
22076ebdcee2SJeff Cody     while (intermediate) {
22086ebdcee2SJeff Cody         intermediate_state = g_malloc0(sizeof(BlkIntermediateStates));
22096ebdcee2SJeff Cody         intermediate_state->bs = intermediate;
22106ebdcee2SJeff Cody         QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
22116ebdcee2SJeff Cody 
22126ebdcee2SJeff Cody         if (intermediate->backing_hd == base) {
22136ebdcee2SJeff Cody             base_bs = intermediate->backing_hd;
22146ebdcee2SJeff Cody             break;
22156ebdcee2SJeff Cody         }
22166ebdcee2SJeff Cody         intermediate = intermediate->backing_hd;
22176ebdcee2SJeff Cody     }
22186ebdcee2SJeff Cody     if (base_bs == NULL) {
22196ebdcee2SJeff Cody         /* something went wrong, we did not end at the base. safely
22206ebdcee2SJeff Cody          * unravel everything, and exit with error */
22216ebdcee2SJeff Cody         goto exit;
22226ebdcee2SJeff Cody     }
22236ebdcee2SJeff Cody 
22246ebdcee2SJeff Cody     /* success - we can delete the intermediate states, and link top->base */
22256ebdcee2SJeff Cody     ret = bdrv_change_backing_file(new_top_bs, base_bs->filename,
22266ebdcee2SJeff Cody                                    base_bs->drv ? base_bs->drv->format_name : "");
22276ebdcee2SJeff Cody     if (ret) {
22286ebdcee2SJeff Cody         goto exit;
22296ebdcee2SJeff Cody     }
22306ebdcee2SJeff Cody     new_top_bs->backing_hd = base_bs;
22316ebdcee2SJeff Cody 
22326ebdcee2SJeff Cody 
22336ebdcee2SJeff Cody     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
22346ebdcee2SJeff Cody         /* so that bdrv_close() does not recursively close the chain */
22356ebdcee2SJeff Cody         intermediate_state->bs->backing_hd = NULL;
22364f6fd349SFam Zheng         bdrv_unref(intermediate_state->bs);
22376ebdcee2SJeff Cody     }
22386ebdcee2SJeff Cody     ret = 0;
22396ebdcee2SJeff Cody 
22406ebdcee2SJeff Cody exit:
22416ebdcee2SJeff Cody     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
22426ebdcee2SJeff Cody         g_free(intermediate_state);
22436ebdcee2SJeff Cody     }
22446ebdcee2SJeff Cody     return ret;
22456ebdcee2SJeff Cody }
22466ebdcee2SJeff Cody 
22476ebdcee2SJeff Cody 
224871d0770cSaliguori static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
224971d0770cSaliguori                                    size_t size)
225071d0770cSaliguori {
225171d0770cSaliguori     int64_t len;
225271d0770cSaliguori 
225371d0770cSaliguori     if (!bdrv_is_inserted(bs))
225471d0770cSaliguori         return -ENOMEDIUM;
225571d0770cSaliguori 
225671d0770cSaliguori     if (bs->growable)
225771d0770cSaliguori         return 0;
225871d0770cSaliguori 
225971d0770cSaliguori     len = bdrv_getlength(bs);
226071d0770cSaliguori 
2261fbb7b4e0SKevin Wolf     if (offset < 0)
2262fbb7b4e0SKevin Wolf         return -EIO;
2263fbb7b4e0SKevin Wolf 
2264fbb7b4e0SKevin Wolf     if ((offset > len) || (len - offset < size))
226571d0770cSaliguori         return -EIO;
226671d0770cSaliguori 
226771d0770cSaliguori     return 0;
226871d0770cSaliguori }
226971d0770cSaliguori 
227071d0770cSaliguori static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
227171d0770cSaliguori                               int nb_sectors)
227271d0770cSaliguori {
2273eb5a3165SJes Sorensen     return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
2274eb5a3165SJes Sorensen                                    nb_sectors * BDRV_SECTOR_SIZE);
227571d0770cSaliguori }
227671d0770cSaliguori 
22771c9805a3SStefan Hajnoczi typedef struct RwCo {
22781c9805a3SStefan Hajnoczi     BlockDriverState *bs;
22791c9805a3SStefan Hajnoczi     int64_t sector_num;
22801c9805a3SStefan Hajnoczi     int nb_sectors;
22811c9805a3SStefan Hajnoczi     QEMUIOVector *qiov;
22821c9805a3SStefan Hajnoczi     bool is_write;
22831c9805a3SStefan Hajnoczi     int ret;
22844105eaaaSPeter Lieven     BdrvRequestFlags flags;
22851c9805a3SStefan Hajnoczi } RwCo;
22861c9805a3SStefan Hajnoczi 
22871c9805a3SStefan Hajnoczi static void coroutine_fn bdrv_rw_co_entry(void *opaque)
2288fc01f7e7Sbellard {
22891c9805a3SStefan Hajnoczi     RwCo *rwco = opaque;
2290fc01f7e7Sbellard 
22911c9805a3SStefan Hajnoczi     if (!rwco->is_write) {
22921c9805a3SStefan Hajnoczi         rwco->ret = bdrv_co_do_readv(rwco->bs, rwco->sector_num,
22934105eaaaSPeter Lieven                                      rwco->nb_sectors, rwco->qiov,
22944105eaaaSPeter Lieven                                      rwco->flags);
22951c9805a3SStefan Hajnoczi     } else {
22961c9805a3SStefan Hajnoczi         rwco->ret = bdrv_co_do_writev(rwco->bs, rwco->sector_num,
22974105eaaaSPeter Lieven                                       rwco->nb_sectors, rwco->qiov,
22984105eaaaSPeter Lieven                                       rwco->flags);
22991c9805a3SStefan Hajnoczi     }
23001c9805a3SStefan Hajnoczi }
2301e7a8a783SKevin Wolf 
23021c9805a3SStefan Hajnoczi /*
23038d3b1a2dSKevin Wolf  * Process a vectored synchronous request using coroutines
23041c9805a3SStefan Hajnoczi  */
23058d3b1a2dSKevin Wolf static int bdrv_rwv_co(BlockDriverState *bs, int64_t sector_num,
23064105eaaaSPeter Lieven                        QEMUIOVector *qiov, bool is_write,
23074105eaaaSPeter Lieven                        BdrvRequestFlags flags)
23081c9805a3SStefan Hajnoczi {
23091c9805a3SStefan Hajnoczi     Coroutine *co;
23101c9805a3SStefan Hajnoczi     RwCo rwco = {
23111c9805a3SStefan Hajnoczi         .bs = bs,
23121c9805a3SStefan Hajnoczi         .sector_num = sector_num,
23138d3b1a2dSKevin Wolf         .nb_sectors = qiov->size >> BDRV_SECTOR_BITS,
23148d3b1a2dSKevin Wolf         .qiov = qiov,
23151c9805a3SStefan Hajnoczi         .is_write = is_write,
23161c9805a3SStefan Hajnoczi         .ret = NOT_DONE,
23174105eaaaSPeter Lieven         .flags = flags,
23181c9805a3SStefan Hajnoczi     };
23198d3b1a2dSKevin Wolf     assert((qiov->size & (BDRV_SECTOR_SIZE - 1)) == 0);
23201c9805a3SStefan Hajnoczi 
2321498e386cSZhi Yong Wu     /**
2322498e386cSZhi Yong Wu      * In sync call context, when the vcpu is blocked, this throttling timer
2323498e386cSZhi Yong Wu      * will not fire; so the I/O throttling function has to be disabled here
2324498e386cSZhi Yong Wu      * if it has been enabled.
2325498e386cSZhi Yong Wu      */
2326498e386cSZhi Yong Wu     if (bs->io_limits_enabled) {
2327498e386cSZhi Yong Wu         fprintf(stderr, "Disabling I/O throttling on '%s' due "
2328498e386cSZhi Yong Wu                         "to synchronous I/O.\n", bdrv_get_device_name(bs));
2329498e386cSZhi Yong Wu         bdrv_io_limits_disable(bs);
2330498e386cSZhi Yong Wu     }
2331498e386cSZhi Yong Wu 
23321c9805a3SStefan Hajnoczi     if (qemu_in_coroutine()) {
23331c9805a3SStefan Hajnoczi         /* Fast-path if already in coroutine context */
23341c9805a3SStefan Hajnoczi         bdrv_rw_co_entry(&rwco);
23351c9805a3SStefan Hajnoczi     } else {
23361c9805a3SStefan Hajnoczi         co = qemu_coroutine_create(bdrv_rw_co_entry);
23371c9805a3SStefan Hajnoczi         qemu_coroutine_enter(co, &rwco);
23381c9805a3SStefan Hajnoczi         while (rwco.ret == NOT_DONE) {
23391c9805a3SStefan Hajnoczi             qemu_aio_wait();
23401c9805a3SStefan Hajnoczi         }
23411c9805a3SStefan Hajnoczi     }
23421c9805a3SStefan Hajnoczi     return rwco.ret;
2343e7a8a783SKevin Wolf }
2344e7a8a783SKevin Wolf 
23458d3b1a2dSKevin Wolf /*
23468d3b1a2dSKevin Wolf  * Process a synchronous request using coroutines
23478d3b1a2dSKevin Wolf  */
23488d3b1a2dSKevin Wolf static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
23494105eaaaSPeter Lieven                       int nb_sectors, bool is_write, BdrvRequestFlags flags)
23508d3b1a2dSKevin Wolf {
23518d3b1a2dSKevin Wolf     QEMUIOVector qiov;
23528d3b1a2dSKevin Wolf     struct iovec iov = {
23538d3b1a2dSKevin Wolf         .iov_base = (void *)buf,
23548d3b1a2dSKevin Wolf         .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
23558d3b1a2dSKevin Wolf     };
23568d3b1a2dSKevin Wolf 
23578d3b1a2dSKevin Wolf     qemu_iovec_init_external(&qiov, &iov, 1);
23584105eaaaSPeter Lieven     return bdrv_rwv_co(bs, sector_num, &qiov, is_write, flags);
23598d3b1a2dSKevin Wolf }
23608d3b1a2dSKevin Wolf 
23611c9805a3SStefan Hajnoczi /* return < 0 if error. See bdrv_write() for the return codes */
23621c9805a3SStefan Hajnoczi int bdrv_read(BlockDriverState *bs, int64_t sector_num,
23631c9805a3SStefan Hajnoczi               uint8_t *buf, int nb_sectors)
23641c9805a3SStefan Hajnoczi {
23654105eaaaSPeter Lieven     return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0);
236683f64091Sbellard }
2367fc01f7e7Sbellard 
236807d27a44SMarkus Armbruster /* Just like bdrv_read(), but with I/O throttling temporarily disabled */
236907d27a44SMarkus Armbruster int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
237007d27a44SMarkus Armbruster                           uint8_t *buf, int nb_sectors)
237107d27a44SMarkus Armbruster {
237207d27a44SMarkus Armbruster     bool enabled;
237307d27a44SMarkus Armbruster     int ret;
237407d27a44SMarkus Armbruster 
237507d27a44SMarkus Armbruster     enabled = bs->io_limits_enabled;
237607d27a44SMarkus Armbruster     bs->io_limits_enabled = false;
23774e7395e8SPeter Lieven     ret = bdrv_read(bs, sector_num, buf, nb_sectors);
237807d27a44SMarkus Armbruster     bs->io_limits_enabled = enabled;
237907d27a44SMarkus Armbruster     return ret;
238007d27a44SMarkus Armbruster }
238107d27a44SMarkus Armbruster 
238219cb3738Sbellard /* Return < 0 if error. Important errors are:
238319cb3738Sbellard   -EIO         generic I/O error (may happen for all errors)
238419cb3738Sbellard   -ENOMEDIUM   No media inserted.
238519cb3738Sbellard   -EINVAL      Invalid sector number or nb_sectors
238619cb3738Sbellard   -EACCES      Trying to write a read-only device
238719cb3738Sbellard */
2388fc01f7e7Sbellard int bdrv_write(BlockDriverState *bs, int64_t sector_num,
2389fc01f7e7Sbellard                const uint8_t *buf, int nb_sectors)
2390fc01f7e7Sbellard {
23914105eaaaSPeter Lieven     return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
239283f64091Sbellard }
239383f64091Sbellard 
23948d3b1a2dSKevin Wolf int bdrv_writev(BlockDriverState *bs, int64_t sector_num, QEMUIOVector *qiov)
23958d3b1a2dSKevin Wolf {
23964105eaaaSPeter Lieven     return bdrv_rwv_co(bs, sector_num, qiov, true, 0);
23974105eaaaSPeter Lieven }
23984105eaaaSPeter Lieven 
23994105eaaaSPeter Lieven int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
24004105eaaaSPeter Lieven {
24014105eaaaSPeter Lieven     return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true,
24024105eaaaSPeter Lieven                       BDRV_REQ_ZERO_WRITE);
24038d3b1a2dSKevin Wolf }
24048d3b1a2dSKevin Wolf 
2405eda578e5Saliguori int bdrv_pread(BlockDriverState *bs, int64_t offset,
2406eda578e5Saliguori                void *buf, int count1)
240783f64091Sbellard {
24086ea44308SJan Kiszka     uint8_t tmp_buf[BDRV_SECTOR_SIZE];
240983f64091Sbellard     int len, nb_sectors, count;
241083f64091Sbellard     int64_t sector_num;
24119a8c4cceSKevin Wolf     int ret;
241283f64091Sbellard 
241383f64091Sbellard     count = count1;
241483f64091Sbellard     /* first read to align to sector start */
24156ea44308SJan Kiszka     len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
241683f64091Sbellard     if (len > count)
241783f64091Sbellard         len = count;
24186ea44308SJan Kiszka     sector_num = offset >> BDRV_SECTOR_BITS;
241983f64091Sbellard     if (len > 0) {
24209a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
24219a8c4cceSKevin Wolf             return ret;
24226ea44308SJan Kiszka         memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len);
242383f64091Sbellard         count -= len;
242483f64091Sbellard         if (count == 0)
242583f64091Sbellard             return count1;
242683f64091Sbellard         sector_num++;
242783f64091Sbellard         buf += len;
242883f64091Sbellard     }
242983f64091Sbellard 
243083f64091Sbellard     /* read the sectors "in place" */
24316ea44308SJan Kiszka     nb_sectors = count >> BDRV_SECTOR_BITS;
243283f64091Sbellard     if (nb_sectors > 0) {
24339a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0)
24349a8c4cceSKevin Wolf             return ret;
243583f64091Sbellard         sector_num += nb_sectors;
24366ea44308SJan Kiszka         len = nb_sectors << BDRV_SECTOR_BITS;
243783f64091Sbellard         buf += len;
243883f64091Sbellard         count -= len;
243983f64091Sbellard     }
244083f64091Sbellard 
244183f64091Sbellard     /* add data from the last sector */
244283f64091Sbellard     if (count > 0) {
24439a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
24449a8c4cceSKevin Wolf             return ret;
244583f64091Sbellard         memcpy(buf, tmp_buf, count);
244683f64091Sbellard     }
244783f64091Sbellard     return count1;
244883f64091Sbellard }
244983f64091Sbellard 
24508d3b1a2dSKevin Wolf int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov)
245183f64091Sbellard {
24526ea44308SJan Kiszka     uint8_t tmp_buf[BDRV_SECTOR_SIZE];
245383f64091Sbellard     int len, nb_sectors, count;
245483f64091Sbellard     int64_t sector_num;
24559a8c4cceSKevin Wolf     int ret;
245683f64091Sbellard 
24578d3b1a2dSKevin Wolf     count = qiov->size;
24588d3b1a2dSKevin Wolf 
245983f64091Sbellard     /* first write to align to sector start */
24606ea44308SJan Kiszka     len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1);
246183f64091Sbellard     if (len > count)
246283f64091Sbellard         len = count;
24636ea44308SJan Kiszka     sector_num = offset >> BDRV_SECTOR_BITS;
246483f64091Sbellard     if (len > 0) {
24659a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
24669a8c4cceSKevin Wolf             return ret;
24678d3b1a2dSKevin Wolf         qemu_iovec_to_buf(qiov, 0, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)),
24688d3b1a2dSKevin Wolf                           len);
24699a8c4cceSKevin Wolf         if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
24709a8c4cceSKevin Wolf             return ret;
247183f64091Sbellard         count -= len;
247283f64091Sbellard         if (count == 0)
24738d3b1a2dSKevin Wolf             return qiov->size;
247483f64091Sbellard         sector_num++;
247583f64091Sbellard     }
247683f64091Sbellard 
247783f64091Sbellard     /* write the sectors "in place" */
24786ea44308SJan Kiszka     nb_sectors = count >> BDRV_SECTOR_BITS;
247983f64091Sbellard     if (nb_sectors > 0) {
24808d3b1a2dSKevin Wolf         QEMUIOVector qiov_inplace;
24818d3b1a2dSKevin Wolf 
24828d3b1a2dSKevin Wolf         qemu_iovec_init(&qiov_inplace, qiov->niov);
24838d3b1a2dSKevin Wolf         qemu_iovec_concat(&qiov_inplace, qiov, len,
24848d3b1a2dSKevin Wolf                           nb_sectors << BDRV_SECTOR_BITS);
24858d3b1a2dSKevin Wolf         ret = bdrv_writev(bs, sector_num, &qiov_inplace);
24868d3b1a2dSKevin Wolf         qemu_iovec_destroy(&qiov_inplace);
24878d3b1a2dSKevin Wolf         if (ret < 0) {
24889a8c4cceSKevin Wolf             return ret;
24898d3b1a2dSKevin Wolf         }
24908d3b1a2dSKevin Wolf 
249183f64091Sbellard         sector_num += nb_sectors;
24926ea44308SJan Kiszka         len = nb_sectors << BDRV_SECTOR_BITS;
249383f64091Sbellard         count -= len;
249483f64091Sbellard     }
249583f64091Sbellard 
249683f64091Sbellard     /* add data from the last sector */
249783f64091Sbellard     if (count > 0) {
24989a8c4cceSKevin Wolf         if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0)
24999a8c4cceSKevin Wolf             return ret;
25008d3b1a2dSKevin Wolf         qemu_iovec_to_buf(qiov, qiov->size - count, tmp_buf, count);
25019a8c4cceSKevin Wolf         if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0)
25029a8c4cceSKevin Wolf             return ret;
250383f64091Sbellard     }
25048d3b1a2dSKevin Wolf     return qiov->size;
25058d3b1a2dSKevin Wolf }
25068d3b1a2dSKevin Wolf 
25078d3b1a2dSKevin Wolf int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
25088d3b1a2dSKevin Wolf                 const void *buf, int count1)
25098d3b1a2dSKevin Wolf {
25108d3b1a2dSKevin Wolf     QEMUIOVector qiov;
25118d3b1a2dSKevin Wolf     struct iovec iov = {
25128d3b1a2dSKevin Wolf         .iov_base   = (void *) buf,
25138d3b1a2dSKevin Wolf         .iov_len    = count1,
25148d3b1a2dSKevin Wolf     };
25158d3b1a2dSKevin Wolf 
25168d3b1a2dSKevin Wolf     qemu_iovec_init_external(&qiov, &iov, 1);
25178d3b1a2dSKevin Wolf     return bdrv_pwritev(bs, offset, &qiov);
251883f64091Sbellard }
251983f64091Sbellard 
2520f08145feSKevin Wolf /*
2521f08145feSKevin Wolf  * Writes to the file and ensures that no writes are reordered across this
2522f08145feSKevin Wolf  * request (acts as a barrier)
2523f08145feSKevin Wolf  *
2524f08145feSKevin Wolf  * Returns 0 on success, -errno in error cases.
2525f08145feSKevin Wolf  */
2526f08145feSKevin Wolf int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2527f08145feSKevin Wolf     const void *buf, int count)
2528f08145feSKevin Wolf {
2529f08145feSKevin Wolf     int ret;
2530f08145feSKevin Wolf 
2531f08145feSKevin Wolf     ret = bdrv_pwrite(bs, offset, buf, count);
2532f08145feSKevin Wolf     if (ret < 0) {
2533f08145feSKevin Wolf         return ret;
2534f08145feSKevin Wolf     }
2535f08145feSKevin Wolf 
2536f05fa4adSPaolo Bonzini     /* No flush needed for cache modes that already do it */
2537f05fa4adSPaolo Bonzini     if (bs->enable_write_cache) {
2538f08145feSKevin Wolf         bdrv_flush(bs);
2539f08145feSKevin Wolf     }
2540f08145feSKevin Wolf 
2541f08145feSKevin Wolf     return 0;
2542f08145feSKevin Wolf }
2543f08145feSKevin Wolf 
2544470c0504SStefan Hajnoczi static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
2545ab185921SStefan Hajnoczi         int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2546ab185921SStefan Hajnoczi {
2547ab185921SStefan Hajnoczi     /* Perform I/O through a temporary buffer so that users who scribble over
2548ab185921SStefan Hajnoczi      * their read buffer while the operation is in progress do not end up
2549ab185921SStefan Hajnoczi      * modifying the image file.  This is critical for zero-copy guest I/O
2550ab185921SStefan Hajnoczi      * where anything might happen inside guest memory.
2551ab185921SStefan Hajnoczi      */
2552ab185921SStefan Hajnoczi     void *bounce_buffer;
2553ab185921SStefan Hajnoczi 
255479c053bdSStefan Hajnoczi     BlockDriver *drv = bs->drv;
2555ab185921SStefan Hajnoczi     struct iovec iov;
2556ab185921SStefan Hajnoczi     QEMUIOVector bounce_qiov;
2557ab185921SStefan Hajnoczi     int64_t cluster_sector_num;
2558ab185921SStefan Hajnoczi     int cluster_nb_sectors;
2559ab185921SStefan Hajnoczi     size_t skip_bytes;
2560ab185921SStefan Hajnoczi     int ret;
2561ab185921SStefan Hajnoczi 
2562ab185921SStefan Hajnoczi     /* Cover entire cluster so no additional backing file I/O is required when
2563ab185921SStefan Hajnoczi      * allocating cluster in the image file.
2564ab185921SStefan Hajnoczi      */
2565343bded4SPaolo Bonzini     bdrv_round_to_clusters(bs, sector_num, nb_sectors,
2566ab185921SStefan Hajnoczi                            &cluster_sector_num, &cluster_nb_sectors);
2567ab185921SStefan Hajnoczi 
2568470c0504SStefan Hajnoczi     trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2569ab185921SStefan Hajnoczi                                    cluster_sector_num, cluster_nb_sectors);
2570ab185921SStefan Hajnoczi 
2571ab185921SStefan Hajnoczi     iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2572ab185921SStefan Hajnoczi     iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
2573ab185921SStefan Hajnoczi     qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2574ab185921SStefan Hajnoczi 
257579c053bdSStefan Hajnoczi     ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2576ab185921SStefan Hajnoczi                              &bounce_qiov);
2577ab185921SStefan Hajnoczi     if (ret < 0) {
2578ab185921SStefan Hajnoczi         goto err;
2579ab185921SStefan Hajnoczi     }
2580ab185921SStefan Hajnoczi 
258179c053bdSStefan Hajnoczi     if (drv->bdrv_co_write_zeroes &&
258279c053bdSStefan Hajnoczi         buffer_is_zero(bounce_buffer, iov.iov_len)) {
2583621f0589SKevin Wolf         ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
258479c053bdSStefan Hajnoczi                                       cluster_nb_sectors);
258579c053bdSStefan Hajnoczi     } else {
2586f05fa4adSPaolo Bonzini         /* This does not change the data on the disk, it is not necessary
2587f05fa4adSPaolo Bonzini          * to flush even in cache=writethrough mode.
2588f05fa4adSPaolo Bonzini          */
258979c053bdSStefan Hajnoczi         ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
2590ab185921SStefan Hajnoczi                                   &bounce_qiov);
259179c053bdSStefan Hajnoczi     }
259279c053bdSStefan Hajnoczi 
2593ab185921SStefan Hajnoczi     if (ret < 0) {
2594ab185921SStefan Hajnoczi         /* It might be okay to ignore write errors for guest requests.  If this
2595ab185921SStefan Hajnoczi          * is a deliberate copy-on-read then we don't want to ignore the error.
2596ab185921SStefan Hajnoczi          * Simply report it in all cases.
2597ab185921SStefan Hajnoczi          */
2598ab185921SStefan Hajnoczi         goto err;
2599ab185921SStefan Hajnoczi     }
2600ab185921SStefan Hajnoczi 
2601ab185921SStefan Hajnoczi     skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
260203396148SMichael Tokarev     qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2603ab185921SStefan Hajnoczi                         nb_sectors * BDRV_SECTOR_SIZE);
2604ab185921SStefan Hajnoczi 
2605ab185921SStefan Hajnoczi err:
2606ab185921SStefan Hajnoczi     qemu_vfree(bounce_buffer);
2607ab185921SStefan Hajnoczi     return ret;
2608ab185921SStefan Hajnoczi }
2609ab185921SStefan Hajnoczi 
2610c5fbe571SStefan Hajnoczi /*
2611c5fbe571SStefan Hajnoczi  * Handle a read request in coroutine context
2612c5fbe571SStefan Hajnoczi  */
2613c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
2614470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2615470c0504SStefan Hajnoczi     BdrvRequestFlags flags)
2616da1fa91dSKevin Wolf {
2617da1fa91dSKevin Wolf     BlockDriver *drv = bs->drv;
2618dbffbdcfSStefan Hajnoczi     BdrvTrackedRequest req;
2619dbffbdcfSStefan Hajnoczi     int ret;
2620da1fa91dSKevin Wolf 
2621da1fa91dSKevin Wolf     if (!drv) {
2622da1fa91dSKevin Wolf         return -ENOMEDIUM;
2623da1fa91dSKevin Wolf     }
2624da1fa91dSKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2625da1fa91dSKevin Wolf         return -EIO;
2626da1fa91dSKevin Wolf     }
2627da1fa91dSKevin Wolf 
2628f4658285SStefan Hajnoczi     if (bs->copy_on_read) {
2629470c0504SStefan Hajnoczi         flags |= BDRV_REQ_COPY_ON_READ;
2630470c0504SStefan Hajnoczi     }
2631470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2632470c0504SStefan Hajnoczi         bs->copy_on_read_in_flight++;
2633470c0504SStefan Hajnoczi     }
2634470c0504SStefan Hajnoczi 
2635470c0504SStefan Hajnoczi     if (bs->copy_on_read_in_flight) {
2636f4658285SStefan Hajnoczi         wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2637f4658285SStefan Hajnoczi     }
2638f4658285SStefan Hajnoczi 
2639cc0681c4SBenoît Canet     /* throttling disk I/O */
2640cc0681c4SBenoît Canet     if (bs->io_limits_enabled) {
2641cc0681c4SBenoît Canet         bdrv_io_limits_intercept(bs, nb_sectors, false);
2642cc0681c4SBenoît Canet     }
2643cc0681c4SBenoît Canet 
2644dbffbdcfSStefan Hajnoczi     tracked_request_begin(&req, bs, sector_num, nb_sectors, false);
2645ab185921SStefan Hajnoczi 
2646470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2647ab185921SStefan Hajnoczi         int pnum;
2648ab185921SStefan Hajnoczi 
2649bdad13b9SPaolo Bonzini         ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum);
2650ab185921SStefan Hajnoczi         if (ret < 0) {
2651ab185921SStefan Hajnoczi             goto out;
2652ab185921SStefan Hajnoczi         }
2653ab185921SStefan Hajnoczi 
2654ab185921SStefan Hajnoczi         if (!ret || pnum != nb_sectors) {
2655470c0504SStefan Hajnoczi             ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
2656ab185921SStefan Hajnoczi             goto out;
2657ab185921SStefan Hajnoczi         }
2658ab185921SStefan Hajnoczi     }
2659ab185921SStefan Hajnoczi 
2660893a8f62SMORITA Kazutaka     if (!(bs->zero_beyond_eof && bs->growable)) {
2661dbffbdcfSStefan Hajnoczi         ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
2662893a8f62SMORITA Kazutaka     } else {
2663893a8f62SMORITA Kazutaka         /* Read zeros after EOF of growable BDSes */
2664893a8f62SMORITA Kazutaka         int64_t len, total_sectors, max_nb_sectors;
2665893a8f62SMORITA Kazutaka 
2666893a8f62SMORITA Kazutaka         len = bdrv_getlength(bs);
2667893a8f62SMORITA Kazutaka         if (len < 0) {
2668893a8f62SMORITA Kazutaka             ret = len;
2669893a8f62SMORITA Kazutaka             goto out;
2670893a8f62SMORITA Kazutaka         }
2671893a8f62SMORITA Kazutaka 
2672893a8f62SMORITA Kazutaka         total_sectors = len >> BDRV_SECTOR_BITS;
2673893a8f62SMORITA Kazutaka         max_nb_sectors = MAX(0, total_sectors - sector_num);
2674893a8f62SMORITA Kazutaka         if (max_nb_sectors > 0) {
2675893a8f62SMORITA Kazutaka             ret = drv->bdrv_co_readv(bs, sector_num,
2676893a8f62SMORITA Kazutaka                                      MIN(nb_sectors, max_nb_sectors), qiov);
2677893a8f62SMORITA Kazutaka         } else {
2678893a8f62SMORITA Kazutaka             ret = 0;
2679893a8f62SMORITA Kazutaka         }
2680893a8f62SMORITA Kazutaka 
2681893a8f62SMORITA Kazutaka         /* Reading beyond end of file is supposed to produce zeroes */
2682893a8f62SMORITA Kazutaka         if (ret == 0 && total_sectors < sector_num + nb_sectors) {
2683893a8f62SMORITA Kazutaka             uint64_t offset = MAX(0, total_sectors - sector_num);
2684893a8f62SMORITA Kazutaka             uint64_t bytes = (sector_num + nb_sectors - offset) *
2685893a8f62SMORITA Kazutaka                               BDRV_SECTOR_SIZE;
2686893a8f62SMORITA Kazutaka             qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes);
2687893a8f62SMORITA Kazutaka         }
2688893a8f62SMORITA Kazutaka     }
2689ab185921SStefan Hajnoczi 
2690ab185921SStefan Hajnoczi out:
2691dbffbdcfSStefan Hajnoczi     tracked_request_end(&req);
2692470c0504SStefan Hajnoczi 
2693470c0504SStefan Hajnoczi     if (flags & BDRV_REQ_COPY_ON_READ) {
2694470c0504SStefan Hajnoczi         bs->copy_on_read_in_flight--;
2695470c0504SStefan Hajnoczi     }
2696470c0504SStefan Hajnoczi 
2697dbffbdcfSStefan Hajnoczi     return ret;
2698da1fa91dSKevin Wolf }
2699da1fa91dSKevin Wolf 
2700c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
2701da1fa91dSKevin Wolf     int nb_sectors, QEMUIOVector *qiov)
2702da1fa91dSKevin Wolf {
2703c5fbe571SStefan Hajnoczi     trace_bdrv_co_readv(bs, sector_num, nb_sectors);
2704da1fa91dSKevin Wolf 
2705470c0504SStefan Hajnoczi     return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
2706470c0504SStefan Hajnoczi }
2707470c0504SStefan Hajnoczi 
2708470c0504SStefan Hajnoczi int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
2709470c0504SStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2710470c0504SStefan Hajnoczi {
2711470c0504SStefan Hajnoczi     trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
2712470c0504SStefan Hajnoczi 
2713470c0504SStefan Hajnoczi     return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
2714470c0504SStefan Hajnoczi                             BDRV_REQ_COPY_ON_READ);
2715c5fbe571SStefan Hajnoczi }
2716c5fbe571SStefan Hajnoczi 
2717f08f2ddaSStefan Hajnoczi static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
2718f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors)
2719f08f2ddaSStefan Hajnoczi {
2720f08f2ddaSStefan Hajnoczi     BlockDriver *drv = bs->drv;
2721f08f2ddaSStefan Hajnoczi     QEMUIOVector qiov;
2722f08f2ddaSStefan Hajnoczi     struct iovec iov;
2723f08f2ddaSStefan Hajnoczi     int ret;
2724f08f2ddaSStefan Hajnoczi 
2725621f0589SKevin Wolf     /* TODO Emulate only part of misaligned requests instead of letting block
2726621f0589SKevin Wolf      * drivers return -ENOTSUP and emulate everything */
2727621f0589SKevin Wolf 
2728f08f2ddaSStefan Hajnoczi     /* First try the efficient write zeroes operation */
2729f08f2ddaSStefan Hajnoczi     if (drv->bdrv_co_write_zeroes) {
2730621f0589SKevin Wolf         ret = drv->bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2731621f0589SKevin Wolf         if (ret != -ENOTSUP) {
2732621f0589SKevin Wolf             return ret;
2733621f0589SKevin Wolf         }
2734f08f2ddaSStefan Hajnoczi     }
2735f08f2ddaSStefan Hajnoczi 
2736f08f2ddaSStefan Hajnoczi     /* Fall back to bounce buffer if write zeroes is unsupported */
2737f08f2ddaSStefan Hajnoczi     iov.iov_len  = nb_sectors * BDRV_SECTOR_SIZE;
2738f08f2ddaSStefan Hajnoczi     iov.iov_base = qemu_blockalign(bs, iov.iov_len);
2739f08f2ddaSStefan Hajnoczi     memset(iov.iov_base, 0, iov.iov_len);
2740f08f2ddaSStefan Hajnoczi     qemu_iovec_init_external(&qiov, &iov, 1);
2741f08f2ddaSStefan Hajnoczi 
2742f08f2ddaSStefan Hajnoczi     ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, &qiov);
2743f08f2ddaSStefan Hajnoczi 
2744f08f2ddaSStefan Hajnoczi     qemu_vfree(iov.iov_base);
2745f08f2ddaSStefan Hajnoczi     return ret;
2746f08f2ddaSStefan Hajnoczi }
2747f08f2ddaSStefan Hajnoczi 
2748c5fbe571SStefan Hajnoczi /*
2749c5fbe571SStefan Hajnoczi  * Handle a write request in coroutine context
2750c5fbe571SStefan Hajnoczi  */
2751c5fbe571SStefan Hajnoczi static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
2752f08f2ddaSStefan Hajnoczi     int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
2753f08f2ddaSStefan Hajnoczi     BdrvRequestFlags flags)
2754c5fbe571SStefan Hajnoczi {
2755c5fbe571SStefan Hajnoczi     BlockDriver *drv = bs->drv;
2756dbffbdcfSStefan Hajnoczi     BdrvTrackedRequest req;
27576b7cb247SStefan Hajnoczi     int ret;
2758da1fa91dSKevin Wolf 
2759da1fa91dSKevin Wolf     if (!bs->drv) {
2760da1fa91dSKevin Wolf         return -ENOMEDIUM;
2761da1fa91dSKevin Wolf     }
2762da1fa91dSKevin Wolf     if (bs->read_only) {
2763da1fa91dSKevin Wolf         return -EACCES;
2764da1fa91dSKevin Wolf     }
2765da1fa91dSKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors)) {
2766da1fa91dSKevin Wolf         return -EIO;
2767da1fa91dSKevin Wolf     }
2768da1fa91dSKevin Wolf 
2769470c0504SStefan Hajnoczi     if (bs->copy_on_read_in_flight) {
2770f4658285SStefan Hajnoczi         wait_for_overlapping_requests(bs, sector_num, nb_sectors);
2771f4658285SStefan Hajnoczi     }
2772f4658285SStefan Hajnoczi 
2773cc0681c4SBenoît Canet     /* throttling disk I/O */
2774cc0681c4SBenoît Canet     if (bs->io_limits_enabled) {
2775cc0681c4SBenoît Canet         bdrv_io_limits_intercept(bs, nb_sectors, true);
2776cc0681c4SBenoît Canet     }
2777cc0681c4SBenoît Canet 
2778dbffbdcfSStefan Hajnoczi     tracked_request_begin(&req, bs, sector_num, nb_sectors, true);
2779dbffbdcfSStefan Hajnoczi 
2780d616b224SStefan Hajnoczi     ret = notifier_with_return_list_notify(&bs->before_write_notifiers, &req);
2781d616b224SStefan Hajnoczi 
2782d616b224SStefan Hajnoczi     if (ret < 0) {
2783d616b224SStefan Hajnoczi         /* Do nothing, write notifier decided to fail this request */
2784d616b224SStefan Hajnoczi     } else if (flags & BDRV_REQ_ZERO_WRITE) {
2785f08f2ddaSStefan Hajnoczi         ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors);
2786f08f2ddaSStefan Hajnoczi     } else {
27876b7cb247SStefan Hajnoczi         ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
2788f08f2ddaSStefan Hajnoczi     }
27896b7cb247SStefan Hajnoczi 
2790f05fa4adSPaolo Bonzini     if (ret == 0 && !bs->enable_write_cache) {
2791f05fa4adSPaolo Bonzini         ret = bdrv_co_flush(bs);
2792f05fa4adSPaolo Bonzini     }
2793f05fa4adSPaolo Bonzini 
2794da1fa91dSKevin Wolf     if (bs->dirty_bitmap) {
27951755da16SPaolo Bonzini         bdrv_set_dirty(bs, sector_num, nb_sectors);
2796da1fa91dSKevin Wolf     }
2797da1fa91dSKevin Wolf 
2798da1fa91dSKevin Wolf     if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
2799da1fa91dSKevin Wolf         bs->wr_highest_sector = sector_num + nb_sectors - 1;
2800da1fa91dSKevin Wolf     }
2801df2a6f29SPaolo Bonzini     if (bs->growable && ret >= 0) {
2802df2a6f29SPaolo Bonzini         bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors);
2803df2a6f29SPaolo Bonzini     }
2804da1fa91dSKevin Wolf 
2805dbffbdcfSStefan Hajnoczi     tracked_request_end(&req);
2806dbffbdcfSStefan Hajnoczi 
28076b7cb247SStefan Hajnoczi     return ret;
2808da1fa91dSKevin Wolf }
2809da1fa91dSKevin Wolf 
2810c5fbe571SStefan Hajnoczi int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
2811c5fbe571SStefan Hajnoczi     int nb_sectors, QEMUIOVector *qiov)
2812c5fbe571SStefan Hajnoczi {
2813c5fbe571SStefan Hajnoczi     trace_bdrv_co_writev(bs, sector_num, nb_sectors);
2814c5fbe571SStefan Hajnoczi 
2815f08f2ddaSStefan Hajnoczi     return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
2816f08f2ddaSStefan Hajnoczi }
2817f08f2ddaSStefan Hajnoczi 
2818f08f2ddaSStefan Hajnoczi int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
2819f08f2ddaSStefan Hajnoczi                                       int64_t sector_num, int nb_sectors)
2820f08f2ddaSStefan Hajnoczi {
2821f08f2ddaSStefan Hajnoczi     trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors);
2822f08f2ddaSStefan Hajnoczi 
2823f08f2ddaSStefan Hajnoczi     return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
2824f08f2ddaSStefan Hajnoczi                              BDRV_REQ_ZERO_WRITE);
2825c5fbe571SStefan Hajnoczi }
2826c5fbe571SStefan Hajnoczi 
282783f64091Sbellard /**
282883f64091Sbellard  * Truncate file to 'offset' bytes (needed only for file protocols)
282983f64091Sbellard  */
283083f64091Sbellard int bdrv_truncate(BlockDriverState *bs, int64_t offset)
283183f64091Sbellard {
283283f64091Sbellard     BlockDriver *drv = bs->drv;
283351762288SStefan Hajnoczi     int ret;
283483f64091Sbellard     if (!drv)
283519cb3738Sbellard         return -ENOMEDIUM;
283683f64091Sbellard     if (!drv->bdrv_truncate)
283783f64091Sbellard         return -ENOTSUP;
283859f2689dSNaphtali Sprei     if (bs->read_only)
283959f2689dSNaphtali Sprei         return -EACCES;
28408591675fSMarcelo Tosatti     if (bdrv_in_use(bs))
28418591675fSMarcelo Tosatti         return -EBUSY;
284251762288SStefan Hajnoczi     ret = drv->bdrv_truncate(bs, offset);
284351762288SStefan Hajnoczi     if (ret == 0) {
284451762288SStefan Hajnoczi         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
2845145feb17SMarkus Armbruster         bdrv_dev_resize_cb(bs);
284651762288SStefan Hajnoczi     }
284751762288SStefan Hajnoczi     return ret;
284883f64091Sbellard }
284983f64091Sbellard 
285083f64091Sbellard /**
28514a1d5e1fSFam Zheng  * Length of a allocated file in bytes. Sparse files are counted by actual
28524a1d5e1fSFam Zheng  * allocated space. Return < 0 if error or unknown.
28534a1d5e1fSFam Zheng  */
28544a1d5e1fSFam Zheng int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
28554a1d5e1fSFam Zheng {
28564a1d5e1fSFam Zheng     BlockDriver *drv = bs->drv;
28574a1d5e1fSFam Zheng     if (!drv) {
28584a1d5e1fSFam Zheng         return -ENOMEDIUM;
28594a1d5e1fSFam Zheng     }
28604a1d5e1fSFam Zheng     if (drv->bdrv_get_allocated_file_size) {
28614a1d5e1fSFam Zheng         return drv->bdrv_get_allocated_file_size(bs);
28624a1d5e1fSFam Zheng     }
28634a1d5e1fSFam Zheng     if (bs->file) {
28644a1d5e1fSFam Zheng         return bdrv_get_allocated_file_size(bs->file);
28654a1d5e1fSFam Zheng     }
28664a1d5e1fSFam Zheng     return -ENOTSUP;
28674a1d5e1fSFam Zheng }
28684a1d5e1fSFam Zheng 
28694a1d5e1fSFam Zheng /**
287083f64091Sbellard  * Length of a file in bytes. Return < 0 if error or unknown.
287183f64091Sbellard  */
287283f64091Sbellard int64_t bdrv_getlength(BlockDriverState *bs)
287383f64091Sbellard {
287483f64091Sbellard     BlockDriver *drv = bs->drv;
287583f64091Sbellard     if (!drv)
287619cb3738Sbellard         return -ENOMEDIUM;
287751762288SStefan Hajnoczi 
2878df2a6f29SPaolo Bonzini     if (bdrv_dev_has_removable_media(bs)) {
287946a4e4e6SStefan Hajnoczi         if (drv->bdrv_getlength) {
288083f64091Sbellard             return drv->bdrv_getlength(bs);
2881fc01f7e7Sbellard         }
288246a4e4e6SStefan Hajnoczi     }
288346a4e4e6SStefan Hajnoczi     return bs->total_sectors * BDRV_SECTOR_SIZE;
288446a4e4e6SStefan Hajnoczi }
2885fc01f7e7Sbellard 
288619cb3738Sbellard /* return 0 as number of sectors if no device present or error */
288796b8f136Sths void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
2888fc01f7e7Sbellard {
288919cb3738Sbellard     int64_t length;
289019cb3738Sbellard     length = bdrv_getlength(bs);
289119cb3738Sbellard     if (length < 0)
289219cb3738Sbellard         length = 0;
289319cb3738Sbellard     else
28946ea44308SJan Kiszka         length = length >> BDRV_SECTOR_BITS;
289519cb3738Sbellard     *nb_sectors_ptr = length;
2896fc01f7e7Sbellard }
2897cf98951bSbellard 
2898ff06f5f3SPaolo Bonzini void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
2899ff06f5f3SPaolo Bonzini                        BlockdevOnError on_write_error)
2900abd7f68dSMarkus Armbruster {
2901abd7f68dSMarkus Armbruster     bs->on_read_error = on_read_error;
2902abd7f68dSMarkus Armbruster     bs->on_write_error = on_write_error;
2903abd7f68dSMarkus Armbruster }
2904abd7f68dSMarkus Armbruster 
29051ceee0d5SPaolo Bonzini BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
2906abd7f68dSMarkus Armbruster {
2907abd7f68dSMarkus Armbruster     return is_read ? bs->on_read_error : bs->on_write_error;
2908abd7f68dSMarkus Armbruster }
2909abd7f68dSMarkus Armbruster 
29103e1caa5fSPaolo Bonzini BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error)
29113e1caa5fSPaolo Bonzini {
29123e1caa5fSPaolo Bonzini     BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error;
29133e1caa5fSPaolo Bonzini 
29143e1caa5fSPaolo Bonzini     switch (on_err) {
29153e1caa5fSPaolo Bonzini     case BLOCKDEV_ON_ERROR_ENOSPC:
29163e1caa5fSPaolo Bonzini         return (error == ENOSPC) ? BDRV_ACTION_STOP : BDRV_ACTION_REPORT;
29173e1caa5fSPaolo Bonzini     case BLOCKDEV_ON_ERROR_STOP:
29183e1caa5fSPaolo Bonzini         return BDRV_ACTION_STOP;
29193e1caa5fSPaolo Bonzini     case BLOCKDEV_ON_ERROR_REPORT:
29203e1caa5fSPaolo Bonzini         return BDRV_ACTION_REPORT;
29213e1caa5fSPaolo Bonzini     case BLOCKDEV_ON_ERROR_IGNORE:
29223e1caa5fSPaolo Bonzini         return BDRV_ACTION_IGNORE;
29233e1caa5fSPaolo Bonzini     default:
29243e1caa5fSPaolo Bonzini         abort();
29253e1caa5fSPaolo Bonzini     }
29263e1caa5fSPaolo Bonzini }
29273e1caa5fSPaolo Bonzini 
29283e1caa5fSPaolo Bonzini /* This is done by device models because, while the block layer knows
29293e1caa5fSPaolo Bonzini  * about the error, it does not know whether an operation comes from
29303e1caa5fSPaolo Bonzini  * the device or the block layer (from a job, for example).
29313e1caa5fSPaolo Bonzini  */
29323e1caa5fSPaolo Bonzini void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
29333e1caa5fSPaolo Bonzini                        bool is_read, int error)
29343e1caa5fSPaolo Bonzini {
29353e1caa5fSPaolo Bonzini     assert(error >= 0);
293632c81a4aSPaolo Bonzini     bdrv_emit_qmp_error_event(bs, QEVENT_BLOCK_IO_ERROR, action, is_read);
29373e1caa5fSPaolo Bonzini     if (action == BDRV_ACTION_STOP) {
29383e1caa5fSPaolo Bonzini         vm_stop(RUN_STATE_IO_ERROR);
29393e1caa5fSPaolo Bonzini         bdrv_iostatus_set_err(bs, error);
29403e1caa5fSPaolo Bonzini     }
29413e1caa5fSPaolo Bonzini }
29423e1caa5fSPaolo Bonzini 
2943b338082bSbellard int bdrv_is_read_only(BlockDriverState *bs)
2944b338082bSbellard {
2945b338082bSbellard     return bs->read_only;
2946b338082bSbellard }
2947b338082bSbellard 
2948985a03b0Sths int bdrv_is_sg(BlockDriverState *bs)
2949985a03b0Sths {
2950985a03b0Sths     return bs->sg;
2951985a03b0Sths }
2952985a03b0Sths 
2953e900a7b7SChristoph Hellwig int bdrv_enable_write_cache(BlockDriverState *bs)
2954e900a7b7SChristoph Hellwig {
2955e900a7b7SChristoph Hellwig     return bs->enable_write_cache;
2956e900a7b7SChristoph Hellwig }
2957e900a7b7SChristoph Hellwig 
2958425b0148SPaolo Bonzini void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
2959425b0148SPaolo Bonzini {
2960425b0148SPaolo Bonzini     bs->enable_write_cache = wce;
296155b110f2SJeff Cody 
296255b110f2SJeff Cody     /* so a reopen() will preserve wce */
296355b110f2SJeff Cody     if (wce) {
296455b110f2SJeff Cody         bs->open_flags |= BDRV_O_CACHE_WB;
296555b110f2SJeff Cody     } else {
296655b110f2SJeff Cody         bs->open_flags &= ~BDRV_O_CACHE_WB;
296755b110f2SJeff Cody     }
2968425b0148SPaolo Bonzini }
2969425b0148SPaolo Bonzini 
2970ea2384d3Sbellard int bdrv_is_encrypted(BlockDriverState *bs)
2971ea2384d3Sbellard {
2972ea2384d3Sbellard     if (bs->backing_hd && bs->backing_hd->encrypted)
2973ea2384d3Sbellard         return 1;
2974ea2384d3Sbellard     return bs->encrypted;
2975ea2384d3Sbellard }
2976ea2384d3Sbellard 
2977c0f4ce77Saliguori int bdrv_key_required(BlockDriverState *bs)
2978c0f4ce77Saliguori {
2979c0f4ce77Saliguori     BlockDriverState *backing_hd = bs->backing_hd;
2980c0f4ce77Saliguori 
2981c0f4ce77Saliguori     if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
2982c0f4ce77Saliguori         return 1;
2983c0f4ce77Saliguori     return (bs->encrypted && !bs->valid_key);
2984c0f4ce77Saliguori }
2985c0f4ce77Saliguori 
2986ea2384d3Sbellard int bdrv_set_key(BlockDriverState *bs, const char *key)
2987ea2384d3Sbellard {
2988ea2384d3Sbellard     int ret;
2989ea2384d3Sbellard     if (bs->backing_hd && bs->backing_hd->encrypted) {
2990ea2384d3Sbellard         ret = bdrv_set_key(bs->backing_hd, key);
2991ea2384d3Sbellard         if (ret < 0)
2992ea2384d3Sbellard             return ret;
2993ea2384d3Sbellard         if (!bs->encrypted)
2994ea2384d3Sbellard             return 0;
2995ea2384d3Sbellard     }
2996fd04a2aeSShahar Havivi     if (!bs->encrypted) {
2997fd04a2aeSShahar Havivi         return -EINVAL;
2998fd04a2aeSShahar Havivi     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
2999fd04a2aeSShahar Havivi         return -ENOMEDIUM;
3000fd04a2aeSShahar Havivi     }
3001c0f4ce77Saliguori     ret = bs->drv->bdrv_set_key(bs, key);
3002bb5fc20fSaliguori     if (ret < 0) {
3003bb5fc20fSaliguori         bs->valid_key = 0;
3004bb5fc20fSaliguori     } else if (!bs->valid_key) {
3005bb5fc20fSaliguori         bs->valid_key = 1;
3006bb5fc20fSaliguori         /* call the change callback now, we skipped it on open */
30077d4b4ba5SMarkus Armbruster         bdrv_dev_change_media_cb(bs, true);
3008bb5fc20fSaliguori     }
3009c0f4ce77Saliguori     return ret;
3010ea2384d3Sbellard }
3011ea2384d3Sbellard 
3012f8d6bba1SMarkus Armbruster const char *bdrv_get_format_name(BlockDriverState *bs)
3013ea2384d3Sbellard {
3014f8d6bba1SMarkus Armbruster     return bs->drv ? bs->drv->format_name : NULL;
3015ea2384d3Sbellard }
3016ea2384d3Sbellard 
3017ea2384d3Sbellard void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3018ea2384d3Sbellard                          void *opaque)
3019ea2384d3Sbellard {
3020ea2384d3Sbellard     BlockDriver *drv;
3021ea2384d3Sbellard 
30228a22f02aSStefan Hajnoczi     QLIST_FOREACH(drv, &bdrv_drivers, list) {
3023ea2384d3Sbellard         it(opaque, drv->format_name);
3024ea2384d3Sbellard     }
3025ea2384d3Sbellard }
3026ea2384d3Sbellard 
3027b338082bSbellard BlockDriverState *bdrv_find(const char *name)
3028b338082bSbellard {
3029b338082bSbellard     BlockDriverState *bs;
3030b338082bSbellard 
30311b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
30321b7bdbc1SStefan Hajnoczi         if (!strcmp(name, bs->device_name)) {
3033b338082bSbellard             return bs;
3034b338082bSbellard         }
30351b7bdbc1SStefan Hajnoczi     }
3036b338082bSbellard     return NULL;
3037b338082bSbellard }
3038b338082bSbellard 
30392f399b0aSMarkus Armbruster BlockDriverState *bdrv_next(BlockDriverState *bs)
30402f399b0aSMarkus Armbruster {
30412f399b0aSMarkus Armbruster     if (!bs) {
30422f399b0aSMarkus Armbruster         return QTAILQ_FIRST(&bdrv_states);
30432f399b0aSMarkus Armbruster     }
30442f399b0aSMarkus Armbruster     return QTAILQ_NEXT(bs, list);
30452f399b0aSMarkus Armbruster }
30462f399b0aSMarkus Armbruster 
304751de9760Saliguori void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
304881d0912dSbellard {
304981d0912dSbellard     BlockDriverState *bs;
305081d0912dSbellard 
30511b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
305251de9760Saliguori         it(opaque, bs);
305381d0912dSbellard     }
305481d0912dSbellard }
305581d0912dSbellard 
3056ea2384d3Sbellard const char *bdrv_get_device_name(BlockDriverState *bs)
3057ea2384d3Sbellard {
3058ea2384d3Sbellard     return bs->device_name;
3059ea2384d3Sbellard }
3060ea2384d3Sbellard 
3061c8433287SMarkus Armbruster int bdrv_get_flags(BlockDriverState *bs)
3062c8433287SMarkus Armbruster {
3063c8433287SMarkus Armbruster     return bs->open_flags;
3064c8433287SMarkus Armbruster }
3065c8433287SMarkus Armbruster 
3066f0f0fdfeSKevin Wolf int bdrv_flush_all(void)
3067c6ca28d6Saliguori {
3068c6ca28d6Saliguori     BlockDriverState *bs;
3069f0f0fdfeSKevin Wolf     int result = 0;
3070c6ca28d6Saliguori 
30711b7bdbc1SStefan Hajnoczi     QTAILQ_FOREACH(bs, &bdrv_states, list) {
3072f0f0fdfeSKevin Wolf         int ret = bdrv_flush(bs);
3073f0f0fdfeSKevin Wolf         if (ret < 0 && !result) {
3074f0f0fdfeSKevin Wolf             result = ret;
3075c6ca28d6Saliguori         }
30761b7bdbc1SStefan Hajnoczi     }
3077c6ca28d6Saliguori 
3078f0f0fdfeSKevin Wolf     return result;
3079f0f0fdfeSKevin Wolf }
3080f0f0fdfeSKevin Wolf 
30813ac21627SPeter Lieven int bdrv_has_zero_init_1(BlockDriverState *bs)
30823ac21627SPeter Lieven {
30833ac21627SPeter Lieven     return 1;
30843ac21627SPeter Lieven }
30853ac21627SPeter Lieven 
3086f2feebbdSKevin Wolf int bdrv_has_zero_init(BlockDriverState *bs)
3087f2feebbdSKevin Wolf {
3088f2feebbdSKevin Wolf     assert(bs->drv);
3089f2feebbdSKevin Wolf 
309011212d8fSPaolo Bonzini     /* If BS is a copy on write image, it is initialized to
309111212d8fSPaolo Bonzini        the contents of the base image, which may not be zeroes.  */
309211212d8fSPaolo Bonzini     if (bs->backing_hd) {
309311212d8fSPaolo Bonzini         return 0;
309411212d8fSPaolo Bonzini     }
3095336c1c12SKevin Wolf     if (bs->drv->bdrv_has_zero_init) {
3096336c1c12SKevin Wolf         return bs->drv->bdrv_has_zero_init(bs);
3097f2feebbdSKevin Wolf     }
3098f2feebbdSKevin Wolf 
30993ac21627SPeter Lieven     /* safe default */
31003ac21627SPeter Lieven     return 0;
3101f2feebbdSKevin Wolf }
3102f2feebbdSKevin Wolf 
3103b6b8a333SPaolo Bonzini typedef struct BdrvCoGetBlockStatusData {
3104376ae3f1SStefan Hajnoczi     BlockDriverState *bs;
3105b35b2bbaSMiroslav Rezanina     BlockDriverState *base;
3106376ae3f1SStefan Hajnoczi     int64_t sector_num;
3107376ae3f1SStefan Hajnoczi     int nb_sectors;
3108376ae3f1SStefan Hajnoczi     int *pnum;
3109b6b8a333SPaolo Bonzini     int64_t ret;
3110376ae3f1SStefan Hajnoczi     bool done;
3111b6b8a333SPaolo Bonzini } BdrvCoGetBlockStatusData;
3112376ae3f1SStefan Hajnoczi 
3113f58c7b35Sths /*
3114f58c7b35Sths  * Returns true iff the specified sector is present in the disk image. Drivers
3115f58c7b35Sths  * not implementing the functionality are assumed to not support backing files,
3116f58c7b35Sths  * hence all their sectors are reported as allocated.
3117f58c7b35Sths  *
3118bd9533e3SStefan Hajnoczi  * If 'sector_num' is beyond the end of the disk image the return value is 0
3119bd9533e3SStefan Hajnoczi  * and 'pnum' is set to 0.
3120bd9533e3SStefan Hajnoczi  *
3121f58c7b35Sths  * 'pnum' is set to the number of sectors (including and immediately following
3122f58c7b35Sths  * the specified sector) that are known to be in the same
3123f58c7b35Sths  * allocated/unallocated state.
3124f58c7b35Sths  *
3125bd9533e3SStefan Hajnoczi  * 'nb_sectors' is the max value 'pnum' should be set to.  If nb_sectors goes
3126bd9533e3SStefan Hajnoczi  * beyond the end of the disk image it will be clamped.
3127f58c7b35Sths  */
3128b6b8a333SPaolo Bonzini static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
3129bdad13b9SPaolo Bonzini                                                      int64_t sector_num,
3130060f51c9SStefan Hajnoczi                                                      int nb_sectors, int *pnum)
3131f58c7b35Sths {
3132617ccb46SPaolo Bonzini     int64_t length;
3133f58c7b35Sths     int64_t n;
31345daa74a6SPaolo Bonzini     int64_t ret, ret2;
3135bd9533e3SStefan Hajnoczi 
3136617ccb46SPaolo Bonzini     length = bdrv_getlength(bs);
3137617ccb46SPaolo Bonzini     if (length < 0) {
3138617ccb46SPaolo Bonzini         return length;
3139617ccb46SPaolo Bonzini     }
3140617ccb46SPaolo Bonzini 
3141617ccb46SPaolo Bonzini     if (sector_num >= (length >> BDRV_SECTOR_BITS)) {
31426aebab14SStefan Hajnoczi         *pnum = 0;
31436aebab14SStefan Hajnoczi         return 0;
31446aebab14SStefan Hajnoczi     }
3145bd9533e3SStefan Hajnoczi 
31466aebab14SStefan Hajnoczi     n = bs->total_sectors - sector_num;
3147bd9533e3SStefan Hajnoczi     if (n < nb_sectors) {
3148bd9533e3SStefan Hajnoczi         nb_sectors = n;
3149bd9533e3SStefan Hajnoczi     }
3150bd9533e3SStefan Hajnoczi 
3151b6b8a333SPaolo Bonzini     if (!bs->drv->bdrv_co_get_block_status) {
3152bd9533e3SStefan Hajnoczi         *pnum = nb_sectors;
3153918e92d7SPaolo Bonzini         ret = BDRV_BLOCK_DATA;
3154918e92d7SPaolo Bonzini         if (bs->drv->protocol_name) {
3155918e92d7SPaolo Bonzini             ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
3156918e92d7SPaolo Bonzini         }
3157918e92d7SPaolo Bonzini         return ret;
31586aebab14SStefan Hajnoczi     }
31596aebab14SStefan Hajnoczi 
3160415b5b01SPaolo Bonzini     ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum);
3161415b5b01SPaolo Bonzini     if (ret < 0) {
3162415b5b01SPaolo Bonzini         return ret;
3163415b5b01SPaolo Bonzini     }
3164415b5b01SPaolo Bonzini 
3165f0ad5712SPaolo Bonzini     if (!(ret & BDRV_BLOCK_DATA)) {
3166f0ad5712SPaolo Bonzini         if (bdrv_has_zero_init(bs)) {
3167415b5b01SPaolo Bonzini             ret |= BDRV_BLOCK_ZERO;
3168f0ad5712SPaolo Bonzini         } else {
3169f0ad5712SPaolo Bonzini             BlockDriverState *bs2 = bs->backing_hd;
3170f0ad5712SPaolo Bonzini             int64_t length2 = bdrv_getlength(bs2);
3171f0ad5712SPaolo Bonzini             if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) {
3172f0ad5712SPaolo Bonzini                 ret |= BDRV_BLOCK_ZERO;
3173f0ad5712SPaolo Bonzini             }
3174f0ad5712SPaolo Bonzini         }
3175415b5b01SPaolo Bonzini     }
31765daa74a6SPaolo Bonzini 
31775daa74a6SPaolo Bonzini     if (bs->file &&
31785daa74a6SPaolo Bonzini         (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
31795daa74a6SPaolo Bonzini         (ret & BDRV_BLOCK_OFFSET_VALID)) {
31805daa74a6SPaolo Bonzini         ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
31815daa74a6SPaolo Bonzini                                         *pnum, pnum);
31825daa74a6SPaolo Bonzini         if (ret2 >= 0) {
31835daa74a6SPaolo Bonzini             /* Ignore errors.  This is just providing extra information, it
31845daa74a6SPaolo Bonzini              * is useful but not necessary.
31855daa74a6SPaolo Bonzini              */
31865daa74a6SPaolo Bonzini             ret |= (ret2 & BDRV_BLOCK_ZERO);
31875daa74a6SPaolo Bonzini         }
31885daa74a6SPaolo Bonzini     }
31895daa74a6SPaolo Bonzini 
3190415b5b01SPaolo Bonzini     return ret;
3191060f51c9SStefan Hajnoczi }
3192060f51c9SStefan Hajnoczi 
3193b6b8a333SPaolo Bonzini /* Coroutine wrapper for bdrv_get_block_status() */
3194b6b8a333SPaolo Bonzini static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque)
3195060f51c9SStefan Hajnoczi {
3196b6b8a333SPaolo Bonzini     BdrvCoGetBlockStatusData *data = opaque;
3197060f51c9SStefan Hajnoczi     BlockDriverState *bs = data->bs;
3198060f51c9SStefan Hajnoczi 
3199b6b8a333SPaolo Bonzini     data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors,
3200060f51c9SStefan Hajnoczi                                          data->pnum);
3201060f51c9SStefan Hajnoczi     data->done = true;
3202060f51c9SStefan Hajnoczi }
3203060f51c9SStefan Hajnoczi 
3204060f51c9SStefan Hajnoczi /*
3205b6b8a333SPaolo Bonzini  * Synchronous wrapper around bdrv_co_get_block_status().
3206060f51c9SStefan Hajnoczi  *
3207b6b8a333SPaolo Bonzini  * See bdrv_co_get_block_status() for details.
3208060f51c9SStefan Hajnoczi  */
3209b6b8a333SPaolo Bonzini int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num,
3210b6b8a333SPaolo Bonzini                               int nb_sectors, int *pnum)
3211060f51c9SStefan Hajnoczi {
3212376ae3f1SStefan Hajnoczi     Coroutine *co;
3213b6b8a333SPaolo Bonzini     BdrvCoGetBlockStatusData data = {
3214376ae3f1SStefan Hajnoczi         .bs = bs,
3215376ae3f1SStefan Hajnoczi         .sector_num = sector_num,
3216376ae3f1SStefan Hajnoczi         .nb_sectors = nb_sectors,
3217376ae3f1SStefan Hajnoczi         .pnum = pnum,
3218376ae3f1SStefan Hajnoczi         .done = false,
3219376ae3f1SStefan Hajnoczi     };
3220376ae3f1SStefan Hajnoczi 
3221bdad13b9SPaolo Bonzini     if (qemu_in_coroutine()) {
3222bdad13b9SPaolo Bonzini         /* Fast-path if already in coroutine context */
3223b6b8a333SPaolo Bonzini         bdrv_get_block_status_co_entry(&data);
3224bdad13b9SPaolo Bonzini     } else {
3225b6b8a333SPaolo Bonzini         co = qemu_coroutine_create(bdrv_get_block_status_co_entry);
3226376ae3f1SStefan Hajnoczi         qemu_coroutine_enter(co, &data);
3227376ae3f1SStefan Hajnoczi         while (!data.done) {
3228376ae3f1SStefan Hajnoczi             qemu_aio_wait();
3229376ae3f1SStefan Hajnoczi         }
3230bdad13b9SPaolo Bonzini     }
3231376ae3f1SStefan Hajnoczi     return data.ret;
3232376ae3f1SStefan Hajnoczi }
3233f58c7b35Sths 
3234b6b8a333SPaolo Bonzini int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num,
3235b6b8a333SPaolo Bonzini                                    int nb_sectors, int *pnum)
3236b6b8a333SPaolo Bonzini {
32374333bb71SPaolo Bonzini     int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum);
32384333bb71SPaolo Bonzini     if (ret < 0) {
32394333bb71SPaolo Bonzini         return ret;
32404333bb71SPaolo Bonzini     }
32414333bb71SPaolo Bonzini     return
32424333bb71SPaolo Bonzini         (ret & BDRV_BLOCK_DATA) ||
32434333bb71SPaolo Bonzini         ((ret & BDRV_BLOCK_ZERO) && !bdrv_has_zero_init(bs));
3244b6b8a333SPaolo Bonzini }
3245b6b8a333SPaolo Bonzini 
3246188a7bbfSPaolo Bonzini /*
3247188a7bbfSPaolo Bonzini  * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
3248188a7bbfSPaolo Bonzini  *
3249188a7bbfSPaolo Bonzini  * Return true if the given sector is allocated in any image between
3250188a7bbfSPaolo Bonzini  * BASE and TOP (inclusive).  BASE can be NULL to check if the given
3251188a7bbfSPaolo Bonzini  * sector is allocated in any image of the chain.  Return false otherwise.
3252188a7bbfSPaolo Bonzini  *
3253188a7bbfSPaolo Bonzini  * 'pnum' is set to the number of sectors (including and immediately following
3254188a7bbfSPaolo Bonzini  *  the specified sector) that are known to be in the same
3255188a7bbfSPaolo Bonzini  *  allocated/unallocated state.
3256188a7bbfSPaolo Bonzini  *
3257188a7bbfSPaolo Bonzini  */
32584f578637SPaolo Bonzini int bdrv_is_allocated_above(BlockDriverState *top,
3259188a7bbfSPaolo Bonzini                             BlockDriverState *base,
3260188a7bbfSPaolo Bonzini                             int64_t sector_num,
3261188a7bbfSPaolo Bonzini                             int nb_sectors, int *pnum)
3262188a7bbfSPaolo Bonzini {
3263188a7bbfSPaolo Bonzini     BlockDriverState *intermediate;
3264188a7bbfSPaolo Bonzini     int ret, n = nb_sectors;
3265188a7bbfSPaolo Bonzini 
3266188a7bbfSPaolo Bonzini     intermediate = top;
3267188a7bbfSPaolo Bonzini     while (intermediate && intermediate != base) {
3268188a7bbfSPaolo Bonzini         int pnum_inter;
3269bdad13b9SPaolo Bonzini         ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors,
3270188a7bbfSPaolo Bonzini                                 &pnum_inter);
3271188a7bbfSPaolo Bonzini         if (ret < 0) {
3272188a7bbfSPaolo Bonzini             return ret;
3273188a7bbfSPaolo Bonzini         } else if (ret) {
3274188a7bbfSPaolo Bonzini             *pnum = pnum_inter;
3275188a7bbfSPaolo Bonzini             return 1;
3276188a7bbfSPaolo Bonzini         }
3277188a7bbfSPaolo Bonzini 
3278188a7bbfSPaolo Bonzini         /*
3279188a7bbfSPaolo Bonzini          * [sector_num, nb_sectors] is unallocated on top but intermediate
3280188a7bbfSPaolo Bonzini          * might have
3281188a7bbfSPaolo Bonzini          *
3282188a7bbfSPaolo Bonzini          * [sector_num+x, nr_sectors] allocated.
3283188a7bbfSPaolo Bonzini          */
328463ba17d3SVishvananda Ishaya         if (n > pnum_inter &&
328563ba17d3SVishvananda Ishaya             (intermediate == top ||
328663ba17d3SVishvananda Ishaya              sector_num + pnum_inter < intermediate->total_sectors)) {
3287188a7bbfSPaolo Bonzini             n = pnum_inter;
3288188a7bbfSPaolo Bonzini         }
3289188a7bbfSPaolo Bonzini 
3290188a7bbfSPaolo Bonzini         intermediate = intermediate->backing_hd;
3291188a7bbfSPaolo Bonzini     }
3292188a7bbfSPaolo Bonzini 
3293188a7bbfSPaolo Bonzini     *pnum = n;
3294188a7bbfSPaolo Bonzini     return 0;
3295188a7bbfSPaolo Bonzini }
3296188a7bbfSPaolo Bonzini 
3297045df330Saliguori const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
3298045df330Saliguori {
3299045df330Saliguori     if (bs->backing_hd && bs->backing_hd->encrypted)
3300045df330Saliguori         return bs->backing_file;
3301045df330Saliguori     else if (bs->encrypted)
3302045df330Saliguori         return bs->filename;
3303045df330Saliguori     else
3304045df330Saliguori         return NULL;
3305045df330Saliguori }
3306045df330Saliguori 
330783f64091Sbellard void bdrv_get_backing_filename(BlockDriverState *bs,
330883f64091Sbellard                                char *filename, int filename_size)
330983f64091Sbellard {
331083f64091Sbellard     pstrcpy(filename, filename_size, bs->backing_file);
331183f64091Sbellard }
331283f64091Sbellard 
3313faea38e7Sbellard int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
3314faea38e7Sbellard                           const uint8_t *buf, int nb_sectors)
3315faea38e7Sbellard {
3316faea38e7Sbellard     BlockDriver *drv = bs->drv;
3317faea38e7Sbellard     if (!drv)
331819cb3738Sbellard         return -ENOMEDIUM;
3319faea38e7Sbellard     if (!drv->bdrv_write_compressed)
3320faea38e7Sbellard         return -ENOTSUP;
3321fbb7b4e0SKevin Wolf     if (bdrv_check_request(bs, sector_num, nb_sectors))
3322fbb7b4e0SKevin Wolf         return -EIO;
33237cd1e32aSlirans@il.ibm.com 
33241755da16SPaolo Bonzini     assert(!bs->dirty_bitmap);
33257cd1e32aSlirans@il.ibm.com 
3326faea38e7Sbellard     return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
3327faea38e7Sbellard }
3328faea38e7Sbellard 
3329faea38e7Sbellard int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
3330faea38e7Sbellard {
3331faea38e7Sbellard     BlockDriver *drv = bs->drv;
3332faea38e7Sbellard     if (!drv)
333319cb3738Sbellard         return -ENOMEDIUM;
3334faea38e7Sbellard     if (!drv->bdrv_get_info)
3335faea38e7Sbellard         return -ENOTSUP;
3336faea38e7Sbellard     memset(bdi, 0, sizeof(*bdi));
3337faea38e7Sbellard     return drv->bdrv_get_info(bs, bdi);
3338faea38e7Sbellard }
3339faea38e7Sbellard 
334045566e9cSChristoph Hellwig int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
334145566e9cSChristoph Hellwig                       int64_t pos, int size)
3342178e08a5Saliguori {
3343cf8074b3SKevin Wolf     QEMUIOVector qiov;
3344cf8074b3SKevin Wolf     struct iovec iov = {
3345cf8074b3SKevin Wolf         .iov_base   = (void *) buf,
3346cf8074b3SKevin Wolf         .iov_len    = size,
3347cf8074b3SKevin Wolf     };
3348cf8074b3SKevin Wolf 
3349cf8074b3SKevin Wolf     qemu_iovec_init_external(&qiov, &iov, 1);
3350cf8074b3SKevin Wolf     return bdrv_writev_vmstate(bs, &qiov, pos);
3351cf8074b3SKevin Wolf }
3352cf8074b3SKevin Wolf 
3353cf8074b3SKevin Wolf int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
3354cf8074b3SKevin Wolf {
3355178e08a5Saliguori     BlockDriver *drv = bs->drv;
3356cf8074b3SKevin Wolf 
3357cf8074b3SKevin Wolf     if (!drv) {
3358178e08a5Saliguori         return -ENOMEDIUM;
3359cf8074b3SKevin Wolf     } else if (drv->bdrv_save_vmstate) {
3360cf8074b3SKevin Wolf         return drv->bdrv_save_vmstate(bs, qiov, pos);
3361cf8074b3SKevin Wolf     } else if (bs->file) {
3362cf8074b3SKevin Wolf         return bdrv_writev_vmstate(bs->file, qiov, pos);
3363cf8074b3SKevin Wolf     }
3364cf8074b3SKevin Wolf 
33657cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3366178e08a5Saliguori }
3367178e08a5Saliguori 
336845566e9cSChristoph Hellwig int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
336945566e9cSChristoph Hellwig                       int64_t pos, int size)
3370178e08a5Saliguori {
3371178e08a5Saliguori     BlockDriver *drv = bs->drv;
3372178e08a5Saliguori     if (!drv)
3373178e08a5Saliguori         return -ENOMEDIUM;
33747cdb1f6dSMORITA Kazutaka     if (drv->bdrv_load_vmstate)
337545566e9cSChristoph Hellwig         return drv->bdrv_load_vmstate(bs, buf, pos, size);
33767cdb1f6dSMORITA Kazutaka     if (bs->file)
33777cdb1f6dSMORITA Kazutaka         return bdrv_load_vmstate(bs->file, buf, pos, size);
33787cdb1f6dSMORITA Kazutaka     return -ENOTSUP;
3379178e08a5Saliguori }
3380178e08a5Saliguori 
33818b9b0cc2SKevin Wolf void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
33828b9b0cc2SKevin Wolf {
3383bf736fe3SKevin Wolf     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
33848b9b0cc2SKevin Wolf         return;
33858b9b0cc2SKevin Wolf     }
33868b9b0cc2SKevin Wolf 
3387bf736fe3SKevin Wolf     bs->drv->bdrv_debug_event(bs, event);
338841c695c7SKevin Wolf }
33898b9b0cc2SKevin Wolf 
339041c695c7SKevin Wolf int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
339141c695c7SKevin Wolf                           const char *tag)
339241c695c7SKevin Wolf {
339341c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
339441c695c7SKevin Wolf         bs = bs->file;
339541c695c7SKevin Wolf     }
339641c695c7SKevin Wolf 
339741c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
339841c695c7SKevin Wolf         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
339941c695c7SKevin Wolf     }
340041c695c7SKevin Wolf 
340141c695c7SKevin Wolf     return -ENOTSUP;
340241c695c7SKevin Wolf }
340341c695c7SKevin Wolf 
340441c695c7SKevin Wolf int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
340541c695c7SKevin Wolf {
340641c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_resume) {
340741c695c7SKevin Wolf         bs = bs->file;
340841c695c7SKevin Wolf     }
340941c695c7SKevin Wolf 
341041c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
341141c695c7SKevin Wolf         return bs->drv->bdrv_debug_resume(bs, tag);
341241c695c7SKevin Wolf     }
341341c695c7SKevin Wolf 
341441c695c7SKevin Wolf     return -ENOTSUP;
341541c695c7SKevin Wolf }
341641c695c7SKevin Wolf 
341741c695c7SKevin Wolf bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
341841c695c7SKevin Wolf {
341941c695c7SKevin Wolf     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
342041c695c7SKevin Wolf         bs = bs->file;
342141c695c7SKevin Wolf     }
342241c695c7SKevin Wolf 
342341c695c7SKevin Wolf     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
342441c695c7SKevin Wolf         return bs->drv->bdrv_debug_is_suspended(bs, tag);
342541c695c7SKevin Wolf     }
342641c695c7SKevin Wolf 
342741c695c7SKevin Wolf     return false;
34288b9b0cc2SKevin Wolf }
34298b9b0cc2SKevin Wolf 
3430199630b6SBlue Swirl int bdrv_is_snapshot(BlockDriverState *bs)
3431199630b6SBlue Swirl {
3432199630b6SBlue Swirl     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
3433199630b6SBlue Swirl }
3434199630b6SBlue Swirl 
3435b1b1d783SJeff Cody /* backing_file can either be relative, or absolute, or a protocol.  If it is
3436b1b1d783SJeff Cody  * relative, it must be relative to the chain.  So, passing in bs->filename
3437b1b1d783SJeff Cody  * from a BDS as backing_file should not be done, as that may be relative to
3438b1b1d783SJeff Cody  * the CWD rather than the chain. */
3439e8a6bb9cSMarcelo Tosatti BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
3440e8a6bb9cSMarcelo Tosatti         const char *backing_file)
3441e8a6bb9cSMarcelo Tosatti {
3442b1b1d783SJeff Cody     char *filename_full = NULL;
3443b1b1d783SJeff Cody     char *backing_file_full = NULL;
3444b1b1d783SJeff Cody     char *filename_tmp = NULL;
3445b1b1d783SJeff Cody     int is_protocol = 0;
3446b1b1d783SJeff Cody     BlockDriverState *curr_bs = NULL;
3447b1b1d783SJeff Cody     BlockDriverState *retval = NULL;
3448b1b1d783SJeff Cody 
3449b1b1d783SJeff Cody     if (!bs || !bs->drv || !backing_file) {
3450e8a6bb9cSMarcelo Tosatti         return NULL;
3451e8a6bb9cSMarcelo Tosatti     }
3452e8a6bb9cSMarcelo Tosatti 
3453b1b1d783SJeff Cody     filename_full     = g_malloc(PATH_MAX);
3454b1b1d783SJeff Cody     backing_file_full = g_malloc(PATH_MAX);
3455b1b1d783SJeff Cody     filename_tmp      = g_malloc(PATH_MAX);
3456b1b1d783SJeff Cody 
3457b1b1d783SJeff Cody     is_protocol = path_has_protocol(backing_file);
3458b1b1d783SJeff Cody 
3459b1b1d783SJeff Cody     for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) {
3460b1b1d783SJeff Cody 
3461b1b1d783SJeff Cody         /* If either of the filename paths is actually a protocol, then
3462b1b1d783SJeff Cody          * compare unmodified paths; otherwise make paths relative */
3463b1b1d783SJeff Cody         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
3464b1b1d783SJeff Cody             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
3465b1b1d783SJeff Cody                 retval = curr_bs->backing_hd;
3466b1b1d783SJeff Cody                 break;
3467b1b1d783SJeff Cody             }
3468e8a6bb9cSMarcelo Tosatti         } else {
3469b1b1d783SJeff Cody             /* If not an absolute filename path, make it relative to the current
3470b1b1d783SJeff Cody              * image's filename path */
3471b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3472b1b1d783SJeff Cody                          backing_file);
3473b1b1d783SJeff Cody 
3474b1b1d783SJeff Cody             /* We are going to compare absolute pathnames */
3475b1b1d783SJeff Cody             if (!realpath(filename_tmp, filename_full)) {
3476b1b1d783SJeff Cody                 continue;
3477b1b1d783SJeff Cody             }
3478b1b1d783SJeff Cody 
3479b1b1d783SJeff Cody             /* We need to make sure the backing filename we are comparing against
3480b1b1d783SJeff Cody              * is relative to the current image filename (or absolute) */
3481b1b1d783SJeff Cody             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
3482b1b1d783SJeff Cody                          curr_bs->backing_file);
3483b1b1d783SJeff Cody 
3484b1b1d783SJeff Cody             if (!realpath(filename_tmp, backing_file_full)) {
3485b1b1d783SJeff Cody                 continue;
3486b1b1d783SJeff Cody             }
3487b1b1d783SJeff Cody 
3488b1b1d783SJeff Cody             if (strcmp(backing_file_full, filename_full) == 0) {
3489b1b1d783SJeff Cody                 retval = curr_bs->backing_hd;
3490b1b1d783SJeff Cody                 break;
3491b1b1d783SJeff Cody             }
3492e8a6bb9cSMarcelo Tosatti         }
3493e8a6bb9cSMarcelo Tosatti     }
3494e8a6bb9cSMarcelo Tosatti 
3495b1b1d783SJeff Cody     g_free(filename_full);
3496b1b1d783SJeff Cody     g_free(backing_file_full);
3497b1b1d783SJeff Cody     g_free(filename_tmp);
3498b1b1d783SJeff Cody     return retval;
3499e8a6bb9cSMarcelo Tosatti }
3500e8a6bb9cSMarcelo Tosatti 
3501f198fd1cSBenoît Canet int bdrv_get_backing_file_depth(BlockDriverState *bs)
3502f198fd1cSBenoît Canet {
3503f198fd1cSBenoît Canet     if (!bs->drv) {
3504f198fd1cSBenoît Canet         return 0;
3505f198fd1cSBenoît Canet     }
3506f198fd1cSBenoît Canet 
3507f198fd1cSBenoît Canet     if (!bs->backing_hd) {
3508f198fd1cSBenoît Canet         return 0;
3509f198fd1cSBenoît Canet     }
3510f198fd1cSBenoît Canet 
3511f198fd1cSBenoît Canet     return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
3512f198fd1cSBenoît Canet }
3513f198fd1cSBenoît Canet 
351479fac568SJeff Cody BlockDriverState *bdrv_find_base(BlockDriverState *bs)
351579fac568SJeff Cody {
351679fac568SJeff Cody     BlockDriverState *curr_bs = NULL;
351779fac568SJeff Cody 
351879fac568SJeff Cody     if (!bs) {
351979fac568SJeff Cody         return NULL;
352079fac568SJeff Cody     }
352179fac568SJeff Cody 
352279fac568SJeff Cody     curr_bs = bs;
352379fac568SJeff Cody 
352479fac568SJeff Cody     while (curr_bs->backing_hd) {
352579fac568SJeff Cody         curr_bs = curr_bs->backing_hd;
352679fac568SJeff Cody     }
352779fac568SJeff Cody     return curr_bs;
352879fac568SJeff Cody }
352979fac568SJeff Cody 
3530ea2384d3Sbellard /**************************************************************/
353183f64091Sbellard /* async I/Os */
3532ea2384d3Sbellard 
35333b69e4b9Saliguori BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
3534f141eafeSaliguori                                  QEMUIOVector *qiov, int nb_sectors,
353583f64091Sbellard                                  BlockDriverCompletionFunc *cb, void *opaque)
3536ea2384d3Sbellard {
3537bbf0a440SStefan Hajnoczi     trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
3538bbf0a440SStefan Hajnoczi 
3539b2a61371SStefan Hajnoczi     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
35408c5873d6SStefan Hajnoczi                                  cb, opaque, false);
354183f64091Sbellard }
354283f64091Sbellard 
3543f141eafeSaliguori BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
3544f141eafeSaliguori                                   QEMUIOVector *qiov, int nb_sectors,
354583f64091Sbellard                                   BlockDriverCompletionFunc *cb, void *opaque)
35467674e7bfSbellard {
3547bbf0a440SStefan Hajnoczi     trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
3548bbf0a440SStefan Hajnoczi 
35491a6e115bSStefan Hajnoczi     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors,
35508c5873d6SStefan Hajnoczi                                  cb, opaque, true);
355183f64091Sbellard }
355283f64091Sbellard 
355340b4f539SKevin Wolf 
355440b4f539SKevin Wolf typedef struct MultiwriteCB {
355540b4f539SKevin Wolf     int error;
355640b4f539SKevin Wolf     int num_requests;
355740b4f539SKevin Wolf     int num_callbacks;
355840b4f539SKevin Wolf     struct {
355940b4f539SKevin Wolf         BlockDriverCompletionFunc *cb;
356040b4f539SKevin Wolf         void *opaque;
356140b4f539SKevin Wolf         QEMUIOVector *free_qiov;
356240b4f539SKevin Wolf     } callbacks[];
356340b4f539SKevin Wolf } MultiwriteCB;
356440b4f539SKevin Wolf 
356540b4f539SKevin Wolf static void multiwrite_user_cb(MultiwriteCB *mcb)
356640b4f539SKevin Wolf {
356740b4f539SKevin Wolf     int i;
356840b4f539SKevin Wolf 
356940b4f539SKevin Wolf     for (i = 0; i < mcb->num_callbacks; i++) {
357040b4f539SKevin Wolf         mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
35711e1ea48dSStefan Hajnoczi         if (mcb->callbacks[i].free_qiov) {
35721e1ea48dSStefan Hajnoczi             qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
35731e1ea48dSStefan Hajnoczi         }
35747267c094SAnthony Liguori         g_free(mcb->callbacks[i].free_qiov);
357540b4f539SKevin Wolf     }
357640b4f539SKevin Wolf }
357740b4f539SKevin Wolf 
357840b4f539SKevin Wolf static void multiwrite_cb(void *opaque, int ret)
357940b4f539SKevin Wolf {
358040b4f539SKevin Wolf     MultiwriteCB *mcb = opaque;
358140b4f539SKevin Wolf 
35826d519a5fSStefan Hajnoczi     trace_multiwrite_cb(mcb, ret);
35836d519a5fSStefan Hajnoczi 
3584cb6d3ca0SKevin Wolf     if (ret < 0 && !mcb->error) {
358540b4f539SKevin Wolf         mcb->error = ret;
358640b4f539SKevin Wolf     }
358740b4f539SKevin Wolf 
358840b4f539SKevin Wolf     mcb->num_requests--;
358940b4f539SKevin Wolf     if (mcb->num_requests == 0) {
359040b4f539SKevin Wolf         multiwrite_user_cb(mcb);
35917267c094SAnthony Liguori         g_free(mcb);
359240b4f539SKevin Wolf     }
359340b4f539SKevin Wolf }
359440b4f539SKevin Wolf 
359540b4f539SKevin Wolf static int multiwrite_req_compare(const void *a, const void *b)
359640b4f539SKevin Wolf {
359777be4366SChristoph Hellwig     const BlockRequest *req1 = a, *req2 = b;
359877be4366SChristoph Hellwig 
359977be4366SChristoph Hellwig     /*
360077be4366SChristoph Hellwig      * Note that we can't simply subtract req2->sector from req1->sector
360177be4366SChristoph Hellwig      * here as that could overflow the return value.
360277be4366SChristoph Hellwig      */
360377be4366SChristoph Hellwig     if (req1->sector > req2->sector) {
360477be4366SChristoph Hellwig         return 1;
360577be4366SChristoph Hellwig     } else if (req1->sector < req2->sector) {
360677be4366SChristoph Hellwig         return -1;
360777be4366SChristoph Hellwig     } else {
360877be4366SChristoph Hellwig         return 0;
360977be4366SChristoph Hellwig     }
361040b4f539SKevin Wolf }
361140b4f539SKevin Wolf 
361240b4f539SKevin Wolf /*
361340b4f539SKevin Wolf  * Takes a bunch of requests and tries to merge them. Returns the number of
361440b4f539SKevin Wolf  * requests that remain after merging.
361540b4f539SKevin Wolf  */
361640b4f539SKevin Wolf static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
361740b4f539SKevin Wolf     int num_reqs, MultiwriteCB *mcb)
361840b4f539SKevin Wolf {
361940b4f539SKevin Wolf     int i, outidx;
362040b4f539SKevin Wolf 
362140b4f539SKevin Wolf     // Sort requests by start sector
362240b4f539SKevin Wolf     qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
362340b4f539SKevin Wolf 
362440b4f539SKevin Wolf     // Check if adjacent requests touch the same clusters. If so, combine them,
362540b4f539SKevin Wolf     // filling up gaps with zero sectors.
362640b4f539SKevin Wolf     outidx = 0;
362740b4f539SKevin Wolf     for (i = 1; i < num_reqs; i++) {
362840b4f539SKevin Wolf         int merge = 0;
362940b4f539SKevin Wolf         int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
363040b4f539SKevin Wolf 
3631b6a127a1SPaolo Bonzini         // Handle exactly sequential writes and overlapping writes.
363240b4f539SKevin Wolf         if (reqs[i].sector <= oldreq_last) {
363340b4f539SKevin Wolf             merge = 1;
363440b4f539SKevin Wolf         }
363540b4f539SKevin Wolf 
3636e2a305fbSChristoph Hellwig         if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
3637e2a305fbSChristoph Hellwig             merge = 0;
3638e2a305fbSChristoph Hellwig         }
3639e2a305fbSChristoph Hellwig 
364040b4f539SKevin Wolf         if (merge) {
364140b4f539SKevin Wolf             size_t size;
36427267c094SAnthony Liguori             QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
364340b4f539SKevin Wolf             qemu_iovec_init(qiov,
364440b4f539SKevin Wolf                 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
364540b4f539SKevin Wolf 
364640b4f539SKevin Wolf             // Add the first request to the merged one. If the requests are
364740b4f539SKevin Wolf             // overlapping, drop the last sectors of the first request.
364840b4f539SKevin Wolf             size = (reqs[i].sector - reqs[outidx].sector) << 9;
36491b093c48SMichael Tokarev             qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
365040b4f539SKevin Wolf 
3651b6a127a1SPaolo Bonzini             // We should need to add any zeros between the two requests
3652b6a127a1SPaolo Bonzini             assert (reqs[i].sector <= oldreq_last);
365340b4f539SKevin Wolf 
365440b4f539SKevin Wolf             // Add the second request
36551b093c48SMichael Tokarev             qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
365640b4f539SKevin Wolf 
3657cbf1dff2SKevin Wolf             reqs[outidx].nb_sectors = qiov->size >> 9;
365840b4f539SKevin Wolf             reqs[outidx].qiov = qiov;
365940b4f539SKevin Wolf 
366040b4f539SKevin Wolf             mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
366140b4f539SKevin Wolf         } else {
366240b4f539SKevin Wolf             outidx++;
366340b4f539SKevin Wolf             reqs[outidx].sector     = reqs[i].sector;
366440b4f539SKevin Wolf             reqs[outidx].nb_sectors = reqs[i].nb_sectors;
366540b4f539SKevin Wolf             reqs[outidx].qiov       = reqs[i].qiov;
366640b4f539SKevin Wolf         }
366740b4f539SKevin Wolf     }
366840b4f539SKevin Wolf 
366940b4f539SKevin Wolf     return outidx + 1;
367040b4f539SKevin Wolf }
367140b4f539SKevin Wolf 
367240b4f539SKevin Wolf /*
367340b4f539SKevin Wolf  * Submit multiple AIO write requests at once.
367440b4f539SKevin Wolf  *
367540b4f539SKevin Wolf  * On success, the function returns 0 and all requests in the reqs array have
367640b4f539SKevin Wolf  * been submitted. In error case this function returns -1, and any of the
367740b4f539SKevin Wolf  * requests may or may not be submitted yet. In particular, this means that the
367840b4f539SKevin Wolf  * callback will be called for some of the requests, for others it won't. The
367940b4f539SKevin Wolf  * caller must check the error field of the BlockRequest to wait for the right
368040b4f539SKevin Wolf  * callbacks (if error != 0, no callback will be called).
368140b4f539SKevin Wolf  *
368240b4f539SKevin Wolf  * The implementation may modify the contents of the reqs array, e.g. to merge
368340b4f539SKevin Wolf  * requests. However, the fields opaque and error are left unmodified as they
368440b4f539SKevin Wolf  * are used to signal failure for a single request to the caller.
368540b4f539SKevin Wolf  */
368640b4f539SKevin Wolf int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
368740b4f539SKevin Wolf {
368840b4f539SKevin Wolf     MultiwriteCB *mcb;
368940b4f539SKevin Wolf     int i;
369040b4f539SKevin Wolf 
3691301db7c2SRyan Harper     /* don't submit writes if we don't have a medium */
3692301db7c2SRyan Harper     if (bs->drv == NULL) {
3693301db7c2SRyan Harper         for (i = 0; i < num_reqs; i++) {
3694301db7c2SRyan Harper             reqs[i].error = -ENOMEDIUM;
3695301db7c2SRyan Harper         }
3696301db7c2SRyan Harper         return -1;
3697301db7c2SRyan Harper     }
3698301db7c2SRyan Harper 
369940b4f539SKevin Wolf     if (num_reqs == 0) {
370040b4f539SKevin Wolf         return 0;
370140b4f539SKevin Wolf     }
370240b4f539SKevin Wolf 
370340b4f539SKevin Wolf     // Create MultiwriteCB structure
37047267c094SAnthony Liguori     mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
370540b4f539SKevin Wolf     mcb->num_requests = 0;
370640b4f539SKevin Wolf     mcb->num_callbacks = num_reqs;
370740b4f539SKevin Wolf 
370840b4f539SKevin Wolf     for (i = 0; i < num_reqs; i++) {
370940b4f539SKevin Wolf         mcb->callbacks[i].cb = reqs[i].cb;
371040b4f539SKevin Wolf         mcb->callbacks[i].opaque = reqs[i].opaque;
371140b4f539SKevin Wolf     }
371240b4f539SKevin Wolf 
371340b4f539SKevin Wolf     // Check for mergable requests
371440b4f539SKevin Wolf     num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
371540b4f539SKevin Wolf 
37166d519a5fSStefan Hajnoczi     trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
37176d519a5fSStefan Hajnoczi 
3718df9309fbSPaolo Bonzini     /* Run the aio requests. */
3719df9309fbSPaolo Bonzini     mcb->num_requests = num_reqs;
372040b4f539SKevin Wolf     for (i = 0; i < num_reqs; i++) {
3721ad54ae80SPaolo Bonzini         bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov,
372240b4f539SKevin Wolf             reqs[i].nb_sectors, multiwrite_cb, mcb);
372340b4f539SKevin Wolf     }
372440b4f539SKevin Wolf 
372540b4f539SKevin Wolf     return 0;
372640b4f539SKevin Wolf }
372740b4f539SKevin Wolf 
372883f64091Sbellard void bdrv_aio_cancel(BlockDriverAIOCB *acb)
372983f64091Sbellard {
3730d7331bedSStefan Hajnoczi     acb->aiocb_info->cancel(acb);
373183f64091Sbellard }
373283f64091Sbellard 
373383f64091Sbellard /**************************************************************/
373483f64091Sbellard /* async block device emulation */
373583f64091Sbellard 
3736c16b5a2cSChristoph Hellwig typedef struct BlockDriverAIOCBSync {
3737c16b5a2cSChristoph Hellwig     BlockDriverAIOCB common;
3738c16b5a2cSChristoph Hellwig     QEMUBH *bh;
3739c16b5a2cSChristoph Hellwig     int ret;
3740c16b5a2cSChristoph Hellwig     /* vector translation state */
3741c16b5a2cSChristoph Hellwig     QEMUIOVector *qiov;
3742c16b5a2cSChristoph Hellwig     uint8_t *bounce;
3743c16b5a2cSChristoph Hellwig     int is_write;
3744c16b5a2cSChristoph Hellwig } BlockDriverAIOCBSync;
3745c16b5a2cSChristoph Hellwig 
3746c16b5a2cSChristoph Hellwig static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
3747c16b5a2cSChristoph Hellwig {
3748b666d239SKevin Wolf     BlockDriverAIOCBSync *acb =
3749b666d239SKevin Wolf         container_of(blockacb, BlockDriverAIOCBSync, common);
37506a7ad299SDor Laor     qemu_bh_delete(acb->bh);
375136afc451SAvi Kivity     acb->bh = NULL;
3752c16b5a2cSChristoph Hellwig     qemu_aio_release(acb);
3753c16b5a2cSChristoph Hellwig }
3754c16b5a2cSChristoph Hellwig 
3755d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_aiocb_info = {
3756c16b5a2cSChristoph Hellwig     .aiocb_size         = sizeof(BlockDriverAIOCBSync),
3757c16b5a2cSChristoph Hellwig     .cancel             = bdrv_aio_cancel_em,
3758c16b5a2cSChristoph Hellwig };
3759c16b5a2cSChristoph Hellwig 
376083f64091Sbellard static void bdrv_aio_bh_cb(void *opaque)
3761beac80cdSbellard {
3762ce1a14dcSpbrook     BlockDriverAIOCBSync *acb = opaque;
3763f141eafeSaliguori 
3764f141eafeSaliguori     if (!acb->is_write)
376503396148SMichael Tokarev         qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
3766ceb42de8Saliguori     qemu_vfree(acb->bounce);
3767ce1a14dcSpbrook     acb->common.cb(acb->common.opaque, acb->ret);
37686a7ad299SDor Laor     qemu_bh_delete(acb->bh);
376936afc451SAvi Kivity     acb->bh = NULL;
3770ce1a14dcSpbrook     qemu_aio_release(acb);
3771beac80cdSbellard }
3772beac80cdSbellard 
3773f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
3774f141eafeSaliguori                                             int64_t sector_num,
3775f141eafeSaliguori                                             QEMUIOVector *qiov,
3776f141eafeSaliguori                                             int nb_sectors,
3777f141eafeSaliguori                                             BlockDriverCompletionFunc *cb,
3778f141eafeSaliguori                                             void *opaque,
3779f141eafeSaliguori                                             int is_write)
3780f141eafeSaliguori 
3781ea2384d3Sbellard {
3782ce1a14dcSpbrook     BlockDriverAIOCBSync *acb;
378383f64091Sbellard 
3784d7331bedSStefan Hajnoczi     acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque);
3785f141eafeSaliguori     acb->is_write = is_write;
3786f141eafeSaliguori     acb->qiov = qiov;
3787e268ca52Saliguori     acb->bounce = qemu_blockalign(bs, qiov->size);
3788ce1a14dcSpbrook     acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb);
3789f141eafeSaliguori 
3790f141eafeSaliguori     if (is_write) {
3791d5e6b161SMichael Tokarev         qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
37921ed20acfSStefan Hajnoczi         acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
3793f141eafeSaliguori     } else {
37941ed20acfSStefan Hajnoczi         acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
3795f141eafeSaliguori     }
3796f141eafeSaliguori 
3797ce1a14dcSpbrook     qemu_bh_schedule(acb->bh);
3798f141eafeSaliguori 
3799ce1a14dcSpbrook     return &acb->common;
38007a6cba61Spbrook }
38017a6cba61Spbrook 
3802f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
3803f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3804ce1a14dcSpbrook         BlockDriverCompletionFunc *cb, void *opaque)
380583f64091Sbellard {
3806f141eafeSaliguori     return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
380783f64091Sbellard }
380883f64091Sbellard 
3809f141eafeSaliguori static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
3810f141eafeSaliguori         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
3811f141eafeSaliguori         BlockDriverCompletionFunc *cb, void *opaque)
3812f141eafeSaliguori {
3813f141eafeSaliguori     return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
3814f141eafeSaliguori }
3815f141eafeSaliguori 
381668485420SKevin Wolf 
381768485420SKevin Wolf typedef struct BlockDriverAIOCBCoroutine {
381868485420SKevin Wolf     BlockDriverAIOCB common;
381968485420SKevin Wolf     BlockRequest req;
382068485420SKevin Wolf     bool is_write;
3821d318aea9SKevin Wolf     bool *done;
382268485420SKevin Wolf     QEMUBH* bh;
382368485420SKevin Wolf } BlockDriverAIOCBCoroutine;
382468485420SKevin Wolf 
382568485420SKevin Wolf static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
382668485420SKevin Wolf {
3827d318aea9SKevin Wolf     BlockDriverAIOCBCoroutine *acb =
3828d318aea9SKevin Wolf         container_of(blockacb, BlockDriverAIOCBCoroutine, common);
3829d318aea9SKevin Wolf     bool done = false;
3830d318aea9SKevin Wolf 
3831d318aea9SKevin Wolf     acb->done = &done;
3832d318aea9SKevin Wolf     while (!done) {
3833d318aea9SKevin Wolf         qemu_aio_wait();
3834d318aea9SKevin Wolf     }
383568485420SKevin Wolf }
383668485420SKevin Wolf 
3837d7331bedSStefan Hajnoczi static const AIOCBInfo bdrv_em_co_aiocb_info = {
383868485420SKevin Wolf     .aiocb_size         = sizeof(BlockDriverAIOCBCoroutine),
383968485420SKevin Wolf     .cancel             = bdrv_aio_co_cancel_em,
384068485420SKevin Wolf };
384168485420SKevin Wolf 
384235246a68SPaolo Bonzini static void bdrv_co_em_bh(void *opaque)
384368485420SKevin Wolf {
384468485420SKevin Wolf     BlockDriverAIOCBCoroutine *acb = opaque;
384568485420SKevin Wolf 
384668485420SKevin Wolf     acb->common.cb(acb->common.opaque, acb->req.error);
3847d318aea9SKevin Wolf 
3848d318aea9SKevin Wolf     if (acb->done) {
3849d318aea9SKevin Wolf         *acb->done = true;
3850d318aea9SKevin Wolf     }
3851d318aea9SKevin Wolf 
385268485420SKevin Wolf     qemu_bh_delete(acb->bh);
385368485420SKevin Wolf     qemu_aio_release(acb);
385468485420SKevin Wolf }
385568485420SKevin Wolf 
3856b2a61371SStefan Hajnoczi /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
3857b2a61371SStefan Hajnoczi static void coroutine_fn bdrv_co_do_rw(void *opaque)
3858b2a61371SStefan Hajnoczi {
3859b2a61371SStefan Hajnoczi     BlockDriverAIOCBCoroutine *acb = opaque;
3860b2a61371SStefan Hajnoczi     BlockDriverState *bs = acb->common.bs;
3861b2a61371SStefan Hajnoczi 
3862b2a61371SStefan Hajnoczi     if (!acb->is_write) {
3863b2a61371SStefan Hajnoczi         acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
3864470c0504SStefan Hajnoczi             acb->req.nb_sectors, acb->req.qiov, 0);
3865b2a61371SStefan Hajnoczi     } else {
3866b2a61371SStefan Hajnoczi         acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
3867f08f2ddaSStefan Hajnoczi             acb->req.nb_sectors, acb->req.qiov, 0);
3868b2a61371SStefan Hajnoczi     }
3869b2a61371SStefan Hajnoczi 
387035246a68SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3871b2a61371SStefan Hajnoczi     qemu_bh_schedule(acb->bh);
3872b2a61371SStefan Hajnoczi }
3873b2a61371SStefan Hajnoczi 
387468485420SKevin Wolf static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
387568485420SKevin Wolf                                                int64_t sector_num,
387668485420SKevin Wolf                                                QEMUIOVector *qiov,
387768485420SKevin Wolf                                                int nb_sectors,
387868485420SKevin Wolf                                                BlockDriverCompletionFunc *cb,
387968485420SKevin Wolf                                                void *opaque,
38808c5873d6SStefan Hajnoczi                                                bool is_write)
388168485420SKevin Wolf {
388268485420SKevin Wolf     Coroutine *co;
388368485420SKevin Wolf     BlockDriverAIOCBCoroutine *acb;
388468485420SKevin Wolf 
3885d7331bedSStefan Hajnoczi     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
388668485420SKevin Wolf     acb->req.sector = sector_num;
388768485420SKevin Wolf     acb->req.nb_sectors = nb_sectors;
388868485420SKevin Wolf     acb->req.qiov = qiov;
388968485420SKevin Wolf     acb->is_write = is_write;
3890d318aea9SKevin Wolf     acb->done = NULL;
389168485420SKevin Wolf 
38928c5873d6SStefan Hajnoczi     co = qemu_coroutine_create(bdrv_co_do_rw);
389368485420SKevin Wolf     qemu_coroutine_enter(co, acb);
389468485420SKevin Wolf 
389568485420SKevin Wolf     return &acb->common;
389668485420SKevin Wolf }
389768485420SKevin Wolf 
389807f07615SPaolo Bonzini static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
3899b2e12bc6SChristoph Hellwig {
390007f07615SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb = opaque;
390107f07615SPaolo Bonzini     BlockDriverState *bs = acb->common.bs;
3902b2e12bc6SChristoph Hellwig 
390307f07615SPaolo Bonzini     acb->req.error = bdrv_co_flush(bs);
390407f07615SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
3905b2e12bc6SChristoph Hellwig     qemu_bh_schedule(acb->bh);
3906b2e12bc6SChristoph Hellwig }
3907b2e12bc6SChristoph Hellwig 
390807f07615SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
3909016f5cf6SAlexander Graf         BlockDriverCompletionFunc *cb, void *opaque)
3910016f5cf6SAlexander Graf {
391107f07615SPaolo Bonzini     trace_bdrv_aio_flush(bs, opaque);
3912016f5cf6SAlexander Graf 
391307f07615SPaolo Bonzini     Coroutine *co;
391407f07615SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb;
3915016f5cf6SAlexander Graf 
3916d7331bedSStefan Hajnoczi     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
3917d318aea9SKevin Wolf     acb->done = NULL;
3918d318aea9SKevin Wolf 
391907f07615SPaolo Bonzini     co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
392007f07615SPaolo Bonzini     qemu_coroutine_enter(co, acb);
3921016f5cf6SAlexander Graf 
3922016f5cf6SAlexander Graf     return &acb->common;
3923016f5cf6SAlexander Graf }
3924016f5cf6SAlexander Graf 
39254265d620SPaolo Bonzini static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
39264265d620SPaolo Bonzini {
39274265d620SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb = opaque;
39284265d620SPaolo Bonzini     BlockDriverState *bs = acb->common.bs;
39294265d620SPaolo Bonzini 
39304265d620SPaolo Bonzini     acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
39314265d620SPaolo Bonzini     acb->bh = qemu_bh_new(bdrv_co_em_bh, acb);
39324265d620SPaolo Bonzini     qemu_bh_schedule(acb->bh);
39334265d620SPaolo Bonzini }
39344265d620SPaolo Bonzini 
39354265d620SPaolo Bonzini BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
39364265d620SPaolo Bonzini         int64_t sector_num, int nb_sectors,
39374265d620SPaolo Bonzini         BlockDriverCompletionFunc *cb, void *opaque)
39384265d620SPaolo Bonzini {
39394265d620SPaolo Bonzini     Coroutine *co;
39404265d620SPaolo Bonzini     BlockDriverAIOCBCoroutine *acb;
39414265d620SPaolo Bonzini 
39424265d620SPaolo Bonzini     trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
39434265d620SPaolo Bonzini 
3944d7331bedSStefan Hajnoczi     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
39454265d620SPaolo Bonzini     acb->req.sector = sector_num;
39464265d620SPaolo Bonzini     acb->req.nb_sectors = nb_sectors;
3947d318aea9SKevin Wolf     acb->done = NULL;
39484265d620SPaolo Bonzini     co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
39494265d620SPaolo Bonzini     qemu_coroutine_enter(co, acb);
39504265d620SPaolo Bonzini 
39514265d620SPaolo Bonzini     return &acb->common;
39524265d620SPaolo Bonzini }
39534265d620SPaolo Bonzini 
3954ea2384d3Sbellard void bdrv_init(void)
3955ea2384d3Sbellard {
39565efa9d5aSAnthony Liguori     module_call_init(MODULE_INIT_BLOCK);
3957ea2384d3Sbellard }
3958ce1a14dcSpbrook 
3959eb852011SMarkus Armbruster void bdrv_init_with_whitelist(void)
3960eb852011SMarkus Armbruster {
3961eb852011SMarkus Armbruster     use_bdrv_whitelist = 1;
3962eb852011SMarkus Armbruster     bdrv_init();
3963eb852011SMarkus Armbruster }
3964eb852011SMarkus Armbruster 
3965d7331bedSStefan Hajnoczi void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
39666bbff9a0Saliguori                    BlockDriverCompletionFunc *cb, void *opaque)
39676bbff9a0Saliguori {
3968ce1a14dcSpbrook     BlockDriverAIOCB *acb;
3969ce1a14dcSpbrook 
3970d7331bedSStefan Hajnoczi     acb = g_slice_alloc(aiocb_info->aiocb_size);
3971d7331bedSStefan Hajnoczi     acb->aiocb_info = aiocb_info;
3972ce1a14dcSpbrook     acb->bs = bs;
3973ce1a14dcSpbrook     acb->cb = cb;
3974ce1a14dcSpbrook     acb->opaque = opaque;
3975ce1a14dcSpbrook     return acb;
3976ce1a14dcSpbrook }
3977ce1a14dcSpbrook 
3978ce1a14dcSpbrook void qemu_aio_release(void *p)
3979ce1a14dcSpbrook {
3980d37c975fSStefan Hajnoczi     BlockDriverAIOCB *acb = p;
3981d7331bedSStefan Hajnoczi     g_slice_free1(acb->aiocb_info->aiocb_size, acb);
3982ce1a14dcSpbrook }
398319cb3738Sbellard 
398419cb3738Sbellard /**************************************************************/
3985f9f05dc5SKevin Wolf /* Coroutine block device emulation */
3986f9f05dc5SKevin Wolf 
3987f9f05dc5SKevin Wolf typedef struct CoroutineIOCompletion {
3988f9f05dc5SKevin Wolf     Coroutine *coroutine;
3989f9f05dc5SKevin Wolf     int ret;
3990f9f05dc5SKevin Wolf } CoroutineIOCompletion;
3991f9f05dc5SKevin Wolf 
3992f9f05dc5SKevin Wolf static void bdrv_co_io_em_complete(void *opaque, int ret)
3993f9f05dc5SKevin Wolf {
3994f9f05dc5SKevin Wolf     CoroutineIOCompletion *co = opaque;
3995f9f05dc5SKevin Wolf 
3996f9f05dc5SKevin Wolf     co->ret = ret;
3997f9f05dc5SKevin Wolf     qemu_coroutine_enter(co->coroutine, NULL);
3998f9f05dc5SKevin Wolf }
3999f9f05dc5SKevin Wolf 
4000f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
4001f9f05dc5SKevin Wolf                                       int nb_sectors, QEMUIOVector *iov,
4002f9f05dc5SKevin Wolf                                       bool is_write)
4003f9f05dc5SKevin Wolf {
4004f9f05dc5SKevin Wolf     CoroutineIOCompletion co = {
4005f9f05dc5SKevin Wolf         .coroutine = qemu_coroutine_self(),
4006f9f05dc5SKevin Wolf     };
4007f9f05dc5SKevin Wolf     BlockDriverAIOCB *acb;
4008f9f05dc5SKevin Wolf 
4009f9f05dc5SKevin Wolf     if (is_write) {
4010a652d160SStefan Hajnoczi         acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
4011f9f05dc5SKevin Wolf                                        bdrv_co_io_em_complete, &co);
4012f9f05dc5SKevin Wolf     } else {
4013a652d160SStefan Hajnoczi         acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
4014f9f05dc5SKevin Wolf                                       bdrv_co_io_em_complete, &co);
4015f9f05dc5SKevin Wolf     }
4016f9f05dc5SKevin Wolf 
401759370aaaSStefan Hajnoczi     trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
4018f9f05dc5SKevin Wolf     if (!acb) {
4019f9f05dc5SKevin Wolf         return -EIO;
4020f9f05dc5SKevin Wolf     }
4021f9f05dc5SKevin Wolf     qemu_coroutine_yield();
4022f9f05dc5SKevin Wolf 
4023f9f05dc5SKevin Wolf     return co.ret;
4024f9f05dc5SKevin Wolf }
4025f9f05dc5SKevin Wolf 
4026f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
4027f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
4028f9f05dc5SKevin Wolf                                          QEMUIOVector *iov)
4029f9f05dc5SKevin Wolf {
4030f9f05dc5SKevin Wolf     return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
4031f9f05dc5SKevin Wolf }
4032f9f05dc5SKevin Wolf 
4033f9f05dc5SKevin Wolf static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
4034f9f05dc5SKevin Wolf                                          int64_t sector_num, int nb_sectors,
4035f9f05dc5SKevin Wolf                                          QEMUIOVector *iov)
4036f9f05dc5SKevin Wolf {
4037f9f05dc5SKevin Wolf     return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
4038f9f05dc5SKevin Wolf }
4039f9f05dc5SKevin Wolf 
404007f07615SPaolo Bonzini static void coroutine_fn bdrv_flush_co_entry(void *opaque)
4041e7a8a783SKevin Wolf {
404207f07615SPaolo Bonzini     RwCo *rwco = opaque;
404307f07615SPaolo Bonzini 
404407f07615SPaolo Bonzini     rwco->ret = bdrv_co_flush(rwco->bs);
404507f07615SPaolo Bonzini }
404607f07615SPaolo Bonzini 
404707f07615SPaolo Bonzini int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
404807f07615SPaolo Bonzini {
4049eb489bb1SKevin Wolf     int ret;
4050eb489bb1SKevin Wolf 
405129cdb251SPaolo Bonzini     if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
405207f07615SPaolo Bonzini         return 0;
4053eb489bb1SKevin Wolf     }
4054eb489bb1SKevin Wolf 
4055ca716364SKevin Wolf     /* Write back cached data to the OS even with cache=unsafe */
4056bf736fe3SKevin Wolf     BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
4057eb489bb1SKevin Wolf     if (bs->drv->bdrv_co_flush_to_os) {
4058eb489bb1SKevin Wolf         ret = bs->drv->bdrv_co_flush_to_os(bs);
4059eb489bb1SKevin Wolf         if (ret < 0) {
4060eb489bb1SKevin Wolf             return ret;
4061eb489bb1SKevin Wolf         }
4062eb489bb1SKevin Wolf     }
4063eb489bb1SKevin Wolf 
4064ca716364SKevin Wolf     /* But don't actually force it to the disk with cache=unsafe */
4065ca716364SKevin Wolf     if (bs->open_flags & BDRV_O_NO_FLUSH) {
4066d4c82329SKevin Wolf         goto flush_parent;
4067ca716364SKevin Wolf     }
4068ca716364SKevin Wolf 
4069bf736fe3SKevin Wolf     BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
4070eb489bb1SKevin Wolf     if (bs->drv->bdrv_co_flush_to_disk) {
407129cdb251SPaolo Bonzini         ret = bs->drv->bdrv_co_flush_to_disk(bs);
407207f07615SPaolo Bonzini     } else if (bs->drv->bdrv_aio_flush) {
407307f07615SPaolo Bonzini         BlockDriverAIOCB *acb;
4074e7a8a783SKevin Wolf         CoroutineIOCompletion co = {
4075e7a8a783SKevin Wolf             .coroutine = qemu_coroutine_self(),
4076e7a8a783SKevin Wolf         };
4077e7a8a783SKevin Wolf 
407807f07615SPaolo Bonzini         acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
407907f07615SPaolo Bonzini         if (acb == NULL) {
408029cdb251SPaolo Bonzini             ret = -EIO;
408107f07615SPaolo Bonzini         } else {
4082e7a8a783SKevin Wolf             qemu_coroutine_yield();
408329cdb251SPaolo Bonzini             ret = co.ret;
4084e7a8a783SKevin Wolf         }
408507f07615SPaolo Bonzini     } else {
408607f07615SPaolo Bonzini         /*
408707f07615SPaolo Bonzini          * Some block drivers always operate in either writethrough or unsafe
408807f07615SPaolo Bonzini          * mode and don't support bdrv_flush therefore. Usually qemu doesn't
408907f07615SPaolo Bonzini          * know how the server works (because the behaviour is hardcoded or
409007f07615SPaolo Bonzini          * depends on server-side configuration), so we can't ensure that
409107f07615SPaolo Bonzini          * everything is safe on disk. Returning an error doesn't work because
409207f07615SPaolo Bonzini          * that would break guests even if the server operates in writethrough
409307f07615SPaolo Bonzini          * mode.
409407f07615SPaolo Bonzini          *
409507f07615SPaolo Bonzini          * Let's hope the user knows what he's doing.
409607f07615SPaolo Bonzini          */
409729cdb251SPaolo Bonzini         ret = 0;
409807f07615SPaolo Bonzini     }
409929cdb251SPaolo Bonzini     if (ret < 0) {
410029cdb251SPaolo Bonzini         return ret;
410129cdb251SPaolo Bonzini     }
410229cdb251SPaolo Bonzini 
410329cdb251SPaolo Bonzini     /* Now flush the underlying protocol.  It will also have BDRV_O_NO_FLUSH
410429cdb251SPaolo Bonzini      * in the case of cache=unsafe, so there are no useless flushes.
410529cdb251SPaolo Bonzini      */
4106d4c82329SKevin Wolf flush_parent:
410729cdb251SPaolo Bonzini     return bdrv_co_flush(bs->file);
410807f07615SPaolo Bonzini }
410907f07615SPaolo Bonzini 
41100f15423cSAnthony Liguori void bdrv_invalidate_cache(BlockDriverState *bs)
41110f15423cSAnthony Liguori {
41120f15423cSAnthony Liguori     if (bs->drv && bs->drv->bdrv_invalidate_cache) {
41130f15423cSAnthony Liguori         bs->drv->bdrv_invalidate_cache(bs);
41140f15423cSAnthony Liguori     }
41150f15423cSAnthony Liguori }
41160f15423cSAnthony Liguori 
41170f15423cSAnthony Liguori void bdrv_invalidate_cache_all(void)
41180f15423cSAnthony Liguori {
41190f15423cSAnthony Liguori     BlockDriverState *bs;
41200f15423cSAnthony Liguori 
41210f15423cSAnthony Liguori     QTAILQ_FOREACH(bs, &bdrv_states, list) {
41220f15423cSAnthony Liguori         bdrv_invalidate_cache(bs);
41230f15423cSAnthony Liguori     }
41240f15423cSAnthony Liguori }
41250f15423cSAnthony Liguori 
412607789269SBenoît Canet void bdrv_clear_incoming_migration_all(void)
412707789269SBenoît Canet {
412807789269SBenoît Canet     BlockDriverState *bs;
412907789269SBenoît Canet 
413007789269SBenoît Canet     QTAILQ_FOREACH(bs, &bdrv_states, list) {
413107789269SBenoît Canet         bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
413207789269SBenoît Canet     }
413307789269SBenoît Canet }
413407789269SBenoît Canet 
413507f07615SPaolo Bonzini int bdrv_flush(BlockDriverState *bs)
413607f07615SPaolo Bonzini {
413707f07615SPaolo Bonzini     Coroutine *co;
413807f07615SPaolo Bonzini     RwCo rwco = {
413907f07615SPaolo Bonzini         .bs = bs,
414007f07615SPaolo Bonzini         .ret = NOT_DONE,
414107f07615SPaolo Bonzini     };
414207f07615SPaolo Bonzini 
414307f07615SPaolo Bonzini     if (qemu_in_coroutine()) {
414407f07615SPaolo Bonzini         /* Fast-path if already in coroutine context */
414507f07615SPaolo Bonzini         bdrv_flush_co_entry(&rwco);
414607f07615SPaolo Bonzini     } else {
414707f07615SPaolo Bonzini         co = qemu_coroutine_create(bdrv_flush_co_entry);
414807f07615SPaolo Bonzini         qemu_coroutine_enter(co, &rwco);
414907f07615SPaolo Bonzini         while (rwco.ret == NOT_DONE) {
415007f07615SPaolo Bonzini             qemu_aio_wait();
415107f07615SPaolo Bonzini         }
415207f07615SPaolo Bonzini     }
415307f07615SPaolo Bonzini 
415407f07615SPaolo Bonzini     return rwco.ret;
415507f07615SPaolo Bonzini }
4156e7a8a783SKevin Wolf 
41574265d620SPaolo Bonzini static void coroutine_fn bdrv_discard_co_entry(void *opaque)
41584265d620SPaolo Bonzini {
41594265d620SPaolo Bonzini     RwCo *rwco = opaque;
41604265d620SPaolo Bonzini 
41614265d620SPaolo Bonzini     rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
41624265d620SPaolo Bonzini }
41634265d620SPaolo Bonzini 
41644265d620SPaolo Bonzini int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
41654265d620SPaolo Bonzini                                  int nb_sectors)
41664265d620SPaolo Bonzini {
41674265d620SPaolo Bonzini     if (!bs->drv) {
41684265d620SPaolo Bonzini         return -ENOMEDIUM;
41694265d620SPaolo Bonzini     } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
41704265d620SPaolo Bonzini         return -EIO;
41714265d620SPaolo Bonzini     } else if (bs->read_only) {
41724265d620SPaolo Bonzini         return -EROFS;
4173df702c9bSPaolo Bonzini     }
4174df702c9bSPaolo Bonzini 
4175df702c9bSPaolo Bonzini     if (bs->dirty_bitmap) {
41768f0720ecSPaolo Bonzini         bdrv_reset_dirty(bs, sector_num, nb_sectors);
4177df702c9bSPaolo Bonzini     }
4178df702c9bSPaolo Bonzini 
41799e8f1835SPaolo Bonzini     /* Do nothing if disabled.  */
41809e8f1835SPaolo Bonzini     if (!(bs->open_flags & BDRV_O_UNMAP)) {
41819e8f1835SPaolo Bonzini         return 0;
41829e8f1835SPaolo Bonzini     }
41839e8f1835SPaolo Bonzini 
4184df702c9bSPaolo Bonzini     if (bs->drv->bdrv_co_discard) {
41854265d620SPaolo Bonzini         return bs->drv->bdrv_co_discard(bs, sector_num, nb_sectors);
41864265d620SPaolo Bonzini     } else if (bs->drv->bdrv_aio_discard) {
41874265d620SPaolo Bonzini         BlockDriverAIOCB *acb;
41884265d620SPaolo Bonzini         CoroutineIOCompletion co = {
41894265d620SPaolo Bonzini             .coroutine = qemu_coroutine_self(),
41904265d620SPaolo Bonzini         };
41914265d620SPaolo Bonzini 
41924265d620SPaolo Bonzini         acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
41934265d620SPaolo Bonzini                                         bdrv_co_io_em_complete, &co);
41944265d620SPaolo Bonzini         if (acb == NULL) {
41954265d620SPaolo Bonzini             return -EIO;
41964265d620SPaolo Bonzini         } else {
41974265d620SPaolo Bonzini             qemu_coroutine_yield();
41984265d620SPaolo Bonzini             return co.ret;
41994265d620SPaolo Bonzini         }
42004265d620SPaolo Bonzini     } else {
42014265d620SPaolo Bonzini         return 0;
42024265d620SPaolo Bonzini     }
42034265d620SPaolo Bonzini }
42044265d620SPaolo Bonzini 
42054265d620SPaolo Bonzini int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
42064265d620SPaolo Bonzini {
42074265d620SPaolo Bonzini     Coroutine *co;
42084265d620SPaolo Bonzini     RwCo rwco = {
42094265d620SPaolo Bonzini         .bs = bs,
42104265d620SPaolo Bonzini         .sector_num = sector_num,
42114265d620SPaolo Bonzini         .nb_sectors = nb_sectors,
42124265d620SPaolo Bonzini         .ret = NOT_DONE,
42134265d620SPaolo Bonzini     };
42144265d620SPaolo Bonzini 
42154265d620SPaolo Bonzini     if (qemu_in_coroutine()) {
42164265d620SPaolo Bonzini         /* Fast-path if already in coroutine context */
42174265d620SPaolo Bonzini         bdrv_discard_co_entry(&rwco);
42184265d620SPaolo Bonzini     } else {
42194265d620SPaolo Bonzini         co = qemu_coroutine_create(bdrv_discard_co_entry);
42204265d620SPaolo Bonzini         qemu_coroutine_enter(co, &rwco);
42214265d620SPaolo Bonzini         while (rwco.ret == NOT_DONE) {
42224265d620SPaolo Bonzini             qemu_aio_wait();
42234265d620SPaolo Bonzini         }
42244265d620SPaolo Bonzini     }
42254265d620SPaolo Bonzini 
42264265d620SPaolo Bonzini     return rwco.ret;
42274265d620SPaolo Bonzini }
42284265d620SPaolo Bonzini 
4229f9f05dc5SKevin Wolf /**************************************************************/
423019cb3738Sbellard /* removable device support */
423119cb3738Sbellard 
423219cb3738Sbellard /**
423319cb3738Sbellard  * Return TRUE if the media is present
423419cb3738Sbellard  */
423519cb3738Sbellard int bdrv_is_inserted(BlockDriverState *bs)
423619cb3738Sbellard {
423719cb3738Sbellard     BlockDriver *drv = bs->drv;
4238a1aff5bfSMarkus Armbruster 
423919cb3738Sbellard     if (!drv)
424019cb3738Sbellard         return 0;
424119cb3738Sbellard     if (!drv->bdrv_is_inserted)
4242a1aff5bfSMarkus Armbruster         return 1;
4243a1aff5bfSMarkus Armbruster     return drv->bdrv_is_inserted(bs);
424419cb3738Sbellard }
424519cb3738Sbellard 
424619cb3738Sbellard /**
42478e49ca46SMarkus Armbruster  * Return whether the media changed since the last call to this
42488e49ca46SMarkus Armbruster  * function, or -ENOTSUP if we don't know.  Most drivers don't know.
424919cb3738Sbellard  */
425019cb3738Sbellard int bdrv_media_changed(BlockDriverState *bs)
425119cb3738Sbellard {
425219cb3738Sbellard     BlockDriver *drv = bs->drv;
425319cb3738Sbellard 
42548e49ca46SMarkus Armbruster     if (drv && drv->bdrv_media_changed) {
42558e49ca46SMarkus Armbruster         return drv->bdrv_media_changed(bs);
42568e49ca46SMarkus Armbruster     }
42578e49ca46SMarkus Armbruster     return -ENOTSUP;
425819cb3738Sbellard }
425919cb3738Sbellard 
426019cb3738Sbellard /**
426119cb3738Sbellard  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
426219cb3738Sbellard  */
4263f36f3949SLuiz Capitulino void bdrv_eject(BlockDriverState *bs, bool eject_flag)
426419cb3738Sbellard {
426519cb3738Sbellard     BlockDriver *drv = bs->drv;
426619cb3738Sbellard 
4267822e1cd1SMarkus Armbruster     if (drv && drv->bdrv_eject) {
4268822e1cd1SMarkus Armbruster         drv->bdrv_eject(bs, eject_flag);
426919cb3738Sbellard     }
42706f382ed2SLuiz Capitulino 
42716f382ed2SLuiz Capitulino     if (bs->device_name[0] != '\0') {
42726f382ed2SLuiz Capitulino         bdrv_emit_qmp_eject_event(bs, eject_flag);
42736f382ed2SLuiz Capitulino     }
427419cb3738Sbellard }
427519cb3738Sbellard 
427619cb3738Sbellard /**
427719cb3738Sbellard  * Lock or unlock the media (if it is locked, the user won't be able
427819cb3738Sbellard  * to eject it manually).
427919cb3738Sbellard  */
4280025e849aSMarkus Armbruster void bdrv_lock_medium(BlockDriverState *bs, bool locked)
428119cb3738Sbellard {
428219cb3738Sbellard     BlockDriver *drv = bs->drv;
428319cb3738Sbellard 
4284025e849aSMarkus Armbruster     trace_bdrv_lock_medium(bs, locked);
4285b8c6d095SStefan Hajnoczi 
4286025e849aSMarkus Armbruster     if (drv && drv->bdrv_lock_medium) {
4287025e849aSMarkus Armbruster         drv->bdrv_lock_medium(bs, locked);
428819cb3738Sbellard     }
428919cb3738Sbellard }
4290985a03b0Sths 
4291985a03b0Sths /* needed for generic scsi interface */
4292985a03b0Sths 
4293985a03b0Sths int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
4294985a03b0Sths {
4295985a03b0Sths     BlockDriver *drv = bs->drv;
4296985a03b0Sths 
4297985a03b0Sths     if (drv && drv->bdrv_ioctl)
4298985a03b0Sths         return drv->bdrv_ioctl(bs, req, buf);
4299985a03b0Sths     return -ENOTSUP;
4300985a03b0Sths }
43017d780669Saliguori 
4302221f715dSaliguori BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
4303221f715dSaliguori         unsigned long int req, void *buf,
43047d780669Saliguori         BlockDriverCompletionFunc *cb, void *opaque)
43057d780669Saliguori {
4306221f715dSaliguori     BlockDriver *drv = bs->drv;
43077d780669Saliguori 
4308221f715dSaliguori     if (drv && drv->bdrv_aio_ioctl)
4309221f715dSaliguori         return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
4310221f715dSaliguori     return NULL;
43117d780669Saliguori }
4312e268ca52Saliguori 
43137b6f9300SMarkus Armbruster void bdrv_set_buffer_alignment(BlockDriverState *bs, int align)
43147b6f9300SMarkus Armbruster {
43157b6f9300SMarkus Armbruster     bs->buffer_alignment = align;
43167b6f9300SMarkus Armbruster }
43177cd1e32aSlirans@il.ibm.com 
4318e268ca52Saliguori void *qemu_blockalign(BlockDriverState *bs, size_t size)
4319e268ca52Saliguori {
4320e268ca52Saliguori     return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size);
4321e268ca52Saliguori }
43227cd1e32aSlirans@il.ibm.com 
4323c53b1c51SStefan Hajnoczi /*
4324c53b1c51SStefan Hajnoczi  * Check if all memory in this vector is sector aligned.
4325c53b1c51SStefan Hajnoczi  */
4326c53b1c51SStefan Hajnoczi bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
4327c53b1c51SStefan Hajnoczi {
4328c53b1c51SStefan Hajnoczi     int i;
4329c53b1c51SStefan Hajnoczi 
4330c53b1c51SStefan Hajnoczi     for (i = 0; i < qiov->niov; i++) {
4331c53b1c51SStefan Hajnoczi         if ((uintptr_t) qiov->iov[i].iov_base % bs->buffer_alignment) {
4332c53b1c51SStefan Hajnoczi             return false;
4333c53b1c51SStefan Hajnoczi         }
4334c53b1c51SStefan Hajnoczi     }
4335c53b1c51SStefan Hajnoczi 
4336c53b1c51SStefan Hajnoczi     return true;
4337c53b1c51SStefan Hajnoczi }
4338c53b1c51SStefan Hajnoczi 
433950717e94SPaolo Bonzini void bdrv_set_dirty_tracking(BlockDriverState *bs, int granularity)
43407cd1e32aSlirans@il.ibm.com {
43417cd1e32aSlirans@il.ibm.com     int64_t bitmap_size;
4342a55eb92cSJan Kiszka 
434350717e94SPaolo Bonzini     assert((granularity & (granularity - 1)) == 0);
434450717e94SPaolo Bonzini 
434550717e94SPaolo Bonzini     if (granularity) {
434650717e94SPaolo Bonzini         granularity >>= BDRV_SECTOR_BITS;
434750717e94SPaolo Bonzini         assert(!bs->dirty_bitmap);
43488f0720ecSPaolo Bonzini         bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS);
434950717e94SPaolo Bonzini         bs->dirty_bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1);
43507cd1e32aSlirans@il.ibm.com     } else {
4351c6d22830SJan Kiszka         if (bs->dirty_bitmap) {
43528f0720ecSPaolo Bonzini             hbitmap_free(bs->dirty_bitmap);
4353c6d22830SJan Kiszka             bs->dirty_bitmap = NULL;
43547cd1e32aSlirans@il.ibm.com         }
43557cd1e32aSlirans@il.ibm.com     }
43567cd1e32aSlirans@il.ibm.com }
43577cd1e32aSlirans@il.ibm.com 
43587cd1e32aSlirans@il.ibm.com int bdrv_get_dirty(BlockDriverState *bs, int64_t sector)
43597cd1e32aSlirans@il.ibm.com {
43608f0720ecSPaolo Bonzini     if (bs->dirty_bitmap) {
43618f0720ecSPaolo Bonzini         return hbitmap_get(bs->dirty_bitmap, sector);
43627cd1e32aSlirans@il.ibm.com     } else {
43637cd1e32aSlirans@il.ibm.com         return 0;
43647cd1e32aSlirans@il.ibm.com     }
43657cd1e32aSlirans@il.ibm.com }
43667cd1e32aSlirans@il.ibm.com 
43678f0720ecSPaolo Bonzini void bdrv_dirty_iter_init(BlockDriverState *bs, HBitmapIter *hbi)
43681755da16SPaolo Bonzini {
43698f0720ecSPaolo Bonzini     hbitmap_iter_init(hbi, bs->dirty_bitmap, 0);
43701755da16SPaolo Bonzini }
43711755da16SPaolo Bonzini 
43721755da16SPaolo Bonzini void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector,
43731755da16SPaolo Bonzini                     int nr_sectors)
43741755da16SPaolo Bonzini {
43758f0720ecSPaolo Bonzini     hbitmap_set(bs->dirty_bitmap, cur_sector, nr_sectors);
43761755da16SPaolo Bonzini }
43771755da16SPaolo Bonzini 
43787cd1e32aSlirans@il.ibm.com void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
43797cd1e32aSlirans@il.ibm.com                       int nr_sectors)
43807cd1e32aSlirans@il.ibm.com {
43818f0720ecSPaolo Bonzini     hbitmap_reset(bs->dirty_bitmap, cur_sector, nr_sectors);
43827cd1e32aSlirans@il.ibm.com }
4383aaa0eb75SLiran Schour 
4384aaa0eb75SLiran Schour int64_t bdrv_get_dirty_count(BlockDriverState *bs)
4385aaa0eb75SLiran Schour {
43868f0720ecSPaolo Bonzini     if (bs->dirty_bitmap) {
4387acc906c6SPaolo Bonzini         return hbitmap_count(bs->dirty_bitmap);
43888f0720ecSPaolo Bonzini     } else {
43898f0720ecSPaolo Bonzini         return 0;
43908f0720ecSPaolo Bonzini     }
4391aaa0eb75SLiran Schour }
4392f88e1a42SJes Sorensen 
43939fcb0251SFam Zheng /* Get a reference to bs */
43949fcb0251SFam Zheng void bdrv_ref(BlockDriverState *bs)
43959fcb0251SFam Zheng {
43969fcb0251SFam Zheng     bs->refcnt++;
43979fcb0251SFam Zheng }
43989fcb0251SFam Zheng 
43999fcb0251SFam Zheng /* Release a previously grabbed reference to bs.
44009fcb0251SFam Zheng  * If after releasing, reference count is zero, the BlockDriverState is
44019fcb0251SFam Zheng  * deleted. */
44029fcb0251SFam Zheng void bdrv_unref(BlockDriverState *bs)
44039fcb0251SFam Zheng {
44049fcb0251SFam Zheng     assert(bs->refcnt > 0);
44059fcb0251SFam Zheng     if (--bs->refcnt == 0) {
44069fcb0251SFam Zheng         bdrv_delete(bs);
44079fcb0251SFam Zheng     }
44089fcb0251SFam Zheng }
44099fcb0251SFam Zheng 
4410db593f25SMarcelo Tosatti void bdrv_set_in_use(BlockDriverState *bs, int in_use)
4411db593f25SMarcelo Tosatti {
4412db593f25SMarcelo Tosatti     assert(bs->in_use != in_use);
4413db593f25SMarcelo Tosatti     bs->in_use = in_use;
4414db593f25SMarcelo Tosatti }
4415db593f25SMarcelo Tosatti 
4416db593f25SMarcelo Tosatti int bdrv_in_use(BlockDriverState *bs)
4417db593f25SMarcelo Tosatti {
4418db593f25SMarcelo Tosatti     return bs->in_use;
4419db593f25SMarcelo Tosatti }
4420db593f25SMarcelo Tosatti 
442128a7282aSLuiz Capitulino void bdrv_iostatus_enable(BlockDriverState *bs)
442228a7282aSLuiz Capitulino {
4423d6bf279eSLuiz Capitulino     bs->iostatus_enabled = true;
442458e21ef5SLuiz Capitulino     bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
442528a7282aSLuiz Capitulino }
442628a7282aSLuiz Capitulino 
442728a7282aSLuiz Capitulino /* The I/O status is only enabled if the drive explicitly
442828a7282aSLuiz Capitulino  * enables it _and_ the VM is configured to stop on errors */
442928a7282aSLuiz Capitulino bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
443028a7282aSLuiz Capitulino {
4431d6bf279eSLuiz Capitulino     return (bs->iostatus_enabled &&
443292aa5c6dSPaolo Bonzini            (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
443392aa5c6dSPaolo Bonzini             bs->on_write_error == BLOCKDEV_ON_ERROR_STOP   ||
443492aa5c6dSPaolo Bonzini             bs->on_read_error == BLOCKDEV_ON_ERROR_STOP));
443528a7282aSLuiz Capitulino }
443628a7282aSLuiz Capitulino 
443728a7282aSLuiz Capitulino void bdrv_iostatus_disable(BlockDriverState *bs)
443828a7282aSLuiz Capitulino {
4439d6bf279eSLuiz Capitulino     bs->iostatus_enabled = false;
444028a7282aSLuiz Capitulino }
444128a7282aSLuiz Capitulino 
444228a7282aSLuiz Capitulino void bdrv_iostatus_reset(BlockDriverState *bs)
444328a7282aSLuiz Capitulino {
444428a7282aSLuiz Capitulino     if (bdrv_iostatus_is_enabled(bs)) {
444558e21ef5SLuiz Capitulino         bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
44463bd293c3SPaolo Bonzini         if (bs->job) {
44473bd293c3SPaolo Bonzini             block_job_iostatus_reset(bs->job);
44483bd293c3SPaolo Bonzini         }
444928a7282aSLuiz Capitulino     }
445028a7282aSLuiz Capitulino }
445128a7282aSLuiz Capitulino 
445228a7282aSLuiz Capitulino void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
445328a7282aSLuiz Capitulino {
44543e1caa5fSPaolo Bonzini     assert(bdrv_iostatus_is_enabled(bs));
44553e1caa5fSPaolo Bonzini     if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
445658e21ef5SLuiz Capitulino         bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
445758e21ef5SLuiz Capitulino                                          BLOCK_DEVICE_IO_STATUS_FAILED;
445828a7282aSLuiz Capitulino     }
445928a7282aSLuiz Capitulino }
446028a7282aSLuiz Capitulino 
4461a597e79cSChristoph Hellwig void
4462a597e79cSChristoph Hellwig bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
4463a597e79cSChristoph Hellwig         enum BlockAcctType type)
4464a597e79cSChristoph Hellwig {
4465a597e79cSChristoph Hellwig     assert(type < BDRV_MAX_IOTYPE);
4466a597e79cSChristoph Hellwig 
4467a597e79cSChristoph Hellwig     cookie->bytes = bytes;
4468c488c7f6SChristoph Hellwig     cookie->start_time_ns = get_clock();
4469a597e79cSChristoph Hellwig     cookie->type = type;
4470a597e79cSChristoph Hellwig }
4471a597e79cSChristoph Hellwig 
4472a597e79cSChristoph Hellwig void
4473a597e79cSChristoph Hellwig bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
4474a597e79cSChristoph Hellwig {
4475a597e79cSChristoph Hellwig     assert(cookie->type < BDRV_MAX_IOTYPE);
4476a597e79cSChristoph Hellwig 
4477a597e79cSChristoph Hellwig     bs->nr_bytes[cookie->type] += cookie->bytes;
4478a597e79cSChristoph Hellwig     bs->nr_ops[cookie->type]++;
4479c488c7f6SChristoph Hellwig     bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
4480a597e79cSChristoph Hellwig }
4481a597e79cSChristoph Hellwig 
4482d92ada22SLuiz Capitulino void bdrv_img_create(const char *filename, const char *fmt,
4483f88e1a42SJes Sorensen                      const char *base_filename, const char *base_fmt,
4484f382d43aSMiroslav Rezanina                      char *options, uint64_t img_size, int flags,
4485f382d43aSMiroslav Rezanina                      Error **errp, bool quiet)
4486f88e1a42SJes Sorensen {
4487f88e1a42SJes Sorensen     QEMUOptionParameter *param = NULL, *create_options = NULL;
4488d220894eSKevin Wolf     QEMUOptionParameter *backing_fmt, *backing_file, *size;
4489f88e1a42SJes Sorensen     BlockDriverState *bs = NULL;
4490f88e1a42SJes Sorensen     BlockDriver *drv, *proto_drv;
449196df67d1SStefan Hajnoczi     BlockDriver *backing_drv = NULL;
4492*cc84d90fSMax Reitz     Error *local_err = NULL;
4493f88e1a42SJes Sorensen     int ret = 0;
4494f88e1a42SJes Sorensen 
4495f88e1a42SJes Sorensen     /* Find driver and parse its options */
4496f88e1a42SJes Sorensen     drv = bdrv_find_format(fmt);
4497f88e1a42SJes Sorensen     if (!drv) {
449871c79813SLuiz Capitulino         error_setg(errp, "Unknown file format '%s'", fmt);
4499d92ada22SLuiz Capitulino         return;
4500f88e1a42SJes Sorensen     }
4501f88e1a42SJes Sorensen 
450298289620SKevin Wolf     proto_drv = bdrv_find_protocol(filename, true);
4503f88e1a42SJes Sorensen     if (!proto_drv) {
450471c79813SLuiz Capitulino         error_setg(errp, "Unknown protocol '%s'", filename);
4505d92ada22SLuiz Capitulino         return;
4506f88e1a42SJes Sorensen     }
4507f88e1a42SJes Sorensen 
4508f88e1a42SJes Sorensen     create_options = append_option_parameters(create_options,
4509f88e1a42SJes Sorensen                                               drv->create_options);
4510f88e1a42SJes Sorensen     create_options = append_option_parameters(create_options,
4511f88e1a42SJes Sorensen                                               proto_drv->create_options);
4512f88e1a42SJes Sorensen 
4513f88e1a42SJes Sorensen     /* Create parameter list with default values */
4514f88e1a42SJes Sorensen     param = parse_option_parameters("", create_options, param);
4515f88e1a42SJes Sorensen 
4516f88e1a42SJes Sorensen     set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size);
4517f88e1a42SJes Sorensen 
4518f88e1a42SJes Sorensen     /* Parse -o options */
4519f88e1a42SJes Sorensen     if (options) {
4520f88e1a42SJes Sorensen         param = parse_option_parameters(options, create_options, param);
4521f88e1a42SJes Sorensen         if (param == NULL) {
452271c79813SLuiz Capitulino             error_setg(errp, "Invalid options for file format '%s'.", fmt);
4523f88e1a42SJes Sorensen             goto out;
4524f88e1a42SJes Sorensen         }
4525f88e1a42SJes Sorensen     }
4526f88e1a42SJes Sorensen 
4527f88e1a42SJes Sorensen     if (base_filename) {
4528f88e1a42SJes Sorensen         if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE,
4529f88e1a42SJes Sorensen                                  base_filename)) {
453071c79813SLuiz Capitulino             error_setg(errp, "Backing file not supported for file format '%s'",
453171c79813SLuiz Capitulino                        fmt);
4532f88e1a42SJes Sorensen             goto out;
4533f88e1a42SJes Sorensen         }
4534f88e1a42SJes Sorensen     }
4535f88e1a42SJes Sorensen 
4536f88e1a42SJes Sorensen     if (base_fmt) {
4537f88e1a42SJes Sorensen         if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) {
453871c79813SLuiz Capitulino             error_setg(errp, "Backing file format not supported for file "
453971c79813SLuiz Capitulino                              "format '%s'", fmt);
4540f88e1a42SJes Sorensen             goto out;
4541f88e1a42SJes Sorensen         }
4542f88e1a42SJes Sorensen     }
4543f88e1a42SJes Sorensen 
4544792da93aSJes Sorensen     backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE);
4545792da93aSJes Sorensen     if (backing_file && backing_file->value.s) {
4546792da93aSJes Sorensen         if (!strcmp(filename, backing_file->value.s)) {
454771c79813SLuiz Capitulino             error_setg(errp, "Error: Trying to create an image with the "
454871c79813SLuiz Capitulino                              "same filename as the backing file");
4549792da93aSJes Sorensen             goto out;
4550792da93aSJes Sorensen         }
4551792da93aSJes Sorensen     }
4552792da93aSJes Sorensen 
4553f88e1a42SJes Sorensen     backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT);
4554f88e1a42SJes Sorensen     if (backing_fmt && backing_fmt->value.s) {
455596df67d1SStefan Hajnoczi         backing_drv = bdrv_find_format(backing_fmt->value.s);
455696df67d1SStefan Hajnoczi         if (!backing_drv) {
455771c79813SLuiz Capitulino             error_setg(errp, "Unknown backing file format '%s'",
455871c79813SLuiz Capitulino                        backing_fmt->value.s);
4559f88e1a42SJes Sorensen             goto out;
4560f88e1a42SJes Sorensen         }
4561f88e1a42SJes Sorensen     }
4562f88e1a42SJes Sorensen 
4563f88e1a42SJes Sorensen     // The size for the image must always be specified, with one exception:
4564f88e1a42SJes Sorensen     // If we are using a backing file, we can obtain the size from there
4565d220894eSKevin Wolf     size = get_option_parameter(param, BLOCK_OPT_SIZE);
4566d220894eSKevin Wolf     if (size && size->value.n == -1) {
4567f88e1a42SJes Sorensen         if (backing_file && backing_file->value.s) {
4568f88e1a42SJes Sorensen             uint64_t size;
4569f88e1a42SJes Sorensen             char buf[32];
457063090dacSPaolo Bonzini             int back_flags;
457163090dacSPaolo Bonzini 
457263090dacSPaolo Bonzini             /* backing files always opened read-only */
457363090dacSPaolo Bonzini             back_flags =
457463090dacSPaolo Bonzini                 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4575f88e1a42SJes Sorensen 
4576f88e1a42SJes Sorensen             bs = bdrv_new("");
4577f88e1a42SJes Sorensen 
4578de9c0cecSKevin Wolf             ret = bdrv_open(bs, backing_file->value.s, NULL, back_flags,
4579*cc84d90fSMax Reitz                             backing_drv, &local_err);
4580f88e1a42SJes Sorensen             if (ret < 0) {
4581*cc84d90fSMax Reitz                 error_setg_errno(errp, -ret, "Could not open '%s': %s",
4582*cc84d90fSMax Reitz                                  backing_file->value.s,
4583*cc84d90fSMax Reitz                                  error_get_pretty(local_err));
4584*cc84d90fSMax Reitz                 error_free(local_err);
4585*cc84d90fSMax Reitz                 local_err = NULL;
4586f88e1a42SJes Sorensen                 goto out;
4587f88e1a42SJes Sorensen             }
4588f88e1a42SJes Sorensen             bdrv_get_geometry(bs, &size);
4589f88e1a42SJes Sorensen             size *= 512;
4590f88e1a42SJes Sorensen 
4591f88e1a42SJes Sorensen             snprintf(buf, sizeof(buf), "%" PRId64, size);
4592f88e1a42SJes Sorensen             set_option_parameter(param, BLOCK_OPT_SIZE, buf);
4593f88e1a42SJes Sorensen         } else {
459471c79813SLuiz Capitulino             error_setg(errp, "Image creation needs a size parameter");
4595f88e1a42SJes Sorensen             goto out;
4596f88e1a42SJes Sorensen         }
4597f88e1a42SJes Sorensen     }
4598f88e1a42SJes Sorensen 
4599f382d43aSMiroslav Rezanina     if (!quiet) {
4600f88e1a42SJes Sorensen         printf("Formatting '%s', fmt=%s ", filename, fmt);
4601f88e1a42SJes Sorensen         print_option_parameters(param);
4602f88e1a42SJes Sorensen         puts("");
4603f382d43aSMiroslav Rezanina     }
4604*cc84d90fSMax Reitz     ret = bdrv_create(drv, filename, param, &local_err);
4605*cc84d90fSMax Reitz     if (ret == -EFBIG) {
4606*cc84d90fSMax Reitz         /* This is generally a better message than whatever the driver would
4607*cc84d90fSMax Reitz          * deliver (especially because of the cluster_size_hint), since that
4608*cc84d90fSMax Reitz          * is most probably not much different from "image too large". */
4609f3f4d2c0SKevin Wolf         const char *cluster_size_hint = "";
4610f3f4d2c0SKevin Wolf         if (get_option_parameter(create_options, BLOCK_OPT_CLUSTER_SIZE)) {
4611f3f4d2c0SKevin Wolf             cluster_size_hint = " (try using a larger cluster size)";
4612f3f4d2c0SKevin Wolf         }
4613*cc84d90fSMax Reitz         error_setg(errp, "The image size is too large for file format '%s'"
4614*cc84d90fSMax Reitz                    "%s", fmt, cluster_size_hint);
4615*cc84d90fSMax Reitz         error_free(local_err);
4616*cc84d90fSMax Reitz         local_err = NULL;
4617f88e1a42SJes Sorensen     }
4618f88e1a42SJes Sorensen 
4619f88e1a42SJes Sorensen out:
4620f88e1a42SJes Sorensen     free_option_parameters(create_options);
4621f88e1a42SJes Sorensen     free_option_parameters(param);
4622f88e1a42SJes Sorensen 
4623f88e1a42SJes Sorensen     if (bs) {
46244f6fd349SFam Zheng         bdrv_unref(bs);
4625f88e1a42SJes Sorensen     }
4626*cc84d90fSMax Reitz     if (error_is_set(&local_err)) {
4627*cc84d90fSMax Reitz         error_propagate(errp, local_err);
4628*cc84d90fSMax Reitz     }
4629f88e1a42SJes Sorensen }
463085d126f3SStefan Hajnoczi 
463185d126f3SStefan Hajnoczi AioContext *bdrv_get_aio_context(BlockDriverState *bs)
463285d126f3SStefan Hajnoczi {
463385d126f3SStefan Hajnoczi     /* Currently BlockDriverState always uses the main loop AioContext */
463485d126f3SStefan Hajnoczi     return qemu_get_aio_context();
463585d126f3SStefan Hajnoczi }
4636d616b224SStefan Hajnoczi 
4637d616b224SStefan Hajnoczi void bdrv_add_before_write_notifier(BlockDriverState *bs,
4638d616b224SStefan Hajnoczi                                     NotifierWithReturn *notifier)
4639d616b224SStefan Hajnoczi {
4640d616b224SStefan Hajnoczi     notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
4641d616b224SStefan Hajnoczi }
46426f176b48SMax Reitz 
46436f176b48SMax Reitz int bdrv_amend_options(BlockDriverState *bs, QEMUOptionParameter *options)
46446f176b48SMax Reitz {
46456f176b48SMax Reitz     if (bs->drv->bdrv_amend_options == NULL) {
46466f176b48SMax Reitz         return -ENOTSUP;
46476f176b48SMax Reitz     }
46486f176b48SMax Reitz     return bs->drv->bdrv_amend_options(bs, options);
46496f176b48SMax Reitz }
4650