]>
Commit | Line | Data |
---|---|---|
26f54e9a MA |
1 | /* |
2 | * QEMU Block backends | |
3 | * | |
60cb2fa7 | 4 | * Copyright (C) 2014-2016 Red Hat, Inc. |
26f54e9a MA |
5 | * |
6 | * Authors: | |
7 | * Markus Armbruster <[email protected]>, | |
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 | ||
80c71a24 | 13 | #include "qemu/osdep.h" |
26f54e9a MA |
14 | #include "sysemu/block-backend.h" |
15 | #include "block/block_int.h" | |
373340b2 | 16 | #include "block/blockjob.h" |
281d22d8 | 17 | #include "block/throttle-groups.h" |
18e46a03 | 18 | #include "sysemu/blockdev.h" |
373340b2 | 19 | #include "sysemu/sysemu.h" |
e688df6b | 20 | #include "qapi/error.h" |
9af23989 | 21 | #include "qapi/qapi-events-block.h" |
f348b6d1 | 22 | #include "qemu/id.h" |
922a01a0 | 23 | #include "qemu/option.h" |
1e98fefd | 24 | #include "trace.h" |
5f7772c4 | 25 | #include "migration/misc.h" |
a7f53e26 MA |
26 | |
27 | /* Number of coroutines to reserve per attached device model */ | |
28 | #define COROUTINE_POOL_RESERVATION 64 | |
26f54e9a | 29 | |
1bf1cbc9 KW |
30 | #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */ |
31 | ||
4981bdec HR |
32 | static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb); |
33 | ||
d03654ea SH |
34 | typedef struct BlockBackendAioNotifier { |
35 | void (*attached_aio_context)(AioContext *new_context, void *opaque); | |
36 | void (*detach_aio_context)(void *opaque); | |
37 | void *opaque; | |
38 | QLIST_ENTRY(BlockBackendAioNotifier) list; | |
39 | } BlockBackendAioNotifier; | |
40 | ||
26f54e9a MA |
41 | struct BlockBackend { |
42 | char *name; | |
43 | int refcnt; | |
f21d96d0 | 44 | BdrvChild *root; |
26f8b3a8 | 45 | DriveInfo *legacy_dinfo; /* null unless created by drive_new() */ |
2cf22d6a | 46 | QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */ |
9492b0b9 | 47 | QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */ |
f2cd875d | 48 | BlockBackendPublic public; |
a7f53e26 MA |
49 | |
50 | void *dev; /* attached device model, if any */ | |
bbc8ea98 | 51 | bool legacy_dev; /* true if dev is not a DeviceState */ |
a7f53e26 MA |
52 | /* TODO change to DeviceState when all users are qdevified */ |
53 | const BlockDevOps *dev_ops; | |
54 | void *dev_opaque; | |
68e9ec01 HR |
55 | |
56 | /* the block size for which the guest device expects atomicity */ | |
57 | int guest_block_size; | |
7f0e9da6 | 58 | |
281d22d8 HR |
59 | /* If the BDS tree is removed, some of its options are stored here (which |
60 | * can be used to restore those options in the new BDS on insert) */ | |
61 | BlockBackendRootState root_state; | |
62 | ||
bfd18d1e KW |
63 | bool enable_write_cache; |
64 | ||
7f0e9da6 HR |
65 | /* I/O stats (display with "info blockstats"). */ |
66 | BlockAcctStats stats; | |
373340b2 HR |
67 | |
68 | BlockdevOnError on_read_error, on_write_error; | |
69 | bool iostatus_enabled; | |
70 | BlockDeviceIoStatus iostatus; | |
3301f6c6 | 71 | |
981776b3 KW |
72 | uint64_t perm; |
73 | uint64_t shared_perm; | |
d35ff5e6 | 74 | bool disable_perm; |
981776b3 | 75 | |
c10c9d96 KW |
76 | bool allow_write_beyond_eof; |
77 | ||
3301f6c6 | 78 | NotifierList remove_bs_notifiers, insert_bs_notifiers; |
d03654ea | 79 | QLIST_HEAD(, BlockBackendAioNotifier) aio_notifiers; |
f4d9cc88 JS |
80 | |
81 | int quiesce_counter; | |
5f7772c4 | 82 | VMChangeStateEntry *vmsh; |
ca2e2144 | 83 | bool force_allow_inactivate; |
33f2a757 SH |
84 | |
85 | /* Number of in-flight aio requests. BlockDriverState also counts | |
86 | * in-flight requests but aio requests can exist even when blk->root is | |
87 | * NULL, so we cannot rely on its counter for that case. | |
88 | * Accessed with atomic ops. | |
89 | */ | |
90 | unsigned int in_flight; | |
91 | AioWait wait; | |
26f54e9a MA |
92 | }; |
93 | ||
e7f7d676 HR |
94 | typedef struct BlockBackendAIOCB { |
95 | BlockAIOCB common; | |
4981bdec | 96 | BlockBackend *blk; |
e7f7d676 HR |
97 | int ret; |
98 | } BlockBackendAIOCB; | |
99 | ||
100 | static const AIOCBInfo block_backend_aiocb_info = { | |
4981bdec | 101 | .get_aio_context = blk_aiocb_get_aio_context, |
e7f7d676 HR |
102 | .aiocb_size = sizeof(BlockBackendAIOCB), |
103 | }; | |
104 | ||
8fb3c76c | 105 | static void drive_info_del(DriveInfo *dinfo); |
7c8eece4 | 106 | static BlockBackend *bdrv_first_blk(BlockDriverState *bs); |
8fb3c76c | 107 | |
2cf22d6a HR |
108 | /* All BlockBackends */ |
109 | static QTAILQ_HEAD(, BlockBackend) block_backends = | |
110 | QTAILQ_HEAD_INITIALIZER(block_backends); | |
111 | ||
9492b0b9 HR |
112 | /* All BlockBackends referenced by the monitor and which are iterated through by |
113 | * blk_next() */ | |
114 | static QTAILQ_HEAD(, BlockBackend) monitor_block_backends = | |
115 | QTAILQ_HEAD_INITIALIZER(monitor_block_backends); | |
26f54e9a | 116 | |
f21d96d0 KW |
117 | static void blk_root_inherit_options(int *child_flags, QDict *child_options, |
118 | int parent_flags, QDict *parent_options) | |
119 | { | |
120 | /* We're not supposed to call this function for root nodes */ | |
121 | abort(); | |
122 | } | |
c2066af0 KW |
123 | static void blk_root_drained_begin(BdrvChild *child); |
124 | static void blk_root_drained_end(BdrvChild *child); | |
f21d96d0 | 125 | |
5c8cab48 KW |
126 | static void blk_root_change_media(BdrvChild *child, bool load); |
127 | static void blk_root_resize(BdrvChild *child); | |
128 | ||
b5411555 KW |
129 | static char *blk_root_get_parent_desc(BdrvChild *child) |
130 | { | |
131 | BlockBackend *blk = child->opaque; | |
132 | char *dev_id; | |
133 | ||
134 | if (blk->name) { | |
135 | return g_strdup(blk->name); | |
136 | } | |
137 | ||
138 | dev_id = blk_get_attached_dev_id(blk); | |
139 | if (*dev_id) { | |
140 | return dev_id; | |
141 | } else { | |
142 | /* TODO Callback into the BB owner for something more detailed */ | |
143 | g_free(dev_id); | |
144 | return g_strdup("a block device"); | |
145 | } | |
146 | } | |
147 | ||
4c265bf9 KW |
148 | static const char *blk_root_get_name(BdrvChild *child) |
149 | { | |
150 | return blk_name(child->opaque); | |
151 | } | |
152 | ||
5f7772c4 FZ |
153 | static void blk_vm_state_changed(void *opaque, int running, RunState state) |
154 | { | |
155 | Error *local_err = NULL; | |
156 | BlockBackend *blk = opaque; | |
157 | ||
158 | if (state == RUN_STATE_INMIGRATE) { | |
159 | return; | |
160 | } | |
161 | ||
162 | qemu_del_vm_change_state_handler(blk->vmsh); | |
163 | blk->vmsh = NULL; | |
164 | blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err); | |
165 | if (local_err) { | |
166 | error_report_err(local_err); | |
167 | } | |
168 | } | |
169 | ||
4417ab7a KW |
170 | /* |
171 | * Notifies the user of the BlockBackend that migration has completed. qdev | |
172 | * devices can tighten their permissions in response (specifically revoke | |
173 | * shared write permissions that we needed for storage migration). | |
174 | * | |
175 | * If an error is returned, the VM cannot be allowed to be resumed. | |
176 | */ | |
177 | static void blk_root_activate(BdrvChild *child, Error **errp) | |
178 | { | |
179 | BlockBackend *blk = child->opaque; | |
180 | Error *local_err = NULL; | |
181 | ||
182 | if (!blk->disable_perm) { | |
183 | return; | |
184 | } | |
185 | ||
186 | blk->disable_perm = false; | |
187 | ||
5f7772c4 FZ |
188 | blk_set_perm(blk, blk->perm, BLK_PERM_ALL, &local_err); |
189 | if (local_err) { | |
190 | error_propagate(errp, local_err); | |
191 | blk->disable_perm = true; | |
192 | return; | |
193 | } | |
194 | ||
195 | if (runstate_check(RUN_STATE_INMIGRATE)) { | |
196 | /* Activation can happen when migration process is still active, for | |
197 | * example when nbd_server_add is called during non-shared storage | |
198 | * migration. Defer the shared_perm update to migration completion. */ | |
199 | if (!blk->vmsh) { | |
200 | blk->vmsh = qemu_add_vm_change_state_handler(blk_vm_state_changed, | |
201 | blk); | |
202 | } | |
203 | return; | |
204 | } | |
205 | ||
4417ab7a KW |
206 | blk_set_perm(blk, blk->perm, blk->shared_perm, &local_err); |
207 | if (local_err) { | |
208 | error_propagate(errp, local_err); | |
209 | blk->disable_perm = true; | |
210 | return; | |
211 | } | |
212 | } | |
213 | ||
ca2e2144 FZ |
214 | void blk_set_force_allow_inactivate(BlockBackend *blk) |
215 | { | |
216 | blk->force_allow_inactivate = true; | |
217 | } | |
218 | ||
c16de8f5 FZ |
219 | static bool blk_can_inactivate(BlockBackend *blk) |
220 | { | |
ca2e2144 | 221 | /* If it is a guest device, inactivate is ok. */ |
c16de8f5 FZ |
222 | if (blk->dev || blk_name(blk)[0]) { |
223 | return true; | |
224 | } | |
225 | ||
ca2e2144 FZ |
226 | /* Inactivating means no more writes to the image can be done, |
227 | * even if those writes would be changes invisible to the | |
228 | * guest. For block job BBs that satisfy this, we can just allow | |
229 | * it. This is the case for mirror job source, which is required | |
230 | * by libvirt non-shared block migration. */ | |
231 | if (!(blk->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED))) { | |
232 | return true; | |
233 | } | |
234 | ||
235 | return blk->force_allow_inactivate; | |
c16de8f5 FZ |
236 | } |
237 | ||
cfa1a572 KW |
238 | static int blk_root_inactivate(BdrvChild *child) |
239 | { | |
240 | BlockBackend *blk = child->opaque; | |
241 | ||
242 | if (blk->disable_perm) { | |
243 | return 0; | |
244 | } | |
245 | ||
c16de8f5 | 246 | if (!blk_can_inactivate(blk)) { |
cfa1a572 KW |
247 | return -EPERM; |
248 | } | |
249 | ||
250 | blk->disable_perm = true; | |
251 | if (blk->root) { | |
252 | bdrv_child_try_set_perm(blk->root, 0, BLK_PERM_ALL, &error_abort); | |
253 | } | |
254 | ||
255 | return 0; | |
256 | } | |
257 | ||
d03654ea SH |
258 | static void blk_root_attach(BdrvChild *child) |
259 | { | |
260 | BlockBackend *blk = child->opaque; | |
261 | BlockBackendAioNotifier *notifier; | |
262 | ||
263 | trace_blk_root_attach(child, blk, child->bs); | |
264 | ||
265 | QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { | |
266 | bdrv_add_aio_context_notifier(child->bs, | |
267 | notifier->attached_aio_context, | |
268 | notifier->detach_aio_context, | |
269 | notifier->opaque); | |
270 | } | |
271 | } | |
272 | ||
273 | static void blk_root_detach(BdrvChild *child) | |
274 | { | |
275 | BlockBackend *blk = child->opaque; | |
276 | BlockBackendAioNotifier *notifier; | |
277 | ||
278 | trace_blk_root_detach(child, blk, child->bs); | |
279 | ||
280 | QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { | |
281 | bdrv_remove_aio_context_notifier(child->bs, | |
282 | notifier->attached_aio_context, | |
283 | notifier->detach_aio_context, | |
284 | notifier->opaque); | |
285 | } | |
286 | } | |
287 | ||
f21d96d0 | 288 | static const BdrvChildRole child_root = { |
c2066af0 KW |
289 | .inherit_options = blk_root_inherit_options, |
290 | ||
5c8cab48 KW |
291 | .change_media = blk_root_change_media, |
292 | .resize = blk_root_resize, | |
4c265bf9 | 293 | .get_name = blk_root_get_name, |
b5411555 | 294 | .get_parent_desc = blk_root_get_parent_desc, |
5c8cab48 | 295 | |
c2066af0 KW |
296 | .drained_begin = blk_root_drained_begin, |
297 | .drained_end = blk_root_drained_end, | |
4417ab7a KW |
298 | |
299 | .activate = blk_root_activate, | |
cfa1a572 | 300 | .inactivate = blk_root_inactivate, |
d03654ea SH |
301 | |
302 | .attach = blk_root_attach, | |
303 | .detach = blk_root_detach, | |
f21d96d0 KW |
304 | }; |
305 | ||
26f54e9a | 306 | /* |
efaa7c4e | 307 | * Create a new BlockBackend with a reference count of one. |
6d0eb64d KW |
308 | * |
309 | * @perm is a bitmasks of BLK_PERM_* constants which describes the permissions | |
310 | * to request for a block driver node that is attached to this BlockBackend. | |
311 | * @shared_perm is a bitmask which describes which permissions may be granted | |
312 | * to other users of the attached node. | |
313 | * Both sets of permissions can be changed later using blk_set_perm(). | |
314 | * | |
26f54e9a MA |
315 | * Return the new BlockBackend on success, null on failure. |
316 | */ | |
6d0eb64d | 317 | BlockBackend *blk_new(uint64_t perm, uint64_t shared_perm) |
26f54e9a MA |
318 | { |
319 | BlockBackend *blk; | |
320 | ||
26f54e9a | 321 | blk = g_new0(BlockBackend, 1); |
26f54e9a | 322 | blk->refcnt = 1; |
6d0eb64d KW |
323 | blk->perm = perm; |
324 | blk->shared_perm = shared_perm; | |
0c3169df KW |
325 | blk_set_enable_write_cache(blk, true); |
326 | ||
9caa6f3d | 327 | block_acct_init(&blk->stats); |
27ccdd52 | 328 | |
3301f6c6 HR |
329 | notifier_list_init(&blk->remove_bs_notifiers); |
330 | notifier_list_init(&blk->insert_bs_notifiers); | |
d03654ea | 331 | QLIST_INIT(&blk->aio_notifiers); |
27ccdd52 | 332 | |
2cf22d6a | 333 | QTAILQ_INSERT_TAIL(&block_backends, blk, link); |
26f54e9a MA |
334 | return blk; |
335 | } | |
336 | ||
7e7d56d9 | 337 | /* |
28eb9b12 | 338 | * Creates a new BlockBackend, opens a new BlockDriverState, and connects both. |
ca49a4fd HR |
339 | * |
340 | * Just as with bdrv_open(), after having called this function the reference to | |
341 | * @options belongs to the block layer (even on failure). | |
342 | * | |
343 | * TODO: Remove @filename and @flags; it should be possible to specify a whole | |
344 | * BDS tree just by specifying the @options QDict (or @reference, | |
345 | * alternatively). At the time of adding this function, this is not possible, | |
346 | * though, so callers of this function have to be able to specify @filename and | |
347 | * @flags. | |
348 | */ | |
efaa7c4e HR |
349 | BlockBackend *blk_new_open(const char *filename, const char *reference, |
350 | QDict *options, int flags, Error **errp) | |
ca49a4fd HR |
351 | { |
352 | BlockBackend *blk; | |
28eb9b12 | 353 | BlockDriverState *bs; |
1f4ad7d3 | 354 | uint64_t perm = 0; |
c62d32f5 KW |
355 | |
356 | /* blk_new_open() is mainly used in .bdrv_create implementations and the | |
357 | * tools where sharing isn't a concern because the BDS stays private, so we | |
358 | * just request permission according to the flags. | |
359 | * | |
360 | * The exceptions are xen_disk and blockdev_init(); in these cases, the | |
361 | * caller of blk_new_open() doesn't make use of the permissions, but they | |
362 | * shouldn't hurt either. We can still share everything here because the | |
363 | * guest devices will add their own blockers if they can't share. */ | |
1f4ad7d3 KW |
364 | if ((flags & BDRV_O_NO_IO) == 0) { |
365 | perm |= BLK_PERM_CONSISTENT_READ; | |
366 | if (flags & BDRV_O_RDWR) { | |
367 | perm |= BLK_PERM_WRITE; | |
368 | } | |
c62d32f5 KW |
369 | } |
370 | if (flags & BDRV_O_RESIZE) { | |
371 | perm |= BLK_PERM_RESIZE; | |
372 | } | |
ca49a4fd | 373 | |
c62d32f5 | 374 | blk = blk_new(perm, BLK_PERM_ALL); |
5b363937 HR |
375 | bs = bdrv_open(filename, reference, options, flags, errp); |
376 | if (!bs) { | |
ca49a4fd HR |
377 | blk_unref(blk); |
378 | return NULL; | |
379 | } | |
380 | ||
d5e6f437 | 381 | blk->root = bdrv_root_attach_child(bs, "root", &child_root, |
50bfbe93 FZ |
382 | perm, BLK_PERM_ALL, blk, errp); |
383 | if (!blk->root) { | |
384 | bdrv_unref(bs); | |
385 | blk_unref(blk); | |
386 | return NULL; | |
387 | } | |
72e775c7 | 388 | |
ca49a4fd HR |
389 | return blk; |
390 | } | |
391 | ||
26f54e9a MA |
392 | static void blk_delete(BlockBackend *blk) |
393 | { | |
394 | assert(!blk->refcnt); | |
e5e78550 | 395 | assert(!blk->name); |
a7f53e26 | 396 | assert(!blk->dev); |
022cdc9f | 397 | if (blk->public.throttle_group_member.throttle_state) { |
1606e4cf EB |
398 | blk_io_limits_disable(blk); |
399 | } | |
f21d96d0 | 400 | if (blk->root) { |
13855c6b | 401 | blk_remove_bs(blk); |
7e7d56d9 | 402 | } |
5f7772c4 FZ |
403 | if (blk->vmsh) { |
404 | qemu_del_vm_change_state_handler(blk->vmsh); | |
405 | blk->vmsh = NULL; | |
406 | } | |
3301f6c6 HR |
407 | assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers)); |
408 | assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers)); | |
d03654ea | 409 | assert(QLIST_EMPTY(&blk->aio_notifiers)); |
2cf22d6a | 410 | QTAILQ_REMOVE(&block_backends, blk, link); |
18e46a03 | 411 | drive_info_del(blk->legacy_dinfo); |
979e9b03 | 412 | block_acct_cleanup(&blk->stats); |
26f54e9a MA |
413 | g_free(blk); |
414 | } | |
415 | ||
8fb3c76c MA |
416 | static void drive_info_del(DriveInfo *dinfo) |
417 | { | |
418 | if (!dinfo) { | |
419 | return; | |
420 | } | |
421 | qemu_opts_del(dinfo->opts); | |
8fb3c76c MA |
422 | g_free(dinfo); |
423 | } | |
424 | ||
f636ae85 AG |
425 | int blk_get_refcnt(BlockBackend *blk) |
426 | { | |
427 | return blk ? blk->refcnt : 0; | |
428 | } | |
429 | ||
26f54e9a MA |
430 | /* |
431 | * Increment @blk's reference count. | |
432 | * @blk must not be null. | |
433 | */ | |
434 | void blk_ref(BlockBackend *blk) | |
435 | { | |
436 | blk->refcnt++; | |
437 | } | |
438 | ||
439 | /* | |
440 | * Decrement @blk's reference count. | |
441 | * If this drops it to zero, destroy @blk. | |
442 | * For convenience, do nothing if @blk is null. | |
443 | */ | |
444 | void blk_unref(BlockBackend *blk) | |
445 | { | |
446 | if (blk) { | |
447 | assert(blk->refcnt > 0); | |
448 | if (!--blk->refcnt) { | |
449 | blk_delete(blk); | |
450 | } | |
451 | } | |
452 | } | |
453 | ||
2cf22d6a HR |
454 | /* |
455 | * Behaves similarly to blk_next() but iterates over all BlockBackends, even the | |
456 | * ones which are hidden (i.e. are not referenced by the monitor). | |
457 | */ | |
a429b9b5 | 458 | BlockBackend *blk_all_next(BlockBackend *blk) |
2cf22d6a HR |
459 | { |
460 | return blk ? QTAILQ_NEXT(blk, link) | |
461 | : QTAILQ_FIRST(&block_backends); | |
462 | } | |
463 | ||
d8da3cef HR |
464 | void blk_remove_all_bs(void) |
465 | { | |
74d1b8fc | 466 | BlockBackend *blk = NULL; |
d8da3cef | 467 | |
2cf22d6a | 468 | while ((blk = blk_all_next(blk)) != NULL) { |
d8da3cef HR |
469 | AioContext *ctx = blk_get_aio_context(blk); |
470 | ||
471 | aio_context_acquire(ctx); | |
f21d96d0 | 472 | if (blk->root) { |
d8da3cef HR |
473 | blk_remove_bs(blk); |
474 | } | |
475 | aio_context_release(ctx); | |
476 | } | |
477 | } | |
478 | ||
26f54e9a | 479 | /* |
9492b0b9 | 480 | * Return the monitor-owned BlockBackend after @blk. |
26f54e9a MA |
481 | * If @blk is null, return the first one. |
482 | * Else, return @blk's next sibling, which may be null. | |
483 | * | |
484 | * To iterate over all BlockBackends, do | |
485 | * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) { | |
486 | * ... | |
487 | * } | |
488 | */ | |
489 | BlockBackend *blk_next(BlockBackend *blk) | |
490 | { | |
9492b0b9 HR |
491 | return blk ? QTAILQ_NEXT(blk, monitor_link) |
492 | : QTAILQ_FIRST(&monitor_block_backends); | |
26f54e9a MA |
493 | } |
494 | ||
7c8eece4 KW |
495 | /* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by |
496 | * the monitor or attached to a BlockBackend */ | |
88be7b4b | 497 | BlockDriverState *bdrv_next(BdrvNextIterator *it) |
7c8eece4 | 498 | { |
5e003f17 HR |
499 | BlockDriverState *bs, *old_bs; |
500 | ||
501 | /* Must be called from the main loop */ | |
502 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); | |
981f4f57 | 503 | |
7c8eece4 KW |
504 | /* First, return all root nodes of BlockBackends. In order to avoid |
505 | * returning a BDS twice when multiple BBs refer to it, we only return it | |
506 | * if the BB is the first one in the parent list of the BDS. */ | |
507 | if (it->phase == BDRV_NEXT_BACKEND_ROOTS) { | |
5e003f17 HR |
508 | BlockBackend *old_blk = it->blk; |
509 | ||
510 | old_bs = old_blk ? blk_bs(old_blk) : NULL; | |
511 | ||
7c8eece4 KW |
512 | do { |
513 | it->blk = blk_all_next(it->blk); | |
88be7b4b KW |
514 | bs = it->blk ? blk_bs(it->blk) : NULL; |
515 | } while (it->blk && (bs == NULL || bdrv_first_blk(bs) != it->blk)); | |
7c8eece4 | 516 | |
5e003f17 HR |
517 | if (it->blk) { |
518 | blk_ref(it->blk); | |
519 | } | |
520 | blk_unref(old_blk); | |
521 | ||
88be7b4b | 522 | if (bs) { |
5e003f17 HR |
523 | bdrv_ref(bs); |
524 | bdrv_unref(old_bs); | |
88be7b4b | 525 | return bs; |
7c8eece4 KW |
526 | } |
527 | it->phase = BDRV_NEXT_MONITOR_OWNED; | |
5e003f17 HR |
528 | } else { |
529 | old_bs = it->bs; | |
7c8eece4 KW |
530 | } |
531 | ||
532 | /* Then return the monitor-owned BDSes without a BB attached. Ignore all | |
533 | * BDSes that are attached to a BlockBackend here; they have been handled | |
534 | * by the above block already */ | |
981f4f57 | 535 | do { |
7c8eece4 | 536 | it->bs = bdrv_next_monitor_owned(it->bs); |
88be7b4b KW |
537 | bs = it->bs; |
538 | } while (bs && bdrv_has_blk(bs)); | |
539 | ||
5e003f17 HR |
540 | if (bs) { |
541 | bdrv_ref(bs); | |
542 | } | |
543 | bdrv_unref(old_bs); | |
544 | ||
88be7b4b KW |
545 | return bs; |
546 | } | |
547 | ||
5e003f17 | 548 | static void bdrv_next_reset(BdrvNextIterator *it) |
88be7b4b KW |
549 | { |
550 | *it = (BdrvNextIterator) { | |
551 | .phase = BDRV_NEXT_BACKEND_ROOTS, | |
552 | }; | |
5e003f17 | 553 | } |
981f4f57 | 554 | |
5e003f17 HR |
555 | BlockDriverState *bdrv_first(BdrvNextIterator *it) |
556 | { | |
557 | bdrv_next_reset(it); | |
88be7b4b | 558 | return bdrv_next(it); |
981f4f57 HR |
559 | } |
560 | ||
5e003f17 HR |
561 | /* Must be called when aborting a bdrv_next() iteration before |
562 | * bdrv_next() returns NULL */ | |
563 | void bdrv_next_cleanup(BdrvNextIterator *it) | |
564 | { | |
565 | /* Must be called from the main loop */ | |
566 | assert(qemu_get_current_aio_context() == qemu_get_aio_context()); | |
567 | ||
568 | if (it->phase == BDRV_NEXT_BACKEND_ROOTS) { | |
569 | if (it->blk) { | |
570 | bdrv_unref(blk_bs(it->blk)); | |
571 | blk_unref(it->blk); | |
572 | } | |
573 | } else { | |
574 | bdrv_unref(it->bs); | |
575 | } | |
576 | ||
577 | bdrv_next_reset(it); | |
578 | } | |
579 | ||
e5e78550 HR |
580 | /* |
581 | * Add a BlockBackend into the list of backends referenced by the monitor, with | |
582 | * the given @name acting as the handle for the monitor. | |
583 | * Strictly for use by blockdev.c. | |
584 | * | |
585 | * @name must not be null or empty. | |
586 | * | |
587 | * Returns true on success and false on failure. In the latter case, an Error | |
588 | * object is returned through @errp. | |
589 | */ | |
590 | bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp) | |
591 | { | |
592 | assert(!blk->name); | |
593 | assert(name && name[0]); | |
594 | ||
595 | if (!id_wellformed(name)) { | |
596 | error_setg(errp, "Invalid device name"); | |
597 | return false; | |
598 | } | |
599 | if (blk_by_name(name)) { | |
600 | error_setg(errp, "Device with id '%s' already exists", name); | |
601 | return false; | |
602 | } | |
603 | if (bdrv_find_node(name)) { | |
604 | error_setg(errp, | |
605 | "Device name '%s' conflicts with an existing node name", | |
606 | name); | |
607 | return false; | |
608 | } | |
609 | ||
610 | blk->name = g_strdup(name); | |
611 | QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link); | |
612 | return true; | |
613 | } | |
614 | ||
615 | /* | |
616 | * Remove a BlockBackend from the list of backends referenced by the monitor. | |
617 | * Strictly for use by blockdev.c. | |
618 | */ | |
619 | void monitor_remove_blk(BlockBackend *blk) | |
620 | { | |
621 | if (!blk->name) { | |
622 | return; | |
623 | } | |
624 | ||
625 | QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link); | |
626 | g_free(blk->name); | |
627 | blk->name = NULL; | |
628 | } | |
629 | ||
26f54e9a | 630 | /* |
7e7d56d9 | 631 | * Return @blk's name, a non-null string. |
e5e78550 | 632 | * Returns an empty string iff @blk is not referenced by the monitor. |
26f54e9a | 633 | */ |
0731a50f | 634 | const char *blk_name(const BlockBackend *blk) |
26f54e9a | 635 | { |
e5e78550 | 636 | return blk->name ?: ""; |
26f54e9a MA |
637 | } |
638 | ||
639 | /* | |
640 | * Return the BlockBackend with name @name if it exists, else null. | |
641 | * @name must not be null. | |
642 | */ | |
643 | BlockBackend *blk_by_name(const char *name) | |
644 | { | |
74d1b8fc | 645 | BlockBackend *blk = NULL; |
26f54e9a MA |
646 | |
647 | assert(name); | |
74d1b8fc | 648 | while ((blk = blk_next(blk)) != NULL) { |
26f54e9a MA |
649 | if (!strcmp(name, blk->name)) { |
650 | return blk; | |
651 | } | |
652 | } | |
653 | return NULL; | |
654 | } | |
7e7d56d9 MA |
655 | |
656 | /* | |
657 | * Return the BlockDriverState attached to @blk if any, else null. | |
658 | */ | |
659 | BlockDriverState *blk_bs(BlockBackend *blk) | |
660 | { | |
f21d96d0 | 661 | return blk->root ? blk->root->bs : NULL; |
7e7d56d9 MA |
662 | } |
663 | ||
7c8eece4 | 664 | static BlockBackend *bdrv_first_blk(BlockDriverState *bs) |
dde33812 KW |
665 | { |
666 | BdrvChild *child; | |
667 | QLIST_FOREACH(child, &bs->parents, next_parent) { | |
668 | if (child->role == &child_root) { | |
7c8eece4 | 669 | return child->opaque; |
dde33812 KW |
670 | } |
671 | } | |
672 | ||
7c8eece4 KW |
673 | return NULL; |
674 | } | |
675 | ||
676 | /* | |
677 | * Returns true if @bs has an associated BlockBackend. | |
678 | */ | |
679 | bool bdrv_has_blk(BlockDriverState *bs) | |
680 | { | |
681 | return bdrv_first_blk(bs) != NULL; | |
dde33812 KW |
682 | } |
683 | ||
b6c1bae5 KW |
684 | /* |
685 | * Returns true if @bs has only BlockBackends as parents. | |
686 | */ | |
687 | bool bdrv_is_root_node(BlockDriverState *bs) | |
688 | { | |
689 | BdrvChild *c; | |
690 | ||
691 | QLIST_FOREACH(c, &bs->parents, next_parent) { | |
692 | if (c->role != &child_root) { | |
693 | return false; | |
694 | } | |
695 | } | |
696 | ||
697 | return true; | |
698 | } | |
699 | ||
18e46a03 MA |
700 | /* |
701 | * Return @blk's DriveInfo if any, else null. | |
702 | */ | |
703 | DriveInfo *blk_legacy_dinfo(BlockBackend *blk) | |
704 | { | |
705 | return blk->legacy_dinfo; | |
706 | } | |
707 | ||
708 | /* | |
709 | * Set @blk's DriveInfo to @dinfo, and return it. | |
710 | * @blk must not have a DriveInfo set already. | |
711 | * No other BlockBackend may have the same DriveInfo set. | |
712 | */ | |
713 | DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo) | |
714 | { | |
715 | assert(!blk->legacy_dinfo); | |
716 | return blk->legacy_dinfo = dinfo; | |
717 | } | |
718 | ||
719 | /* | |
720 | * Return the BlockBackend with DriveInfo @dinfo. | |
721 | * It must exist. | |
722 | */ | |
723 | BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo) | |
724 | { | |
74d1b8fc | 725 | BlockBackend *blk = NULL; |
18e46a03 | 726 | |
74d1b8fc | 727 | while ((blk = blk_next(blk)) != NULL) { |
18e46a03 MA |
728 | if (blk->legacy_dinfo == dinfo) { |
729 | return blk; | |
730 | } | |
731 | } | |
732 | abort(); | |
733 | } | |
734 | ||
f2cd875d KW |
735 | /* |
736 | * Returns a pointer to the publicly accessible fields of @blk. | |
737 | */ | |
738 | BlockBackendPublic *blk_get_public(BlockBackend *blk) | |
739 | { | |
740 | return &blk->public; | |
741 | } | |
742 | ||
743 | /* | |
744 | * Returns a BlockBackend given the associated @public fields. | |
745 | */ | |
746 | BlockBackend *blk_by_public(BlockBackendPublic *public) | |
747 | { | |
748 | return container_of(public, BlockBackend, public); | |
749 | } | |
750 | ||
1c95f7e1 HR |
751 | /* |
752 | * Disassociates the currently associated BlockDriverState from @blk. | |
753 | */ | |
754 | void blk_remove_bs(BlockBackend *blk) | |
755 | { | |
c89bcf3a | 756 | ThrottleGroupMember *tgm = &blk->public.throttle_group_member; |
632a7735 | 757 | BlockDriverState *bs; |
022cdc9f | 758 | |
3301f6c6 | 759 | notifier_list_notify(&blk->remove_bs_notifiers, blk); |
c89bcf3a | 760 | if (tgm->throttle_state) { |
632a7735 ZL |
761 | bs = blk_bs(blk); |
762 | bdrv_drained_begin(bs); | |
c89bcf3a AG |
763 | throttle_group_detach_aio_context(tgm); |
764 | throttle_group_attach_aio_context(tgm, qemu_get_aio_context()); | |
632a7735 | 765 | bdrv_drained_end(bs); |
a5614993 | 766 | } |
1c95f7e1 | 767 | |
7ca7f0f6 KW |
768 | blk_update_root_state(blk); |
769 | ||
f21d96d0 KW |
770 | bdrv_root_unref_child(blk->root); |
771 | blk->root = NULL; | |
1c95f7e1 HR |
772 | } |
773 | ||
0c3c36d6 HR |
774 | /* |
775 | * Associates a new BlockDriverState with @blk. | |
776 | */ | |
d7086422 | 777 | int blk_insert_bs(BlockBackend *blk, BlockDriverState *bs, Error **errp) |
0c3c36d6 | 778 | { |
c89bcf3a | 779 | ThrottleGroupMember *tgm = &blk->public.throttle_group_member; |
d5e6f437 | 780 | blk->root = bdrv_root_attach_child(bs, "root", &child_root, |
d7086422 KW |
781 | blk->perm, blk->shared_perm, blk, errp); |
782 | if (blk->root == NULL) { | |
783 | return -EPERM; | |
784 | } | |
785 | bdrv_ref(bs); | |
3301f6c6 HR |
786 | |
787 | notifier_list_notify(&blk->insert_bs_notifiers, blk); | |
c89bcf3a AG |
788 | if (tgm->throttle_state) { |
789 | throttle_group_detach_aio_context(tgm); | |
790 | throttle_group_attach_aio_context(tgm, bdrv_get_aio_context(bs)); | |
7ca7f0f6 | 791 | } |
d7086422 KW |
792 | |
793 | return 0; | |
0c3c36d6 HR |
794 | } |
795 | ||
981776b3 KW |
796 | /* |
797 | * Sets the permission bitmasks that the user of the BlockBackend needs. | |
798 | */ | |
799 | int blk_set_perm(BlockBackend *blk, uint64_t perm, uint64_t shared_perm, | |
800 | Error **errp) | |
801 | { | |
802 | int ret; | |
803 | ||
d35ff5e6 | 804 | if (blk->root && !blk->disable_perm) { |
981776b3 KW |
805 | ret = bdrv_child_try_set_perm(blk->root, perm, shared_perm, errp); |
806 | if (ret < 0) { | |
807 | return ret; | |
808 | } | |
809 | } | |
810 | ||
811 | blk->perm = perm; | |
812 | blk->shared_perm = shared_perm; | |
813 | ||
814 | return 0; | |
815 | } | |
816 | ||
887354bd KW |
817 | void blk_get_perm(BlockBackend *blk, uint64_t *perm, uint64_t *shared_perm) |
818 | { | |
819 | *perm = blk->perm; | |
820 | *shared_perm = blk->shared_perm; | |
821 | } | |
822 | ||
bbc8ea98 | 823 | static int blk_do_attach_dev(BlockBackend *blk, void *dev) |
4be74634 | 824 | { |
a7f53e26 MA |
825 | if (blk->dev) { |
826 | return -EBUSY; | |
827 | } | |
d35ff5e6 KW |
828 | |
829 | /* While migration is still incoming, we don't need to apply the | |
830 | * permissions of guest device BlockBackends. We might still have a block | |
831 | * job or NBD server writing to the image for storage migration. */ | |
832 | if (runstate_check(RUN_STATE_INMIGRATE)) { | |
833 | blk->disable_perm = true; | |
834 | } | |
835 | ||
84ebe375 | 836 | blk_ref(blk); |
a7f53e26 | 837 | blk->dev = dev; |
bbc8ea98 | 838 | blk->legacy_dev = false; |
373340b2 | 839 | blk_iostatus_reset(blk); |
d35ff5e6 | 840 | |
a7f53e26 | 841 | return 0; |
4be74634 MA |
842 | } |
843 | ||
bbc8ea98 KW |
844 | /* |
845 | * Attach device model @dev to @blk. | |
846 | * Return 0 on success, -EBUSY when a device model is attached already. | |
847 | */ | |
848 | int blk_attach_dev(BlockBackend *blk, DeviceState *dev) | |
849 | { | |
850 | return blk_do_attach_dev(blk, dev); | |
851 | } | |
852 | ||
a7f53e26 MA |
853 | /* |
854 | * Attach device model @dev to @blk. | |
855 | * @blk must not have a device model attached already. | |
856 | * TODO qdevified devices don't use this, remove when devices are qdevified | |
857 | */ | |
bbc8ea98 | 858 | void blk_attach_dev_legacy(BlockBackend *blk, void *dev) |
4be74634 | 859 | { |
bbc8ea98 | 860 | if (blk_do_attach_dev(blk, dev) < 0) { |
a7f53e26 MA |
861 | abort(); |
862 | } | |
bbc8ea98 | 863 | blk->legacy_dev = true; |
4be74634 MA |
864 | } |
865 | ||
a7f53e26 MA |
866 | /* |
867 | * Detach device model @dev from @blk. | |
868 | * @dev must be currently attached to @blk. | |
869 | */ | |
4be74634 | 870 | void blk_detach_dev(BlockBackend *blk, void *dev) |
a7f53e26 | 871 | /* TODO change to DeviceState *dev when all users are qdevified */ |
4be74634 | 872 | { |
a7f53e26 MA |
873 | assert(blk->dev == dev); |
874 | blk->dev = NULL; | |
875 | blk->dev_ops = NULL; | |
876 | blk->dev_opaque = NULL; | |
68e9ec01 | 877 | blk->guest_block_size = 512; |
981776b3 | 878 | blk_set_perm(blk, 0, BLK_PERM_ALL, &error_abort); |
84ebe375 | 879 | blk_unref(blk); |
4be74634 MA |
880 | } |
881 | ||
a7f53e26 MA |
882 | /* |
883 | * Return the device model attached to @blk if any, else null. | |
884 | */ | |
4be74634 | 885 | void *blk_get_attached_dev(BlockBackend *blk) |
a7f53e26 MA |
886 | /* TODO change to return DeviceState * when all users are qdevified */ |
887 | { | |
888 | return blk->dev; | |
889 | } | |
890 | ||
2d76e724 KW |
891 | /* Return the qdev ID, or if no ID is assigned the QOM path, of the block |
892 | * device attached to the BlockBackend. */ | |
77beef83 | 893 | char *blk_get_attached_dev_id(BlockBackend *blk) |
2d76e724 KW |
894 | { |
895 | DeviceState *dev; | |
896 | ||
897 | assert(!blk->legacy_dev); | |
898 | dev = blk->dev; | |
899 | ||
900 | if (!dev) { | |
901 | return g_strdup(""); | |
902 | } else if (dev->id) { | |
903 | return g_strdup(dev->id); | |
904 | } | |
905 | return object_get_canonical_path(OBJECT(dev)); | |
906 | } | |
907 | ||
1c89e1fa KW |
908 | /* |
909 | * Return the BlockBackend which has the device model @dev attached if it | |
910 | * exists, else null. | |
911 | * | |
912 | * @dev must not be null. | |
913 | */ | |
914 | BlockBackend *blk_by_dev(void *dev) | |
915 | { | |
916 | BlockBackend *blk = NULL; | |
917 | ||
918 | assert(dev != NULL); | |
919 | while ((blk = blk_all_next(blk)) != NULL) { | |
920 | if (blk->dev == dev) { | |
921 | return blk; | |
922 | } | |
923 | } | |
924 | return NULL; | |
925 | } | |
926 | ||
a7f53e26 MA |
927 | /* |
928 | * Set @blk's device model callbacks to @ops. | |
929 | * @opaque is the opaque argument to pass to the callbacks. | |
930 | * This is for use by device models. | |
931 | */ | |
932 | void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops, | |
933 | void *opaque) | |
934 | { | |
bbc8ea98 | 935 | /* All drivers that use blk_set_dev_ops() are qdevified and we want to keep |
f4d9cc88 JS |
936 | * it that way, so we can assume blk->dev, if present, is a DeviceState if |
937 | * blk->dev_ops is set. Non-device users may use dev_ops without device. */ | |
bbc8ea98 KW |
938 | assert(!blk->legacy_dev); |
939 | ||
a7f53e26 MA |
940 | blk->dev_ops = ops; |
941 | blk->dev_opaque = opaque; | |
f4d9cc88 JS |
942 | |
943 | /* Are we currently quiesced? Should we enforce this right now? */ | |
944 | if (blk->quiesce_counter && ops->drained_begin) { | |
945 | ops->drained_begin(opaque); | |
946 | } | |
a7f53e26 MA |
947 | } |
948 | ||
949 | /* | |
950 | * Notify @blk's attached device model of media change. | |
39829a01 KW |
951 | * |
952 | * If @load is true, notify of media load. This action can fail, meaning that | |
953 | * the medium cannot be loaded. @errp is set then. | |
954 | * | |
955 | * If @load is false, notify of media eject. This can never fail. | |
956 | * | |
a7f53e26 MA |
957 | * Also send DEVICE_TRAY_MOVED events as appropriate. |
958 | */ | |
39829a01 | 959 | void blk_dev_change_media_cb(BlockBackend *blk, bool load, Error **errp) |
a7f53e26 MA |
960 | { |
961 | if (blk->dev_ops && blk->dev_ops->change_media_cb) { | |
f1f57066 | 962 | bool tray_was_open, tray_is_open; |
39829a01 | 963 | Error *local_err = NULL; |
a7f53e26 | 964 | |
2d76e724 KW |
965 | assert(!blk->legacy_dev); |
966 | ||
f1f57066 | 967 | tray_was_open = blk_dev_is_tray_open(blk); |
39829a01 KW |
968 | blk->dev_ops->change_media_cb(blk->dev_opaque, load, &local_err); |
969 | if (local_err) { | |
970 | assert(load == true); | |
971 | error_propagate(errp, local_err); | |
972 | return; | |
973 | } | |
f1f57066 HR |
974 | tray_is_open = blk_dev_is_tray_open(blk); |
975 | ||
976 | if (tray_was_open != tray_is_open) { | |
2d76e724 KW |
977 | char *id = blk_get_attached_dev_id(blk); |
978 | qapi_event_send_device_tray_moved(blk_name(blk), id, tray_is_open, | |
f1f57066 | 979 | &error_abort); |
2d76e724 | 980 | g_free(id); |
a7f53e26 MA |
981 | } |
982 | } | |
983 | } | |
984 | ||
5c8cab48 KW |
985 | static void blk_root_change_media(BdrvChild *child, bool load) |
986 | { | |
39829a01 | 987 | blk_dev_change_media_cb(child->opaque, load, NULL); |
5c8cab48 KW |
988 | } |
989 | ||
a7f53e26 MA |
990 | /* |
991 | * Does @blk's attached device model have removable media? | |
992 | * %true if no device model is attached. | |
993 | */ | |
994 | bool blk_dev_has_removable_media(BlockBackend *blk) | |
995 | { | |
996 | return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb); | |
997 | } | |
998 | ||
8f3a73bc HR |
999 | /* |
1000 | * Does @blk's attached device model have a tray? | |
1001 | */ | |
1002 | bool blk_dev_has_tray(BlockBackend *blk) | |
1003 | { | |
1004 | return blk->dev_ops && blk->dev_ops->is_tray_open; | |
1005 | } | |
1006 | ||
a7f53e26 MA |
1007 | /* |
1008 | * Notify @blk's attached device model of a media eject request. | |
1009 | * If @force is true, the medium is about to be yanked out forcefully. | |
1010 | */ | |
1011 | void blk_dev_eject_request(BlockBackend *blk, bool force) | |
4be74634 | 1012 | { |
a7f53e26 MA |
1013 | if (blk->dev_ops && blk->dev_ops->eject_request_cb) { |
1014 | blk->dev_ops->eject_request_cb(blk->dev_opaque, force); | |
1015 | } | |
4be74634 MA |
1016 | } |
1017 | ||
a7f53e26 MA |
1018 | /* |
1019 | * Does @blk's attached device model have a tray, and is it open? | |
1020 | */ | |
1021 | bool blk_dev_is_tray_open(BlockBackend *blk) | |
4be74634 | 1022 | { |
8f3a73bc | 1023 | if (blk_dev_has_tray(blk)) { |
a7f53e26 MA |
1024 | return blk->dev_ops->is_tray_open(blk->dev_opaque); |
1025 | } | |
1026 | return false; | |
1027 | } | |
1028 | ||
1029 | /* | |
1030 | * Does @blk's attached device model have the medium locked? | |
1031 | * %false if the device model has no such lock. | |
1032 | */ | |
1033 | bool blk_dev_is_medium_locked(BlockBackend *blk) | |
1034 | { | |
1035 | if (blk->dev_ops && blk->dev_ops->is_medium_locked) { | |
1036 | return blk->dev_ops->is_medium_locked(blk->dev_opaque); | |
1037 | } | |
1038 | return false; | |
1039 | } | |
1040 | ||
1041 | /* | |
1042 | * Notify @blk's attached device model of a backend size change. | |
1043 | */ | |
5c8cab48 | 1044 | static void blk_root_resize(BdrvChild *child) |
a7f53e26 | 1045 | { |
5c8cab48 KW |
1046 | BlockBackend *blk = child->opaque; |
1047 | ||
a7f53e26 MA |
1048 | if (blk->dev_ops && blk->dev_ops->resize_cb) { |
1049 | blk->dev_ops->resize_cb(blk->dev_opaque); | |
1050 | } | |
1051 | } | |
1052 | ||
1053 | void blk_iostatus_enable(BlockBackend *blk) | |
1054 | { | |
373340b2 HR |
1055 | blk->iostatus_enabled = true; |
1056 | blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; | |
1057 | } | |
1058 | ||
1059 | /* The I/O status is only enabled if the drive explicitly | |
1060 | * enables it _and_ the VM is configured to stop on errors */ | |
1061 | bool blk_iostatus_is_enabled(const BlockBackend *blk) | |
1062 | { | |
1063 | return (blk->iostatus_enabled && | |
1064 | (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC || | |
1065 | blk->on_write_error == BLOCKDEV_ON_ERROR_STOP || | |
1066 | blk->on_read_error == BLOCKDEV_ON_ERROR_STOP)); | |
1067 | } | |
1068 | ||
1069 | BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk) | |
1070 | { | |
1071 | return blk->iostatus; | |
1072 | } | |
1073 | ||
1074 | void blk_iostatus_disable(BlockBackend *blk) | |
1075 | { | |
1076 | blk->iostatus_enabled = false; | |
1077 | } | |
1078 | ||
1079 | void blk_iostatus_reset(BlockBackend *blk) | |
1080 | { | |
1081 | if (blk_iostatus_is_enabled(blk)) { | |
f21d96d0 | 1082 | BlockDriverState *bs = blk_bs(blk); |
373340b2 | 1083 | blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK; |
f21d96d0 KW |
1084 | if (bs && bs->job) { |
1085 | block_job_iostatus_reset(bs->job); | |
373340b2 HR |
1086 | } |
1087 | } | |
1088 | } | |
1089 | ||
1090 | void blk_iostatus_set_err(BlockBackend *blk, int error) | |
1091 | { | |
1092 | assert(blk_iostatus_is_enabled(blk)); | |
1093 | if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) { | |
1094 | blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE : | |
1095 | BLOCK_DEVICE_IO_STATUS_FAILED; | |
1096 | } | |
4be74634 MA |
1097 | } |
1098 | ||
c10c9d96 KW |
1099 | void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow) |
1100 | { | |
1101 | blk->allow_write_beyond_eof = allow; | |
1102 | } | |
1103 | ||
e7f7d676 HR |
1104 | static int blk_check_byte_request(BlockBackend *blk, int64_t offset, |
1105 | size_t size) | |
1106 | { | |
1107 | int64_t len; | |
1108 | ||
1109 | if (size > INT_MAX) { | |
1110 | return -EIO; | |
1111 | } | |
1112 | ||
c09ba36c | 1113 | if (!blk_is_available(blk)) { |
e7f7d676 HR |
1114 | return -ENOMEDIUM; |
1115 | } | |
1116 | ||
e7f7d676 HR |
1117 | if (offset < 0) { |
1118 | return -EIO; | |
1119 | } | |
1120 | ||
c10c9d96 KW |
1121 | if (!blk->allow_write_beyond_eof) { |
1122 | len = blk_getlength(blk); | |
1123 | if (len < 0) { | |
1124 | return len; | |
1125 | } | |
1126 | ||
1127 | if (offset > len || len - offset < size) { | |
1128 | return -EIO; | |
1129 | } | |
e7f7d676 HR |
1130 | } |
1131 | ||
1132 | return 0; | |
1133 | } | |
1134 | ||
1e98fefd KW |
1135 | int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset, |
1136 | unsigned int bytes, QEMUIOVector *qiov, | |
1137 | BdrvRequestFlags flags) | |
4be74634 | 1138 | { |
1e98fefd | 1139 | int ret; |
99723548 | 1140 | BlockDriverState *bs = blk_bs(blk); |
1e98fefd | 1141 | |
99723548 | 1142 | trace_blk_co_preadv(blk, bs, offset, bytes, flags); |
1e98fefd KW |
1143 | |
1144 | ret = blk_check_byte_request(blk, offset, bytes); | |
e7f7d676 HR |
1145 | if (ret < 0) { |
1146 | return ret; | |
1147 | } | |
1148 | ||
99723548 PB |
1149 | bdrv_inc_in_flight(bs); |
1150 | ||
441565b2 | 1151 | /* throttling disk I/O */ |
022cdc9f MP |
1152 | if (blk->public.throttle_group_member.throttle_state) { |
1153 | throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member, | |
1154 | bytes, false); | |
441565b2 KW |
1155 | } |
1156 | ||
99723548 PB |
1157 | ret = bdrv_co_preadv(blk->root, offset, bytes, qiov, flags); |
1158 | bdrv_dec_in_flight(bs); | |
1159 | return ret; | |
1bf1cbc9 KW |
1160 | } |
1161 | ||
1e98fefd KW |
1162 | int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset, |
1163 | unsigned int bytes, QEMUIOVector *qiov, | |
1164 | BdrvRequestFlags flags) | |
a8823a3b | 1165 | { |
bfd18d1e | 1166 | int ret; |
99723548 | 1167 | BlockDriverState *bs = blk_bs(blk); |
bfd18d1e | 1168 | |
99723548 | 1169 | trace_blk_co_pwritev(blk, bs, offset, bytes, flags); |
1e98fefd | 1170 | |
bfd18d1e | 1171 | ret = blk_check_byte_request(blk, offset, bytes); |
a8823a3b KW |
1172 | if (ret < 0) { |
1173 | return ret; | |
1174 | } | |
1175 | ||
99723548 | 1176 | bdrv_inc_in_flight(bs); |
441565b2 | 1177 | /* throttling disk I/O */ |
022cdc9f MP |
1178 | if (blk->public.throttle_group_member.throttle_state) { |
1179 | throttle_group_co_io_limits_intercept(&blk->public.throttle_group_member, | |
1180 | bytes, true); | |
441565b2 KW |
1181 | } |
1182 | ||
bfd18d1e KW |
1183 | if (!blk->enable_write_cache) { |
1184 | flags |= BDRV_REQ_FUA; | |
1185 | } | |
1186 | ||
99723548 PB |
1187 | ret = bdrv_co_pwritev(blk->root, offset, bytes, qiov, flags); |
1188 | bdrv_dec_in_flight(bs); | |
1189 | return ret; | |
a8823a3b KW |
1190 | } |
1191 | ||
1bf1cbc9 KW |
1192 | typedef struct BlkRwCo { |
1193 | BlockBackend *blk; | |
1194 | int64_t offset; | |
c060332c | 1195 | void *iobuf; |
1bf1cbc9 KW |
1196 | int ret; |
1197 | BdrvRequestFlags flags; | |
1198 | } BlkRwCo; | |
1199 | ||
1200 | static void blk_read_entry(void *opaque) | |
1201 | { | |
1202 | BlkRwCo *rwco = opaque; | |
c060332c | 1203 | QEMUIOVector *qiov = rwco->iobuf; |
1bf1cbc9 | 1204 | |
c060332c DS |
1205 | rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, qiov->size, |
1206 | qiov, rwco->flags); | |
1bf1cbc9 KW |
1207 | } |
1208 | ||
a8823a3b KW |
1209 | static void blk_write_entry(void *opaque) |
1210 | { | |
1211 | BlkRwCo *rwco = opaque; | |
c060332c | 1212 | QEMUIOVector *qiov = rwco->iobuf; |
a8823a3b | 1213 | |
c060332c DS |
1214 | rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, qiov->size, |
1215 | qiov, rwco->flags); | |
a8823a3b KW |
1216 | } |
1217 | ||
a55d3fba KW |
1218 | static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf, |
1219 | int64_t bytes, CoroutineEntry co_entry, | |
1220 | BdrvRequestFlags flags) | |
1bf1cbc9 | 1221 | { |
1bf1cbc9 KW |
1222 | QEMUIOVector qiov; |
1223 | struct iovec iov; | |
1bf1cbc9 KW |
1224 | BlkRwCo rwco; |
1225 | ||
1bf1cbc9 KW |
1226 | iov = (struct iovec) { |
1227 | .iov_base = buf, | |
a55d3fba | 1228 | .iov_len = bytes, |
1bf1cbc9 KW |
1229 | }; |
1230 | qemu_iovec_init_external(&qiov, &iov, 1); | |
1231 | ||
1232 | rwco = (BlkRwCo) { | |
1233 | .blk = blk, | |
a55d3fba | 1234 | .offset = offset, |
c060332c | 1235 | .iobuf = &qiov, |
fc1453cd | 1236 | .flags = flags, |
1bf1cbc9 KW |
1237 | .ret = NOT_DONE, |
1238 | }; | |
1239 | ||
35f106e6 PB |
1240 | if (qemu_in_coroutine()) { |
1241 | /* Fast-path if already in coroutine context */ | |
1242 | co_entry(&rwco); | |
1243 | } else { | |
1244 | Coroutine *co = qemu_coroutine_create(co_entry, &rwco); | |
e92f0e19 | 1245 | bdrv_coroutine_enter(blk_bs(blk), co); |
35f106e6 PB |
1246 | BDRV_POLL_WHILE(blk_bs(blk), rwco.ret == NOT_DONE); |
1247 | } | |
1bf1cbc9 KW |
1248 | |
1249 | return rwco.ret; | |
4be74634 MA |
1250 | } |
1251 | ||
b7d17f9f EB |
1252 | int blk_pread_unthrottled(BlockBackend *blk, int64_t offset, uint8_t *buf, |
1253 | int count) | |
4be74634 | 1254 | { |
5bd51196 KW |
1255 | int ret; |
1256 | ||
b7d17f9f | 1257 | ret = blk_check_byte_request(blk, offset, count); |
e7f7d676 HR |
1258 | if (ret < 0) { |
1259 | return ret; | |
1260 | } | |
1261 | ||
c2066af0 | 1262 | blk_root_drained_begin(blk->root); |
b7d17f9f | 1263 | ret = blk_pread(blk, offset, buf, count); |
c2066af0 | 1264 | blk_root_drained_end(blk->root); |
5bd51196 | 1265 | return ret; |
4be74634 MA |
1266 | } |
1267 | ||
d004bd52 | 1268 | int blk_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
f5a5ca79 | 1269 | int bytes, BdrvRequestFlags flags) |
0df89e8e | 1270 | { |
f5a5ca79 | 1271 | return blk_prw(blk, offset, NULL, bytes, blk_write_entry, |
983a1600 | 1272 | flags | BDRV_REQ_ZERO_WRITE); |
0df89e8e KW |
1273 | } |
1274 | ||
720ff280 KW |
1275 | int blk_make_zero(BlockBackend *blk, BdrvRequestFlags flags) |
1276 | { | |
1277 | return bdrv_make_zero(blk->root, flags); | |
1278 | } | |
1279 | ||
33f2a757 SH |
1280 | static void blk_inc_in_flight(BlockBackend *blk) |
1281 | { | |
1282 | atomic_inc(&blk->in_flight); | |
1283 | } | |
1284 | ||
1285 | static void blk_dec_in_flight(BlockBackend *blk) | |
1286 | { | |
1287 | atomic_dec(&blk->in_flight); | |
1288 | aio_wait_kick(&blk->wait); | |
1289 | } | |
1290 | ||
e7f7d676 HR |
1291 | static void error_callback_bh(void *opaque) |
1292 | { | |
1293 | struct BlockBackendAIOCB *acb = opaque; | |
99723548 | 1294 | |
33f2a757 | 1295 | blk_dec_in_flight(acb->blk); |
e7f7d676 HR |
1296 | acb->common.cb(acb->common.opaque, acb->ret); |
1297 | qemu_aio_unref(acb); | |
1298 | } | |
1299 | ||
ca78ecfa PL |
1300 | BlockAIOCB *blk_abort_aio_request(BlockBackend *blk, |
1301 | BlockCompletionFunc *cb, | |
1302 | void *opaque, int ret) | |
e7f7d676 HR |
1303 | { |
1304 | struct BlockBackendAIOCB *acb; | |
e7f7d676 | 1305 | |
33f2a757 | 1306 | blk_inc_in_flight(blk); |
e7f7d676 | 1307 | acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque); |
4981bdec | 1308 | acb->blk = blk; |
e7f7d676 HR |
1309 | acb->ret = ret; |
1310 | ||
fffb6e12 | 1311 | aio_bh_schedule_oneshot(blk_get_aio_context(blk), error_callback_bh, acb); |
e7f7d676 HR |
1312 | return &acb->common; |
1313 | } | |
1314 | ||
57d6a428 KW |
1315 | typedef struct BlkAioEmAIOCB { |
1316 | BlockAIOCB common; | |
1317 | BlkRwCo rwco; | |
7fa84cd8 | 1318 | int bytes; |
57d6a428 | 1319 | bool has_returned; |
57d6a428 KW |
1320 | } BlkAioEmAIOCB; |
1321 | ||
1322 | static const AIOCBInfo blk_aio_em_aiocb_info = { | |
1323 | .aiocb_size = sizeof(BlkAioEmAIOCB), | |
1324 | }; | |
1325 | ||
1326 | static void blk_aio_complete(BlkAioEmAIOCB *acb) | |
1327 | { | |
57d6a428 | 1328 | if (acb->has_returned) { |
33f2a757 | 1329 | blk_dec_in_flight(acb->rwco.blk); |
57d6a428 KW |
1330 | acb->common.cb(acb->common.opaque, acb->rwco.ret); |
1331 | qemu_aio_unref(acb); | |
1332 | } | |
1333 | } | |
1334 | ||
1335 | static void blk_aio_complete_bh(void *opaque) | |
1336 | { | |
fffb6e12 | 1337 | BlkAioEmAIOCB *acb = opaque; |
fffb6e12 PB |
1338 | assert(acb->has_returned); |
1339 | blk_aio_complete(acb); | |
57d6a428 KW |
1340 | } |
1341 | ||
7fa84cd8 | 1342 | static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes, |
c060332c | 1343 | void *iobuf, CoroutineEntry co_entry, |
57d6a428 KW |
1344 | BdrvRequestFlags flags, |
1345 | BlockCompletionFunc *cb, void *opaque) | |
1346 | { | |
1347 | BlkAioEmAIOCB *acb; | |
1348 | Coroutine *co; | |
1349 | ||
33f2a757 | 1350 | blk_inc_in_flight(blk); |
57d6a428 KW |
1351 | acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque); |
1352 | acb->rwco = (BlkRwCo) { | |
1353 | .blk = blk, | |
1354 | .offset = offset, | |
c060332c | 1355 | .iobuf = iobuf, |
57d6a428 KW |
1356 | .flags = flags, |
1357 | .ret = NOT_DONE, | |
1358 | }; | |
7fa84cd8 | 1359 | acb->bytes = bytes; |
57d6a428 KW |
1360 | acb->has_returned = false; |
1361 | ||
0b8b8753 | 1362 | co = qemu_coroutine_create(co_entry, acb); |
e92f0e19 | 1363 | bdrv_coroutine_enter(blk_bs(blk), co); |
57d6a428 KW |
1364 | |
1365 | acb->has_returned = true; | |
1366 | if (acb->rwco.ret != NOT_DONE) { | |
fffb6e12 PB |
1367 | aio_bh_schedule_oneshot(blk_get_aio_context(blk), |
1368 | blk_aio_complete_bh, acb); | |
57d6a428 KW |
1369 | } |
1370 | ||
1371 | return &acb->common; | |
1372 | } | |
1373 | ||
1374 | static void blk_aio_read_entry(void *opaque) | |
1375 | { | |
1376 | BlkAioEmAIOCB *acb = opaque; | |
1377 | BlkRwCo *rwco = &acb->rwco; | |
c060332c | 1378 | QEMUIOVector *qiov = rwco->iobuf; |
57d6a428 | 1379 | |
c060332c | 1380 | assert(qiov->size == acb->bytes); |
7fa84cd8 | 1381 | rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes, |
c060332c | 1382 | qiov, rwco->flags); |
57d6a428 KW |
1383 | blk_aio_complete(acb); |
1384 | } | |
1385 | ||
1386 | static void blk_aio_write_entry(void *opaque) | |
1387 | { | |
1388 | BlkAioEmAIOCB *acb = opaque; | |
1389 | BlkRwCo *rwco = &acb->rwco; | |
c060332c | 1390 | QEMUIOVector *qiov = rwco->iobuf; |
57d6a428 | 1391 | |
c060332c | 1392 | assert(!qiov || qiov->size == acb->bytes); |
7fa84cd8 | 1393 | rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes, |
c060332c | 1394 | qiov, rwco->flags); |
57d6a428 KW |
1395 | blk_aio_complete(acb); |
1396 | } | |
1397 | ||
d004bd52 EB |
1398 | BlockAIOCB *blk_aio_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
1399 | int count, BdrvRequestFlags flags, | |
1400 | BlockCompletionFunc *cb, void *opaque) | |
4be74634 | 1401 | { |
983a1600 EB |
1402 | return blk_aio_prwv(blk, offset, count, NULL, blk_aio_write_entry, |
1403 | flags | BDRV_REQ_ZERO_WRITE, cb, opaque); | |
4be74634 MA |
1404 | } |
1405 | ||
1406 | int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count) | |
1407 | { | |
a55d3fba | 1408 | int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0); |
e7f7d676 HR |
1409 | if (ret < 0) { |
1410 | return ret; | |
1411 | } | |
a55d3fba | 1412 | return count; |
4be74634 MA |
1413 | } |
1414 | ||
8341f00d EB |
1415 | int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count, |
1416 | BdrvRequestFlags flags) | |
4be74634 | 1417 | { |
8341f00d EB |
1418 | int ret = blk_prw(blk, offset, (void *) buf, count, blk_write_entry, |
1419 | flags); | |
e7f7d676 HR |
1420 | if (ret < 0) { |
1421 | return ret; | |
1422 | } | |
a55d3fba | 1423 | return count; |
4be74634 MA |
1424 | } |
1425 | ||
1426 | int64_t blk_getlength(BlockBackend *blk) | |
1427 | { | |
c09ba36c HR |
1428 | if (!blk_is_available(blk)) { |
1429 | return -ENOMEDIUM; | |
1430 | } | |
1431 | ||
f21d96d0 | 1432 | return bdrv_getlength(blk_bs(blk)); |
4be74634 MA |
1433 | } |
1434 | ||
1435 | void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr) | |
1436 | { | |
f21d96d0 | 1437 | if (!blk_bs(blk)) { |
a46fc9c9 HR |
1438 | *nb_sectors_ptr = 0; |
1439 | } else { | |
f21d96d0 | 1440 | bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr); |
a46fc9c9 | 1441 | } |
4be74634 MA |
1442 | } |
1443 | ||
1ef01253 HR |
1444 | int64_t blk_nb_sectors(BlockBackend *blk) |
1445 | { | |
c09ba36c HR |
1446 | if (!blk_is_available(blk)) { |
1447 | return -ENOMEDIUM; | |
1448 | } | |
1449 | ||
f21d96d0 | 1450 | return bdrv_nb_sectors(blk_bs(blk)); |
1ef01253 HR |
1451 | } |
1452 | ||
60cb2fa7 EB |
1453 | BlockAIOCB *blk_aio_preadv(BlockBackend *blk, int64_t offset, |
1454 | QEMUIOVector *qiov, BdrvRequestFlags flags, | |
1455 | BlockCompletionFunc *cb, void *opaque) | |
1456 | { | |
1457 | return blk_aio_prwv(blk, offset, qiov->size, qiov, | |
1458 | blk_aio_read_entry, flags, cb, opaque); | |
1459 | } | |
1460 | ||
60cb2fa7 EB |
1461 | BlockAIOCB *blk_aio_pwritev(BlockBackend *blk, int64_t offset, |
1462 | QEMUIOVector *qiov, BdrvRequestFlags flags, | |
1463 | BlockCompletionFunc *cb, void *opaque) | |
1464 | { | |
1465 | return blk_aio_prwv(blk, offset, qiov->size, qiov, | |
1466 | blk_aio_write_entry, flags, cb, opaque); | |
1467 | } | |
1468 | ||
be07a889 KW |
1469 | static void blk_aio_flush_entry(void *opaque) |
1470 | { | |
1471 | BlkAioEmAIOCB *acb = opaque; | |
1472 | BlkRwCo *rwco = &acb->rwco; | |
1473 | ||
1474 | rwco->ret = blk_co_flush(rwco->blk); | |
1475 | blk_aio_complete(acb); | |
1476 | } | |
1477 | ||
4be74634 MA |
1478 | BlockAIOCB *blk_aio_flush(BlockBackend *blk, |
1479 | BlockCompletionFunc *cb, void *opaque) | |
1480 | { | |
be07a889 | 1481 | return blk_aio_prwv(blk, 0, 0, NULL, blk_aio_flush_entry, 0, cb, opaque); |
4be74634 MA |
1482 | } |
1483 | ||
8c2e3dd5 KW |
1484 | static void blk_aio_pdiscard_entry(void *opaque) |
1485 | { | |
1486 | BlkAioEmAIOCB *acb = opaque; | |
1487 | BlkRwCo *rwco = &acb->rwco; | |
1488 | ||
1489 | rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, acb->bytes); | |
1490 | blk_aio_complete(acb); | |
1491 | } | |
1492 | ||
1c6c4bb7 | 1493 | BlockAIOCB *blk_aio_pdiscard(BlockBackend *blk, |
f5a5ca79 | 1494 | int64_t offset, int bytes, |
1c6c4bb7 | 1495 | BlockCompletionFunc *cb, void *opaque) |
4be74634 | 1496 | { |
f5a5ca79 | 1497 | return blk_aio_prwv(blk, offset, bytes, NULL, blk_aio_pdiscard_entry, 0, |
8c2e3dd5 | 1498 | cb, opaque); |
4be74634 MA |
1499 | } |
1500 | ||
1501 | void blk_aio_cancel(BlockAIOCB *acb) | |
1502 | { | |
1503 | bdrv_aio_cancel(acb); | |
1504 | } | |
1505 | ||
1506 | void blk_aio_cancel_async(BlockAIOCB *acb) | |
1507 | { | |
1508 | bdrv_aio_cancel_async(acb); | |
1509 | } | |
1510 | ||
48af776a | 1511 | int blk_co_ioctl(BlockBackend *blk, unsigned long int req, void *buf) |
4be74634 | 1512 | { |
c09ba36c HR |
1513 | if (!blk_is_available(blk)) { |
1514 | return -ENOMEDIUM; | |
1515 | } | |
1516 | ||
48af776a KW |
1517 | return bdrv_co_ioctl(blk_bs(blk), req, buf); |
1518 | } | |
1519 | ||
1520 | static void blk_ioctl_entry(void *opaque) | |
1521 | { | |
1522 | BlkRwCo *rwco = opaque; | |
c060332c DS |
1523 | QEMUIOVector *qiov = rwco->iobuf; |
1524 | ||
48af776a | 1525 | rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset, |
c060332c | 1526 | qiov->iov[0].iov_base); |
48af776a KW |
1527 | } |
1528 | ||
1529 | int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf) | |
1530 | { | |
1531 | return blk_prw(blk, req, buf, 0, blk_ioctl_entry, 0); | |
1532 | } | |
1533 | ||
1534 | static void blk_aio_ioctl_entry(void *opaque) | |
1535 | { | |
1536 | BlkAioEmAIOCB *acb = opaque; | |
1537 | BlkRwCo *rwco = &acb->rwco; | |
1538 | ||
c060332c DS |
1539 | rwco->ret = blk_co_ioctl(rwco->blk, rwco->offset, rwco->iobuf); |
1540 | ||
48af776a | 1541 | blk_aio_complete(acb); |
4be74634 MA |
1542 | } |
1543 | ||
1544 | BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf, | |
1545 | BlockCompletionFunc *cb, void *opaque) | |
1546 | { | |
c060332c | 1547 | return blk_aio_prwv(blk, req, 0, buf, blk_aio_ioctl_entry, 0, cb, opaque); |
4be74634 MA |
1548 | } |
1549 | ||
f5a5ca79 | 1550 | int blk_co_pdiscard(BlockBackend *blk, int64_t offset, int bytes) |
2bb0dce7 | 1551 | { |
f5a5ca79 | 1552 | int ret = blk_check_byte_request(blk, offset, bytes); |
e7f7d676 HR |
1553 | if (ret < 0) { |
1554 | return ret; | |
1555 | } | |
1556 | ||
f5a5ca79 | 1557 | return bdrv_co_pdiscard(blk_bs(blk), offset, bytes); |
2bb0dce7 HR |
1558 | } |
1559 | ||
1560 | int blk_co_flush(BlockBackend *blk) | |
1561 | { | |
c09ba36c HR |
1562 | if (!blk_is_available(blk)) { |
1563 | return -ENOMEDIUM; | |
1564 | } | |
1565 | ||
f21d96d0 | 1566 | return bdrv_co_flush(blk_bs(blk)); |
2bb0dce7 HR |
1567 | } |
1568 | ||
be07a889 | 1569 | static void blk_flush_entry(void *opaque) |
4be74634 | 1570 | { |
be07a889 KW |
1571 | BlkRwCo *rwco = opaque; |
1572 | rwco->ret = blk_co_flush(rwco->blk); | |
1573 | } | |
c09ba36c | 1574 | |
be07a889 KW |
1575 | int blk_flush(BlockBackend *blk) |
1576 | { | |
1577 | return blk_prw(blk, 0, NULL, 0, blk_flush_entry, 0); | |
4be74634 MA |
1578 | } |
1579 | ||
97b0385a AY |
1580 | void blk_drain(BlockBackend *blk) |
1581 | { | |
33f2a757 SH |
1582 | BlockDriverState *bs = blk_bs(blk); |
1583 | ||
1584 | if (bs) { | |
1585 | bdrv_drained_begin(bs); | |
1586 | } | |
1587 | ||
1588 | /* We may have -ENOMEDIUM completions in flight */ | |
1589 | AIO_WAIT_WHILE(&blk->wait, | |
1590 | blk_get_aio_context(blk), | |
1591 | atomic_mb_read(&blk->in_flight) > 0); | |
1592 | ||
1593 | if (bs) { | |
1594 | bdrv_drained_end(bs); | |
a46fc9c9 | 1595 | } |
97b0385a AY |
1596 | } |
1597 | ||
4be74634 MA |
1598 | void blk_drain_all(void) |
1599 | { | |
33f2a757 SH |
1600 | BlockBackend *blk = NULL; |
1601 | ||
1602 | bdrv_drain_all_begin(); | |
1603 | ||
1604 | while ((blk = blk_all_next(blk)) != NULL) { | |
1605 | AioContext *ctx = blk_get_aio_context(blk); | |
1606 | ||
1607 | aio_context_acquire(ctx); | |
1608 | ||
1609 | /* We may have -ENOMEDIUM completions in flight */ | |
1610 | AIO_WAIT_WHILE(&blk->wait, ctx, | |
1611 | atomic_mb_read(&blk->in_flight) > 0); | |
1612 | ||
1613 | aio_context_release(ctx); | |
1614 | } | |
1615 | ||
1616 | bdrv_drain_all_end(); | |
4be74634 MA |
1617 | } |
1618 | ||
373340b2 HR |
1619 | void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error, |
1620 | BlockdevOnError on_write_error) | |
1621 | { | |
1622 | blk->on_read_error = on_read_error; | |
1623 | blk->on_write_error = on_write_error; | |
1624 | } | |
1625 | ||
4be74634 MA |
1626 | BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read) |
1627 | { | |
373340b2 | 1628 | return is_read ? blk->on_read_error : blk->on_write_error; |
4be74634 MA |
1629 | } |
1630 | ||
1631 | BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read, | |
1632 | int error) | |
1633 | { | |
373340b2 HR |
1634 | BlockdevOnError on_err = blk_get_on_error(blk, is_read); |
1635 | ||
1636 | switch (on_err) { | |
1637 | case BLOCKDEV_ON_ERROR_ENOSPC: | |
1638 | return (error == ENOSPC) ? | |
1639 | BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT; | |
1640 | case BLOCKDEV_ON_ERROR_STOP: | |
1641 | return BLOCK_ERROR_ACTION_STOP; | |
1642 | case BLOCKDEV_ON_ERROR_REPORT: | |
1643 | return BLOCK_ERROR_ACTION_REPORT; | |
1644 | case BLOCKDEV_ON_ERROR_IGNORE: | |
1645 | return BLOCK_ERROR_ACTION_IGNORE; | |
8c398252 | 1646 | case BLOCKDEV_ON_ERROR_AUTO: |
373340b2 HR |
1647 | default: |
1648 | abort(); | |
1649 | } | |
4be74634 MA |
1650 | } |
1651 | ||
373340b2 HR |
1652 | static void send_qmp_error_event(BlockBackend *blk, |
1653 | BlockErrorAction action, | |
1654 | bool is_read, int error) | |
1655 | { | |
1656 | IoOperationType optype; | |
bfe1a14c | 1657 | BlockDriverState *bs = blk_bs(blk); |
373340b2 HR |
1658 | |
1659 | optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE; | |
bfe1a14c KW |
1660 | qapi_event_send_block_io_error(blk_name(blk), !!bs, |
1661 | bs ? bdrv_get_node_name(bs) : NULL, optype, | |
2bf7e10f | 1662 | action, blk_iostatus_is_enabled(blk), |
373340b2 HR |
1663 | error == ENOSPC, strerror(error), |
1664 | &error_abort); | |
1665 | } | |
1666 | ||
1667 | /* This is done by device models because, while the block layer knows | |
1668 | * about the error, it does not know whether an operation comes from | |
1669 | * the device or the block layer (from a job, for example). | |
1670 | */ | |
4be74634 MA |
1671 | void blk_error_action(BlockBackend *blk, BlockErrorAction action, |
1672 | bool is_read, int error) | |
1673 | { | |
373340b2 HR |
1674 | assert(error >= 0); |
1675 | ||
1676 | if (action == BLOCK_ERROR_ACTION_STOP) { | |
1677 | /* First set the iostatus, so that "info block" returns an iostatus | |
1678 | * that matches the events raised so far (an additional error iostatus | |
1679 | * is fine, but not a lost one). | |
1680 | */ | |
1681 | blk_iostatus_set_err(blk, error); | |
1682 | ||
1683 | /* Then raise the request to stop the VM and the event. | |
1684 | * qemu_system_vmstop_request_prepare has two effects. First, | |
1685 | * it ensures that the STOP event always comes after the | |
1686 | * BLOCK_IO_ERROR event. Second, it ensures that even if management | |
1687 | * can observe the STOP event and do a "cont" before the STOP | |
1688 | * event is issued, the VM will not stop. In this case, vm_start() | |
1689 | * also ensures that the STOP/RESUME pair of events is emitted. | |
1690 | */ | |
1691 | qemu_system_vmstop_request_prepare(); | |
1692 | send_qmp_error_event(blk, action, is_read, error); | |
1693 | qemu_system_vmstop_request(RUN_STATE_IO_ERROR); | |
1694 | } else { | |
1695 | send_qmp_error_event(blk, action, is_read, error); | |
1696 | } | |
4be74634 MA |
1697 | } |
1698 | ||
1699 | int blk_is_read_only(BlockBackend *blk) | |
1700 | { | |
f21d96d0 KW |
1701 | BlockDriverState *bs = blk_bs(blk); |
1702 | ||
1703 | if (bs) { | |
1704 | return bdrv_is_read_only(bs); | |
061959e8 HR |
1705 | } else { |
1706 | return blk->root_state.read_only; | |
1707 | } | |
4be74634 MA |
1708 | } |
1709 | ||
1710 | int blk_is_sg(BlockBackend *blk) | |
1711 | { | |
f21d96d0 KW |
1712 | BlockDriverState *bs = blk_bs(blk); |
1713 | ||
1714 | if (!bs) { | |
a46fc9c9 HR |
1715 | return 0; |
1716 | } | |
1717 | ||
f21d96d0 | 1718 | return bdrv_is_sg(bs); |
4be74634 MA |
1719 | } |
1720 | ||
1721 | int blk_enable_write_cache(BlockBackend *blk) | |
1722 | { | |
bfd18d1e | 1723 | return blk->enable_write_cache; |
4be74634 MA |
1724 | } |
1725 | ||
1726 | void blk_set_enable_write_cache(BlockBackend *blk, bool wce) | |
1727 | { | |
bfd18d1e | 1728 | blk->enable_write_cache = wce; |
4be74634 MA |
1729 | } |
1730 | ||
2bb0dce7 HR |
1731 | void blk_invalidate_cache(BlockBackend *blk, Error **errp) |
1732 | { | |
f21d96d0 KW |
1733 | BlockDriverState *bs = blk_bs(blk); |
1734 | ||
1735 | if (!bs) { | |
c09ba36c HR |
1736 | error_setg(errp, "Device '%s' has no medium", blk->name); |
1737 | return; | |
1738 | } | |
1739 | ||
f21d96d0 | 1740 | bdrv_invalidate_cache(bs, errp); |
2bb0dce7 HR |
1741 | } |
1742 | ||
e031f750 | 1743 | bool blk_is_inserted(BlockBackend *blk) |
4be74634 | 1744 | { |
f21d96d0 KW |
1745 | BlockDriverState *bs = blk_bs(blk); |
1746 | ||
1747 | return bs && bdrv_is_inserted(bs); | |
db0284f8 HR |
1748 | } |
1749 | ||
1750 | bool blk_is_available(BlockBackend *blk) | |
1751 | { | |
1752 | return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk); | |
4be74634 MA |
1753 | } |
1754 | ||
1755 | void blk_lock_medium(BlockBackend *blk, bool locked) | |
1756 | { | |
f21d96d0 KW |
1757 | BlockDriverState *bs = blk_bs(blk); |
1758 | ||
1759 | if (bs) { | |
1760 | bdrv_lock_medium(bs, locked); | |
a46fc9c9 | 1761 | } |
4be74634 MA |
1762 | } |
1763 | ||
1764 | void blk_eject(BlockBackend *blk, bool eject_flag) | |
1765 | { | |
f21d96d0 | 1766 | BlockDriverState *bs = blk_bs(blk); |
2d76e724 KW |
1767 | char *id; |
1768 | ||
1769 | /* blk_eject is only called by qdevified devices */ | |
1770 | assert(!blk->legacy_dev); | |
f21d96d0 KW |
1771 | |
1772 | if (bs) { | |
1773 | bdrv_eject(bs, eject_flag); | |
a46fc9c9 | 1774 | } |
c47ee043 JS |
1775 | |
1776 | /* Whether or not we ejected on the backend, | |
1777 | * the frontend experienced a tray event. */ | |
1778 | id = blk_get_attached_dev_id(blk); | |
1779 | qapi_event_send_device_tray_moved(blk_name(blk), id, | |
1780 | eject_flag, &error_abort); | |
1781 | g_free(id); | |
4be74634 MA |
1782 | } |
1783 | ||
1784 | int blk_get_flags(BlockBackend *blk) | |
1785 | { | |
f21d96d0 KW |
1786 | BlockDriverState *bs = blk_bs(blk); |
1787 | ||
1788 | if (bs) { | |
1789 | return bdrv_get_flags(bs); | |
061959e8 HR |
1790 | } else { |
1791 | return blk->root_state.open_flags; | |
1792 | } | |
4be74634 MA |
1793 | } |
1794 | ||
5def6b80 EB |
1795 | /* Returns the maximum transfer length, in bytes; guaranteed nonzero */ |
1796 | uint32_t blk_get_max_transfer(BlockBackend *blk) | |
454057b7 | 1797 | { |
f21d96d0 | 1798 | BlockDriverState *bs = blk_bs(blk); |
5def6b80 | 1799 | uint32_t max = 0; |
f21d96d0 KW |
1800 | |
1801 | if (bs) { | |
5def6b80 | 1802 | max = bs->bl.max_transfer; |
a46fc9c9 | 1803 | } |
5def6b80 | 1804 | return MIN_NON_ZERO(max, INT_MAX); |
454057b7 PL |
1805 | } |
1806 | ||
648296e0 SH |
1807 | int blk_get_max_iov(BlockBackend *blk) |
1808 | { | |
f21d96d0 | 1809 | return blk->root->bs->bl.max_iov; |
648296e0 SH |
1810 | } |
1811 | ||
4be74634 MA |
1812 | void blk_set_guest_block_size(BlockBackend *blk, int align) |
1813 | { | |
68e9ec01 | 1814 | blk->guest_block_size = align; |
4be74634 MA |
1815 | } |
1816 | ||
f1c17521 PB |
1817 | void *blk_try_blockalign(BlockBackend *blk, size_t size) |
1818 | { | |
f21d96d0 | 1819 | return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size); |
f1c17521 PB |
1820 | } |
1821 | ||
4be74634 MA |
1822 | void *blk_blockalign(BlockBackend *blk, size_t size) |
1823 | { | |
f21d96d0 | 1824 | return qemu_blockalign(blk ? blk_bs(blk) : NULL, size); |
4be74634 MA |
1825 | } |
1826 | ||
1827 | bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp) | |
1828 | { | |
f21d96d0 KW |
1829 | BlockDriverState *bs = blk_bs(blk); |
1830 | ||
1831 | if (!bs) { | |
a46fc9c9 HR |
1832 | return false; |
1833 | } | |
1834 | ||
f21d96d0 | 1835 | return bdrv_op_is_blocked(bs, op, errp); |
4be74634 MA |
1836 | } |
1837 | ||
1838 | void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason) | |
1839 | { | |
f21d96d0 KW |
1840 | BlockDriverState *bs = blk_bs(blk); |
1841 | ||
1842 | if (bs) { | |
1843 | bdrv_op_unblock(bs, op, reason); | |
a46fc9c9 | 1844 | } |
4be74634 MA |
1845 | } |
1846 | ||
1847 | void blk_op_block_all(BlockBackend *blk, Error *reason) | |
1848 | { | |
f21d96d0 KW |
1849 | BlockDriverState *bs = blk_bs(blk); |
1850 | ||
1851 | if (bs) { | |
1852 | bdrv_op_block_all(bs, reason); | |
a46fc9c9 | 1853 | } |
4be74634 MA |
1854 | } |
1855 | ||
1856 | void blk_op_unblock_all(BlockBackend *blk, Error *reason) | |
1857 | { | |
f21d96d0 KW |
1858 | BlockDriverState *bs = blk_bs(blk); |
1859 | ||
1860 | if (bs) { | |
1861 | bdrv_op_unblock_all(bs, reason); | |
a46fc9c9 | 1862 | } |
4be74634 MA |
1863 | } |
1864 | ||
1865 | AioContext *blk_get_aio_context(BlockBackend *blk) | |
1866 | { | |
7803696d | 1867 | return bdrv_get_aio_context(blk_bs(blk)); |
4981bdec HR |
1868 | } |
1869 | ||
1870 | static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb) | |
1871 | { | |
1872 | BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb); | |
1873 | return blk_get_aio_context(blk_acb->blk); | |
4be74634 MA |
1874 | } |
1875 | ||
1876 | void blk_set_aio_context(BlockBackend *blk, AioContext *new_context) | |
1877 | { | |
f21d96d0 | 1878 | BlockDriverState *bs = blk_bs(blk); |
c61791fc | 1879 | ThrottleGroupMember *tgm = &blk->public.throttle_group_member; |
f21d96d0 KW |
1880 | |
1881 | if (bs) { | |
c61791fc | 1882 | if (tgm->throttle_state) { |
dc868fb0 | 1883 | bdrv_drained_begin(bs); |
c61791fc MP |
1884 | throttle_group_detach_aio_context(tgm); |
1885 | throttle_group_attach_aio_context(tgm, new_context); | |
dc868fb0 | 1886 | bdrv_drained_end(bs); |
7ca7f0f6 | 1887 | } |
f21d96d0 | 1888 | bdrv_set_aio_context(bs, new_context); |
a46fc9c9 | 1889 | } |
4be74634 MA |
1890 | } |
1891 | ||
2019ba0a HR |
1892 | void blk_add_aio_context_notifier(BlockBackend *blk, |
1893 | void (*attached_aio_context)(AioContext *new_context, void *opaque), | |
1894 | void (*detach_aio_context)(void *opaque), void *opaque) | |
1895 | { | |
d03654ea | 1896 | BlockBackendAioNotifier *notifier; |
f21d96d0 KW |
1897 | BlockDriverState *bs = blk_bs(blk); |
1898 | ||
d03654ea SH |
1899 | notifier = g_new(BlockBackendAioNotifier, 1); |
1900 | notifier->attached_aio_context = attached_aio_context; | |
1901 | notifier->detach_aio_context = detach_aio_context; | |
1902 | notifier->opaque = opaque; | |
1903 | QLIST_INSERT_HEAD(&blk->aio_notifiers, notifier, list); | |
1904 | ||
f21d96d0 KW |
1905 | if (bs) { |
1906 | bdrv_add_aio_context_notifier(bs, attached_aio_context, | |
a46fc9c9 HR |
1907 | detach_aio_context, opaque); |
1908 | } | |
2019ba0a HR |
1909 | } |
1910 | ||
1911 | void blk_remove_aio_context_notifier(BlockBackend *blk, | |
1912 | void (*attached_aio_context)(AioContext *, | |
1913 | void *), | |
1914 | void (*detach_aio_context)(void *), | |
1915 | void *opaque) | |
1916 | { | |
d03654ea | 1917 | BlockBackendAioNotifier *notifier; |
f21d96d0 KW |
1918 | BlockDriverState *bs = blk_bs(blk); |
1919 | ||
1920 | if (bs) { | |
1921 | bdrv_remove_aio_context_notifier(bs, attached_aio_context, | |
a46fc9c9 HR |
1922 | detach_aio_context, opaque); |
1923 | } | |
d03654ea SH |
1924 | |
1925 | QLIST_FOREACH(notifier, &blk->aio_notifiers, list) { | |
1926 | if (notifier->attached_aio_context == attached_aio_context && | |
1927 | notifier->detach_aio_context == detach_aio_context && | |
1928 | notifier->opaque == opaque) { | |
1929 | QLIST_REMOVE(notifier, list); | |
1930 | g_free(notifier); | |
1931 | return; | |
1932 | } | |
1933 | } | |
1934 | ||
1935 | abort(); | |
2019ba0a HR |
1936 | } |
1937 | ||
3301f6c6 HR |
1938 | void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify) |
1939 | { | |
1940 | notifier_list_add(&blk->remove_bs_notifiers, notify); | |
1941 | } | |
1942 | ||
1943 | void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify) | |
1944 | { | |
1945 | notifier_list_add(&blk->insert_bs_notifiers, notify); | |
1946 | } | |
1947 | ||
4be74634 MA |
1948 | void blk_io_plug(BlockBackend *blk) |
1949 | { | |
f21d96d0 KW |
1950 | BlockDriverState *bs = blk_bs(blk); |
1951 | ||
1952 | if (bs) { | |
1953 | bdrv_io_plug(bs); | |
a46fc9c9 | 1954 | } |
4be74634 MA |
1955 | } |
1956 | ||
1957 | void blk_io_unplug(BlockBackend *blk) | |
1958 | { | |
f21d96d0 KW |
1959 | BlockDriverState *bs = blk_bs(blk); |
1960 | ||
1961 | if (bs) { | |
1962 | bdrv_io_unplug(bs); | |
a46fc9c9 | 1963 | } |
4be74634 MA |
1964 | } |
1965 | ||
1966 | BlockAcctStats *blk_get_stats(BlockBackend *blk) | |
1967 | { | |
7f0e9da6 | 1968 | return &blk->stats; |
4be74634 MA |
1969 | } |
1970 | ||
1971 | void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk, | |
1972 | BlockCompletionFunc *cb, void *opaque) | |
1973 | { | |
1974 | return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque); | |
1975 | } | |
1ef01253 | 1976 | |
d004bd52 | 1977 | int coroutine_fn blk_co_pwrite_zeroes(BlockBackend *blk, int64_t offset, |
f5a5ca79 | 1978 | int bytes, BdrvRequestFlags flags) |
1ef01253 | 1979 | { |
f5a5ca79 | 1980 | return blk_co_pwritev(blk, offset, bytes, NULL, |
16aaf975 | 1981 | flags | BDRV_REQ_ZERO_WRITE); |
1ef01253 HR |
1982 | } |
1983 | ||
fe5c1355 PB |
1984 | int blk_pwrite_compressed(BlockBackend *blk, int64_t offset, const void *buf, |
1985 | int count) | |
1ef01253 | 1986 | { |
35fadca8 PB |
1987 | return blk_prw(blk, offset, (void *) buf, count, blk_write_entry, |
1988 | BDRV_REQ_WRITE_COMPRESSED); | |
1ef01253 HR |
1989 | } |
1990 | ||
3a691c50 HR |
1991 | int blk_truncate(BlockBackend *blk, int64_t offset, PreallocMode prealloc, |
1992 | Error **errp) | |
1ef01253 | 1993 | { |
c09ba36c | 1994 | if (!blk_is_available(blk)) { |
ed3d2ec9 | 1995 | error_setg(errp, "No medium inserted"); |
c09ba36c HR |
1996 | return -ENOMEDIUM; |
1997 | } | |
1998 | ||
3a691c50 | 1999 | return bdrv_truncate(blk->root, offset, prealloc, errp); |
1ef01253 HR |
2000 | } |
2001 | ||
8c2e3dd5 | 2002 | static void blk_pdiscard_entry(void *opaque) |
1ef01253 | 2003 | { |
8c2e3dd5 | 2004 | BlkRwCo *rwco = opaque; |
c060332c DS |
2005 | QEMUIOVector *qiov = rwco->iobuf; |
2006 | ||
2007 | rwco->ret = blk_co_pdiscard(rwco->blk, rwco->offset, qiov->size); | |
8c2e3dd5 | 2008 | } |
e7f7d676 | 2009 | |
f5a5ca79 | 2010 | int blk_pdiscard(BlockBackend *blk, int64_t offset, int bytes) |
8c2e3dd5 | 2011 | { |
f5a5ca79 | 2012 | return blk_prw(blk, offset, NULL, bytes, blk_pdiscard_entry, 0); |
1ef01253 HR |
2013 | } |
2014 | ||
2015 | int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf, | |
2016 | int64_t pos, int size) | |
2017 | { | |
bfd18d1e KW |
2018 | int ret; |
2019 | ||
c09ba36c HR |
2020 | if (!blk_is_available(blk)) { |
2021 | return -ENOMEDIUM; | |
2022 | } | |
2023 | ||
bfd18d1e KW |
2024 | ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size); |
2025 | if (ret < 0) { | |
2026 | return ret; | |
2027 | } | |
2028 | ||
2029 | if (ret == size && !blk->enable_write_cache) { | |
2030 | ret = bdrv_flush(blk_bs(blk)); | |
2031 | } | |
2032 | ||
2033 | return ret < 0 ? ret : size; | |
1ef01253 HR |
2034 | } |
2035 | ||
2036 | int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size) | |
2037 | { | |
c09ba36c HR |
2038 | if (!blk_is_available(blk)) { |
2039 | return -ENOMEDIUM; | |
2040 | } | |
2041 | ||
f21d96d0 | 2042 | return bdrv_load_vmstate(blk_bs(blk), buf, pos, size); |
1ef01253 | 2043 | } |
f0272c4d ET |
2044 | |
2045 | int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz) | |
2046 | { | |
c09ba36c HR |
2047 | if (!blk_is_available(blk)) { |
2048 | return -ENOMEDIUM; | |
2049 | } | |
2050 | ||
f21d96d0 | 2051 | return bdrv_probe_blocksizes(blk_bs(blk), bsz); |
f0272c4d ET |
2052 | } |
2053 | ||
2054 | int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo) | |
2055 | { | |
c09ba36c HR |
2056 | if (!blk_is_available(blk)) { |
2057 | return -ENOMEDIUM; | |
2058 | } | |
2059 | ||
f21d96d0 | 2060 | return bdrv_probe_geometry(blk_bs(blk), geo); |
f0272c4d | 2061 | } |
281d22d8 HR |
2062 | |
2063 | /* | |
2064 | * Updates the BlockBackendRootState object with data from the currently | |
2065 | * attached BlockDriverState. | |
2066 | */ | |
2067 | void blk_update_root_state(BlockBackend *blk) | |
2068 | { | |
f21d96d0 | 2069 | assert(blk->root); |
281d22d8 | 2070 | |
f21d96d0 KW |
2071 | blk->root_state.open_flags = blk->root->bs->open_flags; |
2072 | blk->root_state.read_only = blk->root->bs->read_only; | |
2073 | blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes; | |
281d22d8 HR |
2074 | } |
2075 | ||
38cb18f5 | 2076 | /* |
b85114f8 KW |
2077 | * Returns the detect-zeroes setting to be used for bdrv_open() of a |
2078 | * BlockDriverState which is supposed to inherit the root state. | |
38cb18f5 | 2079 | */ |
b85114f8 | 2080 | bool blk_get_detect_zeroes_from_root_state(BlockBackend *blk) |
38cb18f5 | 2081 | { |
b85114f8 | 2082 | return blk->root_state.detect_zeroes; |
38cb18f5 HR |
2083 | } |
2084 | ||
2085 | /* | |
2086 | * Returns the flags to be used for bdrv_open() of a BlockDriverState which is | |
2087 | * supposed to inherit the root state. | |
2088 | */ | |
2089 | int blk_get_open_flags_from_root_state(BlockBackend *blk) | |
2090 | { | |
2091 | int bs_flags; | |
2092 | ||
2093 | bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR; | |
2094 | bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR; | |
2095 | ||
2096 | return bs_flags; | |
2097 | } | |
2098 | ||
281d22d8 HR |
2099 | BlockBackendRootState *blk_get_root_state(BlockBackend *blk) |
2100 | { | |
2101 | return &blk->root_state; | |
2102 | } | |
1393f212 HR |
2103 | |
2104 | int blk_commit_all(void) | |
2105 | { | |
fe1a9cbc HR |
2106 | BlockBackend *blk = NULL; |
2107 | ||
2108 | while ((blk = blk_all_next(blk)) != NULL) { | |
2109 | AioContext *aio_context = blk_get_aio_context(blk); | |
2110 | ||
2111 | aio_context_acquire(aio_context); | |
f21d96d0 KW |
2112 | if (blk_is_inserted(blk) && blk->root->bs->backing) { |
2113 | int ret = bdrv_commit(blk->root->bs); | |
fe1a9cbc HR |
2114 | if (ret < 0) { |
2115 | aio_context_release(aio_context); | |
2116 | return ret; | |
2117 | } | |
2118 | } | |
2119 | aio_context_release(aio_context); | |
2120 | } | |
2121 | return 0; | |
2122 | } | |
2123 | ||
97148076 KW |
2124 | |
2125 | /* throttling disk I/O limits */ | |
2126 | void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg) | |
2127 | { | |
022cdc9f | 2128 | throttle_group_config(&blk->public.throttle_group_member, cfg); |
97148076 KW |
2129 | } |
2130 | ||
2131 | void blk_io_limits_disable(BlockBackend *blk) | |
2132 | { | |
48bf7ea8 AG |
2133 | BlockDriverState *bs = blk_bs(blk); |
2134 | ThrottleGroupMember *tgm = &blk->public.throttle_group_member; | |
2135 | assert(tgm->throttle_state); | |
2136 | if (bs) { | |
2137 | bdrv_drained_begin(bs); | |
2138 | } | |
2139 | throttle_group_unregister_tgm(tgm); | |
2140 | if (bs) { | |
2141 | bdrv_drained_end(bs); | |
2142 | } | |
97148076 KW |
2143 | } |
2144 | ||
2145 | /* should be called before blk_set_io_limits if a limit is set */ | |
2146 | void blk_io_limits_enable(BlockBackend *blk, const char *group) | |
2147 | { | |
022cdc9f | 2148 | assert(!blk->public.throttle_group_member.throttle_state); |
c61791fc MP |
2149 | throttle_group_register_tgm(&blk->public.throttle_group_member, |
2150 | group, blk_get_aio_context(blk)); | |
97148076 KW |
2151 | } |
2152 | ||
2153 | void blk_io_limits_update_group(BlockBackend *blk, const char *group) | |
2154 | { | |
2155 | /* this BB is not part of any group */ | |
022cdc9f | 2156 | if (!blk->public.throttle_group_member.throttle_state) { |
97148076 KW |
2157 | return; |
2158 | } | |
2159 | ||
2160 | /* this BB is a part of the same group than the one we want */ | |
022cdc9f MP |
2161 | if (!g_strcmp0(throttle_group_get_name(&blk->public.throttle_group_member), |
2162 | group)) { | |
97148076 KW |
2163 | return; |
2164 | } | |
2165 | ||
2166 | /* need to change the group this bs belong to */ | |
2167 | blk_io_limits_disable(blk); | |
2168 | blk_io_limits_enable(blk, group); | |
2169 | } | |
c2066af0 KW |
2170 | |
2171 | static void blk_root_drained_begin(BdrvChild *child) | |
2172 | { | |
2173 | BlockBackend *blk = child->opaque; | |
2174 | ||
f4d9cc88 JS |
2175 | if (++blk->quiesce_counter == 1) { |
2176 | if (blk->dev_ops && blk->dev_ops->drained_begin) { | |
2177 | blk->dev_ops->drained_begin(blk->dev_opaque); | |
2178 | } | |
2179 | } | |
2180 | ||
36fe1331 KW |
2181 | /* Note that blk->root may not be accessible here yet if we are just |
2182 | * attaching to a BlockDriverState that is drained. Use child instead. */ | |
2183 | ||
022cdc9f MP |
2184 | if (atomic_fetch_inc(&blk->public.throttle_group_member.io_limits_disabled) == 0) { |
2185 | throttle_group_restart_tgm(&blk->public.throttle_group_member); | |
c2066af0 KW |
2186 | } |
2187 | } | |
2188 | ||
2189 | static void blk_root_drained_end(BdrvChild *child) | |
2190 | { | |
2191 | BlockBackend *blk = child->opaque; | |
f4d9cc88 | 2192 | assert(blk->quiesce_counter); |
c2066af0 | 2193 | |
022cdc9f MP |
2194 | assert(blk->public.throttle_group_member.io_limits_disabled); |
2195 | atomic_dec(&blk->public.throttle_group_member.io_limits_disabled); | |
f4d9cc88 JS |
2196 | |
2197 | if (--blk->quiesce_counter == 0) { | |
2198 | if (blk->dev_ops && blk->dev_ops->drained_end) { | |
2199 | blk->dev_ops->drained_end(blk->dev_opaque); | |
2200 | } | |
2201 | } | |
c2066af0 | 2202 | } |
23d0ba93 FZ |
2203 | |
2204 | void blk_register_buf(BlockBackend *blk, void *host, size_t size) | |
2205 | { | |
2206 | bdrv_register_buf(blk_bs(blk), host, size); | |
2207 | } | |
2208 | ||
2209 | void blk_unregister_buf(BlockBackend *blk, void *host) | |
2210 | { | |
2211 | bdrv_unregister_buf(blk_bs(blk), host); | |
2212 | } | |
b5679fa4 FZ |
2213 | |
2214 | int coroutine_fn blk_co_copy_range(BlockBackend *blk_in, int64_t off_in, | |
2215 | BlockBackend *blk_out, int64_t off_out, | |
2216 | int bytes, BdrvRequestFlags flags) | |
2217 | { | |
2218 | int r; | |
2219 | r = blk_check_byte_request(blk_in, off_in, bytes); | |
2220 | if (r) { | |
2221 | return r; | |
2222 | } | |
2223 | r = blk_check_byte_request(blk_out, off_out, bytes); | |
2224 | if (r) { | |
2225 | return r; | |
2226 | } | |
2227 | return bdrv_co_copy_range(blk_in->root, off_in, | |
2228 | blk_out->root, off_out, | |
2229 | bytes, flags); | |
2230 | } |