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 "sysemu/blockdev.h"
16 #include "qapi-event.h"
18 /* Number of coroutines to reserve per attached device model */
19 #define COROUTINE_POOL_RESERVATION 64
25 DriveInfo
*legacy_dinfo
; /* null unless created by drive_new() */
26 QTAILQ_ENTRY(BlockBackend
) link
; /* for blk_backends */
28 void *dev
; /* attached device model, if any */
29 /* TODO change to DeviceState when all users are qdevified */
30 const BlockDevOps
*dev_ops
;
34 static void drive_info_del(DriveInfo
*dinfo
);
36 /* All the BlockBackends (except for hidden ones) */
37 static QTAILQ_HEAD(, BlockBackend
) blk_backends
=
38 QTAILQ_HEAD_INITIALIZER(blk_backends
);
41 * Create a new BlockBackend with @name, with a reference count of one.
42 * @name must not be null or empty.
43 * Fail if a BlockBackend with this name already exists.
44 * Store an error through @errp on failure, unless it's null.
45 * Return the new BlockBackend on success, null on failure.
47 BlockBackend
*blk_new(const char *name
, Error
**errp
)
51 assert(name
&& name
[0]);
52 if (!id_wellformed(name
)) {
53 error_setg(errp
, "Invalid device name");
56 if (blk_by_name(name
)) {
57 error_setg(errp
, "Device with id '%s' already exists", name
);
60 if (bdrv_find_node(name
)) {
62 "Device name '%s' conflicts with an existing node name",
67 blk
= g_new0(BlockBackend
, 1);
68 blk
->name
= g_strdup(name
);
70 QTAILQ_INSERT_TAIL(&blk_backends
, blk
, link
);
75 * Create a new BlockBackend with a new BlockDriverState attached.
76 * Otherwise just like blk_new(), which see.
78 BlockBackend
*blk_new_with_bs(const char *name
, Error
**errp
)
83 blk
= blk_new(name
, errp
);
94 static void blk_delete(BlockBackend
*blk
)
99 assert(blk
->bs
->blk
== blk
);
104 /* Avoid double-remove after blk_hide_on_behalf_of_do_drive_del() */
106 QTAILQ_REMOVE(&blk_backends
, blk
, link
);
109 drive_info_del(blk
->legacy_dinfo
);
113 static void drive_info_del(DriveInfo
*dinfo
)
118 qemu_opts_del(dinfo
->opts
);
119 g_free(dinfo
->serial
);
124 * Increment @blk's reference count.
125 * @blk must not be null.
127 void blk_ref(BlockBackend
*blk
)
133 * Decrement @blk's reference count.
134 * If this drops it to zero, destroy @blk.
135 * For convenience, do nothing if @blk is null.
137 void blk_unref(BlockBackend
*blk
)
140 assert(blk
->refcnt
> 0);
141 if (!--blk
->refcnt
) {
148 * Return the BlockBackend after @blk.
149 * If @blk is null, return the first one.
150 * Else, return @blk's next sibling, which may be null.
152 * To iterate over all BlockBackends, do
153 * for (blk = blk_next(NULL); blk; blk = blk_next(blk)) {
157 BlockBackend
*blk_next(BlockBackend
*blk
)
159 return blk
? QTAILQ_NEXT(blk
, link
) : QTAILQ_FIRST(&blk_backends
);
163 * Return @blk's name, a non-null string.
164 * Wart: the name is empty iff @blk has been hidden with
165 * blk_hide_on_behalf_of_do_drive_del().
167 const char *blk_name(BlockBackend
*blk
)
173 * Return the BlockBackend with name @name if it exists, else null.
174 * @name must not be null.
176 BlockBackend
*blk_by_name(const char *name
)
181 QTAILQ_FOREACH(blk
, &blk_backends
, link
) {
182 if (!strcmp(name
, blk
->name
)) {
190 * Return the BlockDriverState attached to @blk if any, else null.
192 BlockDriverState
*blk_bs(BlockBackend
*blk
)
198 * Return @blk's DriveInfo if any, else null.
200 DriveInfo
*blk_legacy_dinfo(BlockBackend
*blk
)
202 return blk
->legacy_dinfo
;
206 * Set @blk's DriveInfo to @dinfo, and return it.
207 * @blk must not have a DriveInfo set already.
208 * No other BlockBackend may have the same DriveInfo set.
210 DriveInfo
*blk_set_legacy_dinfo(BlockBackend
*blk
, DriveInfo
*dinfo
)
212 assert(!blk
->legacy_dinfo
);
213 return blk
->legacy_dinfo
= dinfo
;
217 * Return the BlockBackend with DriveInfo @dinfo.
220 BlockBackend
*blk_by_legacy_dinfo(DriveInfo
*dinfo
)
224 QTAILQ_FOREACH(blk
, &blk_backends
, link
) {
225 if (blk
->legacy_dinfo
== dinfo
) {
234 * @blk must not have been hidden already.
235 * Make attached BlockDriverState, if any, anonymous.
236 * Once hidden, @blk is invisible to all functions that don't receive
237 * it as argument. For example, blk_by_name() won't return it.
238 * Strictly for use by do_drive_del().
239 * TODO get rid of it!
241 void blk_hide_on_behalf_of_do_drive_del(BlockBackend
*blk
)
243 QTAILQ_REMOVE(&blk_backends
, blk
, link
);
246 bdrv_make_anon(blk
->bs
);
251 * Attach device model @dev to @blk.
252 * Return 0 on success, -EBUSY when a device model is attached already.
254 int blk_attach_dev(BlockBackend
*blk
, void *dev
)
255 /* TODO change to DeviceState *dev when all users are qdevified */
262 bdrv_iostatus_reset(blk
->bs
);
264 /* We're expecting I/O from the device so bump up coroutine pool size */
265 qemu_coroutine_adjust_pool_size(COROUTINE_POOL_RESERVATION
);
270 * Attach device model @dev to @blk.
271 * @blk must not have a device model attached already.
272 * TODO qdevified devices don't use this, remove when devices are qdevified
274 void blk_attach_dev_nofail(BlockBackend
*blk
, void *dev
)
276 if (blk_attach_dev(blk
, dev
) < 0) {
282 * Detach device model @dev from @blk.
283 * @dev must be currently attached to @blk.
285 void blk_detach_dev(BlockBackend
*blk
, void *dev
)
286 /* TODO change to DeviceState *dev when all users are qdevified */
288 assert(blk
->dev
== dev
);
291 blk
->dev_opaque
= NULL
;
292 bdrv_set_guest_block_size(blk
->bs
, 512);
293 qemu_coroutine_adjust_pool_size(-COROUTINE_POOL_RESERVATION
);
298 * Return the device model attached to @blk if any, else null.
300 void *blk_get_attached_dev(BlockBackend
*blk
)
301 /* TODO change to return DeviceState * when all users are qdevified */
307 * Set @blk's device model callbacks to @ops.
308 * @opaque is the opaque argument to pass to the callbacks.
309 * This is for use by device models.
311 void blk_set_dev_ops(BlockBackend
*blk
, const BlockDevOps
*ops
,
315 blk
->dev_opaque
= opaque
;
319 * Notify @blk's attached device model of media change.
320 * If @load is true, notify of media load.
321 * Else, notify of media eject.
322 * Also send DEVICE_TRAY_MOVED events as appropriate.
324 void blk_dev_change_media_cb(BlockBackend
*blk
, bool load
)
326 if (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
) {
327 bool tray_was_closed
= !blk_dev_is_tray_open(blk
);
329 blk
->dev_ops
->change_media_cb(blk
->dev_opaque
, load
);
330 if (tray_was_closed
) {
332 qapi_event_send_device_tray_moved(blk_name(blk
),
337 qapi_event_send_device_tray_moved(blk_name(blk
),
338 false, &error_abort
);
344 * Does @blk's attached device model have removable media?
345 * %true if no device model is attached.
347 bool blk_dev_has_removable_media(BlockBackend
*blk
)
349 return !blk
->dev
|| (blk
->dev_ops
&& blk
->dev_ops
->change_media_cb
);
353 * Notify @blk's attached device model of a media eject request.
354 * If @force is true, the medium is about to be yanked out forcefully.
356 void blk_dev_eject_request(BlockBackend
*blk
, bool force
)
358 if (blk
->dev_ops
&& blk
->dev_ops
->eject_request_cb
) {
359 blk
->dev_ops
->eject_request_cb(blk
->dev_opaque
, force
);
364 * Does @blk's attached device model have a tray, and is it open?
366 bool blk_dev_is_tray_open(BlockBackend
*blk
)
368 if (blk
->dev_ops
&& blk
->dev_ops
->is_tray_open
) {
369 return blk
->dev_ops
->is_tray_open(blk
->dev_opaque
);
375 * Does @blk's attached device model have the medium locked?
376 * %false if the device model has no such lock.
378 bool blk_dev_is_medium_locked(BlockBackend
*blk
)
380 if (blk
->dev_ops
&& blk
->dev_ops
->is_medium_locked
) {
381 return blk
->dev_ops
->is_medium_locked(blk
->dev_opaque
);
387 * Notify @blk's attached device model of a backend size change.
389 void blk_dev_resize_cb(BlockBackend
*blk
)
391 if (blk
->dev_ops
&& blk
->dev_ops
->resize_cb
) {
392 blk
->dev_ops
->resize_cb(blk
->dev_opaque
);
396 void blk_iostatus_enable(BlockBackend
*blk
)
398 bdrv_iostatus_enable(blk
->bs
);
401 int blk_read(BlockBackend
*blk
, int64_t sector_num
, uint8_t *buf
,
404 return bdrv_read(blk
->bs
, sector_num
, buf
, nb_sectors
);
407 int blk_read_unthrottled(BlockBackend
*blk
, int64_t sector_num
, uint8_t *buf
,
410 return bdrv_read_unthrottled(blk
->bs
, sector_num
, buf
, nb_sectors
);
413 int blk_write(BlockBackend
*blk
, int64_t sector_num
, const uint8_t *buf
,
416 return bdrv_write(blk
->bs
, sector_num
, buf
, nb_sectors
);
419 BlockAIOCB
*blk_aio_write_zeroes(BlockBackend
*blk
, int64_t sector_num
,
420 int nb_sectors
, BdrvRequestFlags flags
,
421 BlockCompletionFunc
*cb
, void *opaque
)
423 return bdrv_aio_write_zeroes(blk
->bs
, sector_num
, nb_sectors
, flags
,
427 int blk_pread(BlockBackend
*blk
, int64_t offset
, void *buf
, int count
)
429 return bdrv_pread(blk
->bs
, offset
, buf
, count
);
432 int blk_pwrite(BlockBackend
*blk
, int64_t offset
, const void *buf
, int count
)
434 return bdrv_pwrite(blk
->bs
, offset
, buf
, count
);
437 int64_t blk_getlength(BlockBackend
*blk
)
439 return bdrv_getlength(blk
->bs
);
442 void blk_get_geometry(BlockBackend
*blk
, uint64_t *nb_sectors_ptr
)
444 bdrv_get_geometry(blk
->bs
, nb_sectors_ptr
);
447 BlockAIOCB
*blk_aio_readv(BlockBackend
*blk
, int64_t sector_num
,
448 QEMUIOVector
*iov
, int nb_sectors
,
449 BlockCompletionFunc
*cb
, void *opaque
)
451 return bdrv_aio_readv(blk
->bs
, sector_num
, iov
, nb_sectors
, cb
, opaque
);
454 BlockAIOCB
*blk_aio_writev(BlockBackend
*blk
, int64_t sector_num
,
455 QEMUIOVector
*iov
, int nb_sectors
,
456 BlockCompletionFunc
*cb
, void *opaque
)
458 return bdrv_aio_writev(blk
->bs
, sector_num
, iov
, nb_sectors
, cb
, opaque
);
461 BlockAIOCB
*blk_aio_flush(BlockBackend
*blk
,
462 BlockCompletionFunc
*cb
, void *opaque
)
464 return bdrv_aio_flush(blk
->bs
, cb
, opaque
);
467 BlockAIOCB
*blk_aio_discard(BlockBackend
*blk
,
468 int64_t sector_num
, int nb_sectors
,
469 BlockCompletionFunc
*cb
, void *opaque
)
471 return bdrv_aio_discard(blk
->bs
, sector_num
, nb_sectors
, cb
, opaque
);
474 void blk_aio_cancel(BlockAIOCB
*acb
)
476 bdrv_aio_cancel(acb
);
479 void blk_aio_cancel_async(BlockAIOCB
*acb
)
481 bdrv_aio_cancel_async(acb
);
484 int blk_aio_multiwrite(BlockBackend
*blk
, BlockRequest
*reqs
, int num_reqs
)
486 return bdrv_aio_multiwrite(blk
->bs
, reqs
, num_reqs
);
489 int blk_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
)
491 return bdrv_ioctl(blk
->bs
, req
, buf
);
494 BlockAIOCB
*blk_aio_ioctl(BlockBackend
*blk
, unsigned long int req
, void *buf
,
495 BlockCompletionFunc
*cb
, void *opaque
)
497 return bdrv_aio_ioctl(blk
->bs
, req
, buf
, cb
, opaque
);
500 int blk_flush(BlockBackend
*blk
)
502 return bdrv_flush(blk
->bs
);
505 int blk_flush_all(void)
507 return bdrv_flush_all();
510 void blk_drain_all(void)
515 BlockdevOnError
blk_get_on_error(BlockBackend
*blk
, bool is_read
)
517 return bdrv_get_on_error(blk
->bs
, is_read
);
520 BlockErrorAction
blk_get_error_action(BlockBackend
*blk
, bool is_read
,
523 return bdrv_get_error_action(blk
->bs
, is_read
, error
);
526 void blk_error_action(BlockBackend
*blk
, BlockErrorAction action
,
527 bool is_read
, int error
)
529 bdrv_error_action(blk
->bs
, action
, is_read
, error
);
532 int blk_is_read_only(BlockBackend
*blk
)
534 return bdrv_is_read_only(blk
->bs
);
537 int blk_is_sg(BlockBackend
*blk
)
539 return bdrv_is_sg(blk
->bs
);
542 int blk_enable_write_cache(BlockBackend
*blk
)
544 return bdrv_enable_write_cache(blk
->bs
);
547 void blk_set_enable_write_cache(BlockBackend
*blk
, bool wce
)
549 bdrv_set_enable_write_cache(blk
->bs
, wce
);
552 int blk_is_inserted(BlockBackend
*blk
)
554 return bdrv_is_inserted(blk
->bs
);
557 void blk_lock_medium(BlockBackend
*blk
, bool locked
)
559 bdrv_lock_medium(blk
->bs
, locked
);
562 void blk_eject(BlockBackend
*blk
, bool eject_flag
)
564 bdrv_eject(blk
->bs
, eject_flag
);
567 int blk_get_flags(BlockBackend
*blk
)
569 return bdrv_get_flags(blk
->bs
);
572 void blk_set_guest_block_size(BlockBackend
*blk
, int align
)
574 bdrv_set_guest_block_size(blk
->bs
, align
);
577 void *blk_blockalign(BlockBackend
*blk
, size_t size
)
579 return qemu_blockalign(blk
? blk
->bs
: NULL
, size
);
582 bool blk_op_is_blocked(BlockBackend
*blk
, BlockOpType op
, Error
**errp
)
584 return bdrv_op_is_blocked(blk
->bs
, op
, errp
);
587 void blk_op_unblock(BlockBackend
*blk
, BlockOpType op
, Error
*reason
)
589 bdrv_op_unblock(blk
->bs
, op
, reason
);
592 void blk_op_block_all(BlockBackend
*blk
, Error
*reason
)
594 bdrv_op_block_all(blk
->bs
, reason
);
597 void blk_op_unblock_all(BlockBackend
*blk
, Error
*reason
)
599 bdrv_op_unblock_all(blk
->bs
, reason
);
602 AioContext
*blk_get_aio_context(BlockBackend
*blk
)
604 return bdrv_get_aio_context(blk
->bs
);
607 void blk_set_aio_context(BlockBackend
*blk
, AioContext
*new_context
)
609 bdrv_set_aio_context(blk
->bs
, new_context
);
612 void blk_io_plug(BlockBackend
*blk
)
614 bdrv_io_plug(blk
->bs
);
617 void blk_io_unplug(BlockBackend
*blk
)
619 bdrv_io_unplug(blk
->bs
);
622 BlockAcctStats
*blk_get_stats(BlockBackend
*blk
)
624 return bdrv_get_stats(blk
->bs
);
627 void *blk_aio_get(const AIOCBInfo
*aiocb_info
, BlockBackend
*blk
,
628 BlockCompletionFunc
*cb
, void *opaque
)
630 return qemu_aio_get(aiocb_info
, blk_bs(blk
), cb
, opaque
);