]> git.proxmox.com Git - mirror_qemu.git/blame - block/block-backend.c
block: Make bdrv_drain() use bdrv_drained_begin/end()
[mirror_qemu.git] / block / block-backend.c
CommitLineData
26f54e9a
MA
1/*
2 * QEMU Block backends
3 *
60cb2fa7 4 * Copyright (C) 2014-2016 Red Hat, Inc.
26f54e9a
MA
5 *
6 * Authors:
7 * Markus Armbruster <armbru@redhat.com>,
8 *
9 * This work is licensed under the terms of the GNU LGPL, version 2.1
10 * or later. See the COPYING.LIB file in the top-level directory.
11 */
12
80c71a24 13#include "qemu/osdep.h"
26f54e9a
MA
14#include "sysemu/block-backend.h"
15#include "block/block_int.h"
373340b2 16#include "block/blockjob.h"
281d22d8 17#include "block/throttle-groups.h"
18e46a03 18#include "sysemu/blockdev.h"
373340b2 19#include "sysemu/sysemu.h"
a7f53e26 20#include "qapi-event.h"
f348b6d1 21#include "qemu/id.h"
a7f53e26
MA
22
23/* Number of coroutines to reserve per attached device model */
24#define COROUTINE_POOL_RESERVATION 64
26f54e9a 25
1bf1cbc9
KW
26#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
27
4981bdec
HR
28static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb);
29
26f54e9a
MA
30struct BlockBackend {
31 char *name;
32 int refcnt;
f21d96d0 33 BdrvChild *root;
26f8b3a8 34 DriveInfo *legacy_dinfo; /* null unless created by drive_new() */
2cf22d6a 35 QTAILQ_ENTRY(BlockBackend) link; /* for block_backends */
9492b0b9 36 QTAILQ_ENTRY(BlockBackend) monitor_link; /* for monitor_block_backends */
f2cd875d 37 BlockBackendPublic public;
a7f53e26
MA
38
39 void *dev; /* attached device model, if any */
40 /* TODO change to DeviceState when all users are qdevified */
41 const BlockDevOps *dev_ops;
42 void *dev_opaque;
68e9ec01
HR
43
44 /* the block size for which the guest device expects atomicity */
45 int guest_block_size;
7f0e9da6 46
281d22d8
HR
47 /* If the BDS tree is removed, some of its options are stored here (which
48 * can be used to restore those options in the new BDS on insert) */
49 BlockBackendRootState root_state;
50
bfd18d1e
KW
51 bool enable_write_cache;
52
7f0e9da6
HR
53 /* I/O stats (display with "info blockstats"). */
54 BlockAcctStats stats;
373340b2
HR
55
56 BlockdevOnError on_read_error, on_write_error;
57 bool iostatus_enabled;
58 BlockDeviceIoStatus iostatus;
3301f6c6 59
c10c9d96
KW
60 bool allow_write_beyond_eof;
61
3301f6c6 62 NotifierList remove_bs_notifiers, insert_bs_notifiers;
26f54e9a
MA
63};
64
e7f7d676
HR
65typedef struct BlockBackendAIOCB {
66 BlockAIOCB common;
67 QEMUBH *bh;
4981bdec 68 BlockBackend *blk;
e7f7d676
HR
69 int ret;
70} BlockBackendAIOCB;
71
72static const AIOCBInfo block_backend_aiocb_info = {
4981bdec 73 .get_aio_context = blk_aiocb_get_aio_context,
e7f7d676
HR
74 .aiocb_size = sizeof(BlockBackendAIOCB),
75};
76
8fb3c76c 77static void drive_info_del(DriveInfo *dinfo);
7c8eece4 78static BlockBackend *bdrv_first_blk(BlockDriverState *bs);
8fb3c76c 79
2cf22d6a
HR
80/* All BlockBackends */
81static QTAILQ_HEAD(, BlockBackend) block_backends =
82 QTAILQ_HEAD_INITIALIZER(block_backends);
83
9492b0b9
HR
84/* All BlockBackends referenced by the monitor and which are iterated through by
85 * blk_next() */
86static QTAILQ_HEAD(, BlockBackend) monitor_block_backends =
87 QTAILQ_HEAD_INITIALIZER(monitor_block_backends);
26f54e9a 88
f21d96d0
KW
89static void blk_root_inherit_options(int *child_flags, QDict *child_options,
90 int parent_flags, QDict *parent_options)
91{
92 /* We're not supposed to call this function for root nodes */
93 abort();
94}
c2066af0
KW
95static void blk_root_drained_begin(BdrvChild *child);
96static void blk_root_drained_end(BdrvChild *child);
f21d96d0 97
5c8cab48
KW
98static void blk_root_change_media(BdrvChild *child, bool load);
99static void blk_root_resize(BdrvChild *child);
100
4c265bf9
KW
101static const char *blk_root_get_name(BdrvChild *child)
102{
103 return blk_name(child->opaque);
104}
105
f21d96d0 106static const BdrvChildRole child_root = {
c2066af0
KW
107 .inherit_options = blk_root_inherit_options,
108
5c8cab48
KW
109 .change_media = blk_root_change_media,
110 .resize = blk_root_resize,
4c265bf9 111 .get_name = blk_root_get_name,
5c8cab48 112
c2066af0
KW
113 .drained_begin = blk_root_drained_begin,
114 .drained_end = blk_root_drained_end,
f21d96d0
KW
115};
116
26f54e9a 117/*
efaa7c4e 118 * Create a new BlockBackend with a reference count of one.
26f54e9a
MA
119 * Store an error through @errp on failure, unless it's null.
120 * Return the new BlockBackend on success, null on failure.
121 */
109525ad 122BlockBackend *blk_new(void)
26f54e9a
MA
123{
124 BlockBackend *blk;
125
26f54e9a 126 blk = g_new0(BlockBackend, 1);
26f54e9a 127 blk->refcnt = 1;
27ccdd52
KW
128 qemu_co_queue_init(&blk->public.throttled_reqs[0]);
129 qemu_co_queue_init(&blk->public.throttled_reqs[1]);
130
3301f6c6
HR
131 notifier_list_init(&blk->remove_bs_notifiers);
132 notifier_list_init(&blk->insert_bs_notifiers);
27ccdd52 133
2cf22d6a 134 QTAILQ_INSERT_TAIL(&block_backends, blk, link);
26f54e9a
MA
135 return blk;
136}
137
7e7d56d9 138/*
28eb9b12 139 * Creates a new BlockBackend, opens a new BlockDriverState, and connects both.
ca49a4fd
HR
140 *
141 * Just as with bdrv_open(), after having called this function the reference to
142 * @options belongs to the block layer (even on failure).
143 *
144 * TODO: Remove @filename and @flags; it should be possible to specify a whole
145 * BDS tree just by specifying the @options QDict (or @reference,
146 * alternatively). At the time of adding this function, this is not possible,
147 * though, so callers of this function have to be able to specify @filename and
148 * @flags.
149 */
efaa7c4e
HR
150BlockBackend *blk_new_open(const char *filename, const char *reference,
151 QDict *options, int flags, Error **errp)
ca49a4fd
HR
152{
153 BlockBackend *blk;
28eb9b12 154 BlockDriverState *bs;
ca49a4fd 155
109525ad 156 blk = blk_new();
5b363937
HR
157 bs = bdrv_open(filename, reference, options, flags, errp);
158 if (!bs) {
ca49a4fd
HR
159 blk_unref(blk);
160 return NULL;
161 }
162
72e775c7 163 blk_set_enable_write_cache(blk, true);
28eb9b12
HR
164 blk->root = bdrv_root_attach_child(bs, "root", &child_root);
165 blk->root->opaque = blk;
72e775c7 166
ca49a4fd
HR
167 return blk;
168}
169
26f54e9a
MA
170static void blk_delete(BlockBackend *blk)
171{
172 assert(!blk->refcnt);
e5e78550 173 assert(!blk->name);
a7f53e26 174 assert(!blk->dev);
f21d96d0 175 if (blk->root) {
13855c6b 176 blk_remove_bs(blk);
7e7d56d9 177 }
3301f6c6
HR
178 assert(QLIST_EMPTY(&blk->remove_bs_notifiers.notifiers));
179 assert(QLIST_EMPTY(&blk->insert_bs_notifiers.notifiers));
2cf22d6a 180 QTAILQ_REMOVE(&block_backends, blk, link);
18e46a03 181 drive_info_del(blk->legacy_dinfo);
979e9b03 182 block_acct_cleanup(&blk->stats);
26f54e9a
MA
183 g_free(blk);
184}
185
8fb3c76c
MA
186static void drive_info_del(DriveInfo *dinfo)
187{
188 if (!dinfo) {
189 return;
190 }
191 qemu_opts_del(dinfo->opts);
8fb3c76c
MA
192 g_free(dinfo->serial);
193 g_free(dinfo);
194}
195
f636ae85
AG
196int blk_get_refcnt(BlockBackend *blk)
197{
198 return blk ? blk->refcnt : 0;
199}
200
26f54e9a
MA
201/*
202 * Increment @blk's reference count.
203 * @blk must not be null.
204 */
205void blk_ref(BlockBackend *blk)
206{
207 blk->refcnt++;
208}
209
210/*
211 * Decrement @blk's reference count.
212 * If this drops it to zero, destroy @blk.
213 * For convenience, do nothing if @blk is null.
214 */
215void blk_unref(BlockBackend *blk)
216{
217 if (blk) {
218 assert(blk->refcnt > 0);
219 if (!--blk->refcnt) {
220 blk_delete(blk);
221 }
222 }
223}
224
2cf22d6a
HR
225/*
226 * Behaves similarly to blk_next() but iterates over all BlockBackends, even the
227 * ones which are hidden (i.e. are not referenced by the monitor).
228 */
229static BlockBackend *blk_all_next(BlockBackend *blk)
230{
231 return blk ? QTAILQ_NEXT(blk, link)
232 : QTAILQ_FIRST(&block_backends);
233}
234
d8da3cef
HR
235void blk_remove_all_bs(void)
236{
74d1b8fc 237 BlockBackend *blk = NULL;
d8da3cef 238
2cf22d6a 239 while ((blk = blk_all_next(blk)) != NULL) {
d8da3cef
HR
240 AioContext *ctx = blk_get_aio_context(blk);
241
242 aio_context_acquire(ctx);
f21d96d0 243 if (blk->root) {
d8da3cef
HR
244 blk_remove_bs(blk);
245 }
246 aio_context_release(ctx);
247 }
248}
249
26f54e9a 250/*
9492b0b9 251 * Return the monitor-owned BlockBackend after @blk.
26f54e9a
MA
252 * If @blk is null, return the first one.
253 * Else, return @blk's next sibling, which may be null.
254 *
255 * To iterate over all BlockBackends, do
256 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
257 * ...
258 * }
259 */
260BlockBackend *blk_next(BlockBackend *blk)
261{
9492b0b9
HR
262 return blk ? QTAILQ_NEXT(blk, monitor_link)
263 : QTAILQ_FIRST(&monitor_block_backends);
26f54e9a
MA
264}
265
7c8eece4
KW
266/* Iterates over all top-level BlockDriverStates, i.e. BDSs that are owned by
267 * the monitor or attached to a BlockBackend */
88be7b4b 268BlockDriverState *bdrv_next(BdrvNextIterator *it)
7c8eece4 269{
88be7b4b 270 BlockDriverState *bs;
981f4f57 271
7c8eece4
KW
272 /* First, return all root nodes of BlockBackends. In order to avoid
273 * returning a BDS twice when multiple BBs refer to it, we only return it
274 * if the BB is the first one in the parent list of the BDS. */
275 if (it->phase == BDRV_NEXT_BACKEND_ROOTS) {
276 do {
277 it->blk = blk_all_next(it->blk);
88be7b4b
KW
278 bs = it->blk ? blk_bs(it->blk) : NULL;
279 } while (it->blk && (bs == NULL || bdrv_first_blk(bs) != it->blk));
7c8eece4 280
88be7b4b
KW
281 if (bs) {
282 return bs;
7c8eece4
KW
283 }
284 it->phase = BDRV_NEXT_MONITOR_OWNED;
285 }
286
287 /* Then return the monitor-owned BDSes without a BB attached. Ignore all
288 * BDSes that are attached to a BlockBackend here; they have been handled
289 * by the above block already */
981f4f57 290 do {
7c8eece4 291 it->bs = bdrv_next_monitor_owned(it->bs);
88be7b4b
KW
292 bs = it->bs;
293 } while (bs && bdrv_has_blk(bs));
294
295 return bs;
296}
297
298BlockDriverState *bdrv_first(BdrvNextIterator *it)
299{
300 *it = (BdrvNextIterator) {
301 .phase = BDRV_NEXT_BACKEND_ROOTS,
302 };
981f4f57 303
88be7b4b 304 return bdrv_next(it);
981f4f57
HR
305}
306
e5e78550
HR
307/*
308 * Add a BlockBackend into the list of backends referenced by the monitor, with
309 * the given @name acting as the handle for the monitor.
310 * Strictly for use by blockdev.c.
311 *
312 * @name must not be null or empty.
313 *
314 * Returns true on success and false on failure. In the latter case, an Error
315 * object is returned through @errp.
316 */
317bool monitor_add_blk(BlockBackend *blk, const char *name, Error **errp)
318{
319 assert(!blk->name);
320 assert(name && name[0]);
321
322 if (!id_wellformed(name)) {
323 error_setg(errp, "Invalid device name");
324 return false;
325 }
326 if (blk_by_name(name)) {
327 error_setg(errp, "Device with id '%s' already exists", name);
328 return false;
329 }
330 if (bdrv_find_node(name)) {
331 error_setg(errp,
332 "Device name '%s' conflicts with an existing node name",
333 name);
334 return false;
335 }
336
337 blk->name = g_strdup(name);
338 QTAILQ_INSERT_TAIL(&monitor_block_backends, blk, monitor_link);
339 return true;
340}
341
342/*
343 * Remove a BlockBackend from the list of backends referenced by the monitor.
344 * Strictly for use by blockdev.c.
345 */
346void monitor_remove_blk(BlockBackend *blk)
347{
348 if (!blk->name) {
349 return;
350 }
351
352 QTAILQ_REMOVE(&monitor_block_backends, blk, monitor_link);
353 g_free(blk->name);
354 blk->name = NULL;
355}
356
26f54e9a 357/*
7e7d56d9 358 * Return @blk's name, a non-null string.
e5e78550 359 * Returns an empty string iff @blk is not referenced by the monitor.
26f54e9a
MA
360 */
361const char *blk_name(BlockBackend *blk)
362{
e5e78550 363 return blk->name ?: "";
26f54e9a
MA
364}
365
366/*
367 * Return the BlockBackend with name @name if it exists, else null.
368 * @name must not be null.
369 */
370BlockBackend *blk_by_name(const char *name)
371{
74d1b8fc 372 BlockBackend *blk = NULL;
26f54e9a
MA
373
374 assert(name);
74d1b8fc 375 while ((blk = blk_next(blk)) != NULL) {
26f54e9a
MA
376 if (!strcmp(name, blk->name)) {
377 return blk;
378 }
379 }
380 return NULL;
381}
7e7d56d9
MA
382
383/*
384 * Return the BlockDriverState attached to @blk if any, else null.
385 */
386BlockDriverState *blk_bs(BlockBackend *blk)
387{
f21d96d0 388 return blk->root ? blk->root->bs : NULL;
7e7d56d9
MA
389}
390
7c8eece4 391static BlockBackend *bdrv_first_blk(BlockDriverState *bs)
dde33812
KW
392{
393 BdrvChild *child;
394 QLIST_FOREACH(child, &bs->parents, next_parent) {
395 if (child->role == &child_root) {
7c8eece4 396 return child->opaque;
dde33812
KW
397 }
398 }
399
7c8eece4
KW
400 return NULL;
401}
402
403/*
404 * Returns true if @bs has an associated BlockBackend.
405 */
406bool bdrv_has_blk(BlockDriverState *bs)
407{
408 return bdrv_first_blk(bs) != NULL;
dde33812
KW
409}
410
18e46a03
MA
411/*
412 * Return @blk's DriveInfo if any, else null.
413 */
414DriveInfo *blk_legacy_dinfo(BlockBackend *blk)
415{
416 return blk->legacy_dinfo;
417}
418
419/*
420 * Set @blk's DriveInfo to @dinfo, and return it.
421 * @blk must not have a DriveInfo set already.
422 * No other BlockBackend may have the same DriveInfo set.
423 */
424DriveInfo *blk_set_legacy_dinfo(BlockBackend *blk, DriveInfo *dinfo)
425{
426 assert(!blk->legacy_dinfo);
427 return blk->legacy_dinfo = dinfo;
428}
429
430/*
431 * Return the BlockBackend with DriveInfo @dinfo.
432 * It must exist.
433 */
434BlockBackend *blk_by_legacy_dinfo(DriveInfo *dinfo)
435{
74d1b8fc 436 BlockBackend *blk = NULL;
18e46a03 437
74d1b8fc 438 while ((blk = blk_next(blk)) != NULL) {
18e46a03
MA
439 if (blk->legacy_dinfo == dinfo) {
440 return blk;
441 }
442 }
443 abort();
444}
445
f2cd875d
KW
446/*
447 * Returns a pointer to the publicly accessible fields of @blk.
448 */
449BlockBackendPublic *blk_get_public(BlockBackend *blk)
450{
451 return &blk->public;
452}
453
454/*
455 * Returns a BlockBackend given the associated @public fields.
456 */
457BlockBackend *blk_by_public(BlockBackendPublic *public)
458{
459 return container_of(public, BlockBackend, public);
460}
461
1c95f7e1
HR
462/*
463 * Disassociates the currently associated BlockDriverState from @blk.
464 */
465void blk_remove_bs(BlockBackend *blk)
466{
3301f6c6 467 notifier_list_notify(&blk->remove_bs_notifiers, blk);
27ccdd52 468 if (blk->public.throttle_state) {
7ca7f0f6 469 throttle_timers_detach_aio_context(&blk->public.throttle_timers);
a5614993 470 }
1c95f7e1 471
7ca7f0f6
KW
472 blk_update_root_state(blk);
473
f21d96d0
KW
474 bdrv_root_unref_child(blk->root);
475 blk->root = NULL;
1c95f7e1
HR
476}
477
0c3c36d6
HR
478/*
479 * Associates a new BlockDriverState with @blk.
480 */
481void blk_insert_bs(BlockBackend *blk, BlockDriverState *bs)
482{
0c3c36d6 483 bdrv_ref(bs);
f21d96d0 484 blk->root = bdrv_root_attach_child(bs, "root", &child_root);
22aa8b24 485 blk->root->opaque = blk;
3301f6c6
HR
486
487 notifier_list_notify(&blk->insert_bs_notifiers, blk);
7ca7f0f6
KW
488 if (blk->public.throttle_state) {
489 throttle_timers_attach_aio_context(
490 &blk->public.throttle_timers, bdrv_get_aio_context(bs));
491 }
0c3c36d6
HR
492}
493
a7f53e26
MA
494/*
495 * Attach device model @dev to @blk.
496 * Return 0 on success, -EBUSY when a device model is attached already.
497 */
4be74634 498int blk_attach_dev(BlockBackend *blk, void *dev)
a7f53e26 499/* TODO change to DeviceState *dev when all users are qdevified */
4be74634 500{
a7f53e26
MA
501 if (blk->dev) {
502 return -EBUSY;
503 }
84ebe375 504 blk_ref(blk);
a7f53e26 505 blk->dev = dev;
373340b2 506 blk_iostatus_reset(blk);
a7f53e26 507 return 0;
4be74634
MA
508}
509
a7f53e26
MA
510/*
511 * Attach device model @dev to @blk.
512 * @blk must not have a device model attached already.
513 * TODO qdevified devices don't use this, remove when devices are qdevified
514 */
4be74634
MA
515void blk_attach_dev_nofail(BlockBackend *blk, void *dev)
516{
a7f53e26
MA
517 if (blk_attach_dev(blk, dev) < 0) {
518 abort();
519 }
4be74634
MA
520}
521
a7f53e26
MA
522/*
523 * Detach device model @dev from @blk.
524 * @dev must be currently attached to @blk.
525 */
4be74634 526void blk_detach_dev(BlockBackend *blk, void *dev)
a7f53e26 527/* TODO change to DeviceState *dev when all users are qdevified */
4be74634 528{
a7f53e26
MA
529 assert(blk->dev == dev);
530 blk->dev = NULL;
531 blk->dev_ops = NULL;
532 blk->dev_opaque = NULL;
68e9ec01 533 blk->guest_block_size = 512;
84ebe375 534 blk_unref(blk);
4be74634
MA
535}
536
a7f53e26
MA
537/*
538 * Return the device model attached to @blk if any, else null.
539 */
4be74634 540void *blk_get_attached_dev(BlockBackend *blk)
a7f53e26
MA
541/* TODO change to return DeviceState * when all users are qdevified */
542{
543 return blk->dev;
544}
545
546/*
547 * Set @blk's device model callbacks to @ops.
548 * @opaque is the opaque argument to pass to the callbacks.
549 * This is for use by device models.
550 */
551void blk_set_dev_ops(BlockBackend *blk, const BlockDevOps *ops,
552 void *opaque)
553{
554 blk->dev_ops = ops;
555 blk->dev_opaque = opaque;
556}
557
558/*
559 * Notify @blk's attached device model of media change.
560 * If @load is true, notify of media load.
561 * Else, notify of media eject.
562 * Also send DEVICE_TRAY_MOVED events as appropriate.
563 */
564void blk_dev_change_media_cb(BlockBackend *blk, bool load)
565{
566 if (blk->dev_ops && blk->dev_ops->change_media_cb) {
f1f57066 567 bool tray_was_open, tray_is_open;
a7f53e26 568
f1f57066 569 tray_was_open = blk_dev_is_tray_open(blk);
a7f53e26 570 blk->dev_ops->change_media_cb(blk->dev_opaque, load);
f1f57066
HR
571 tray_is_open = blk_dev_is_tray_open(blk);
572
573 if (tray_was_open != tray_is_open) {
574 qapi_event_send_device_tray_moved(blk_name(blk), tray_is_open,
575 &error_abort);
a7f53e26
MA
576 }
577 }
578}
579
5c8cab48
KW
580static void blk_root_change_media(BdrvChild *child, bool load)
581{
582 blk_dev_change_media_cb(child->opaque, load);
583}
584
a7f53e26
MA
585/*
586 * Does @blk's attached device model have removable media?
587 * %true if no device model is attached.
588 */
589bool blk_dev_has_removable_media(BlockBackend *blk)
590{
591 return !blk->dev || (blk->dev_ops && blk->dev_ops->change_media_cb);
592}
593
8f3a73bc
HR
594/*
595 * Does @blk's attached device model have a tray?
596 */
597bool blk_dev_has_tray(BlockBackend *blk)
598{
599 return blk->dev_ops && blk->dev_ops->is_tray_open;
600}
601
a7f53e26
MA
602/*
603 * Notify @blk's attached device model of a media eject request.
604 * If @force is true, the medium is about to be yanked out forcefully.
605 */
606void blk_dev_eject_request(BlockBackend *blk, bool force)
4be74634 607{
a7f53e26
MA
608 if (blk->dev_ops && blk->dev_ops->eject_request_cb) {
609 blk->dev_ops->eject_request_cb(blk->dev_opaque, force);
610 }
4be74634
MA
611}
612
a7f53e26
MA
613/*
614 * Does @blk's attached device model have a tray, and is it open?
615 */
616bool blk_dev_is_tray_open(BlockBackend *blk)
4be74634 617{
8f3a73bc 618 if (blk_dev_has_tray(blk)) {
a7f53e26
MA
619 return blk->dev_ops->is_tray_open(blk->dev_opaque);
620 }
621 return false;
622}
623
624/*
625 * Does @blk's attached device model have the medium locked?
626 * %false if the device model has no such lock.
627 */
628bool blk_dev_is_medium_locked(BlockBackend *blk)
629{
630 if (blk->dev_ops && blk->dev_ops->is_medium_locked) {
631 return blk->dev_ops->is_medium_locked(blk->dev_opaque);
632 }
633 return false;
634}
635
636/*
637 * Notify @blk's attached device model of a backend size change.
638 */
5c8cab48 639static void blk_root_resize(BdrvChild *child)
a7f53e26 640{
5c8cab48
KW
641 BlockBackend *blk = child->opaque;
642
a7f53e26
MA
643 if (blk->dev_ops && blk->dev_ops->resize_cb) {
644 blk->dev_ops->resize_cb(blk->dev_opaque);
645 }
646}
647
648void blk_iostatus_enable(BlockBackend *blk)
649{
373340b2
HR
650 blk->iostatus_enabled = true;
651 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
652}
653
654/* The I/O status is only enabled if the drive explicitly
655 * enables it _and_ the VM is configured to stop on errors */
656bool blk_iostatus_is_enabled(const BlockBackend *blk)
657{
658 return (blk->iostatus_enabled &&
659 (blk->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
660 blk->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
661 blk->on_read_error == BLOCKDEV_ON_ERROR_STOP));
662}
663
664BlockDeviceIoStatus blk_iostatus(const BlockBackend *blk)
665{
666 return blk->iostatus;
667}
668
669void blk_iostatus_disable(BlockBackend *blk)
670{
671 blk->iostatus_enabled = false;
672}
673
674void blk_iostatus_reset(BlockBackend *blk)
675{
676 if (blk_iostatus_is_enabled(blk)) {
f21d96d0 677 BlockDriverState *bs = blk_bs(blk);
373340b2 678 blk->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
f21d96d0
KW
679 if (bs && bs->job) {
680 block_job_iostatus_reset(bs->job);
373340b2
HR
681 }
682 }
683}
684
685void blk_iostatus_set_err(BlockBackend *blk, int error)
686{
687 assert(blk_iostatus_is_enabled(blk));
688 if (blk->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
689 blk->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
690 BLOCK_DEVICE_IO_STATUS_FAILED;
691 }
4be74634
MA
692}
693
c10c9d96
KW
694void blk_set_allow_write_beyond_eof(BlockBackend *blk, bool allow)
695{
696 blk->allow_write_beyond_eof = allow;
697}
698
e7f7d676
HR
699static int blk_check_byte_request(BlockBackend *blk, int64_t offset,
700 size_t size)
701{
702 int64_t len;
703
704 if (size > INT_MAX) {
705 return -EIO;
706 }
707
c09ba36c 708 if (!blk_is_available(blk)) {
e7f7d676
HR
709 return -ENOMEDIUM;
710 }
711
e7f7d676
HR
712 if (offset < 0) {
713 return -EIO;
714 }
715
c10c9d96
KW
716 if (!blk->allow_write_beyond_eof) {
717 len = blk_getlength(blk);
718 if (len < 0) {
719 return len;
720 }
721
722 if (offset > len || len - offset < size) {
723 return -EIO;
724 }
e7f7d676
HR
725 }
726
727 return 0;
728}
729
730static int blk_check_request(BlockBackend *blk, int64_t sector_num,
731 int nb_sectors)
732{
733 if (sector_num < 0 || sector_num > INT64_MAX / BDRV_SECTOR_SIZE) {
734 return -EIO;
735 }
736
737 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
738 return -EIO;
739 }
740
741 return blk_check_byte_request(blk, sector_num * BDRV_SECTOR_SIZE,
742 nb_sectors * BDRV_SECTOR_SIZE);
743}
744
1bf1cbc9
KW
745static int coroutine_fn blk_co_preadv(BlockBackend *blk, int64_t offset,
746 unsigned int bytes, QEMUIOVector *qiov,
747 BdrvRequestFlags flags)
4be74634 748{
1bf1cbc9 749 int ret = blk_check_byte_request(blk, offset, bytes);
e7f7d676
HR
750 if (ret < 0) {
751 return ret;
752 }
753
441565b2
KW
754 /* throttling disk I/O */
755 if (blk->public.throttle_state) {
756 throttle_group_co_io_limits_intercept(blk, bytes, false);
757 }
758
cab3a356 759 return bdrv_co_preadv(blk_bs(blk), offset, bytes, qiov, flags);
1bf1cbc9
KW
760}
761
a8823a3b
KW
762static int coroutine_fn blk_co_pwritev(BlockBackend *blk, int64_t offset,
763 unsigned int bytes, QEMUIOVector *qiov,
764 BdrvRequestFlags flags)
765{
bfd18d1e
KW
766 int ret;
767
768 ret = blk_check_byte_request(blk, offset, bytes);
a8823a3b
KW
769 if (ret < 0) {
770 return ret;
771 }
772
441565b2
KW
773 /* throttling disk I/O */
774 if (blk->public.throttle_state) {
775 throttle_group_co_io_limits_intercept(blk, bytes, true);
776 }
777
bfd18d1e
KW
778 if (!blk->enable_write_cache) {
779 flags |= BDRV_REQ_FUA;
780 }
781
cab3a356 782 return bdrv_co_pwritev(blk_bs(blk), offset, bytes, qiov, flags);
a8823a3b
KW
783}
784
1bf1cbc9
KW
785typedef struct BlkRwCo {
786 BlockBackend *blk;
787 int64_t offset;
788 QEMUIOVector *qiov;
789 int ret;
790 BdrvRequestFlags flags;
791} BlkRwCo;
792
793static void blk_read_entry(void *opaque)
794{
795 BlkRwCo *rwco = opaque;
796
797 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, rwco->qiov->size,
798 rwco->qiov, rwco->flags);
799}
800
a8823a3b
KW
801static void blk_write_entry(void *opaque)
802{
803 BlkRwCo *rwco = opaque;
804
805 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, rwco->qiov->size,
806 rwco->qiov, rwco->flags);
807}
808
a55d3fba
KW
809static int blk_prw(BlockBackend *blk, int64_t offset, uint8_t *buf,
810 int64_t bytes, CoroutineEntry co_entry,
811 BdrvRequestFlags flags)
1bf1cbc9
KW
812{
813 AioContext *aio_context;
814 QEMUIOVector qiov;
815 struct iovec iov;
816 Coroutine *co;
817 BlkRwCo rwco;
818
1bf1cbc9
KW
819 iov = (struct iovec) {
820 .iov_base = buf,
a55d3fba 821 .iov_len = bytes,
1bf1cbc9
KW
822 };
823 qemu_iovec_init_external(&qiov, &iov, 1);
824
825 rwco = (BlkRwCo) {
826 .blk = blk,
a55d3fba 827 .offset = offset,
1bf1cbc9 828 .qiov = &qiov,
fc1453cd 829 .flags = flags,
1bf1cbc9
KW
830 .ret = NOT_DONE,
831 };
832
a8823a3b 833 co = qemu_coroutine_create(co_entry);
1bf1cbc9
KW
834 qemu_coroutine_enter(co, &rwco);
835
836 aio_context = blk_get_aio_context(blk);
837 while (rwco.ret == NOT_DONE) {
838 aio_poll(aio_context, true);
839 }
840
841 return rwco.ret;
4be74634
MA
842}
843
b7d17f9f
EB
844int blk_pread_unthrottled(BlockBackend *blk, int64_t offset, uint8_t *buf,
845 int count)
4be74634 846{
5bd51196
KW
847 int ret;
848
b7d17f9f 849 ret = blk_check_byte_request(blk, offset, count);
e7f7d676
HR
850 if (ret < 0) {
851 return ret;
852 }
853
c2066af0 854 blk_root_drained_begin(blk->root);
b7d17f9f 855 ret = blk_pread(blk, offset, buf, count);
c2066af0 856 blk_root_drained_end(blk->root);
5bd51196 857 return ret;
4be74634
MA
858}
859
983a1600
EB
860int blk_write_zeroes(BlockBackend *blk, int64_t offset,
861 int count, BdrvRequestFlags flags)
0df89e8e 862{
983a1600
EB
863 return blk_prw(blk, offset, NULL, count, blk_write_entry,
864 flags | BDRV_REQ_ZERO_WRITE);
0df89e8e
KW
865}
866
e7f7d676
HR
867static void error_callback_bh(void *opaque)
868{
869 struct BlockBackendAIOCB *acb = opaque;
870 qemu_bh_delete(acb->bh);
871 acb->common.cb(acb->common.opaque, acb->ret);
872 qemu_aio_unref(acb);
873}
874
ca78ecfa
PL
875BlockAIOCB *blk_abort_aio_request(BlockBackend *blk,
876 BlockCompletionFunc *cb,
877 void *opaque, int ret)
e7f7d676
HR
878{
879 struct BlockBackendAIOCB *acb;
880 QEMUBH *bh;
881
882 acb = blk_aio_get(&block_backend_aiocb_info, blk, cb, opaque);
4981bdec 883 acb->blk = blk;
e7f7d676
HR
884 acb->ret = ret;
885
886 bh = aio_bh_new(blk_get_aio_context(blk), error_callback_bh, acb);
887 acb->bh = bh;
888 qemu_bh_schedule(bh);
889
890 return &acb->common;
891}
892
57d6a428
KW
893typedef struct BlkAioEmAIOCB {
894 BlockAIOCB common;
895 BlkRwCo rwco;
7fa84cd8 896 int bytes;
57d6a428
KW
897 bool has_returned;
898 QEMUBH* bh;
899} BlkAioEmAIOCB;
900
901static const AIOCBInfo blk_aio_em_aiocb_info = {
902 .aiocb_size = sizeof(BlkAioEmAIOCB),
903};
904
905static void blk_aio_complete(BlkAioEmAIOCB *acb)
906{
907 if (acb->bh) {
908 assert(acb->has_returned);
909 qemu_bh_delete(acb->bh);
910 }
911 if (acb->has_returned) {
912 acb->common.cb(acb->common.opaque, acb->rwco.ret);
913 qemu_aio_unref(acb);
914 }
915}
916
917static void blk_aio_complete_bh(void *opaque)
918{
919 blk_aio_complete(opaque);
920}
921
7fa84cd8 922static BlockAIOCB *blk_aio_prwv(BlockBackend *blk, int64_t offset, int bytes,
57d6a428
KW
923 QEMUIOVector *qiov, CoroutineEntry co_entry,
924 BdrvRequestFlags flags,
925 BlockCompletionFunc *cb, void *opaque)
926{
927 BlkAioEmAIOCB *acb;
928 Coroutine *co;
929
930 acb = blk_aio_get(&blk_aio_em_aiocb_info, blk, cb, opaque);
931 acb->rwco = (BlkRwCo) {
932 .blk = blk,
933 .offset = offset,
934 .qiov = qiov,
935 .flags = flags,
936 .ret = NOT_DONE,
937 };
7fa84cd8 938 acb->bytes = bytes;
57d6a428
KW
939 acb->bh = NULL;
940 acb->has_returned = false;
941
942 co = qemu_coroutine_create(co_entry);
943 qemu_coroutine_enter(co, acb);
944
945 acb->has_returned = true;
946 if (acb->rwco.ret != NOT_DONE) {
947 acb->bh = aio_bh_new(blk_get_aio_context(blk), blk_aio_complete_bh, acb);
948 qemu_bh_schedule(acb->bh);
949 }
950
951 return &acb->common;
952}
953
954static void blk_aio_read_entry(void *opaque)
955{
956 BlkAioEmAIOCB *acb = opaque;
957 BlkRwCo *rwco = &acb->rwco;
958
7fa84cd8
KW
959 assert(rwco->qiov->size == acb->bytes);
960 rwco->ret = blk_co_preadv(rwco->blk, rwco->offset, acb->bytes,
57d6a428
KW
961 rwco->qiov, rwco->flags);
962 blk_aio_complete(acb);
963}
964
965static void blk_aio_write_entry(void *opaque)
966{
967 BlkAioEmAIOCB *acb = opaque;
968 BlkRwCo *rwco = &acb->rwco;
969
7fa84cd8
KW
970 assert(!rwco->qiov || rwco->qiov->size == acb->bytes);
971 rwco->ret = blk_co_pwritev(rwco->blk, rwco->offset, acb->bytes,
57d6a428
KW
972 rwco->qiov, rwco->flags);
973 blk_aio_complete(acb);
974}
975
983a1600
EB
976BlockAIOCB *blk_aio_write_zeroes(BlockBackend *blk, int64_t offset,
977 int count, BdrvRequestFlags flags,
4be74634
MA
978 BlockCompletionFunc *cb, void *opaque)
979{
983a1600
EB
980 return blk_aio_prwv(blk, offset, count, NULL, blk_aio_write_entry,
981 flags | BDRV_REQ_ZERO_WRITE, cb, opaque);
4be74634
MA
982}
983
984int blk_pread(BlockBackend *blk, int64_t offset, void *buf, int count)
985{
a55d3fba 986 int ret = blk_prw(blk, offset, buf, count, blk_read_entry, 0);
e7f7d676
HR
987 if (ret < 0) {
988 return ret;
989 }
a55d3fba 990 return count;
4be74634
MA
991}
992
8341f00d
EB
993int blk_pwrite(BlockBackend *blk, int64_t offset, const void *buf, int count,
994 BdrvRequestFlags flags)
4be74634 995{
8341f00d
EB
996 int ret = blk_prw(blk, offset, (void *) buf, count, blk_write_entry,
997 flags);
e7f7d676
HR
998 if (ret < 0) {
999 return ret;
1000 }
a55d3fba 1001 return count;
4be74634
MA
1002}
1003
1004int64_t blk_getlength(BlockBackend *blk)
1005{
c09ba36c
HR
1006 if (!blk_is_available(blk)) {
1007 return -ENOMEDIUM;
1008 }
1009
f21d96d0 1010 return bdrv_getlength(blk_bs(blk));
4be74634
MA
1011}
1012
1013void blk_get_geometry(BlockBackend *blk, uint64_t *nb_sectors_ptr)
1014{
f21d96d0 1015 if (!blk_bs(blk)) {
a46fc9c9
HR
1016 *nb_sectors_ptr = 0;
1017 } else {
f21d96d0 1018 bdrv_get_geometry(blk_bs(blk), nb_sectors_ptr);
a46fc9c9 1019 }
4be74634
MA
1020}
1021
1ef01253
HR
1022int64_t blk_nb_sectors(BlockBackend *blk)
1023{
c09ba36c
HR
1024 if (!blk_is_available(blk)) {
1025 return -ENOMEDIUM;
1026 }
1027
f21d96d0 1028 return bdrv_nb_sectors(blk_bs(blk));
1ef01253
HR
1029}
1030
60cb2fa7
EB
1031BlockAIOCB *blk_aio_preadv(BlockBackend *blk, int64_t offset,
1032 QEMUIOVector *qiov, BdrvRequestFlags flags,
1033 BlockCompletionFunc *cb, void *opaque)
1034{
1035 return blk_aio_prwv(blk, offset, qiov->size, qiov,
1036 blk_aio_read_entry, flags, cb, opaque);
1037}
1038
60cb2fa7
EB
1039BlockAIOCB *blk_aio_pwritev(BlockBackend *blk, int64_t offset,
1040 QEMUIOVector *qiov, BdrvRequestFlags flags,
1041 BlockCompletionFunc *cb, void *opaque)
1042{
1043 return blk_aio_prwv(blk, offset, qiov->size, qiov,
1044 blk_aio_write_entry, flags, cb, opaque);
1045}
1046
4be74634
MA
1047BlockAIOCB *blk_aio_flush(BlockBackend *blk,
1048 BlockCompletionFunc *cb, void *opaque)
1049{
c09ba36c 1050 if (!blk_is_available(blk)) {
ca78ecfa 1051 return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM);
c09ba36c
HR
1052 }
1053
f21d96d0 1054 return bdrv_aio_flush(blk_bs(blk), cb, opaque);
4be74634
MA
1055}
1056
1057BlockAIOCB *blk_aio_discard(BlockBackend *blk,
1058 int64_t sector_num, int nb_sectors,
1059 BlockCompletionFunc *cb, void *opaque)
1060{
e7f7d676
HR
1061 int ret = blk_check_request(blk, sector_num, nb_sectors);
1062 if (ret < 0) {
ca78ecfa 1063 return blk_abort_aio_request(blk, cb, opaque, ret);
e7f7d676
HR
1064 }
1065
f21d96d0 1066 return bdrv_aio_discard(blk_bs(blk), sector_num, nb_sectors, cb, opaque);
4be74634
MA
1067}
1068
1069void blk_aio_cancel(BlockAIOCB *acb)
1070{
1071 bdrv_aio_cancel(acb);
1072}
1073
1074void blk_aio_cancel_async(BlockAIOCB *acb)
1075{
1076 bdrv_aio_cancel_async(acb);
1077}
1078
4be74634
MA
1079int blk_ioctl(BlockBackend *blk, unsigned long int req, void *buf)
1080{
c09ba36c
HR
1081 if (!blk_is_available(blk)) {
1082 return -ENOMEDIUM;
1083 }
1084
f21d96d0 1085 return bdrv_ioctl(blk_bs(blk), req, buf);
4be74634
MA
1086}
1087
1088BlockAIOCB *blk_aio_ioctl(BlockBackend *blk, unsigned long int req, void *buf,
1089 BlockCompletionFunc *cb, void *opaque)
1090{
c09ba36c 1091 if (!blk_is_available(blk)) {
ca78ecfa 1092 return blk_abort_aio_request(blk, cb, opaque, -ENOMEDIUM);
c09ba36c
HR
1093 }
1094
f21d96d0 1095 return bdrv_aio_ioctl(blk_bs(blk), req, buf, cb, opaque);
4be74634
MA
1096}
1097
2bb0dce7
HR
1098int blk_co_discard(BlockBackend *blk, int64_t sector_num, int nb_sectors)
1099{
e7f7d676
HR
1100 int ret = blk_check_request(blk, sector_num, nb_sectors);
1101 if (ret < 0) {
1102 return ret;
1103 }
1104
f21d96d0 1105 return bdrv_co_discard(blk_bs(blk), sector_num, nb_sectors);
2bb0dce7
HR
1106}
1107
1108int blk_co_flush(BlockBackend *blk)
1109{
c09ba36c
HR
1110 if (!blk_is_available(blk)) {
1111 return -ENOMEDIUM;
1112 }
1113
f21d96d0 1114 return bdrv_co_flush(blk_bs(blk));
2bb0dce7
HR
1115}
1116
4be74634
MA
1117int blk_flush(BlockBackend *blk)
1118{
c09ba36c
HR
1119 if (!blk_is_available(blk)) {
1120 return -ENOMEDIUM;
1121 }
1122
f21d96d0 1123 return bdrv_flush(blk_bs(blk));
4be74634
MA
1124}
1125
97b0385a
AY
1126void blk_drain(BlockBackend *blk)
1127{
f21d96d0
KW
1128 if (blk_bs(blk)) {
1129 bdrv_drain(blk_bs(blk));
a46fc9c9 1130 }
97b0385a
AY
1131}
1132
4be74634
MA
1133void blk_drain_all(void)
1134{
1135 bdrv_drain_all();
1136}
1137
373340b2
HR
1138void blk_set_on_error(BlockBackend *blk, BlockdevOnError on_read_error,
1139 BlockdevOnError on_write_error)
1140{
1141 blk->on_read_error = on_read_error;
1142 blk->on_write_error = on_write_error;
1143}
1144
4be74634
MA
1145BlockdevOnError blk_get_on_error(BlockBackend *blk, bool is_read)
1146{
373340b2 1147 return is_read ? blk->on_read_error : blk->on_write_error;
4be74634
MA
1148}
1149
1150BlockErrorAction blk_get_error_action(BlockBackend *blk, bool is_read,
1151 int error)
1152{
373340b2
HR
1153 BlockdevOnError on_err = blk_get_on_error(blk, is_read);
1154
1155 switch (on_err) {
1156 case BLOCKDEV_ON_ERROR_ENOSPC:
1157 return (error == ENOSPC) ?
1158 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
1159 case BLOCKDEV_ON_ERROR_STOP:
1160 return BLOCK_ERROR_ACTION_STOP;
1161 case BLOCKDEV_ON_ERROR_REPORT:
1162 return BLOCK_ERROR_ACTION_REPORT;
1163 case BLOCKDEV_ON_ERROR_IGNORE:
1164 return BLOCK_ERROR_ACTION_IGNORE;
1165 default:
1166 abort();
1167 }
4be74634
MA
1168}
1169
373340b2
HR
1170static void send_qmp_error_event(BlockBackend *blk,
1171 BlockErrorAction action,
1172 bool is_read, int error)
1173{
1174 IoOperationType optype;
1175
1176 optype = is_read ? IO_OPERATION_TYPE_READ : IO_OPERATION_TYPE_WRITE;
1177 qapi_event_send_block_io_error(blk_name(blk), optype, action,
1178 blk_iostatus_is_enabled(blk),
1179 error == ENOSPC, strerror(error),
1180 &error_abort);
1181}
1182
1183/* This is done by device models because, while the block layer knows
1184 * about the error, it does not know whether an operation comes from
1185 * the device or the block layer (from a job, for example).
1186 */
4be74634
MA
1187void blk_error_action(BlockBackend *blk, BlockErrorAction action,
1188 bool is_read, int error)
1189{
373340b2
HR
1190 assert(error >= 0);
1191
1192 if (action == BLOCK_ERROR_ACTION_STOP) {
1193 /* First set the iostatus, so that "info block" returns an iostatus
1194 * that matches the events raised so far (an additional error iostatus
1195 * is fine, but not a lost one).
1196 */
1197 blk_iostatus_set_err(blk, error);
1198
1199 /* Then raise the request to stop the VM and the event.
1200 * qemu_system_vmstop_request_prepare has two effects. First,
1201 * it ensures that the STOP event always comes after the
1202 * BLOCK_IO_ERROR event. Second, it ensures that even if management
1203 * can observe the STOP event and do a "cont" before the STOP
1204 * event is issued, the VM will not stop. In this case, vm_start()
1205 * also ensures that the STOP/RESUME pair of events is emitted.
1206 */
1207 qemu_system_vmstop_request_prepare();
1208 send_qmp_error_event(blk, action, is_read, error);
1209 qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
1210 } else {
1211 send_qmp_error_event(blk, action, is_read, error);
1212 }
4be74634
MA
1213}
1214
1215int blk_is_read_only(BlockBackend *blk)
1216{
f21d96d0
KW
1217 BlockDriverState *bs = blk_bs(blk);
1218
1219 if (bs) {
1220 return bdrv_is_read_only(bs);
061959e8
HR
1221 } else {
1222 return blk->root_state.read_only;
1223 }
4be74634
MA
1224}
1225
1226int blk_is_sg(BlockBackend *blk)
1227{
f21d96d0
KW
1228 BlockDriverState *bs = blk_bs(blk);
1229
1230 if (!bs) {
a46fc9c9
HR
1231 return 0;
1232 }
1233
f21d96d0 1234 return bdrv_is_sg(bs);
4be74634
MA
1235}
1236
1237int blk_enable_write_cache(BlockBackend *blk)
1238{
bfd18d1e 1239 return blk->enable_write_cache;
4be74634
MA
1240}
1241
1242void blk_set_enable_write_cache(BlockBackend *blk, bool wce)
1243{
bfd18d1e 1244 blk->enable_write_cache = wce;
4be74634
MA
1245}
1246
2bb0dce7
HR
1247void blk_invalidate_cache(BlockBackend *blk, Error **errp)
1248{
f21d96d0
KW
1249 BlockDriverState *bs = blk_bs(blk);
1250
1251 if (!bs) {
c09ba36c
HR
1252 error_setg(errp, "Device '%s' has no medium", blk->name);
1253 return;
1254 }
1255
f21d96d0 1256 bdrv_invalidate_cache(bs, errp);
2bb0dce7
HR
1257}
1258
e031f750 1259bool blk_is_inserted(BlockBackend *blk)
4be74634 1260{
f21d96d0
KW
1261 BlockDriverState *bs = blk_bs(blk);
1262
1263 return bs && bdrv_is_inserted(bs);
db0284f8
HR
1264}
1265
1266bool blk_is_available(BlockBackend *blk)
1267{
1268 return blk_is_inserted(blk) && !blk_dev_is_tray_open(blk);
4be74634
MA
1269}
1270
1271void blk_lock_medium(BlockBackend *blk, bool locked)
1272{
f21d96d0
KW
1273 BlockDriverState *bs = blk_bs(blk);
1274
1275 if (bs) {
1276 bdrv_lock_medium(bs, locked);
a46fc9c9 1277 }
4be74634
MA
1278}
1279
1280void blk_eject(BlockBackend *blk, bool eject_flag)
1281{
f21d96d0
KW
1282 BlockDriverState *bs = blk_bs(blk);
1283
1284 if (bs) {
1285 bdrv_eject(bs, eject_flag);
a46fc9c9 1286 }
4be74634
MA
1287}
1288
1289int blk_get_flags(BlockBackend *blk)
1290{
f21d96d0
KW
1291 BlockDriverState *bs = blk_bs(blk);
1292
1293 if (bs) {
1294 return bdrv_get_flags(bs);
061959e8
HR
1295 } else {
1296 return blk->root_state.open_flags;
1297 }
4be74634
MA
1298}
1299
454057b7
PL
1300int blk_get_max_transfer_length(BlockBackend *blk)
1301{
f21d96d0
KW
1302 BlockDriverState *bs = blk_bs(blk);
1303
1304 if (bs) {
1305 return bs->bl.max_transfer_length;
a46fc9c9
HR
1306 } else {
1307 return 0;
1308 }
454057b7
PL
1309}
1310
648296e0
SH
1311int blk_get_max_iov(BlockBackend *blk)
1312{
f21d96d0 1313 return blk->root->bs->bl.max_iov;
648296e0
SH
1314}
1315
4be74634
MA
1316void blk_set_guest_block_size(BlockBackend *blk, int align)
1317{
68e9ec01 1318 blk->guest_block_size = align;
4be74634
MA
1319}
1320
f1c17521
PB
1321void *blk_try_blockalign(BlockBackend *blk, size_t size)
1322{
f21d96d0 1323 return qemu_try_blockalign(blk ? blk_bs(blk) : NULL, size);
f1c17521
PB
1324}
1325
4be74634
MA
1326void *blk_blockalign(BlockBackend *blk, size_t size)
1327{
f21d96d0 1328 return qemu_blockalign(blk ? blk_bs(blk) : NULL, size);
4be74634
MA
1329}
1330
1331bool blk_op_is_blocked(BlockBackend *blk, BlockOpType op, Error **errp)
1332{
f21d96d0
KW
1333 BlockDriverState *bs = blk_bs(blk);
1334
1335 if (!bs) {
a46fc9c9
HR
1336 return false;
1337 }
1338
f21d96d0 1339 return bdrv_op_is_blocked(bs, op, errp);
4be74634
MA
1340}
1341
1342void blk_op_unblock(BlockBackend *blk, BlockOpType op, Error *reason)
1343{
f21d96d0
KW
1344 BlockDriverState *bs = blk_bs(blk);
1345
1346 if (bs) {
1347 bdrv_op_unblock(bs, op, reason);
a46fc9c9 1348 }
4be74634
MA
1349}
1350
1351void blk_op_block_all(BlockBackend *blk, Error *reason)
1352{
f21d96d0
KW
1353 BlockDriverState *bs = blk_bs(blk);
1354
1355 if (bs) {
1356 bdrv_op_block_all(bs, reason);
a46fc9c9 1357 }
4be74634
MA
1358}
1359
1360void blk_op_unblock_all(BlockBackend *blk, Error *reason)
1361{
f21d96d0
KW
1362 BlockDriverState *bs = blk_bs(blk);
1363
1364 if (bs) {
1365 bdrv_op_unblock_all(bs, reason);
a46fc9c9 1366 }
4be74634
MA
1367}
1368
1369AioContext *blk_get_aio_context(BlockBackend *blk)
1370{
f21d96d0
KW
1371 BlockDriverState *bs = blk_bs(blk);
1372
1373 if (bs) {
1374 return bdrv_get_aio_context(bs);
4981bdec
HR
1375 } else {
1376 return qemu_get_aio_context();
1377 }
1378}
1379
1380static AioContext *blk_aiocb_get_aio_context(BlockAIOCB *acb)
1381{
1382 BlockBackendAIOCB *blk_acb = DO_UPCAST(BlockBackendAIOCB, common, acb);
1383 return blk_get_aio_context(blk_acb->blk);
4be74634
MA
1384}
1385
1386void blk_set_aio_context(BlockBackend *blk, AioContext *new_context)
1387{
f21d96d0
KW
1388 BlockDriverState *bs = blk_bs(blk);
1389
1390 if (bs) {
7ca7f0f6
KW
1391 if (blk->public.throttle_state) {
1392 throttle_timers_detach_aio_context(&blk->public.throttle_timers);
1393 }
f21d96d0 1394 bdrv_set_aio_context(bs, new_context);
7ca7f0f6
KW
1395 if (blk->public.throttle_state) {
1396 throttle_timers_attach_aio_context(&blk->public.throttle_timers,
1397 new_context);
1398 }
a46fc9c9 1399 }
4be74634
MA
1400}
1401
2019ba0a
HR
1402void blk_add_aio_context_notifier(BlockBackend *blk,
1403 void (*attached_aio_context)(AioContext *new_context, void *opaque),
1404 void (*detach_aio_context)(void *opaque), void *opaque)
1405{
f21d96d0
KW
1406 BlockDriverState *bs = blk_bs(blk);
1407
1408 if (bs) {
1409 bdrv_add_aio_context_notifier(bs, attached_aio_context,
a46fc9c9
HR
1410 detach_aio_context, opaque);
1411 }
2019ba0a
HR
1412}
1413
1414void blk_remove_aio_context_notifier(BlockBackend *blk,
1415 void (*attached_aio_context)(AioContext *,
1416 void *),
1417 void (*detach_aio_context)(void *),
1418 void *opaque)
1419{
f21d96d0
KW
1420 BlockDriverState *bs = blk_bs(blk);
1421
1422 if (bs) {
1423 bdrv_remove_aio_context_notifier(bs, attached_aio_context,
a46fc9c9
HR
1424 detach_aio_context, opaque);
1425 }
2019ba0a
HR
1426}
1427
3301f6c6
HR
1428void blk_add_remove_bs_notifier(BlockBackend *blk, Notifier *notify)
1429{
1430 notifier_list_add(&blk->remove_bs_notifiers, notify);
1431}
1432
1433void blk_add_insert_bs_notifier(BlockBackend *blk, Notifier *notify)
1434{
1435 notifier_list_add(&blk->insert_bs_notifiers, notify);
1436}
1437
4be74634
MA
1438void blk_io_plug(BlockBackend *blk)
1439{
f21d96d0
KW
1440 BlockDriverState *bs = blk_bs(blk);
1441
1442 if (bs) {
1443 bdrv_io_plug(bs);
a46fc9c9 1444 }
4be74634
MA
1445}
1446
1447void blk_io_unplug(BlockBackend *blk)
1448{
f21d96d0
KW
1449 BlockDriverState *bs = blk_bs(blk);
1450
1451 if (bs) {
1452 bdrv_io_unplug(bs);
a46fc9c9 1453 }
4be74634
MA
1454}
1455
1456BlockAcctStats *blk_get_stats(BlockBackend *blk)
1457{
7f0e9da6 1458 return &blk->stats;
4be74634
MA
1459}
1460
1461void *blk_aio_get(const AIOCBInfo *aiocb_info, BlockBackend *blk,
1462 BlockCompletionFunc *cb, void *opaque)
1463{
1464 return qemu_aio_get(aiocb_info, blk_bs(blk), cb, opaque);
1465}
1ef01253 1466
983a1600
EB
1467int coroutine_fn blk_co_write_zeroes(BlockBackend *blk, int64_t offset,
1468 int count, BdrvRequestFlags flags)
1ef01253 1469{
983a1600 1470 return blk_co_pwritev(blk, offset, count, NULL,
16aaf975 1471 flags | BDRV_REQ_ZERO_WRITE);
1ef01253
HR
1472}
1473
1474int blk_write_compressed(BlockBackend *blk, int64_t sector_num,
1475 const uint8_t *buf, int nb_sectors)
1476{
e7f7d676
HR
1477 int ret = blk_check_request(blk, sector_num, nb_sectors);
1478 if (ret < 0) {
1479 return ret;
1480 }
1481
f21d96d0 1482 return bdrv_write_compressed(blk_bs(blk), sector_num, buf, nb_sectors);
1ef01253
HR
1483}
1484
1485int blk_truncate(BlockBackend *blk, int64_t offset)
1486{
c09ba36c
HR
1487 if (!blk_is_available(blk)) {
1488 return -ENOMEDIUM;
1489 }
1490
f21d96d0 1491 return bdrv_truncate(blk_bs(blk), offset);
1ef01253
HR
1492}
1493
1494int blk_discard(BlockBackend *blk, int64_t sector_num, int nb_sectors)
1495{
e7f7d676
HR
1496 int ret = blk_check_request(blk, sector_num, nb_sectors);
1497 if (ret < 0) {
1498 return ret;
1499 }
1500
f21d96d0 1501 return bdrv_discard(blk_bs(blk), sector_num, nb_sectors);
1ef01253
HR
1502}
1503
1504int blk_save_vmstate(BlockBackend *blk, const uint8_t *buf,
1505 int64_t pos, int size)
1506{
bfd18d1e
KW
1507 int ret;
1508
c09ba36c
HR
1509 if (!blk_is_available(blk)) {
1510 return -ENOMEDIUM;
1511 }
1512
bfd18d1e
KW
1513 ret = bdrv_save_vmstate(blk_bs(blk), buf, pos, size);
1514 if (ret < 0) {
1515 return ret;
1516 }
1517
1518 if (ret == size && !blk->enable_write_cache) {
1519 ret = bdrv_flush(blk_bs(blk));
1520 }
1521
1522 return ret < 0 ? ret : size;
1ef01253
HR
1523}
1524
1525int blk_load_vmstate(BlockBackend *blk, uint8_t *buf, int64_t pos, int size)
1526{
c09ba36c
HR
1527 if (!blk_is_available(blk)) {
1528 return -ENOMEDIUM;
1529 }
1530
f21d96d0 1531 return bdrv_load_vmstate(blk_bs(blk), buf, pos, size);
1ef01253 1532}
f0272c4d
ET
1533
1534int blk_probe_blocksizes(BlockBackend *blk, BlockSizes *bsz)
1535{
c09ba36c
HR
1536 if (!blk_is_available(blk)) {
1537 return -ENOMEDIUM;
1538 }
1539
f21d96d0 1540 return bdrv_probe_blocksizes(blk_bs(blk), bsz);
f0272c4d
ET
1541}
1542
1543int blk_probe_geometry(BlockBackend *blk, HDGeometry *geo)
1544{
c09ba36c
HR
1545 if (!blk_is_available(blk)) {
1546 return -ENOMEDIUM;
1547 }
1548
f21d96d0 1549 return bdrv_probe_geometry(blk_bs(blk), geo);
f0272c4d 1550}
281d22d8
HR
1551
1552/*
1553 * Updates the BlockBackendRootState object with data from the currently
1554 * attached BlockDriverState.
1555 */
1556void blk_update_root_state(BlockBackend *blk)
1557{
f21d96d0 1558 assert(blk->root);
281d22d8 1559
f21d96d0
KW
1560 blk->root_state.open_flags = blk->root->bs->open_flags;
1561 blk->root_state.read_only = blk->root->bs->read_only;
1562 blk->root_state.detect_zeroes = blk->root->bs->detect_zeroes;
281d22d8
HR
1563}
1564
38cb18f5
HR
1565/*
1566 * Applies the information in the root state to the given BlockDriverState. This
1567 * does not include the flags which have to be specified for bdrv_open(), use
1568 * blk_get_open_flags_from_root_state() to inquire them.
1569 */
1570void blk_apply_root_state(BlockBackend *blk, BlockDriverState *bs)
1571{
1572 bs->detect_zeroes = blk->root_state.detect_zeroes;
38cb18f5
HR
1573}
1574
1575/*
1576 * Returns the flags to be used for bdrv_open() of a BlockDriverState which is
1577 * supposed to inherit the root state.
1578 */
1579int blk_get_open_flags_from_root_state(BlockBackend *blk)
1580{
1581 int bs_flags;
1582
1583 bs_flags = blk->root_state.read_only ? 0 : BDRV_O_RDWR;
1584 bs_flags |= blk->root_state.open_flags & ~BDRV_O_RDWR;
1585
1586 return bs_flags;
1587}
1588
281d22d8
HR
1589BlockBackendRootState *blk_get_root_state(BlockBackend *blk)
1590{
1591 return &blk->root_state;
1592}
1393f212
HR
1593
1594int blk_commit_all(void)
1595{
fe1a9cbc
HR
1596 BlockBackend *blk = NULL;
1597
1598 while ((blk = blk_all_next(blk)) != NULL) {
1599 AioContext *aio_context = blk_get_aio_context(blk);
1600
1601 aio_context_acquire(aio_context);
f21d96d0
KW
1602 if (blk_is_inserted(blk) && blk->root->bs->backing) {
1603 int ret = bdrv_commit(blk->root->bs);
fe1a9cbc
HR
1604 if (ret < 0) {
1605 aio_context_release(aio_context);
1606 return ret;
1607 }
1608 }
1609 aio_context_release(aio_context);
1610 }
1611 return 0;
1612}
1613
1614int blk_flush_all(void)
1615{
1616 BlockBackend *blk = NULL;
1617 int result = 0;
1618
1619 while ((blk = blk_all_next(blk)) != NULL) {
1620 AioContext *aio_context = blk_get_aio_context(blk);
1621 int ret;
1622
1623 aio_context_acquire(aio_context);
1624 if (blk_is_inserted(blk)) {
1625 ret = blk_flush(blk);
1626 if (ret < 0 && !result) {
1627 result = ret;
1628 }
1629 }
1630 aio_context_release(aio_context);
1631 }
1632
1633 return result;
1393f212 1634}
97148076
KW
1635
1636
1637/* throttling disk I/O limits */
1638void blk_set_io_limits(BlockBackend *blk, ThrottleConfig *cfg)
1639{
1640 throttle_group_config(blk, cfg);
1641}
1642
1643void blk_io_limits_disable(BlockBackend *blk)
1644{
1645 assert(blk->public.throttle_state);
c2066af0 1646 bdrv_drained_begin(blk_bs(blk));
97148076 1647 throttle_group_unregister_blk(blk);
c2066af0 1648 bdrv_drained_end(blk_bs(blk));
97148076
KW
1649}
1650
1651/* should be called before blk_set_io_limits if a limit is set */
1652void blk_io_limits_enable(BlockBackend *blk, const char *group)
1653{
1654 assert(!blk->public.throttle_state);
1655 throttle_group_register_blk(blk, group);
1656}
1657
1658void blk_io_limits_update_group(BlockBackend *blk, const char *group)
1659{
1660 /* this BB is not part of any group */
1661 if (!blk->public.throttle_state) {
1662 return;
1663 }
1664
1665 /* this BB is a part of the same group than the one we want */
1666 if (!g_strcmp0(throttle_group_get_name(blk), group)) {
1667 return;
1668 }
1669
1670 /* need to change the group this bs belong to */
1671 blk_io_limits_disable(blk);
1672 blk_io_limits_enable(blk, group);
1673}
c2066af0
KW
1674
1675static void blk_root_drained_begin(BdrvChild *child)
1676{
1677 BlockBackend *blk = child->opaque;
1678
1679 if (blk->public.io_limits_disabled++ == 0) {
1680 throttle_group_restart_blk(blk);
1681 }
1682}
1683
1684static void blk_root_drained_end(BdrvChild *child)
1685{
1686 BlockBackend *blk = child->opaque;
1687
1688 assert(blk->public.io_limits_disabled);
1689 --blk->public.io_limits_disabled;
1690}