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