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