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