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