4 * Copyright (C) 2014 Red Hat, Inc.
7 * Markus Armbruster <armbru@redhat.com>,
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.
13 #include "sysemu/block-backend.h"
14 #include "block/block_int.h"
15 #include "block/blockjob.h"
16 #include "block/throttle-groups.h"
17 #include "sysemu/blockdev.h"
18 #include "sysemu/sysemu.h"
19 #include "qapi-event.h"
21 /* Number of coroutines to reserve per attached device model */
22 #define COROUTINE_POOL_RESERVATION 64
24 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
);
30 DriveInfo
*legacy_dinfo
; /* null unless created by drive_new() */
31 QTAILQ_ENTRY(BlockBackend
) link
; /* for blk_backends */
33 void *dev
; /* attached device model, if any */
34 /* TODO change to DeviceState when all users are qdevified */
35 const BlockDevOps
*dev_ops
;
38 /* the block size for which the guest device expects atomicity */
41 /* If the BDS tree is removed, some of its options are stored here (which
42 * can be used to restore those options in the new BDS on insert) */
43 BlockBackendRootState root_state
;
45 /* I/O stats (display with "info blockstats"). */
48 BlockdevOnError on_read_error
, on_write_error
;
49 bool iostatus_enabled
;
50 BlockDeviceIoStatus iostatus
;
53 typedef struct BlockBackendAIOCB
{
60 static const AIOCBInfo block_backend_aiocb_info
= {
61 .get_aio_context
= blk_aiocb_get_aio_context
,
62 .aiocb_size
= sizeof(BlockBackendAIOCB
),
65 static void drive_info_del(DriveInfo
*dinfo
);
67 /* All the BlockBackends (except for hidden ones) */
68 static QTAILQ_HEAD(, BlockBackend
) blk_backends
=
69 QTAILQ_HEAD_INITIALIZER(blk_backends
);
72 * Create a new BlockBackend with @name, with a reference count of one.
73 * @name must not be null or empty.
74 * Fail if a BlockBackend with this name already exists.
75 * Store an error through @errp on failure, unless it's null.
76 * Return the new BlockBackend on success, null on failure.
78 BlockBackend
*blk_new(const char *name
, Error
**errp
)
82 assert(name
&& name
[0]);
83 if (!id_wellformed(name
)) {
84 error_setg(errp
, "Invalid device name");
87 if (blk_by_name(name
)) {
88 error_setg(errp
, "Device with id '%s' already exists", name
);
91 if (bdrv_find_node(name
)) {
93 "Device name '%s' conflicts with an existing node name",
98 blk
= g_new0(BlockBackend
, 1);
99 blk
->name
= g_strdup(name
);
101 QTAILQ_INSERT_TAIL(&blk_backends
, blk
, link
);
106 * Create a new BlockBackend with a new BlockDriverState attached.
107 * Otherwise just like blk_new(), which see.
109 BlockBackend
*blk_new_with_bs(const char *name
, Error
**errp
)
112 BlockDriverState
*bs
;
114 blk
= blk_new(name
, errp
);
119 bs
= bdrv_new_root();
126 * Calls blk_new_with_bs() and then calls bdrv_open() on the BlockDriverState.
128 * Just as with bdrv_open(), after having called this function the reference to
129 * @options belongs to the block layer (even on failure).
131 * TODO: Remove @filename and @flags; it should be possible to specify a whole
132 * BDS tree just by specifying the @options QDict (or @reference,
133 * alternatively). At the time of adding this function, this is not possible,
134 * though, so callers of this function have to be able to specify @filename and
137 BlockBackend
*blk_new_open(const char *name
, const char *filename
,
138 const char *reference
, QDict
*options
, int flags
,
144 blk
= blk_new_with_bs(name
, errp
);
150 ret
= bdrv_open(&blk
->bs
, filename
, reference
, options
, flags
, errp
);
159 static void blk_delete(BlockBackend
*blk
)
161 assert(!blk
->refcnt
);
164 assert(blk
->bs
->blk
== blk
);
169 if (blk
->root_state
.throttle_state
) {
170 g_free(blk
->root_state
.throttle_group
);
171 throttle_group_unref(blk
->root_state
.throttle_state
);
173 /* Avoid double-remove after blk_hide_on_behalf_of_hmp_drive_del() */
175 QTAILQ_REMOVE(&blk_backends
, blk
, link
);
178 drive_info_del(blk
->legacy_dinfo
);
182 static void drive_info_del(DriveInfo
*dinfo
)
187 qemu_opts_del(dinfo
->opts
);
188 g_free(dinfo
->serial
);
193 * Increment @blk's reference count.
194 * @blk must not be null.
196 void blk_ref(BlockBackend
*blk
)
202 * Decrement @blk's reference count.
203 * If this drops it to zero, destroy @blk.
204 * For convenience, do nothing if @blk is null.
206 void blk_unref(BlockBackend
*blk
)
209 assert(blk
->refcnt
> 0);
210 if (!--blk
->refcnt
) {
217 * Return the BlockBackend after @blk.
218 * If @blk is null, return the first one.
219 * Else, return @blk's next sibling, which may be null.
221 * To iterate over all BlockBackends, do
222 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
226 BlockBackend
*blk_next(BlockBackend
*blk
)
228 return blk
? QTAILQ_NEXT(blk
, link
) : QTAILQ_FIRST(&blk_backends
);
232 * Return @blk's name, a non-null string.
233 * Wart: the name is empty iff @blk has been hidden with
234 * blk_hide_on_behalf_of_hmp_drive_del().
236 const char *blk_name(BlockBackend
*blk
)
242 * Return the BlockBackend with name @name if it exists, else null.
243 * @name must not be null.
245 BlockBackend
*blk_by_name(const char *name
)
250 QTAILQ_FOREACH(blk
, &blk_backends
, link
) {
251 if (!strcmp(name
, blk
->name
)) {
259 * Return the BlockDriverState attached to @blk if any, else null.
261 BlockDriverState
*blk_bs(BlockBackend
*blk
)
267 * Changes the BlockDriverState attached to @blk
269 void blk_set_bs(BlockBackend
*blk
, BlockDriverState
*bs
)
277 assert(bs
->blk
== NULL
);
284 * Return @blk's DriveInfo if any, else null.
286 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
288 return blk
->legacy_dinfo
;
292 * Set @blk's DriveInfo to @dinfo, and return it.
293 * @blk must not have a DriveInfo set already.
294 * No other BlockBackend may have the same DriveInfo set.
296 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
298 assert(!blk
->legacy_dinfo
);
299 return blk
->legacy_dinfo
= dinfo
;
303 * Return the BlockBackend with DriveInfo @dinfo.
306 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
310 QTAILQ_FOREACH(blk
, &blk_backends
, link
) {
311 if (blk
->legacy_dinfo
== dinfo
) {
320 * @blk must not have been hidden already.
321 * Make attached BlockDriverState, if any, anonymous.
322 * Once hidden, @blk is invisible to all functions that don't receive
323 * it as argument. For example, blk_by_name() won't return it.
324 * Strictly for use by do_drive_del().
325 * TODO get rid of it!
327 void blk_hide_on_behalf_of_hmp_drive_del(BlockBackend
*blk
)
329 QTAILQ_REMOVE(&blk_backends
, blk
, link
);
332 bdrv_make_anon(blk
->bs
);
337 * Attach device model @dev to @blk.
338 * Return 0 on success, -EBUSY when a device model is attached already.
340 int blk_attach_dev(BlockBackend
*blk
, void *dev
)
341 /* TODO change to DeviceState *dev when all users are qdevified */
348 blk_iostatus_reset(blk
);
353 * Attach device model @dev to @blk.
354 * @blk must not have a device model attached already.
355 * TODO qdevified devices don't use this, remove when devices are qdevified
357 void blk_attach_dev_nofail(BlockBackend
*blk
, void *dev
)
359 if (blk_attach_dev(blk
, dev
) < 0) {
365 * Detach device model @dev from @blk.
366 * @dev must be currently attached to @blk.
368 void blk_detach_dev(BlockBackend
*blk
, void *dev
)
369 /* TODO change to DeviceState *dev when all users are qdevified */
371 assert(blk
->dev
== dev
);
374 blk
->dev_opaque
= NULL
;
375 blk
->guest_block_size
= 512;
380 * Return the device model attached to @blk if any, else null.
382 void *blk_get_attached_dev(BlockBackend
*blk
)
383 /* TODO change to return DeviceState * when all users are qdevified */
389 * Set @blk's device model callbacks to @ops.
390 * @opaque is the opaque argument to pass to the callbacks.
391 * This is for use by device models.
393 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
397 blk
->dev_opaque
= opaque
;
401 * Notify @blk's attached device model of media change.
402 * If @load is true, notify of media load.
403 * Else, notify of media eject.
404 * Also send DEVICE_TRAY_MOVED events as appropriate.
406 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
)
408 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
409 bool tray_was_closed
= !blk_dev_is_tray_open(blk
);
411 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
);
412 if (tray_was_closed
) {
414 qapi_event_send_device_tray_moved(blk_name(blk
),
419 qapi_event_send_device_tray_moved(blk_name(blk
),
420 false, &error_abort
);
426 * Does @blk's attached device model have removable media?
427 * %true if no device model is attached.
429 bool blk_dev_has_removable_media(BlockBackend
*blk
)
431 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
435 * Notify @blk's attached device model of a media eject request.
436 * If @force is true, the medium is about to be yanked out forcefully.
438 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
440 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
441 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
446 * Does @blk's attached device model have a tray, and is it open?
448 bool blk_dev_is_tray_open(BlockBackend
*blk
)
450 if (blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
) {
451 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
457 * Does @blk's attached device model have the medium locked?
458 * %false if the device model has no such lock.
460 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
462 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
463 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
469 * Notify @blk's attached device model of a backend size change.
471 void blk_dev_resize_cb(BlockBackend
*blk
)
473 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
474 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
478 void blk_iostatus_enable(BlockBackend
*blk
)
480 blk
->iostatus_enabled
= true;
481 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
484 /* The I/O status is only enabled if the drive explicitly
485 * enables it _and_ the VM is configured to stop on errors */
486 bool blk_iostatus_is_enabled(const BlockBackend
*blk
)
488 return (blk
->iostatus_enabled
&&
489 (blk
->on_write_error
== BLOCKDEV_ON_ERROR_ENOSPC
||
490 blk
->on_write_error
== BLOCKDEV_ON_ERROR_STOP
||
491 blk
->on_read_error
== BLOCKDEV_ON_ERROR_STOP
));
494 BlockDeviceIoStatus
blk_iostatus(const BlockBackend
*blk
)
496 return blk
->iostatus
;
499 void blk_iostatus_disable(BlockBackend
*blk
)
501 blk
->iostatus_enabled
= false;
504 void blk_iostatus_reset(BlockBackend
*blk
)
506 if (blk_iostatus_is_enabled(blk
)) {
507 blk
->iostatus
= BLOCK_DEVICE_IO_STATUS_OK
;
508 if (blk
->bs
&& blk
->bs
->job
) {
509 block_job_iostatus_reset(blk
->bs
->job
);
514 void blk_iostatus_set_err(BlockBackend
*blk
, int error
)
516 assert(blk_iostatus_is_enabled(blk
));
517 if (blk
->iostatus
== BLOCK_DEVICE_IO_STATUS_OK
) {
518 blk
->iostatus
= error
== ENOSPC
? BLOCK_DEVICE_IO_STATUS_NOSPACE
:
519 BLOCK_DEVICE_IO_STATUS_FAILED
;
523 static int blk_check_byte_request(BlockBackend
*blk
, int64_t offset
,
528 if (size
> INT_MAX
) {
532 if (!blk_is_inserted(blk
)) {
536 len
= blk_getlength(blk
);
545 if (offset
> len
|| len
- offset
< size
) {
552 static int blk_check_request(BlockBackend
*blk
, int64_t sector_num
,
555 if (sector_num
< 0 || sector_num
> INT64_MAX
/ BDRV_SECTOR_SIZE
) {
559 if (nb_sectors
< 0 || nb_sectors
> INT_MAX
/ BDRV_SECTOR_SIZE
) {
563 return blk_check_byte_request(blk
, sector_num
* BDRV_SECTOR_SIZE
,
564 nb_sectors
* BDRV_SECTOR_SIZE
);
567 int blk_read(BlockBackend
*blk
, int64_t sector_num
, uint8_t *buf
,
570 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
575 return bdrv_read(blk
->bs
, sector_num
, buf
, nb_sectors
);
578 int blk_read_unthrottled(BlockBackend
*blk
, int64_t sector_num
, uint8_t *buf
,
581 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
586 return bdrv_read_unthrottled(blk
->bs
, sector_num
, buf
, nb_sectors
);
589 int blk_write(BlockBackend
*blk
, int64_t sector_num
, const uint8_t *buf
,
592 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
597 return bdrv_write(blk
->bs
, sector_num
, buf
, nb_sectors
);
600 int blk_write_zeroes(BlockBackend
*blk
, int64_t sector_num
,
601 int nb_sectors
, BdrvRequestFlags flags
)
603 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
608 return bdrv_write_zeroes(blk
->bs
, sector_num
, nb_sectors
, flags
);
611 static void error_callback_bh(void *opaque
)
613 struct BlockBackendAIOCB
*acb
= opaque
;
614 qemu_bh_delete(acb
->bh
);
615 acb
->common
.cb(acb
->common
.opaque
, acb
->ret
);
619 static BlockAIOCB
*abort_aio_request(BlockBackend
*blk
, BlockCompletionFunc
*cb
,
620 void *opaque
, int ret
)
622 struct BlockBackendAIOCB
*acb
;
625 acb
= blk_aio_get(&block_backend_aiocb_info
, blk
, cb
, opaque
);
629 bh
= aio_bh_new(blk_get_aio_context(blk
), error_callback_bh
, acb
);
631 qemu_bh_schedule(bh
);
636 BlockAIOCB
*blk_aio_write_zeroes(BlockBackend
*blk
, int64_t sector_num
,
637 int nb_sectors
, BdrvRequestFlags flags
,
638 BlockCompletionFunc
*cb
, void *opaque
)
640 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
642 return abort_aio_request(blk
, cb
, opaque
, ret
);
645 return bdrv_aio_write_zeroes(blk
->bs
, sector_num
, nb_sectors
, flags
,
649 int blk_pread(BlockBackend
*blk
, int64_t offset
, void *buf
, int count
)
651 int ret
= blk_check_byte_request(blk
, offset
, count
);
656 return bdrv_pread(blk
->bs
, offset
, buf
, count
);
659 int blk_pwrite(BlockBackend
*blk
, int64_t offset
, const void *buf
, int count
)
661 int ret
= blk_check_byte_request(blk
, offset
, count
);
666 return bdrv_pwrite(blk
->bs
, offset
, buf
, count
);
669 int64_t blk_getlength(BlockBackend
*blk
)
671 return bdrv_getlength(blk
->bs
);
674 void blk_get_geometry(BlockBackend
*blk
, uint64_t *nb_sectors_ptr
)
676 bdrv_get_geometry(blk
->bs
, nb_sectors_ptr
);
679 int64_t blk_nb_sectors(BlockBackend
*blk
)
681 return bdrv_nb_sectors(blk
->bs
);
684 BlockAIOCB
*blk_aio_readv(BlockBackend
*blk
, int64_t sector_num
,
685 QEMUIOVector
*iov
, int nb_sectors
,
686 BlockCompletionFunc
*cb
, void *opaque
)
688 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
690 return abort_aio_request(blk
, cb
, opaque
, ret
);
693 return bdrv_aio_readv(blk
->bs
, sector_num
, iov
, nb_sectors
, cb
, opaque
);
696 BlockAIOCB
*blk_aio_writev(BlockBackend
*blk
, int64_t sector_num
,
697 QEMUIOVector
*iov
, int nb_sectors
,
698 BlockCompletionFunc
*cb
, void *opaque
)
700 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
702 return abort_aio_request(blk
, cb
, opaque
, ret
);
705 return bdrv_aio_writev(blk
->bs
, sector_num
, iov
, nb_sectors
, cb
, opaque
);
708 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
709 BlockCompletionFunc
*cb
, void *opaque
)
711 return bdrv_aio_flush(blk
->bs
, cb
, opaque
);
714 BlockAIOCB
*blk_aio_discard(BlockBackend
*blk
,
715 int64_t sector_num
, int nb_sectors
,
716 BlockCompletionFunc
*cb
, void *opaque
)
718 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
720 return abort_aio_request(blk
, cb
, opaque
, ret
);
723 return bdrv_aio_discard(blk
->bs
, sector_num
, nb_sectors
, cb
, opaque
);
726 void blk_aio_cancel(BlockAIOCB
*acb
)
728 bdrv_aio_cancel(acb
);
731 void blk_aio_cancel_async(BlockAIOCB
*acb
)
733 bdrv_aio_cancel_async(acb
);
736 int blk_aio_multiwrite(BlockBackend
*blk
, BlockRequest
*reqs
, int num_reqs
)
740 for (i
= 0; i
< num_reqs
; i
++) {
741 ret
= blk_check_request(blk
, reqs
[i
].sector
, reqs
[i
].nb_sectors
);
747 return bdrv_aio_multiwrite(blk
->bs
, reqs
, num_reqs
);
750 int blk_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
752 return bdrv_ioctl(blk
->bs
, req
, buf
);
755 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
756 BlockCompletionFunc
*cb
, void *opaque
)
758 return bdrv_aio_ioctl(blk
->bs
, req
, buf
, cb
, opaque
);
761 int blk_co_discard(BlockBackend
*blk
, int64_t sector_num
, int nb_sectors
)
763 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
768 return bdrv_co_discard(blk
->bs
, sector_num
, nb_sectors
);
771 int blk_co_flush(BlockBackend
*blk
)
773 return bdrv_co_flush(blk
->bs
);
776 int blk_flush(BlockBackend
*blk
)
778 return bdrv_flush(blk
->bs
);
781 int blk_flush_all(void)
783 return bdrv_flush_all();
786 void blk_drain(BlockBackend
*blk
)
791 void blk_drain_all(void)
796 void blk_set_on_error(BlockBackend
*blk
, BlockdevOnError on_read_error
,
797 BlockdevOnError on_write_error
)
799 blk
->on_read_error
= on_read_error
;
800 blk
->on_write_error
= on_write_error
;
803 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
805 return is_read
? blk
->on_read_error
: blk
->on_write_error
;
808 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
811 BlockdevOnError on_err
= blk_get_on_error(blk
, is_read
);
814 case BLOCKDEV_ON_ERROR_ENOSPC
:
815 return (error
== ENOSPC
) ?
816 BLOCK_ERROR_ACTION_STOP
: BLOCK_ERROR_ACTION_REPORT
;
817 case BLOCKDEV_ON_ERROR_STOP
:
818 return BLOCK_ERROR_ACTION_STOP
;
819 case BLOCKDEV_ON_ERROR_REPORT
:
820 return BLOCK_ERROR_ACTION_REPORT
;
821 case BLOCKDEV_ON_ERROR_IGNORE
:
822 return BLOCK_ERROR_ACTION_IGNORE
;
828 static void send_qmp_error_event(BlockBackend
*blk
,
829 BlockErrorAction action
,
830 bool is_read
, int error
)
832 IoOperationType optype
;
834 optype
= is_read
? IO_OPERATION_TYPE_READ
: IO_OPERATION_TYPE_WRITE
;
835 qapi_event_send_block_io_error(blk_name(blk
), optype
, action
,
836 blk_iostatus_is_enabled(blk
),
837 error
== ENOSPC
, strerror(error
),
841 /* This is done by device models because, while the block layer knows
842 * about the error, it does not know whether an operation comes from
843 * the device or the block layer (from a job, for example).
845 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
846 bool is_read
, int error
)
850 if (action
== BLOCK_ERROR_ACTION_STOP
) {
851 /* First set the iostatus, so that "info block" returns an iostatus
852 * that matches the events raised so far (an additional error iostatus
853 * is fine, but not a lost one).
855 blk_iostatus_set_err(blk
, error
);
857 /* Then raise the request to stop the VM and the event.
858 * qemu_system_vmstop_request_prepare has two effects. First,
859 * it ensures that the STOP event always comes after the
860 * BLOCK_IO_ERROR event. Second, it ensures that even if management
861 * can observe the STOP event and do a "cont" before the STOP
862 * event is issued, the VM will not stop. In this case, vm_start()
863 * also ensures that the STOP/RESUME pair of events is emitted.
865 qemu_system_vmstop_request_prepare();
866 send_qmp_error_event(blk
, action
, is_read
, error
);
867 qemu_system_vmstop_request(RUN_STATE_IO_ERROR
);
869 send_qmp_error_event(blk
, action
, is_read
, error
);
873 int blk_is_read_only(BlockBackend
*blk
)
875 return bdrv_is_read_only(blk
->bs
);
878 int blk_is_sg(BlockBackend
*blk
)
880 return bdrv_is_sg(blk
->bs
);
883 int blk_enable_write_cache(BlockBackend
*blk
)
885 return bdrv_enable_write_cache(blk
->bs
);
888 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
890 bdrv_set_enable_write_cache(blk
->bs
, wce
);
893 void blk_invalidate_cache(BlockBackend
*blk
, Error
**errp
)
895 bdrv_invalidate_cache(blk
->bs
, errp
);
898 bool blk_is_inserted(BlockBackend
*blk
)
900 return blk
->bs
&& bdrv_is_inserted(blk
->bs
);
903 bool blk_is_available(BlockBackend
*blk
)
905 return blk_is_inserted(blk
) && !blk_dev_is_tray_open(blk
);
908 void blk_lock_medium(BlockBackend
*blk
, bool locked
)
910 bdrv_lock_medium(blk
->bs
, locked
);
913 void blk_eject(BlockBackend
*blk
, bool eject_flag
)
915 bdrv_eject(blk
->bs
, eject_flag
);
918 int blk_get_flags(BlockBackend
*blk
)
920 return bdrv_get_flags(blk
->bs
);
923 int blk_get_max_transfer_length(BlockBackend
*blk
)
925 return blk
->bs
->bl
.max_transfer_length
;
928 void blk_set_guest_block_size(BlockBackend
*blk
, int align
)
930 blk
->guest_block_size
= align
;
933 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
935 return qemu_blockalign(blk
? blk
->bs
: NULL
, size
);
938 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
940 return bdrv_op_is_blocked(blk
->bs
, op
, errp
);
943 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
945 bdrv_op_unblock(blk
->bs
, op
, reason
);
948 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
950 bdrv_op_block_all(blk
->bs
, reason
);
953 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
955 bdrv_op_unblock_all(blk
->bs
, reason
);
958 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
961 return bdrv_get_aio_context(blk
->bs
);
963 return qemu_get_aio_context();
967 static AioContext
*blk_aiocb_get_aio_context(BlockAIOCB
*acb
)
969 BlockBackendAIOCB
*blk_acb
= DO_UPCAST(BlockBackendAIOCB
, common
, acb
);
970 return blk_get_aio_context(blk_acb
->blk
);
973 void blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
)
975 bdrv_set_aio_context(blk
->bs
, new_context
);
978 void blk_add_aio_context_notifier(BlockBackend
*blk
,
979 void (*attached_aio_context
)(AioContext
*new_context
, void *opaque
),
980 void (*detach_aio_context
)(void *opaque
), void *opaque
)
982 bdrv_add_aio_context_notifier(blk
->bs
, attached_aio_context
,
983 detach_aio_context
, opaque
);
986 void blk_remove_aio_context_notifier(BlockBackend
*blk
,
987 void (*attached_aio_context
)(AioContext
*,
989 void (*detach_aio_context
)(void *),
992 bdrv_remove_aio_context_notifier(blk
->bs
, attached_aio_context
,
993 detach_aio_context
, opaque
);
996 void blk_add_close_notifier(BlockBackend
*blk
, Notifier
*notify
)
998 bdrv_add_close_notifier(blk
->bs
, notify
);
1001 void blk_io_plug(BlockBackend
*blk
)
1003 bdrv_io_plug(blk
->bs
);
1006 void blk_io_unplug(BlockBackend
*blk
)
1008 bdrv_io_unplug(blk
->bs
);
1011 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
1016 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
1017 BlockCompletionFunc
*cb
, void *opaque
)
1019 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);
1022 int coroutine_fn
blk_co_write_zeroes(BlockBackend
*blk
, int64_t sector_num
,
1023 int nb_sectors
, BdrvRequestFlags flags
)
1025 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
1030 return bdrv_co_write_zeroes(blk
->bs
, sector_num
, nb_sectors
, flags
);
1033 int blk_write_compressed(BlockBackend
*blk
, int64_t sector_num
,
1034 const uint8_t *buf
, int nb_sectors
)
1036 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
1041 return bdrv_write_compressed(blk
->bs
, sector_num
, buf
, nb_sectors
);
1044 int blk_truncate(BlockBackend
*blk
, int64_t offset
)
1046 return bdrv_truncate(blk
->bs
, offset
);
1049 int blk_discard(BlockBackend
*blk
, int64_t sector_num
, int nb_sectors
)
1051 int ret
= blk_check_request(blk
, sector_num
, nb_sectors
);
1056 return bdrv_discard(blk
->bs
, sector_num
, nb_sectors
);
1059 int blk_save_vmstate(BlockBackend
*blk
, const uint8_t *buf
,
1060 int64_t pos
, int size
)
1062 return bdrv_save_vmstate(blk
->bs
, buf
, pos
, size
);
1065 int blk_load_vmstate(BlockBackend
*blk
, uint8_t *buf
, int64_t pos
, int size
)
1067 return bdrv_load_vmstate(blk
->bs
, buf
, pos
, size
);
1070 int blk_probe_blocksizes(BlockBackend
*blk
, BlockSizes
*bsz
)
1072 return bdrv_probe_blocksizes(blk
->bs
, bsz
);
1075 int blk_probe_geometry(BlockBackend
*blk
, HDGeometry
*geo
)
1077 return bdrv_probe_geometry(blk
->bs
, geo
);
1081 * Updates the BlockBackendRootState object with data from the currently
1082 * attached BlockDriverState.
1084 void blk_update_root_state(BlockBackend
*blk
)
1088 blk
->root_state
.open_flags
= blk
->bs
->open_flags
;
1089 blk
->root_state
.read_only
= blk
->bs
->read_only
;
1090 blk
->root_state
.detect_zeroes
= blk
->bs
->detect_zeroes
;
1092 if (blk
->root_state
.throttle_group
) {
1093 g_free(blk
->root_state
.throttle_group
);
1094 throttle_group_unref(blk
->root_state
.throttle_state
);
1096 if (blk
->bs
->throttle_state
) {
1097 const char *name
= throttle_group_get_name(blk
->bs
);
1098 blk
->root_state
.throttle_group
= g_strdup(name
);
1099 blk
->root_state
.throttle_state
= throttle_group_incref(name
);
1101 blk
->root_state
.throttle_group
= NULL
;
1102 blk
->root_state
.throttle_state
= NULL
;
1106 BlockBackendRootState
*blk_get_root_state(BlockBackend
*blk
)
1108 return &blk
->root_state
;