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