Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | * QEMU Block backends |
| 3 | * |
Eric Blake | 60cb2fa | 2016-05-06 10:26:30 -0600 | [diff] [blame] | 4 | * Copyright (C) 2014-2016 Red Hat, Inc. |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 5 | * |
| 6 | * Authors: |
| 7 | * Markus Armbruster <armbru@redhat.com>, |
| 8 | * |
| 9 | * This work is licensed under the terms of the GNU LGPL, version 2.1 |
| 10 | * or later. See the COPYING.LIB file in the top-level directory. |
| 11 | */ |
| 12 | |
Peter Maydell | 80c71a2 | 2016-01-18 18:01:42 +0000 | [diff] [blame] | 13 | #include "qemu/osdep.h" |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 14 | #include "sysemu/block-backend.h" |
| 15 | #include "block/block_int.h" |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 16 | #include "block/blockjob.h" |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 17 | #include "block/throttle-groups.h" |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 18 | #include "sysemu/blockdev.h" |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 19 | #include "sysemu/sysemu.h" |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 20 | #include "qapi-event.h" |
Veronia Bahaa | f348b6d | 2016-03-20 19:16:19 +0200 | [diff] [blame] | 21 | #include "qemu/id.h" |
Kevin Wolf | 1e98fef | 2016-04-14 16:40:16 +0200 | [diff] [blame] | 22 | #include "trace.h" |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 23 | |
| 24 | /* Number of coroutines to reserve per attached device model */ |
| 25 | #define COROUTINE_POOL_RESERVATION 64 |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 26 | |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 27 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
| 28 | |
Max Reitz | 4981bde | 2015-10-19 17:53:18 +0200 | [diff] [blame] | 29 | static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb); |
| 30 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 31 | struct BlockBackend { |
| 32 | char *name; |
| 33 | int refcnt; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 34 | BdrvChild *root; |
Markus Armbruster | 26f8b3a | 2014-10-07 13:59:22 +0200 | [diff] [blame] | 35 | DriveInfo *legacy_dinfo; /* null unless created by drive_new() */ |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 36 | QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */ |
Max Reitz | 9492b0b | 2016-03-16 19:54:35 +0100 | [diff] [blame] | 37 | QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */ |
Kevin Wolf | f2cd875 | 2016-03-21 11:27:04 +0100 | [diff] [blame] | 38 | BlockBackendPublic public; |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 39 | |
| 40 | void *dev; /* attached device model, if any */ |
| 41 | /* TODO change to DeviceState when all users are qdevified */ |
| 42 | const BlockDevOps *dev_ops; |
| 43 | void *dev_opaque; |
Max Reitz | 68e9ec0 | 2015-10-19 17:53:19 +0200 | [diff] [blame] | 44 | |
| 45 | /* the block size for which the guest device expects atomicity */ |
| 46 | int guest_block_size; |
Max Reitz | 7f0e9da | 2015-10-19 17:53:21 +0200 | [diff] [blame] | 47 | |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 48 | /* If the BDS tree is removed, some of its options are stored here (which |
| 49 | * can be used to restore those options in the new BDS on insert) */ |
| 50 | BlockBackendRootState root_state; |
| 51 | |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 52 | bool enable_write_cache; |
| 53 | |
Max Reitz | 7f0e9da | 2015-10-19 17:53:21 +0200 | [diff] [blame] | 54 | /* I/O stats (display with "info blockstats"). */ |
| 55 | BlockAcctStats stats; |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 56 | |
| 57 | BlockdevOnError on_read_error, on_write_error; |
| 58 | bool iostatus_enabled; |
| 59 | BlockDeviceIoStatus iostatus; |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 60 | |
Kevin Wolf | c10c9d9 | 2016-03-08 16:39:49 +0100 | [diff] [blame] | 61 | bool allow_write_beyond_eof; |
| 62 | |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 63 | NotifierList remove_bs_notifiers, insert_bs_notifiers; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 64 | }; |
| 65 | |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 66 | typedef struct BlockBackendAIOCB { |
| 67 | BlockAIOCB common; |
| 68 | QEMUBH *bh; |
Max Reitz | 4981bde | 2015-10-19 17:53:18 +0200 | [diff] [blame] | 69 | BlockBackend *blk; |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 70 | int ret; |
| 71 | } BlockBackendAIOCB; |
| 72 | |
| 73 | static const AIOCBInfo block_backend_aiocb_info = { |
Max Reitz | 4981bde | 2015-10-19 17:53:18 +0200 | [diff] [blame] | 74 | .get_aio_context = blk_aiocb_get_aio_context, |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 75 | .aiocb_size = sizeof(BlockBackendAIOCB), |
| 76 | }; |
| 77 | |
Markus Armbruster | 8fb3c76 | 2014-10-07 13:59:07 +0200 | [diff] [blame] | 78 | static void drive_info_del(DriveInfo *dinfo); |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 79 | static BlockBackend *bdrv_first_blk(BlockDriverState *bs); |
Markus Armbruster | 8fb3c76 | 2014-10-07 13:59:07 +0200 | [diff] [blame] | 80 | |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 81 | /* All BlockBackends */ |
| 82 | static QTAILQ_HEAD(, BlockBackend) block_backends = |
| 83 | QTAILQ_HEAD_INITIALIZER(block_backends); |
| 84 | |
Max Reitz | 9492b0b | 2016-03-16 19:54:35 +0100 | [diff] [blame] | 85 | /* All BlockBackends referenced by the monitor and which are iterated through by |
| 86 | * blk_next() */ |
| 87 | static QTAILQ_HEAD(, BlockBackend) monitor_block_backends = |
| 88 | QTAILQ_HEAD_INITIALIZER(monitor_block_backends); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 89 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 90 | static void blk_root_inherit_options(int *child_flags, QDict *child_options, |
| 91 | int parent_flags, QDict *parent_options) |
| 92 | { |
| 93 | /* We're not supposed to call this function for root nodes */ |
| 94 | abort(); |
| 95 | } |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 96 | static void blk_root_drained_begin(BdrvChild *child); |
| 97 | static void blk_root_drained_end(BdrvChild *child); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 98 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 99 | static void blk_root_change_media(BdrvChild *child, bool load); |
| 100 | static void blk_root_resize(BdrvChild *child); |
| 101 | |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 102 | static const char *blk_root_get_name(BdrvChild *child) |
| 103 | { |
| 104 | return blk_name(child->opaque); |
| 105 | } |
| 106 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 107 | static const BdrvChildRole child_root = { |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 108 | .inherit_options = blk_root_inherit_options, |
| 109 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 110 | .change_media = blk_root_change_media, |
| 111 | .resize = blk_root_resize, |
Kevin Wolf | 4c265bf | 2016-02-26 10:22:16 +0100 | [diff] [blame] | 112 | .get_name = blk_root_get_name, |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 113 | |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 114 | .drained_begin = blk_root_drained_begin, |
| 115 | .drained_end = blk_root_drained_end, |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 116 | }; |
| 117 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 118 | /* |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 119 | * Create a new BlockBackend with a reference count of one. |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 120 | * Store an error through @errp on failure, unless it's null. |
| 121 | * Return the new BlockBackend on success, null on failure. |
| 122 | */ |
Max Reitz | 109525a | 2016-05-17 16:41:34 +0200 | [diff] [blame] | 123 | BlockBackend *blk_new(void) |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 124 | { |
| 125 | BlockBackend *blk; |
| 126 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 127 | blk = g_new0(BlockBackend, 1); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 128 | blk->refcnt = 1; |
Kevin Wolf | 0c3169d | 2016-04-19 17:27:24 +0200 | [diff] [blame] | 129 | blk_set_enable_write_cache(blk, true); |
| 130 | |
Kevin Wolf | 27ccdd5 | 2016-03-21 12:56:44 +0100 | [diff] [blame] | 131 | qemu_co_queue_init(&blk->public.throttled_reqs[0]); |
| 132 | qemu_co_queue_init(&blk->public.throttled_reqs[1]); |
| 133 | |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 134 | notifier_list_init(&blk->remove_bs_notifiers); |
| 135 | notifier_list_init(&blk->insert_bs_notifiers); |
Kevin Wolf | 27ccdd5 | 2016-03-21 12:56:44 +0100 | [diff] [blame] | 136 | |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 137 | QTAILQ_INSERT_TAIL(&block_backends, blk, link); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 138 | return blk; |
| 139 | } |
| 140 | |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 141 | /* |
Max Reitz | 28eb9b1 | 2016-05-17 16:41:29 +0200 | [diff] [blame] | 142 | * Creates a new BlockBackend, opens a new BlockDriverState, and connects both. |
Max Reitz | ca49a4f | 2015-02-05 13:58:11 -0500 | [diff] [blame] | 143 | * |
| 144 | * Just as with bdrv_open(), after having called this function the reference to |
| 145 | * @options belongs to the block layer (even on failure). |
| 146 | * |
| 147 | * TODO: Remove @filename and @flags; it should be possible to specify a whole |
| 148 | * BDS tree just by specifying the @options QDict (or @reference, |
| 149 | * alternatively). At the time of adding this function, this is not possible, |
| 150 | * though, so callers of this function have to be able to specify @filename and |
| 151 | * @flags. |
| 152 | */ |
Max Reitz | efaa7c4 | 2016-03-16 19:54:38 +0100 | [diff] [blame] | 153 | BlockBackend *blk_new_open(const char *filename, const char *reference, |
| 154 | QDict *options, int flags, Error **errp) |
Max Reitz | ca49a4f | 2015-02-05 13:58:11 -0500 | [diff] [blame] | 155 | { |
| 156 | BlockBackend *blk; |
Max Reitz | 28eb9b1 | 2016-05-17 16:41:29 +0200 | [diff] [blame] | 157 | BlockDriverState *bs; |
Max Reitz | ca49a4f | 2015-02-05 13:58:11 -0500 | [diff] [blame] | 158 | |
Max Reitz | 109525a | 2016-05-17 16:41:34 +0200 | [diff] [blame] | 159 | blk = blk_new(); |
Max Reitz | 5b36393 | 2016-05-17 16:41:31 +0200 | [diff] [blame] | 160 | bs = bdrv_open(filename, reference, options, flags, errp); |
| 161 | if (!bs) { |
Max Reitz | ca49a4f | 2015-02-05 13:58:11 -0500 | [diff] [blame] | 162 | blk_unref(blk); |
| 163 | return NULL; |
| 164 | } |
| 165 | |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 166 | blk->root = bdrv_root_attach_child(bs, "root", &child_root, blk); |
Kevin Wolf | 72e775c | 2016-03-15 14:34:37 +0100 | [diff] [blame] | 167 | |
Max Reitz | ca49a4f | 2015-02-05 13:58:11 -0500 | [diff] [blame] | 168 | return blk; |
| 169 | } |
| 170 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 171 | static void blk_delete(BlockBackend *blk) |
| 172 | { |
| 173 | assert(!blk->refcnt); |
Max Reitz | e5e7855 | 2016-03-16 19:54:37 +0100 | [diff] [blame] | 174 | assert(!blk->name); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 175 | assert(!blk->dev); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 176 | if (blk->root) { |
Max Reitz | 13855c6 | 2016-01-29 16:36:08 +0100 | [diff] [blame] | 177 | blk_remove_bs(blk); |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 178 | } |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 179 | assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers)); |
| 180 | assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers)); |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 181 | QTAILQ_REMOVE(&block_backends, blk, link); |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 182 | drive_info_del(blk->legacy_dinfo); |
Alberto Garcia | 979e9b0 | 2015-10-28 17:33:05 +0200 | [diff] [blame] | 183 | block_acct_cleanup(&blk->stats); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 184 | g_free(blk); |
| 185 | } |
| 186 | |
Markus Armbruster | 8fb3c76 | 2014-10-07 13:59:07 +0200 | [diff] [blame] | 187 | static void drive_info_del(DriveInfo *dinfo) |
| 188 | { |
| 189 | if (!dinfo) { |
| 190 | return; |
| 191 | } |
| 192 | qemu_opts_del(dinfo->opts); |
Markus Armbruster | 8fb3c76 | 2014-10-07 13:59:07 +0200 | [diff] [blame] | 193 | g_free(dinfo->serial); |
| 194 | g_free(dinfo); |
| 195 | } |
| 196 | |
Alberto Garcia | f636ae8 | 2015-11-02 16:51:54 +0200 | [diff] [blame] | 197 | int blk_get_refcnt(BlockBackend *blk) |
| 198 | { |
| 199 | return blk ? blk->refcnt : 0; |
| 200 | } |
| 201 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 202 | /* |
| 203 | * Increment @blk's reference count. |
| 204 | * @blk must not be null. |
| 205 | */ |
| 206 | void blk_ref(BlockBackend *blk) |
| 207 | { |
| 208 | blk->refcnt++; |
| 209 | } |
| 210 | |
| 211 | /* |
| 212 | * Decrement @blk's reference count. |
| 213 | * If this drops it to zero, destroy @blk. |
| 214 | * For convenience, do nothing if @blk is null. |
| 215 | */ |
| 216 | void blk_unref(BlockBackend *blk) |
| 217 | { |
| 218 | if (blk) { |
| 219 | assert(blk->refcnt > 0); |
| 220 | if (!--blk->refcnt) { |
| 221 | blk_delete(blk); |
| 222 | } |
| 223 | } |
| 224 | } |
| 225 | |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 226 | /* |
| 227 | * Behaves similarly to blk_next() but iterates over all BlockBackends, even the |
| 228 | * ones which are hidden (i.e. are not referenced by the monitor). |
| 229 | */ |
| 230 | static BlockBackend *blk_all_next(BlockBackend *blk) |
| 231 | { |
| 232 | return blk ? QTAILQ_NEXT(blk, link) |
| 233 | : QTAILQ_FIRST(&block_backends); |
| 234 | } |
| 235 | |
Max Reitz | d8da3ce | 2016-01-29 16:36:13 +0100 | [diff] [blame] | 236 | void blk_remove_all_bs(void) |
| 237 | { |
Max Reitz | 74d1b8f | 2016-03-16 19:54:30 +0100 | [diff] [blame] | 238 | BlockBackend *blk = NULL; |
Max Reitz | d8da3ce | 2016-01-29 16:36:13 +0100 | [diff] [blame] | 239 | |
Max Reitz | 2cf22d6 | 2016-03-16 19:54:36 +0100 | [diff] [blame] | 240 | while ((blk = blk_all_next(blk)) != NULL) { |
Max Reitz | d8da3ce | 2016-01-29 16:36:13 +0100 | [diff] [blame] | 241 | AioContext *ctx = blk_get_aio_context(blk); |
| 242 | |
| 243 | aio_context_acquire(ctx); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 244 | if (blk->root) { |
Max Reitz | d8da3ce | 2016-01-29 16:36:13 +0100 | [diff] [blame] | 245 | blk_remove_bs(blk); |
| 246 | } |
| 247 | aio_context_release(ctx); |
| 248 | } |
| 249 | } |
| 250 | |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 251 | /* |
Max Reitz | 9492b0b | 2016-03-16 19:54:35 +0100 | [diff] [blame] | 252 | * Return the monitor-owned BlockBackend after @blk. |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 253 | * If @blk is null, return the first one. |
| 254 | * Else, return @blk's next sibling, which may be null. |
| 255 | * |
| 256 | * To iterate over all BlockBackends, do |
| 257 | * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { |
| 258 | * ... |
| 259 | * } |
| 260 | */ |
| 261 | BlockBackend *blk_next(BlockBackend *blk) |
| 262 | { |
Max Reitz | 9492b0b | 2016-03-16 19:54:35 +0100 | [diff] [blame] | 263 | return blk ? QTAILQ_NEXT(blk, monitor_link) |
| 264 | : QTAILQ_FIRST(&monitor_block_backends); |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 265 | } |
| 266 | |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 267 | /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by |
| 268 | * the monitor or attached to a BlockBackend */ |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 269 | BlockDriverState *bdrv_next(BdrvNextIterator *it) |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 270 | { |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 271 | BlockDriverState *bs; |
Max Reitz | 981f4f5 | 2016-03-16 19:54:42 +0100 | [diff] [blame] | 272 | |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 273 | /* First, return all root nodes of BlockBackends. In order to avoid |
| 274 | * returning a BDS twice when multiple BBs refer to it, we only return it |
| 275 | * if the BB is the first one in the parent list of the BDS. */ |
| 276 | if (it->phase == BDRV_NEXT_BACKEND_ROOTS) { |
| 277 | do { |
| 278 | it->blk = blk_all_next(it->blk); |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 279 | bs = it->blk ? blk_bs(it->blk) : NULL; |
| 280 | } while (it->blk && (bs == NULL || bdrv_first_blk(bs) != it->blk)); |
Max Reitz | 981f4f5 | 2016-03-16 19:54:42 +0100 | [diff] [blame] | 281 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 282 | if (bs) { |
| 283 | return bs; |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 284 | } |
| 285 | it->phase = BDRV_NEXT_MONITOR_OWNED; |
| 286 | } |
| 287 | |
| 288 | /* Then return the monitor-owned BDSes without a BB attached. Ignore all |
| 289 | * BDSes that are attached to a BlockBackend here; they have been handled |
| 290 | * by the above block already */ |
| 291 | do { |
| 292 | it->bs = bdrv_next_monitor_owned(it->bs); |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 293 | bs = it->bs; |
| 294 | } while (bs && bdrv_has_blk(bs)); |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 295 | |
Kevin Wolf | 88be7b4 | 2016-05-20 18:49:07 +0200 | [diff] [blame] | 296 | return bs; |
| 297 | } |
| 298 | |
| 299 | BlockDriverState *bdrv_first(BdrvNextIterator *it) |
| 300 | { |
| 301 | *it = (BdrvNextIterator) { |
| 302 | .phase = BDRV_NEXT_BACKEND_ROOTS, |
| 303 | }; |
| 304 | |
| 305 | return bdrv_next(it); |
Max Reitz | 981f4f5 | 2016-03-16 19:54:42 +0100 | [diff] [blame] | 306 | } |
| 307 | |
| 308 | /* |
Max Reitz | e5e7855 | 2016-03-16 19:54:37 +0100 | [diff] [blame] | 309 | * Add a BlockBackend into the list of backends referenced by the monitor, with |
| 310 | * the given @name acting as the handle for the monitor. |
| 311 | * Strictly for use by blockdev.c. |
| 312 | * |
| 313 | * @name must not be null or empty. |
| 314 | * |
| 315 | * Returns true on success and false on failure. In the latter case, an Error |
| 316 | * object is returned through @errp. |
| 317 | */ |
| 318 | bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp) |
| 319 | { |
| 320 | assert(!blk->name); |
| 321 | assert(name && name[0]); |
| 322 | |
| 323 | if (!id_wellformed(name)) { |
| 324 | error_setg(errp, "Invalid device name"); |
| 325 | return false; |
| 326 | } |
| 327 | if (blk_by_name(name)) { |
| 328 | error_setg(errp, "Device with id '%s' already exists", name); |
| 329 | return false; |
| 330 | } |
| 331 | if (bdrv_find_node(name)) { |
| 332 | error_setg(errp, |
| 333 | "Device name '%s' conflicts with an existing node name", |
| 334 | name); |
| 335 | return false; |
| 336 | } |
| 337 | |
| 338 | blk->name = g_strdup(name); |
| 339 | QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link); |
| 340 | return true; |
| 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Remove a BlockBackend from the list of backends referenced by the monitor. |
| 345 | * Strictly for use by blockdev.c. |
| 346 | */ |
| 347 | void monitor_remove_blk(BlockBackend *blk) |
| 348 | { |
| 349 | if (!blk->name) { |
| 350 | return; |
| 351 | } |
| 352 | |
| 353 | QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link); |
| 354 | g_free(blk->name); |
| 355 | blk->name = NULL; |
| 356 | } |
| 357 | |
| 358 | /* |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 359 | * Return @blk's name, a non-null string. |
Max Reitz | e5e7855 | 2016-03-16 19:54:37 +0100 | [diff] [blame] | 360 | * Returns an empty string iff @blk is not referenced by the monitor. |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 361 | */ |
| 362 | const char *blk_name(BlockBackend *blk) |
| 363 | { |
Max Reitz | e5e7855 | 2016-03-16 19:54:37 +0100 | [diff] [blame] | 364 | return blk->name ?: ""; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 365 | } |
| 366 | |
| 367 | /* |
| 368 | * Return the BlockBackend with name @name if it exists, else null. |
| 369 | * @name must not be null. |
| 370 | */ |
| 371 | BlockBackend *blk_by_name(const char *name) |
| 372 | { |
Max Reitz | 74d1b8f | 2016-03-16 19:54:30 +0100 | [diff] [blame] | 373 | BlockBackend *blk = NULL; |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 374 | |
| 375 | assert(name); |
Max Reitz | 74d1b8f | 2016-03-16 19:54:30 +0100 | [diff] [blame] | 376 | while ((blk = blk_next(blk)) != NULL) { |
Markus Armbruster | 26f54e9 | 2014-10-07 13:59:04 +0200 | [diff] [blame] | 377 | if (!strcmp(name, blk->name)) { |
| 378 | return blk; |
| 379 | } |
| 380 | } |
| 381 | return NULL; |
| 382 | } |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 383 | |
| 384 | /* |
| 385 | * Return the BlockDriverState attached to @blk if any, else null. |
| 386 | */ |
| 387 | BlockDriverState *blk_bs(BlockBackend *blk) |
| 388 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 389 | return blk->root ? blk->root->bs : NULL; |
Markus Armbruster | 7e7d56d | 2014-10-07 13:59:05 +0200 | [diff] [blame] | 390 | } |
| 391 | |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 392 | static BlockBackend *bdrv_first_blk(BlockDriverState *bs) |
Kevin Wolf | dde3381 | 2016-02-29 10:50:38 +0100 | [diff] [blame] | 393 | { |
| 394 | BdrvChild *child; |
| 395 | QLIST_FOREACH(child, &bs->parents, next_parent) { |
| 396 | if (child->role == &child_root) { |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 397 | return child->opaque; |
Kevin Wolf | dde3381 | 2016-02-29 10:50:38 +0100 | [diff] [blame] | 398 | } |
| 399 | } |
| 400 | |
Kevin Wolf | 7c8eece | 2016-03-22 18:58:50 +0100 | [diff] [blame] | 401 | return NULL; |
| 402 | } |
| 403 | |
| 404 | /* |
| 405 | * Returns true if @bs has an associated BlockBackend. |
| 406 | */ |
| 407 | bool bdrv_has_blk(BlockDriverState *bs) |
| 408 | { |
| 409 | return bdrv_first_blk(bs) != NULL; |
Kevin Wolf | dde3381 | 2016-02-29 10:50:38 +0100 | [diff] [blame] | 410 | } |
| 411 | |
| 412 | /* |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 413 | * Return @blk's DriveInfo if any, else null. |
| 414 | */ |
| 415 | DriveInfo *blk_legacy_dinfo(BlockBackend *blk) |
| 416 | { |
| 417 | return blk->legacy_dinfo; |
| 418 | } |
| 419 | |
| 420 | /* |
| 421 | * Set @blk's DriveInfo to @dinfo, and return it. |
| 422 | * @blk must not have a DriveInfo set already. |
| 423 | * No other BlockBackend may have the same DriveInfo set. |
| 424 | */ |
| 425 | DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo) |
| 426 | { |
| 427 | assert(!blk->legacy_dinfo); |
| 428 | return blk->legacy_dinfo = dinfo; |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * Return the BlockBackend with DriveInfo @dinfo. |
| 433 | * It must exist. |
| 434 | */ |
| 435 | BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo) |
| 436 | { |
Max Reitz | 74d1b8f | 2016-03-16 19:54:30 +0100 | [diff] [blame] | 437 | BlockBackend *blk = NULL; |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 438 | |
Max Reitz | 74d1b8f | 2016-03-16 19:54:30 +0100 | [diff] [blame] | 439 | while ((blk = blk_next(blk)) != NULL) { |
Markus Armbruster | 18e46a0 | 2014-10-07 13:59:06 +0200 | [diff] [blame] | 440 | if (blk->legacy_dinfo == dinfo) { |
| 441 | return blk; |
| 442 | } |
| 443 | } |
| 444 | abort(); |
| 445 | } |
| 446 | |
| 447 | /* |
Kevin Wolf | f2cd875 | 2016-03-21 11:27:04 +0100 | [diff] [blame] | 448 | * Returns a pointer to the publicly accessible fields of @blk. |
| 449 | */ |
| 450 | BlockBackendPublic *blk_get_public(BlockBackend *blk) |
| 451 | { |
| 452 | return &blk->public; |
| 453 | } |
| 454 | |
| 455 | /* |
| 456 | * Returns a BlockBackend given the associated @public fields. |
| 457 | */ |
| 458 | BlockBackend *blk_by_public(BlockBackendPublic *public) |
| 459 | { |
| 460 | return container_of(public, BlockBackend, public); |
| 461 | } |
| 462 | |
| 463 | /* |
Max Reitz | 1c95f7e | 2015-10-26 21:39:05 +0100 | [diff] [blame] | 464 | * Disassociates the currently associated BlockDriverState from @blk. |
| 465 | */ |
| 466 | void blk_remove_bs(BlockBackend *blk) |
| 467 | { |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 468 | notifier_list_notify(&blk->remove_bs_notifiers, blk); |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 469 | if (blk->public.throttle_state) { |
| 470 | throttle_timers_detach_aio_context(&blk->public.throttle_timers); |
| 471 | } |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 472 | |
Max Reitz | 1c95f7e | 2015-10-26 21:39:05 +0100 | [diff] [blame] | 473 | blk_update_root_state(blk); |
| 474 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 475 | bdrv_root_unref_child(blk->root); |
| 476 | blk->root = NULL; |
Max Reitz | 1c95f7e | 2015-10-26 21:39:05 +0100 | [diff] [blame] | 477 | } |
| 478 | |
| 479 | /* |
Max Reitz | 0c3c36d | 2015-10-19 17:53:28 +0200 | [diff] [blame] | 480 | * Associates a new BlockDriverState with @blk. |
| 481 | */ |
| 482 | void blk_insert_bs(BlockBackend *blk, BlockDriverState *bs) |
| 483 | { |
Max Reitz | 0c3c36d | 2015-10-19 17:53:28 +0200 | [diff] [blame] | 484 | bdrv_ref(bs); |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 485 | blk->root = bdrv_root_attach_child(bs, "root", &child_root, blk); |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 486 | |
| 487 | notifier_list_notify(&blk->insert_bs_notifiers, blk); |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 488 | if (blk->public.throttle_state) { |
| 489 | throttle_timers_attach_aio_context( |
| 490 | &blk->public.throttle_timers, bdrv_get_aio_context(bs)); |
| 491 | } |
Max Reitz | 0c3c36d | 2015-10-19 17:53:28 +0200 | [diff] [blame] | 492 | } |
| 493 | |
| 494 | /* |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 495 | * Attach device model @dev to @blk. |
| 496 | * Return 0 on success, -EBUSY when a device model is attached already. |
| 497 | */ |
| 498 | int blk_attach_dev(BlockBackend *blk, void *dev) |
| 499 | /* TODO change to DeviceState *dev when all users are qdevified */ |
| 500 | { |
| 501 | if (blk->dev) { |
| 502 | return -EBUSY; |
| 503 | } |
Markus Armbruster | 84ebe37 | 2014-10-07 13:59:26 +0200 | [diff] [blame] | 504 | blk_ref(blk); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 505 | blk->dev = dev; |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 506 | blk_iostatus_reset(blk); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | /* |
| 511 | * Attach device model @dev to @blk. |
| 512 | * @blk must not have a device model attached already. |
| 513 | * TODO qdevified devices don't use this, remove when devices are qdevified |
| 514 | */ |
| 515 | void blk_attach_dev_nofail(BlockBackend *blk, void *dev) |
| 516 | { |
| 517 | if (blk_attach_dev(blk, dev) < 0) { |
| 518 | abort(); |
| 519 | } |
| 520 | } |
| 521 | |
| 522 | /* |
| 523 | * Detach device model @dev from @blk. |
| 524 | * @dev must be currently attached to @blk. |
| 525 | */ |
| 526 | void blk_detach_dev(BlockBackend *blk, void *dev) |
| 527 | /* TODO change to DeviceState *dev when all users are qdevified */ |
| 528 | { |
| 529 | assert(blk->dev == dev); |
| 530 | blk->dev = NULL; |
| 531 | blk->dev_ops = NULL; |
| 532 | blk->dev_opaque = NULL; |
Max Reitz | 68e9ec0 | 2015-10-19 17:53:19 +0200 | [diff] [blame] | 533 | blk->guest_block_size = 512; |
Markus Armbruster | 84ebe37 | 2014-10-07 13:59:26 +0200 | [diff] [blame] | 534 | blk_unref(blk); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 535 | } |
| 536 | |
| 537 | /* |
| 538 | * Return the device model attached to @blk if any, else null. |
| 539 | */ |
| 540 | void *blk_get_attached_dev(BlockBackend *blk) |
| 541 | /* TODO change to return DeviceState * when all users are qdevified */ |
| 542 | { |
| 543 | return blk->dev; |
| 544 | } |
| 545 | |
| 546 | /* |
| 547 | * Set @blk's device model callbacks to @ops. |
| 548 | * @opaque is the opaque argument to pass to the callbacks. |
| 549 | * This is for use by device models. |
| 550 | */ |
| 551 | void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops, |
| 552 | void *opaque) |
| 553 | { |
| 554 | blk->dev_ops = ops; |
| 555 | blk->dev_opaque = opaque; |
| 556 | } |
| 557 | |
| 558 | /* |
| 559 | * Notify @blk's attached device model of media change. |
| 560 | * If @load is true, notify of media load. |
| 561 | * Else, notify of media eject. |
| 562 | * Also send DEVICE_TRAY_MOVED events as appropriate. |
| 563 | */ |
| 564 | void blk_dev_change_media_cb(BlockBackend *blk, bool load) |
| 565 | { |
| 566 | if (blk->dev_ops && blk->dev_ops->change_media_cb) { |
Max Reitz | f1f5706 | 2015-10-26 21:39:14 +0100 | [diff] [blame] | 567 | bool tray_was_open, tray_is_open; |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 568 | |
Max Reitz | f1f5706 | 2015-10-26 21:39:14 +0100 | [diff] [blame] | 569 | tray_was_open = blk_dev_is_tray_open(blk); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 570 | blk->dev_ops->change_media_cb(blk->dev_opaque, load); |
Max Reitz | f1f5706 | 2015-10-26 21:39:14 +0100 | [diff] [blame] | 571 | tray_is_open = blk_dev_is_tray_open(blk); |
| 572 | |
| 573 | if (tray_was_open != tray_is_open) { |
| 574 | qapi_event_send_device_tray_moved(blk_name(blk), tray_is_open, |
| 575 | &error_abort); |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 576 | } |
| 577 | } |
| 578 | } |
| 579 | |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 580 | static void blk_root_change_media(BdrvChild *child, bool load) |
| 581 | { |
| 582 | blk_dev_change_media_cb(child->opaque, load); |
| 583 | } |
| 584 | |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 585 | /* |
| 586 | * Does @blk's attached device model have removable media? |
| 587 | * %true if no device model is attached. |
| 588 | */ |
| 589 | bool blk_dev_has_removable_media(BlockBackend *blk) |
| 590 | { |
| 591 | return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb); |
| 592 | } |
| 593 | |
| 594 | /* |
Max Reitz | 8f3a73b | 2016-01-29 20:49:10 +0100 | [diff] [blame] | 595 | * Does @blk's attached device model have a tray? |
| 596 | */ |
| 597 | bool blk_dev_has_tray(BlockBackend *blk) |
| 598 | { |
| 599 | return blk->dev_ops && blk->dev_ops->is_tray_open; |
| 600 | } |
| 601 | |
| 602 | /* |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 603 | * Notify @blk's attached device model of a media eject request. |
| 604 | * If @force is true, the medium is about to be yanked out forcefully. |
| 605 | */ |
| 606 | void blk_dev_eject_request(BlockBackend *blk, bool force) |
| 607 | { |
| 608 | if (blk->dev_ops && blk->dev_ops->eject_request_cb) { |
| 609 | blk->dev_ops->eject_request_cb(blk->dev_opaque, force); |
| 610 | } |
| 611 | } |
| 612 | |
| 613 | /* |
| 614 | * Does @blk's attached device model have a tray, and is it open? |
| 615 | */ |
| 616 | bool blk_dev_is_tray_open(BlockBackend *blk) |
| 617 | { |
Max Reitz | 8f3a73b | 2016-01-29 20:49:10 +0100 | [diff] [blame] | 618 | if (blk_dev_has_tray(blk)) { |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 619 | return blk->dev_ops->is_tray_open(blk->dev_opaque); |
| 620 | } |
| 621 | return false; |
| 622 | } |
| 623 | |
| 624 | /* |
| 625 | * Does @blk's attached device model have the medium locked? |
| 626 | * %false if the device model has no such lock. |
| 627 | */ |
| 628 | bool blk_dev_is_medium_locked(BlockBackend *blk) |
| 629 | { |
| 630 | if (blk->dev_ops && blk->dev_ops->is_medium_locked) { |
| 631 | return blk->dev_ops->is_medium_locked(blk->dev_opaque); |
| 632 | } |
| 633 | return false; |
| 634 | } |
| 635 | |
| 636 | /* |
| 637 | * Notify @blk's attached device model of a backend size change. |
| 638 | */ |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 639 | static void blk_root_resize(BdrvChild *child) |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 640 | { |
Kevin Wolf | 5c8cab4 | 2016-02-24 15:13:35 +0100 | [diff] [blame] | 641 | BlockBackend *blk = child->opaque; |
| 642 | |
Markus Armbruster | a7f53e2 | 2014-10-07 13:59:25 +0200 | [diff] [blame] | 643 | if (blk->dev_ops && blk->dev_ops->resize_cb) { |
| 644 | blk->dev_ops->resize_cb(blk->dev_opaque); |
| 645 | } |
| 646 | } |
| 647 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 648 | void blk_iostatus_enable(BlockBackend *blk) |
| 649 | { |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 650 | blk->iostatus_enabled = true; |
| 651 | blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; |
| 652 | } |
| 653 | |
| 654 | /* The I/O status is only enabled if the drive explicitly |
| 655 | * enables it _and_ the VM is configured to stop on errors */ |
| 656 | bool blk_iostatus_is_enabled(const BlockBackend *blk) |
| 657 | { |
| 658 | return (blk->iostatus_enabled && |
| 659 | (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || |
| 660 | blk->on_write_error == BLOCKDEV_ON_ERROR_STOP || |
| 661 | blk->on_read_error == BLOCKDEV_ON_ERROR_STOP)); |
| 662 | } |
| 663 | |
| 664 | BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk) |
| 665 | { |
| 666 | return blk->iostatus; |
| 667 | } |
| 668 | |
| 669 | void blk_iostatus_disable(BlockBackend *blk) |
| 670 | { |
| 671 | blk->iostatus_enabled = false; |
| 672 | } |
| 673 | |
| 674 | void blk_iostatus_reset(BlockBackend *blk) |
| 675 | { |
| 676 | if (blk_iostatus_is_enabled(blk)) { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 677 | BlockDriverState *bs = blk_bs(blk); |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 678 | blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 679 | if (bs && bs->job) { |
| 680 | block_job_iostatus_reset(bs->job); |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 681 | } |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | void blk_iostatus_set_err(BlockBackend *blk, int error) |
| 686 | { |
| 687 | assert(blk_iostatus_is_enabled(blk)); |
| 688 | if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { |
| 689 | blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : |
| 690 | BLOCK_DEVICE_IO_STATUS_FAILED; |
| 691 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 692 | } |
| 693 | |
Kevin Wolf | c10c9d9 | 2016-03-08 16:39:49 +0100 | [diff] [blame] | 694 | void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow) |
| 695 | { |
| 696 | blk->allow_write_beyond_eof = allow; |
| 697 | } |
| 698 | |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 699 | static int blk_check_byte_request(BlockBackend *blk, int64_t offset, |
| 700 | size_t size) |
| 701 | { |
| 702 | int64_t len; |
| 703 | |
| 704 | if (size > INT_MAX) { |
| 705 | return -EIO; |
| 706 | } |
| 707 | |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 708 | if (!blk_is_available(blk)) { |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 709 | return -ENOMEDIUM; |
| 710 | } |
| 711 | |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 712 | if (offset < 0) { |
| 713 | return -EIO; |
| 714 | } |
| 715 | |
Kevin Wolf | c10c9d9 | 2016-03-08 16:39:49 +0100 | [diff] [blame] | 716 | if (!blk->allow_write_beyond_eof) { |
| 717 | len = blk_getlength(blk); |
| 718 | if (len < 0) { |
| 719 | return len; |
| 720 | } |
| 721 | |
| 722 | if (offset > len || len - offset < size) { |
| 723 | return -EIO; |
| 724 | } |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | return 0; |
| 728 | } |
| 729 | |
| 730 | static int blk_check_request(BlockBackend *blk, int64_t sector_num, |
| 731 | int nb_sectors) |
| 732 | { |
| 733 | if (sector_num < 0 || sector_num > INT64_MAX / BDRV_SECTOR_SIZE) { |
| 734 | return -EIO; |
| 735 | } |
| 736 | |
| 737 | if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) { |
| 738 | return -EIO; |
| 739 | } |
| 740 | |
| 741 | return blk_check_byte_request(blk, sector_num * BDRV_SECTOR_SIZE, |
| 742 | nb_sectors * BDRV_SECTOR_SIZE); |
| 743 | } |
| 744 | |
Kevin Wolf | 1e98fef | 2016-04-14 16:40:16 +0200 | [diff] [blame] | 745 | int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset, |
| 746 | unsigned int bytes, QEMUIOVector *qiov, |
| 747 | BdrvRequestFlags flags) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 748 | { |
Kevin Wolf | 1e98fef | 2016-04-14 16:40:16 +0200 | [diff] [blame] | 749 | int ret; |
| 750 | |
| 751 | trace_blk_co_preadv(blk, blk_bs(blk), offset, bytes, flags); |
| 752 | |
| 753 | ret = blk_check_byte_request(blk, offset, bytes); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 754 | if (ret < 0) { |
| 755 | return ret; |
| 756 | } |
| 757 | |
Kevin Wolf | 441565b | 2016-03-21 13:30:30 +0100 | [diff] [blame] | 758 | /* throttling disk I/O */ |
| 759 | if (blk->public.throttle_state) { |
| 760 | throttle_group_co_io_limits_intercept(blk, bytes, false); |
| 761 | } |
| 762 | |
Kevin Wolf | a03ef88 | 2016-06-20 21:31:46 +0200 | [diff] [blame] | 763 | return bdrv_co_preadv(blk->root, offset, bytes, qiov, flags); |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 764 | } |
| 765 | |
Kevin Wolf | 1e98fef | 2016-04-14 16:40:16 +0200 | [diff] [blame] | 766 | int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset, |
| 767 | unsigned int bytes, QEMUIOVector *qiov, |
| 768 | BdrvRequestFlags flags) |
Kevin Wolf | a8823a3 | 2016-03-08 13:47:48 +0100 | [diff] [blame] | 769 | { |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 770 | int ret; |
| 771 | |
Kevin Wolf | 1e98fef | 2016-04-14 16:40:16 +0200 | [diff] [blame] | 772 | trace_blk_co_pwritev(blk, blk_bs(blk), offset, bytes, flags); |
| 773 | |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 774 | ret = blk_check_byte_request(blk, offset, bytes); |
Kevin Wolf | a8823a3 | 2016-03-08 13:47:48 +0100 | [diff] [blame] | 775 | if (ret < 0) { |
| 776 | return ret; |
| 777 | } |
| 778 | |
Kevin Wolf | 441565b | 2016-03-21 13:30:30 +0100 | [diff] [blame] | 779 | /* throttling disk I/O */ |
| 780 | if (blk->public.throttle_state) { |
| 781 | throttle_group_co_io_limits_intercept(blk, bytes, true); |
| 782 | } |
| 783 | |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 784 | if (!blk->enable_write_cache) { |
| 785 | flags |= BDRV_REQ_FUA; |
| 786 | } |
| 787 | |
Kevin Wolf | a03ef88 | 2016-06-20 21:31:46 +0200 | [diff] [blame] | 788 | return bdrv_co_pwritev(blk->root, offset, bytes, qiov, flags); |
Kevin Wolf | a8823a3 | 2016-03-08 13:47:48 +0100 | [diff] [blame] | 789 | } |
| 790 | |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 791 | typedef struct BlkRwCo { |
| 792 | BlockBackend *blk; |
| 793 | int64_t offset; |
| 794 | QEMUIOVector *qiov; |
| 795 | int ret; |
| 796 | BdrvRequestFlags flags; |
| 797 | } BlkRwCo; |
| 798 | |
| 799 | static void blk_read_entry(void *opaque) |
| 800 | { |
| 801 | BlkRwCo *rwco = opaque; |
| 802 | |
| 803 | rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, rwco->qiov->size, |
| 804 | rwco->qiov, rwco->flags); |
| 805 | } |
| 806 | |
Kevin Wolf | a8823a3 | 2016-03-08 13:47:48 +0100 | [diff] [blame] | 807 | static void blk_write_entry(void *opaque) |
| 808 | { |
| 809 | BlkRwCo *rwco = opaque; |
| 810 | |
| 811 | rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, rwco->qiov->size, |
| 812 | rwco->qiov, rwco->flags); |
| 813 | } |
| 814 | |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 815 | static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf, |
| 816 | int64_t bytes, CoroutineEntry co_entry, |
| 817 | BdrvRequestFlags flags) |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 818 | { |
| 819 | AioContext *aio_context; |
| 820 | QEMUIOVector qiov; |
| 821 | struct iovec iov; |
| 822 | Coroutine *co; |
| 823 | BlkRwCo rwco; |
| 824 | |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 825 | iov = (struct iovec) { |
| 826 | .iov_base = buf, |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 827 | .iov_len = bytes, |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 828 | }; |
| 829 | qemu_iovec_init_external(&qiov, &iov, 1); |
| 830 | |
| 831 | rwco = (BlkRwCo) { |
| 832 | .blk = blk, |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 833 | .offset = offset, |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 834 | .qiov = &qiov, |
Kevin Wolf | fc1453c | 2016-03-08 13:47:50 +0100 | [diff] [blame] | 835 | .flags = flags, |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 836 | .ret = NOT_DONE, |
| 837 | }; |
| 838 | |
Paolo Bonzini | 0b8b875 | 2016-07-04 19:10:01 +0200 | [diff] [blame] | 839 | co = qemu_coroutine_create(co_entry, &rwco); |
| 840 | qemu_coroutine_enter(co); |
Kevin Wolf | 1bf1cbc | 2016-03-08 13:47:47 +0100 | [diff] [blame] | 841 | |
| 842 | aio_context = blk_get_aio_context(blk); |
| 843 | while (rwco.ret == NOT_DONE) { |
| 844 | aio_poll(aio_context, true); |
| 845 | } |
| 846 | |
| 847 | return rwco.ret; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 848 | } |
| 849 | |
Eric Blake | b7d17f9 | 2016-05-06 10:26:28 -0600 | [diff] [blame] | 850 | int blk_pread_unthrottled(BlockBackend *blk, int64_t offset, uint8_t *buf, |
| 851 | int count) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 852 | { |
Kevin Wolf | 5bd5119 | 2016-03-08 13:47:49 +0100 | [diff] [blame] | 853 | int ret; |
| 854 | |
Eric Blake | b7d17f9 | 2016-05-06 10:26:28 -0600 | [diff] [blame] | 855 | ret = blk_check_byte_request(blk, offset, count); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 856 | if (ret < 0) { |
| 857 | return ret; |
| 858 | } |
| 859 | |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 860 | blk_root_drained_begin(blk->root); |
Eric Blake | b7d17f9 | 2016-05-06 10:26:28 -0600 | [diff] [blame] | 861 | ret = blk_pread(blk, offset, buf, count); |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 862 | blk_root_drained_end(blk->root); |
Kevin Wolf | 5bd5119 | 2016-03-08 13:47:49 +0100 | [diff] [blame] | 863 | return ret; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 864 | } |
| 865 | |
Eric Blake | d004bd5 | 2016-05-24 16:25:20 -0600 | [diff] [blame] | 866 | int blk_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
| 867 | int count, BdrvRequestFlags flags) |
Kevin Wolf | 0df89e8 | 2015-03-19 13:33:31 +0100 | [diff] [blame] | 868 | { |
Eric Blake | 983a160 | 2016-05-06 10:26:29 -0600 | [diff] [blame] | 869 | return blk_prw(blk, offset, NULL, count, blk_write_entry, |
| 870 | flags | BDRV_REQ_ZERO_WRITE); |
Kevin Wolf | 0df89e8 | 2015-03-19 13:33:31 +0100 | [diff] [blame] | 871 | } |
| 872 | |
Kevin Wolf | 720ff28 | 2016-06-16 15:13:15 +0200 | [diff] [blame] | 873 | int blk_make_zero(BlockBackend *blk, BdrvRequestFlags flags) |
| 874 | { |
| 875 | return bdrv_make_zero(blk->root, flags); |
| 876 | } |
| 877 | |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 878 | static void error_callback_bh(void *opaque) |
| 879 | { |
| 880 | struct BlockBackendAIOCB *acb = opaque; |
| 881 | qemu_bh_delete(acb->bh); |
| 882 | acb->common.cb(acb->common.opaque, acb->ret); |
| 883 | qemu_aio_unref(acb); |
| 884 | } |
| 885 | |
Peter Lieven | ca78ecf | 2015-11-17 15:06:21 -0500 | [diff] [blame] | 886 | BlockAIOCB *blk_abort_aio_request(BlockBackend *blk, |
| 887 | BlockCompletionFunc *cb, |
| 888 | void *opaque, int ret) |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 889 | { |
| 890 | struct BlockBackendAIOCB *acb; |
| 891 | QEMUBH *bh; |
| 892 | |
| 893 | acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque); |
Max Reitz | 4981bde | 2015-10-19 17:53:18 +0200 | [diff] [blame] | 894 | acb->blk = blk; |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 895 | acb->ret = ret; |
| 896 | |
| 897 | bh = aio_bh_new(blk_get_aio_context(blk), error_callback_bh, acb); |
| 898 | acb->bh = bh; |
| 899 | qemu_bh_schedule(bh); |
| 900 | |
| 901 | return &acb->common; |
| 902 | } |
| 903 | |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 904 | typedef struct BlkAioEmAIOCB { |
| 905 | BlockAIOCB common; |
| 906 | BlkRwCo rwco; |
Kevin Wolf | 7fa84cd | 2016-04-13 12:47:08 +0200 | [diff] [blame] | 907 | int bytes; |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 908 | bool has_returned; |
| 909 | QEMUBH* bh; |
| 910 | } BlkAioEmAIOCB; |
| 911 | |
| 912 | static const AIOCBInfo blk_aio_em_aiocb_info = { |
| 913 | .aiocb_size = sizeof(BlkAioEmAIOCB), |
| 914 | }; |
| 915 | |
| 916 | static void blk_aio_complete(BlkAioEmAIOCB *acb) |
| 917 | { |
| 918 | if (acb->bh) { |
| 919 | assert(acb->has_returned); |
| 920 | qemu_bh_delete(acb->bh); |
| 921 | } |
| 922 | if (acb->has_returned) { |
| 923 | acb->common.cb(acb->common.opaque, acb->rwco.ret); |
| 924 | qemu_aio_unref(acb); |
| 925 | } |
| 926 | } |
| 927 | |
| 928 | static void blk_aio_complete_bh(void *opaque) |
| 929 | { |
| 930 | blk_aio_complete(opaque); |
| 931 | } |
| 932 | |
Kevin Wolf | 7fa84cd | 2016-04-13 12:47:08 +0200 | [diff] [blame] | 933 | static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes, |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 934 | QEMUIOVector *qiov, CoroutineEntry co_entry, |
| 935 | BdrvRequestFlags flags, |
| 936 | BlockCompletionFunc *cb, void *opaque) |
| 937 | { |
| 938 | BlkAioEmAIOCB *acb; |
| 939 | Coroutine *co; |
| 940 | |
| 941 | acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque); |
| 942 | acb->rwco = (BlkRwCo) { |
| 943 | .blk = blk, |
| 944 | .offset = offset, |
| 945 | .qiov = qiov, |
| 946 | .flags = flags, |
| 947 | .ret = NOT_DONE, |
| 948 | }; |
Kevin Wolf | 7fa84cd | 2016-04-13 12:47:08 +0200 | [diff] [blame] | 949 | acb->bytes = bytes; |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 950 | acb->bh = NULL; |
| 951 | acb->has_returned = false; |
| 952 | |
Paolo Bonzini | 0b8b875 | 2016-07-04 19:10:01 +0200 | [diff] [blame] | 953 | co = qemu_coroutine_create(co_entry, acb); |
| 954 | qemu_coroutine_enter(co); |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 955 | |
| 956 | acb->has_returned = true; |
| 957 | if (acb->rwco.ret != NOT_DONE) { |
| 958 | acb->bh = aio_bh_new(blk_get_aio_context(blk), blk_aio_complete_bh, acb); |
| 959 | qemu_bh_schedule(acb->bh); |
| 960 | } |
| 961 | |
| 962 | return &acb->common; |
| 963 | } |
| 964 | |
| 965 | static void blk_aio_read_entry(void *opaque) |
| 966 | { |
| 967 | BlkAioEmAIOCB *acb = opaque; |
| 968 | BlkRwCo *rwco = &acb->rwco; |
| 969 | |
Kevin Wolf | 7fa84cd | 2016-04-13 12:47:08 +0200 | [diff] [blame] | 970 | assert(rwco->qiov->size == acb->bytes); |
| 971 | rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes, |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 972 | rwco->qiov, rwco->flags); |
| 973 | blk_aio_complete(acb); |
| 974 | } |
| 975 | |
| 976 | static void blk_aio_write_entry(void *opaque) |
| 977 | { |
| 978 | BlkAioEmAIOCB *acb = opaque; |
| 979 | BlkRwCo *rwco = &acb->rwco; |
| 980 | |
Kevin Wolf | 7fa84cd | 2016-04-13 12:47:08 +0200 | [diff] [blame] | 981 | assert(!rwco->qiov || rwco->qiov->size == acb->bytes); |
| 982 | rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes, |
Kevin Wolf | 57d6a42 | 2016-03-08 13:47:52 +0100 | [diff] [blame] | 983 | rwco->qiov, rwco->flags); |
| 984 | blk_aio_complete(acb); |
| 985 | } |
| 986 | |
Eric Blake | d004bd5 | 2016-05-24 16:25:20 -0600 | [diff] [blame] | 987 | BlockAIOCB *blk_aio_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
| 988 | int count, BdrvRequestFlags flags, |
| 989 | BlockCompletionFunc *cb, void *opaque) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 990 | { |
Eric Blake | 983a160 | 2016-05-06 10:26:29 -0600 | [diff] [blame] | 991 | return blk_aio_prwv(blk, offset, count, NULL, blk_aio_write_entry, |
| 992 | flags | BDRV_REQ_ZERO_WRITE, cb, opaque); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 993 | } |
| 994 | |
| 995 | int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count) |
| 996 | { |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 997 | int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 998 | if (ret < 0) { |
| 999 | return ret; |
| 1000 | } |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 1001 | return count; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1002 | } |
| 1003 | |
Eric Blake | 8341f00 | 2016-05-06 10:26:27 -0600 | [diff] [blame] | 1004 | int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count, |
| 1005 | BdrvRequestFlags flags) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1006 | { |
Eric Blake | 8341f00 | 2016-05-06 10:26:27 -0600 | [diff] [blame] | 1007 | int ret = blk_prw(blk, offset, (void *) buf, count, blk_write_entry, |
| 1008 | flags); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1009 | if (ret < 0) { |
| 1010 | return ret; |
| 1011 | } |
Kevin Wolf | a55d3fb | 2016-03-08 13:47:51 +0100 | [diff] [blame] | 1012 | return count; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1013 | } |
| 1014 | |
| 1015 | int64_t blk_getlength(BlockBackend *blk) |
| 1016 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1017 | if (!blk_is_available(blk)) { |
| 1018 | return -ENOMEDIUM; |
| 1019 | } |
| 1020 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1021 | return bdrv_getlength(blk_bs(blk)); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1022 | } |
| 1023 | |
| 1024 | void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr) |
| 1025 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1026 | if (!blk_bs(blk)) { |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1027 | *nb_sectors_ptr = 0; |
| 1028 | } else { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1029 | bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1030 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1031 | } |
| 1032 | |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1033 | int64_t blk_nb_sectors(BlockBackend *blk) |
| 1034 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1035 | if (!blk_is_available(blk)) { |
| 1036 | return -ENOMEDIUM; |
| 1037 | } |
| 1038 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1039 | return bdrv_nb_sectors(blk_bs(blk)); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1040 | } |
| 1041 | |
Eric Blake | 60cb2fa | 2016-05-06 10:26:30 -0600 | [diff] [blame] | 1042 | BlockAIOCB *blk_aio_preadv(BlockBackend *blk, int64_t offset, |
| 1043 | QEMUIOVector *qiov, BdrvRequestFlags flags, |
| 1044 | BlockCompletionFunc *cb, void *opaque) |
| 1045 | { |
| 1046 | return blk_aio_prwv(blk, offset, qiov->size, qiov, |
| 1047 | blk_aio_read_entry, flags, cb, opaque); |
| 1048 | } |
| 1049 | |
Eric Blake | 60cb2fa | 2016-05-06 10:26:30 -0600 | [diff] [blame] | 1050 | BlockAIOCB *blk_aio_pwritev(BlockBackend *blk, int64_t offset, |
| 1051 | QEMUIOVector *qiov, BdrvRequestFlags flags, |
| 1052 | BlockCompletionFunc *cb, void *opaque) |
| 1053 | { |
| 1054 | return blk_aio_prwv(blk, offset, qiov->size, qiov, |
| 1055 | blk_aio_write_entry, flags, cb, opaque); |
| 1056 | } |
| 1057 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1058 | BlockAIOCB *blk_aio_flush(BlockBackend *blk, |
| 1059 | BlockCompletionFunc *cb, void *opaque) |
| 1060 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1061 | if (!blk_is_available(blk)) { |
Peter Lieven | ca78ecf | 2015-11-17 15:06:21 -0500 | [diff] [blame] | 1062 | return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM); |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1063 | } |
| 1064 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1065 | return bdrv_aio_flush(blk_bs(blk), cb, opaque); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1066 | } |
| 1067 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1068 | BlockAIOCB *blk_aio_pdiscard(BlockBackend *blk, |
| 1069 | int64_t offset, int count, |
| 1070 | BlockCompletionFunc *cb, void *opaque) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1071 | { |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1072 | int ret = blk_check_byte_request(blk, offset, count); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1073 | if (ret < 0) { |
Peter Lieven | ca78ecf | 2015-11-17 15:06:21 -0500 | [diff] [blame] | 1074 | return blk_abort_aio_request(blk, cb, opaque, ret); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1075 | } |
| 1076 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1077 | return bdrv_aio_pdiscard(blk_bs(blk), offset, count, cb, opaque); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1078 | } |
| 1079 | |
| 1080 | void blk_aio_cancel(BlockAIOCB *acb) |
| 1081 | { |
| 1082 | bdrv_aio_cancel(acb); |
| 1083 | } |
| 1084 | |
| 1085 | void blk_aio_cancel_async(BlockAIOCB *acb) |
| 1086 | { |
| 1087 | bdrv_aio_cancel_async(acb); |
| 1088 | } |
| 1089 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1090 | int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf) |
| 1091 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1092 | if (!blk_is_available(blk)) { |
| 1093 | return -ENOMEDIUM; |
| 1094 | } |
| 1095 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1096 | return bdrv_ioctl(blk_bs(blk), req, buf); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1097 | } |
| 1098 | |
| 1099 | BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf, |
| 1100 | BlockCompletionFunc *cb, void *opaque) |
| 1101 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1102 | if (!blk_is_available(blk)) { |
Peter Lieven | ca78ecf | 2015-11-17 15:06:21 -0500 | [diff] [blame] | 1103 | return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM); |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1104 | } |
| 1105 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1106 | return bdrv_aio_ioctl(blk_bs(blk), req, buf, cb, opaque); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1107 | } |
| 1108 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1109 | int blk_co_pdiscard(BlockBackend *blk, int64_t offset, int count) |
Max Reitz | 2bb0dce | 2014-11-18 12:21:14 +0100 | [diff] [blame] | 1110 | { |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1111 | int ret = blk_check_byte_request(blk, offset, count); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1112 | if (ret < 0) { |
| 1113 | return ret; |
| 1114 | } |
| 1115 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1116 | return bdrv_co_pdiscard(blk_bs(blk), offset, count); |
Max Reitz | 2bb0dce | 2014-11-18 12:21:14 +0100 | [diff] [blame] | 1117 | } |
| 1118 | |
| 1119 | int blk_co_flush(BlockBackend *blk) |
| 1120 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1121 | if (!blk_is_available(blk)) { |
| 1122 | return -ENOMEDIUM; |
| 1123 | } |
| 1124 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1125 | return bdrv_co_flush(blk_bs(blk)); |
Max Reitz | 2bb0dce | 2014-11-18 12:21:14 +0100 | [diff] [blame] | 1126 | } |
| 1127 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1128 | int blk_flush(BlockBackend *blk) |
| 1129 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1130 | if (!blk_is_available(blk)) { |
| 1131 | return -ENOMEDIUM; |
| 1132 | } |
| 1133 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1134 | return bdrv_flush(blk_bs(blk)); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1135 | } |
| 1136 | |
Alexander Yarygin | 97b0385 | 2015-06-17 13:37:19 +0300 | [diff] [blame] | 1137 | void blk_drain(BlockBackend *blk) |
| 1138 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1139 | if (blk_bs(blk)) { |
| 1140 | bdrv_drain(blk_bs(blk)); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1141 | } |
Alexander Yarygin | 97b0385 | 2015-06-17 13:37:19 +0300 | [diff] [blame] | 1142 | } |
| 1143 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1144 | void blk_drain_all(void) |
| 1145 | { |
| 1146 | bdrv_drain_all(); |
| 1147 | } |
| 1148 | |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1149 | void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error, |
| 1150 | BlockdevOnError on_write_error) |
| 1151 | { |
| 1152 | blk->on_read_error = on_read_error; |
| 1153 | blk->on_write_error = on_write_error; |
| 1154 | } |
| 1155 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1156 | BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read) |
| 1157 | { |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1158 | return is_read ? blk->on_read_error : blk->on_write_error; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1159 | } |
| 1160 | |
| 1161 | BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read, |
| 1162 | int error) |
| 1163 | { |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1164 | BlockdevOnError on_err = blk_get_on_error(blk, is_read); |
| 1165 | |
| 1166 | switch (on_err) { |
| 1167 | case BLOCKDEV_ON_ERROR_ENOSPC: |
| 1168 | return (error == ENOSPC) ? |
| 1169 | BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT; |
| 1170 | case BLOCKDEV_ON_ERROR_STOP: |
| 1171 | return BLOCK_ERROR_ACTION_STOP; |
| 1172 | case BLOCKDEV_ON_ERROR_REPORT: |
| 1173 | return BLOCK_ERROR_ACTION_REPORT; |
| 1174 | case BLOCKDEV_ON_ERROR_IGNORE: |
| 1175 | return BLOCK_ERROR_ACTION_IGNORE; |
Kevin Wolf | 8c39825 | 2016-06-29 17:41:35 +0200 | [diff] [blame] | 1176 | case BLOCKDEV_ON_ERROR_AUTO: |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1177 | default: |
| 1178 | abort(); |
| 1179 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1180 | } |
| 1181 | |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1182 | static void send_qmp_error_event(BlockBackend *blk, |
| 1183 | BlockErrorAction action, |
| 1184 | bool is_read, int error) |
| 1185 | { |
| 1186 | IoOperationType optype; |
| 1187 | |
| 1188 | optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE; |
| 1189 | qapi_event_send_block_io_error(blk_name(blk), optype, action, |
| 1190 | blk_iostatus_is_enabled(blk), |
| 1191 | error == ENOSPC, strerror(error), |
| 1192 | &error_abort); |
| 1193 | } |
| 1194 | |
| 1195 | /* This is done by device models because, while the block layer knows |
| 1196 | * about the error, it does not know whether an operation comes from |
| 1197 | * the device or the block layer (from a job, for example). |
| 1198 | */ |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1199 | void blk_error_action(BlockBackend *blk, BlockErrorAction action, |
| 1200 | bool is_read, int error) |
| 1201 | { |
Max Reitz | 373340b | 2015-10-19 17:53:22 +0200 | [diff] [blame] | 1202 | assert(error >= 0); |
| 1203 | |
| 1204 | if (action == BLOCK_ERROR_ACTION_STOP) { |
| 1205 | /* First set the iostatus, so that "info block" returns an iostatus |
| 1206 | * that matches the events raised so far (an additional error iostatus |
| 1207 | * is fine, but not a lost one). |
| 1208 | */ |
| 1209 | blk_iostatus_set_err(blk, error); |
| 1210 | |
| 1211 | /* Then raise the request to stop the VM and the event. |
| 1212 | * qemu_system_vmstop_request_prepare has two effects. First, |
| 1213 | * it ensures that the STOP event always comes after the |
| 1214 | * BLOCK_IO_ERROR event. Second, it ensures that even if management |
| 1215 | * can observe the STOP event and do a "cont" before the STOP |
| 1216 | * event is issued, the VM will not stop. In this case, vm_start() |
| 1217 | * also ensures that the STOP/RESUME pair of events is emitted. |
| 1218 | */ |
| 1219 | qemu_system_vmstop_request_prepare(); |
| 1220 | send_qmp_error_event(blk, action, is_read, error); |
| 1221 | qemu_system_vmstop_request(RUN_STATE_IO_ERROR); |
| 1222 | } else { |
| 1223 | send_qmp_error_event(blk, action, is_read, error); |
| 1224 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1225 | } |
| 1226 | |
| 1227 | int blk_is_read_only(BlockBackend *blk) |
| 1228 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1229 | BlockDriverState *bs = blk_bs(blk); |
| 1230 | |
| 1231 | if (bs) { |
| 1232 | return bdrv_is_read_only(bs); |
Max Reitz | 061959e | 2015-10-19 17:53:25 +0200 | [diff] [blame] | 1233 | } else { |
| 1234 | return blk->root_state.read_only; |
| 1235 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1236 | } |
| 1237 | |
| 1238 | int blk_is_sg(BlockBackend *blk) |
| 1239 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1240 | BlockDriverState *bs = blk_bs(blk); |
| 1241 | |
| 1242 | if (!bs) { |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1243 | return 0; |
| 1244 | } |
| 1245 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1246 | return bdrv_is_sg(bs); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1247 | } |
| 1248 | |
| 1249 | int blk_enable_write_cache(BlockBackend *blk) |
| 1250 | { |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 1251 | return blk->enable_write_cache; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1252 | } |
| 1253 | |
| 1254 | void blk_set_enable_write_cache(BlockBackend *blk, bool wce) |
| 1255 | { |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 1256 | blk->enable_write_cache = wce; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1257 | } |
| 1258 | |
Max Reitz | 2bb0dce | 2014-11-18 12:21:14 +0100 | [diff] [blame] | 1259 | void blk_invalidate_cache(BlockBackend *blk, Error **errp) |
| 1260 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1261 | BlockDriverState *bs = blk_bs(blk); |
| 1262 | |
| 1263 | if (!bs) { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1264 | error_setg(errp, "Device '%s' has no medium", blk->name); |
| 1265 | return; |
| 1266 | } |
| 1267 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1268 | bdrv_invalidate_cache(bs, errp); |
Max Reitz | 2bb0dce | 2014-11-18 12:21:14 +0100 | [diff] [blame] | 1269 | } |
| 1270 | |
Max Reitz | e031f75 | 2015-10-19 17:53:11 +0200 | [diff] [blame] | 1271 | bool blk_is_inserted(BlockBackend *blk) |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1272 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1273 | BlockDriverState *bs = blk_bs(blk); |
| 1274 | |
| 1275 | return bs && bdrv_is_inserted(bs); |
Max Reitz | db0284f | 2015-10-19 17:53:12 +0200 | [diff] [blame] | 1276 | } |
| 1277 | |
| 1278 | bool blk_is_available(BlockBackend *blk) |
| 1279 | { |
| 1280 | return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1281 | } |
| 1282 | |
| 1283 | void blk_lock_medium(BlockBackend *blk, bool locked) |
| 1284 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1285 | BlockDriverState *bs = blk_bs(blk); |
| 1286 | |
| 1287 | if (bs) { |
| 1288 | bdrv_lock_medium(bs, locked); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1289 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | void blk_eject(BlockBackend *blk, bool eject_flag) |
| 1293 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1294 | BlockDriverState *bs = blk_bs(blk); |
| 1295 | |
| 1296 | if (bs) { |
| 1297 | bdrv_eject(bs, eject_flag); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1298 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1299 | } |
| 1300 | |
| 1301 | int blk_get_flags(BlockBackend *blk) |
| 1302 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1303 | BlockDriverState *bs = blk_bs(blk); |
| 1304 | |
| 1305 | if (bs) { |
| 1306 | return bdrv_get_flags(bs); |
Max Reitz | 061959e | 2015-10-19 17:53:25 +0200 | [diff] [blame] | 1307 | } else { |
| 1308 | return blk->root_state.open_flags; |
| 1309 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1310 | } |
| 1311 | |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 1312 | /* Returns the maximum transfer length, in bytes; guaranteed nonzero */ |
| 1313 | uint32_t blk_get_max_transfer(BlockBackend *blk) |
Peter Lieven | 454057b | 2015-02-02 14:52:20 +0100 | [diff] [blame] | 1314 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1315 | BlockDriverState *bs = blk_bs(blk); |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 1316 | uint32_t max = 0; |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1317 | |
| 1318 | if (bs) { |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 1319 | max = bs->bl.max_transfer; |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1320 | } |
Eric Blake | 5def6b8 | 2016-06-23 16:37:19 -0600 | [diff] [blame] | 1321 | return MIN_NON_ZERO(max, INT_MAX); |
Peter Lieven | 454057b | 2015-02-02 14:52:20 +0100 | [diff] [blame] | 1322 | } |
| 1323 | |
Stefan Hajnoczi | 648296e | 2015-07-09 10:56:45 +0100 | [diff] [blame] | 1324 | int blk_get_max_iov(BlockBackend *blk) |
| 1325 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1326 | return blk->root->bs->bl.max_iov; |
Stefan Hajnoczi | 648296e | 2015-07-09 10:56:45 +0100 | [diff] [blame] | 1327 | } |
| 1328 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1329 | void blk_set_guest_block_size(BlockBackend *blk, int align) |
| 1330 | { |
Max Reitz | 68e9ec0 | 2015-10-19 17:53:19 +0200 | [diff] [blame] | 1331 | blk->guest_block_size = align; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1332 | } |
| 1333 | |
Paolo Bonzini | f1c1752 | 2016-01-07 14:34:13 +0100 | [diff] [blame] | 1334 | void *blk_try_blockalign(BlockBackend *blk, size_t size) |
| 1335 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1336 | return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size); |
Paolo Bonzini | f1c1752 | 2016-01-07 14:34:13 +0100 | [diff] [blame] | 1337 | } |
| 1338 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1339 | void *blk_blockalign(BlockBackend *blk, size_t size) |
| 1340 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1341 | return qemu_blockalign(blk ? blk_bs(blk) : NULL, size); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1342 | } |
| 1343 | |
| 1344 | bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp) |
| 1345 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1346 | BlockDriverState *bs = blk_bs(blk); |
| 1347 | |
| 1348 | if (!bs) { |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1349 | return false; |
| 1350 | } |
| 1351 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1352 | return bdrv_op_is_blocked(bs, op, errp); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason) |
| 1356 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1357 | BlockDriverState *bs = blk_bs(blk); |
| 1358 | |
| 1359 | if (bs) { |
| 1360 | bdrv_op_unblock(bs, op, reason); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1361 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1362 | } |
| 1363 | |
| 1364 | void blk_op_block_all(BlockBackend *blk, Error *reason) |
| 1365 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1366 | BlockDriverState *bs = blk_bs(blk); |
| 1367 | |
| 1368 | if (bs) { |
| 1369 | bdrv_op_block_all(bs, reason); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1370 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1371 | } |
| 1372 | |
| 1373 | void blk_op_unblock_all(BlockBackend *blk, Error *reason) |
| 1374 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1375 | BlockDriverState *bs = blk_bs(blk); |
| 1376 | |
| 1377 | if (bs) { |
| 1378 | bdrv_op_unblock_all(bs, reason); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1379 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1380 | } |
| 1381 | |
| 1382 | AioContext *blk_get_aio_context(BlockBackend *blk) |
| 1383 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1384 | BlockDriverState *bs = blk_bs(blk); |
| 1385 | |
| 1386 | if (bs) { |
| 1387 | return bdrv_get_aio_context(bs); |
Max Reitz | 4981bde | 2015-10-19 17:53:18 +0200 | [diff] [blame] | 1388 | } else { |
| 1389 | return qemu_get_aio_context(); |
| 1390 | } |
| 1391 | } |
| 1392 | |
| 1393 | static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb) |
| 1394 | { |
| 1395 | BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb); |
| 1396 | return blk_get_aio_context(blk_acb->blk); |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1397 | } |
| 1398 | |
| 1399 | void blk_set_aio_context(BlockBackend *blk, AioContext *new_context) |
| 1400 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1401 | BlockDriverState *bs = blk_bs(blk); |
| 1402 | |
| 1403 | if (bs) { |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 1404 | if (blk->public.throttle_state) { |
| 1405 | throttle_timers_detach_aio_context(&blk->public.throttle_timers); |
| 1406 | } |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1407 | bdrv_set_aio_context(bs, new_context); |
Kevin Wolf | 7ca7f0f | 2016-03-22 13:00:08 +0100 | [diff] [blame] | 1408 | if (blk->public.throttle_state) { |
| 1409 | throttle_timers_attach_aio_context(&blk->public.throttle_timers, |
| 1410 | new_context); |
| 1411 | } |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1412 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1413 | } |
| 1414 | |
Max Reitz | 2019ba0 | 2014-11-18 12:21:15 +0100 | [diff] [blame] | 1415 | void blk_add_aio_context_notifier(BlockBackend *blk, |
| 1416 | void (*attached_aio_context)(AioContext *new_context, void *opaque), |
| 1417 | void (*detach_aio_context)(void *opaque), void *opaque) |
| 1418 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1419 | BlockDriverState *bs = blk_bs(blk); |
| 1420 | |
| 1421 | if (bs) { |
| 1422 | bdrv_add_aio_context_notifier(bs, attached_aio_context, |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1423 | detach_aio_context, opaque); |
| 1424 | } |
Max Reitz | 2019ba0 | 2014-11-18 12:21:15 +0100 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | void blk_remove_aio_context_notifier(BlockBackend *blk, |
| 1428 | void (*attached_aio_context)(AioContext *, |
| 1429 | void *), |
| 1430 | void (*detach_aio_context)(void *), |
| 1431 | void *opaque) |
| 1432 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1433 | BlockDriverState *bs = blk_bs(blk); |
| 1434 | |
| 1435 | if (bs) { |
| 1436 | bdrv_remove_aio_context_notifier(bs, attached_aio_context, |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1437 | detach_aio_context, opaque); |
| 1438 | } |
Max Reitz | 2019ba0 | 2014-11-18 12:21:15 +0100 | [diff] [blame] | 1439 | } |
| 1440 | |
Max Reitz | 3301f6c | 2016-01-29 16:36:03 +0100 | [diff] [blame] | 1441 | void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify) |
| 1442 | { |
| 1443 | notifier_list_add(&blk->remove_bs_notifiers, notify); |
| 1444 | } |
| 1445 | |
| 1446 | void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify) |
| 1447 | { |
| 1448 | notifier_list_add(&blk->insert_bs_notifiers, notify); |
| 1449 | } |
| 1450 | |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1451 | void blk_io_plug(BlockBackend *blk) |
| 1452 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1453 | BlockDriverState *bs = blk_bs(blk); |
| 1454 | |
| 1455 | if (bs) { |
| 1456 | bdrv_io_plug(bs); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1457 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1458 | } |
| 1459 | |
| 1460 | void blk_io_unplug(BlockBackend *blk) |
| 1461 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1462 | BlockDriverState *bs = blk_bs(blk); |
| 1463 | |
| 1464 | if (bs) { |
| 1465 | bdrv_io_unplug(bs); |
Max Reitz | a46fc9c | 2015-10-19 17:53:27 +0200 | [diff] [blame] | 1466 | } |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1467 | } |
| 1468 | |
| 1469 | BlockAcctStats *blk_get_stats(BlockBackend *blk) |
| 1470 | { |
Max Reitz | 7f0e9da | 2015-10-19 17:53:21 +0200 | [diff] [blame] | 1471 | return &blk->stats; |
Markus Armbruster | 4be7463 | 2014-10-07 13:59:18 +0200 | [diff] [blame] | 1472 | } |
| 1473 | |
| 1474 | void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk, |
| 1475 | BlockCompletionFunc *cb, void *opaque) |
| 1476 | { |
| 1477 | return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque); |
| 1478 | } |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1479 | |
Eric Blake | d004bd5 | 2016-05-24 16:25:20 -0600 | [diff] [blame] | 1480 | int coroutine_fn blk_co_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
| 1481 | int count, BdrvRequestFlags flags) |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1482 | { |
Eric Blake | 983a160 | 2016-05-06 10:26:29 -0600 | [diff] [blame] | 1483 | return blk_co_pwritev(blk, offset, count, NULL, |
Kevin Wolf | 16aaf97 | 2016-04-15 10:21:04 +0200 | [diff] [blame] | 1484 | flags | BDRV_REQ_ZERO_WRITE); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1485 | } |
| 1486 | |
| 1487 | int blk_write_compressed(BlockBackend *blk, int64_t sector_num, |
| 1488 | const uint8_t *buf, int nb_sectors) |
| 1489 | { |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1490 | int ret = blk_check_request(blk, sector_num, nb_sectors); |
| 1491 | if (ret < 0) { |
| 1492 | return ret; |
| 1493 | } |
| 1494 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1495 | return bdrv_write_compressed(blk_bs(blk), sector_num, buf, nb_sectors); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | int blk_truncate(BlockBackend *blk, int64_t offset) |
| 1499 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1500 | if (!blk_is_available(blk)) { |
| 1501 | return -ENOMEDIUM; |
| 1502 | } |
| 1503 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1504 | return bdrv_truncate(blk_bs(blk), offset); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1505 | } |
| 1506 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1507 | int blk_pdiscard(BlockBackend *blk, int64_t offset, int count) |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1508 | { |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1509 | int ret = blk_check_byte_request(blk, offset, count); |
Max Reitz | e7f7d67 | 2015-02-05 13:58:23 -0500 | [diff] [blame] | 1510 | if (ret < 0) { |
| 1511 | return ret; |
| 1512 | } |
| 1513 | |
Eric Blake | 1c6c4bb | 2016-07-15 17:22:54 -0600 | [diff] [blame] | 1514 | return bdrv_pdiscard(blk_bs(blk), offset, count); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1515 | } |
| 1516 | |
| 1517 | int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf, |
| 1518 | int64_t pos, int size) |
| 1519 | { |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 1520 | int ret; |
| 1521 | |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1522 | if (!blk_is_available(blk)) { |
| 1523 | return -ENOMEDIUM; |
| 1524 | } |
| 1525 | |
Kevin Wolf | bfd18d1 | 2016-03-04 14:28:01 +0100 | [diff] [blame] | 1526 | ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size); |
| 1527 | if (ret < 0) { |
| 1528 | return ret; |
| 1529 | } |
| 1530 | |
| 1531 | if (ret == size && !blk->enable_write_cache) { |
| 1532 | ret = bdrv_flush(blk_bs(blk)); |
| 1533 | } |
| 1534 | |
| 1535 | return ret < 0 ? ret : size; |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1536 | } |
| 1537 | |
| 1538 | int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size) |
| 1539 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1540 | if (!blk_is_available(blk)) { |
| 1541 | return -ENOMEDIUM; |
| 1542 | } |
| 1543 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1544 | return bdrv_load_vmstate(blk_bs(blk), buf, pos, size); |
Max Reitz | 1ef0125 | 2015-02-05 13:58:10 -0500 | [diff] [blame] | 1545 | } |
Ekaterina Tumanova | f0272c4 | 2015-02-16 12:47:57 +0100 | [diff] [blame] | 1546 | |
| 1547 | int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz) |
| 1548 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1549 | if (!blk_is_available(blk)) { |
| 1550 | return -ENOMEDIUM; |
| 1551 | } |
| 1552 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1553 | return bdrv_probe_blocksizes(blk_bs(blk), bsz); |
Ekaterina Tumanova | f0272c4 | 2015-02-16 12:47:57 +0100 | [diff] [blame] | 1554 | } |
| 1555 | |
| 1556 | int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo) |
| 1557 | { |
Max Reitz | c09ba36 | 2015-10-19 17:53:26 +0200 | [diff] [blame] | 1558 | if (!blk_is_available(blk)) { |
| 1559 | return -ENOMEDIUM; |
| 1560 | } |
| 1561 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1562 | return bdrv_probe_geometry(blk_bs(blk), geo); |
Ekaterina Tumanova | f0272c4 | 2015-02-16 12:47:57 +0100 | [diff] [blame] | 1563 | } |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 1564 | |
| 1565 | /* |
| 1566 | * Updates the BlockBackendRootState object with data from the currently |
| 1567 | * attached BlockDriverState. |
| 1568 | */ |
| 1569 | void blk_update_root_state(BlockBackend *blk) |
| 1570 | { |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1571 | assert(blk->root); |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 1572 | |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1573 | blk->root_state.open_flags = blk->root->bs->open_flags; |
| 1574 | blk->root_state.read_only = blk->root->bs->read_only; |
| 1575 | blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes; |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 1576 | } |
| 1577 | |
Max Reitz | 38cb18f | 2015-10-26 21:39:07 +0100 | [diff] [blame] | 1578 | /* |
| 1579 | * Applies the information in the root state to the given BlockDriverState. This |
| 1580 | * does not include the flags which have to be specified for bdrv_open(), use |
| 1581 | * blk_get_open_flags_from_root_state() to inquire them. |
| 1582 | */ |
| 1583 | void blk_apply_root_state(BlockBackend *blk, BlockDriverState *bs) |
| 1584 | { |
| 1585 | bs->detect_zeroes = blk->root_state.detect_zeroes; |
Max Reitz | 38cb18f | 2015-10-26 21:39:07 +0100 | [diff] [blame] | 1586 | } |
| 1587 | |
| 1588 | /* |
| 1589 | * Returns the flags to be used for bdrv_open() of a BlockDriverState which is |
| 1590 | * supposed to inherit the root state. |
| 1591 | */ |
| 1592 | int blk_get_open_flags_from_root_state(BlockBackend *blk) |
| 1593 | { |
| 1594 | int bs_flags; |
| 1595 | |
| 1596 | bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR; |
| 1597 | bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR; |
| 1598 | |
| 1599 | return bs_flags; |
| 1600 | } |
| 1601 | |
Max Reitz | 281d22d | 2015-10-19 17:53:24 +0200 | [diff] [blame] | 1602 | BlockBackendRootState *blk_get_root_state(BlockBackend *blk) |
| 1603 | { |
| 1604 | return &blk->root_state; |
| 1605 | } |
Max Reitz | 1393f21 | 2016-03-16 19:54:31 +0100 | [diff] [blame] | 1606 | |
| 1607 | int blk_commit_all(void) |
| 1608 | { |
Max Reitz | fe1a9cb | 2016-03-16 19:54:40 +0100 | [diff] [blame] | 1609 | BlockBackend *blk = NULL; |
| 1610 | |
| 1611 | while ((blk = blk_all_next(blk)) != NULL) { |
| 1612 | AioContext *aio_context = blk_get_aio_context(blk); |
| 1613 | |
| 1614 | aio_context_acquire(aio_context); |
Kevin Wolf | f21d96d | 2016-03-08 13:47:46 +0100 | [diff] [blame] | 1615 | if (blk_is_inserted(blk) && blk->root->bs->backing) { |
| 1616 | int ret = bdrv_commit(blk->root->bs); |
Max Reitz | fe1a9cb | 2016-03-16 19:54:40 +0100 | [diff] [blame] | 1617 | if (ret < 0) { |
| 1618 | aio_context_release(aio_context); |
| 1619 | return ret; |
| 1620 | } |
| 1621 | } |
| 1622 | aio_context_release(aio_context); |
| 1623 | } |
| 1624 | return 0; |
| 1625 | } |
| 1626 | |
| 1627 | int blk_flush_all(void) |
| 1628 | { |
| 1629 | BlockBackend *blk = NULL; |
| 1630 | int result = 0; |
| 1631 | |
| 1632 | while ((blk = blk_all_next(blk)) != NULL) { |
| 1633 | AioContext *aio_context = blk_get_aio_context(blk); |
| 1634 | int ret; |
| 1635 | |
| 1636 | aio_context_acquire(aio_context); |
| 1637 | if (blk_is_inserted(blk)) { |
| 1638 | ret = blk_flush(blk); |
| 1639 | if (ret < 0 && !result) { |
| 1640 | result = ret; |
| 1641 | } |
| 1642 | } |
| 1643 | aio_context_release(aio_context); |
| 1644 | } |
| 1645 | |
| 1646 | return result; |
Max Reitz | 1393f21 | 2016-03-16 19:54:31 +0100 | [diff] [blame] | 1647 | } |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 1648 | |
| 1649 | |
| 1650 | /* throttling disk I/O limits */ |
| 1651 | void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg) |
| 1652 | { |
| 1653 | throttle_group_config(blk, cfg); |
| 1654 | } |
| 1655 | |
| 1656 | void blk_io_limits_disable(BlockBackend *blk) |
| 1657 | { |
| 1658 | assert(blk->public.throttle_state); |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 1659 | bdrv_drained_begin(blk_bs(blk)); |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 1660 | throttle_group_unregister_blk(blk); |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 1661 | bdrv_drained_end(blk_bs(blk)); |
Kevin Wolf | 9714807 | 2016-03-21 13:53:52 +0100 | [diff] [blame] | 1662 | } |
| 1663 | |
| 1664 | /* should be called before blk_set_io_limits if a limit is set */ |
| 1665 | void blk_io_limits_enable(BlockBackend *blk, const char *group) |
| 1666 | { |
| 1667 | assert(!blk->public.throttle_state); |
| 1668 | throttle_group_register_blk(blk, group); |
| 1669 | } |
| 1670 | |
| 1671 | void blk_io_limits_update_group(BlockBackend *blk, const char *group) |
| 1672 | { |
| 1673 | /* this BB is not part of any group */ |
| 1674 | if (!blk->public.throttle_state) { |
| 1675 | return; |
| 1676 | } |
| 1677 | |
| 1678 | /* this BB is a part of the same group than the one we want */ |
| 1679 | if (!g_strcmp0(throttle_group_get_name(blk), group)) { |
| 1680 | return; |
| 1681 | } |
| 1682 | |
| 1683 | /* need to change the group this bs belong to */ |
| 1684 | blk_io_limits_disable(blk); |
| 1685 | blk_io_limits_enable(blk, group); |
| 1686 | } |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 1687 | |
| 1688 | static void blk_root_drained_begin(BdrvChild *child) |
| 1689 | { |
| 1690 | BlockBackend *blk = child->opaque; |
| 1691 | |
Kevin Wolf | 36fe133 | 2016-05-17 14:51:55 +0200 | [diff] [blame] | 1692 | /* Note that blk->root may not be accessible here yet if we are just |
| 1693 | * attaching to a BlockDriverState that is drained. Use child instead. */ |
| 1694 | |
Kevin Wolf | c2066af | 2016-03-22 12:05:35 +0100 | [diff] [blame] | 1695 | if (blk->public.io_limits_disabled++ == 0) { |
| 1696 | throttle_group_restart_blk(blk); |
| 1697 | } |
| 1698 | } |
| 1699 | |
| 1700 | static void blk_root_drained_end(BdrvChild *child) |
| 1701 | { |
| 1702 | BlockBackend *blk = child->opaque; |
| 1703 | |
| 1704 | assert(blk->public.io_limits_disabled); |
| 1705 | --blk->public.io_limits_disabled; |
| 1706 | } |