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