]> git.proxmox.com Git - mirror_qemu.git/blame - include/block/block.h
block: Add COR filter driver
[mirror_qemu.git] / include / block / block.h
CommitLineData
faf07963
PB
1#ifndef BLOCK_H
2#define BLOCK_H
3
737e150e 4#include "block/aio.h"
9af23989 5#include "qapi/qapi-types-block-core.h"
7719f3c9 6#include "block/aio-wait.h"
daf015ef 7#include "qemu/iov.h"
10817bf0 8#include "qemu/coroutine.h"
5366d0c8 9#include "block/accounting.h"
ebab2259 10#include "block/dirty-bitmap.h"
c87621ea 11#include "block/blockjob.h"
78f9dc85 12#include "qemu/hbitmap.h"
a76bab49 13
faf07963 14/* block.c */
faf07963 15typedef struct BlockDriver BlockDriver;
b4b059f6 16typedef struct BdrvChild BdrvChild;
f3930ed0 17typedef struct BdrvChildRole BdrvChildRole;
faf07963 18
faf07963
PB
19typedef struct BlockDriverInfo {
20 /* in bytes, 0 if irrelevant */
21 int cluster_size;
22 /* offset at which the VM state can be saved (0 if not possible) */
23 int64_t vm_state_offset;
64c79160 24 bool is_dirty;
e1a5c4be
PL
25 /*
26 * True if unallocated blocks read back as zeroes. This is equivalent
b6af0975 27 * to the LBPRZ flag in the SCSI logical block provisioning page.
e1a5c4be
PL
28 */
29 bool unallocated_blocks_are_zero;
85f49cad
FZ
30 /*
31 * True if this block driver only supports compressed writes
32 */
33 bool needs_compressed_writes;
faf07963
PB
34} BlockDriverInfo;
35
f8111c24
DXW
36typedef struct BlockFragInfo {
37 uint64_t allocated_clusters;
38 uint64_t total_clusters;
39 uint64_t fragmented_clusters;
e6439d78 40 uint64_t compressed_clusters;
f8111c24
DXW
41} BlockFragInfo;
42
6faac15f 43typedef enum {
9568b511
WC
44 BDRV_REQ_COPY_ON_READ = 0x1,
45 BDRV_REQ_ZERO_WRITE = 0x2,
d32f35cb
PL
46 /* The BDRV_REQ_MAY_UNMAP flag is used to indicate that the block driver
47 * is allowed to optimize a write zeroes request by unmapping (discarding)
48 * blocks if it is guaranteed that the result will read back as
49 * zeroes. The flag is only passed to the driver if the block device is
50 * opened with BDRV_O_UNMAP.
51 */
9568b511 52 BDRV_REQ_MAY_UNMAP = 0x4,
61408b25 53 BDRV_REQ_NO_SERIALISING = 0x8,
bfd18d1e 54 BDRV_REQ_FUA = 0x10,
29a298af 55 BDRV_REQ_WRITE_COMPRESSED = 0x20,
fa166538
EB
56
57 /* Mask of valid flags */
29a298af 58 BDRV_REQ_MASK = 0x3f,
6faac15f
PL
59} BdrvRequestFlags;
60
892b7de8
ET
61typedef struct BlockSizes {
62 uint32_t phys;
63 uint32_t log;
64} BlockSizes;
65
66typedef struct HDGeometry {
67 uint32_t heads;
68 uint32_t sectors;
69 uint32_t cylinders;
70} HDGeometry;
71
faf07963 72#define BDRV_O_RDWR 0x0002
55880601 73#define BDRV_O_RESIZE 0x0004 /* request permission for resizing the node */
faf07963 74#define BDRV_O_SNAPSHOT 0x0008 /* open the file read only and save writes in a snapshot */
8bfea15d 75#define BDRV_O_TEMPORARY 0x0010 /* delete the file after use */
9f7965c7 76#define BDRV_O_NOCACHE 0x0020 /* do not use the host page cache */
5c6c3a6c 77#define BDRV_O_NATIVE_AIO 0x0080 /* use native AIO instead of the thread pool */
b783e409 78#define BDRV_O_NO_BACKING 0x0100 /* don't open the backing file */
016f5cf6 79#define BDRV_O_NO_FLUSH 0x0200 /* disable flushing on this disk */
53fec9d3 80#define BDRV_O_COPY_ON_READ 0x0400 /* copy read backing sectors into image */
04c01a5c 81#define BDRV_O_INACTIVE 0x0800 /* consistency hint for migration handoff */
058f8f16 82#define BDRV_O_CHECK 0x1000 /* open solely for consistency check */
be028adc 83#define BDRV_O_ALLOW_RDWR 0x2000 /* allow reopen to change from r/o to r/w */
9e8f1835 84#define BDRV_O_UNMAP 0x4000 /* execute guest UNMAP/TRIM operations */
2e40134b
HR
85#define BDRV_O_PROTOCOL 0x8000 /* if no block driver is explicitly given:
86 select an appropriate protocol driver,
87 ignoring the format layer */
abb06c5a 88#define BDRV_O_NO_IO 0x10000 /* don't initialize for I/O */
9f7965c7 89
61de4c68 90#define BDRV_O_CACHE_MASK (BDRV_O_NOCACHE | BDRV_O_NO_FLUSH)
faf07963 91
54861b92
KW
92
93/* Option names of options parsed by the block layer */
94
95#define BDRV_OPT_CACHE_WB "cache.writeback"
96#define BDRV_OPT_CACHE_DIRECT "cache.direct"
97#define BDRV_OPT_CACHE_NO_FLUSH "cache.no-flush"
f87a0e29 98#define BDRV_OPT_READ_ONLY "read-only"
818584a4 99#define BDRV_OPT_DISCARD "discard"
5a9347c6 100#define BDRV_OPT_FORCE_SHARE "force-share"
54861b92
KW
101
102
6ea44308 103#define BDRV_SECTOR_BITS 9
c63782cb 104#define BDRV_SECTOR_SIZE (1ULL << BDRV_SECTOR_BITS)
3abbc4d9 105#define BDRV_SECTOR_MASK ~(BDRV_SECTOR_SIZE - 1)
6ea44308 106
75af1f34
PL
107#define BDRV_REQUEST_MAX_SECTORS MIN(SIZE_MAX >> BDRV_SECTOR_BITS, \
108 INT_MAX >> BDRV_SECTOR_BITS)
48265250 109#define BDRV_REQUEST_MAX_BYTES (BDRV_REQUEST_MAX_SECTORS << BDRV_SECTOR_BITS)
75af1f34 110
705be728 111/*
237d78f8 112 * Allocation status flags for bdrv_block_status() and friends.
4c41cb49
EB
113 *
114 * Public flags:
115 * BDRV_BLOCK_DATA: allocation for data at offset is tied to this layer
116 * BDRV_BLOCK_ZERO: offset reads as zero
117 * BDRV_BLOCK_OFFSET_VALID: an associated offset exists for accessing raw data
e88ae226 118 * BDRV_BLOCK_ALLOCATED: the content of the block is determined by this
86a3d5c6
EB
119 * layer rather than any backing, set by block layer
120 * BDRV_BLOCK_EOF: the returned pnum covers through end of file for this
121 * layer, set by block layer
4333bb71 122 *
4c41cb49 123 * Internal flag:
d5254033
EB
124 * BDRV_BLOCK_RAW: for use by passthrough drivers, such as raw, to request
125 * that the block layer recompute the answer from the returned
126 * BDS; must be accompanied by just BDRV_BLOCK_OFFSET_VALID.
4333bb71 127 *
86a3d5c6
EB
128 * If BDRV_BLOCK_OFFSET_VALID is set, the map parameter represents the
129 * host offset within the returned BDS that is allocated for the
130 * corresponding raw guest data. However, whether that offset
131 * actually contains data also depends on BDRV_BLOCK_DATA, as follows:
4333bb71
PB
132 *
133 * DATA ZERO OFFSET_VALID
4c41cb49
EB
134 * t t t sectors read as zero, returned file is zero at offset
135 * t f t sectors read as valid from file at offset
136 * f t t sectors preallocated, read as zero, returned file not
4333bb71
PB
137 * necessarily zero at offset
138 * f f t sectors preallocated but read from backing_hd,
4c41cb49 139 * returned file contains garbage at offset
4333bb71
PB
140 * t t f sectors preallocated, read as zero, unknown offset
141 * t f f sectors read from unknown file or offset
142 * f t f not allocated or unknown offset, read as zero
143 * f f f not allocated or unknown offset, read from backing_hd
144 */
e88ae226
KW
145#define BDRV_BLOCK_DATA 0x01
146#define BDRV_BLOCK_ZERO 0x02
147#define BDRV_BLOCK_OFFSET_VALID 0x04
148#define BDRV_BLOCK_RAW 0x08
149#define BDRV_BLOCK_ALLOCATED 0x10
fb0d8654 150#define BDRV_BLOCK_EOF 0x20
4333bb71
PB
151#define BDRV_BLOCK_OFFSET_MASK BDRV_SECTOR_MASK
152
e971aa12
JC
153typedef QSIMPLEQ_HEAD(BlockReopenQueue, BlockReopenQueueEntry) BlockReopenQueue;
154
155typedef struct BDRVReopenState {
156 BlockDriverState *bs;
157 int flags;
30450259 158 uint64_t perm, shared_perm;
4d2cb092 159 QDict *options;
145f598e 160 QDict *explicit_options;
e971aa12
JC
161 void *opaque;
162} BDRVReopenState;
163
8574575f
FZ
164/*
165 * Block operation types
166 */
167typedef enum BlockOpType {
168 BLOCK_OP_TYPE_BACKUP_SOURCE,
169 BLOCK_OP_TYPE_BACKUP_TARGET,
170 BLOCK_OP_TYPE_CHANGE,
bb00021d
FZ
171 BLOCK_OP_TYPE_COMMIT_SOURCE,
172 BLOCK_OP_TYPE_COMMIT_TARGET,
8574575f
FZ
173 BLOCK_OP_TYPE_DATAPLANE,
174 BLOCK_OP_TYPE_DRIVE_DEL,
175 BLOCK_OP_TYPE_EJECT,
176 BLOCK_OP_TYPE_EXTERNAL_SNAPSHOT,
177 BLOCK_OP_TYPE_INTERNAL_SNAPSHOT,
178 BLOCK_OP_TYPE_INTERNAL_SNAPSHOT_DELETE,
05e4d14b 179 BLOCK_OP_TYPE_MIRROR_SOURCE,
e40e5027 180 BLOCK_OP_TYPE_MIRROR_TARGET,
8574575f
FZ
181 BLOCK_OP_TYPE_RESIZE,
182 BLOCK_OP_TYPE_STREAM,
09158f00 183 BLOCK_OP_TYPE_REPLACE,
8574575f
FZ
184 BLOCK_OP_TYPE_MAX,
185} BlockOpType;
e971aa12 186
7006c9a7
KW
187/* Block node permission constants */
188enum {
189 /**
190 * A user that has the "permission" of consistent reads is guaranteed that
191 * their view of the contents of the block device is complete and
192 * self-consistent, representing the contents of a disk at a specific
193 * point.
194 *
195 * For most block devices (including their backing files) this is true, but
196 * the property cannot be maintained in a few situations like for
197 * intermediate nodes of a commit block job.
198 */
199 BLK_PERM_CONSISTENT_READ = 0x01,
200
201 /** This permission is required to change the visible disk contents. */
202 BLK_PERM_WRITE = 0x02,
203
204 /**
205 * This permission (which is weaker than BLK_PERM_WRITE) is both enough and
206 * required for writes to the block node when the caller promises that
207 * the visible disk content doesn't change.
208 */
209 BLK_PERM_WRITE_UNCHANGED = 0x04,
210
211 /** This permission is required to change the size of a block node. */
212 BLK_PERM_RESIZE = 0x08,
213
214 /**
215 * This permission is required to change the node that this BdrvChild
216 * points to.
217 */
218 BLK_PERM_GRAPH_MOD = 0x10,
219
220 BLK_PERM_ALL = 0x1f,
221};
222
5176196c
FZ
223char *bdrv_perm_names(uint64_t perm);
224
0563e191 225/* disk I/O throttling */
faf07963 226void bdrv_init(void);
eb852011 227void bdrv_init_with_whitelist(void);
e6ff69bf 228bool bdrv_uses_whitelist(void);
e8eb8637 229int bdrv_is_whitelisted(BlockDriver *drv, bool read_only);
98289620 230BlockDriver *bdrv_find_protocol(const char *filename,
b65a5e12
HR
231 bool allow_protocol_prefix,
232 Error **errp);
faf07963 233BlockDriver *bdrv_find_format(const char *format_name);
0e7e1989 234int bdrv_create(BlockDriver *drv, const char* filename,
c282e1fd
CL
235 QemuOpts *opts, Error **errp);
236int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp);
e4e9986b 237BlockDriverState *bdrv_new(void);
b2c2832c
KW
238void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
239 Error **errp);
5fe31c25
KW
240void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
241 Error **errp);
3f09bfbc 242
baf5602e 243int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough);
9e8f1835 244int bdrv_parse_discard_flags(const char *mode, int *flags);
b4b059f6
KW
245BdrvChild *bdrv_open_child(const char *filename,
246 QDict *options, const char *bdref_key,
247 BlockDriverState* parent,
248 const BdrvChildRole *child_role,
249 bool allow_none, Error **errp);
e1d74bc6 250BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp);
12fa4af6
KW
251void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
252 Error **errp);
d9b7b057
KW
253int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
254 const char *bdref_key, Error **errp);
5b363937
HR
255BlockDriverState *bdrv_open(const char *filename, const char *reference,
256 QDict *options, int flags, Error **errp);
680c7f96
KW
257BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
258 int flags, Error **errp);
e971aa12 259BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4d2cb092
KW
260 BlockDriverState *bs,
261 QDict *options, int flags);
720150f3 262int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp);
e971aa12
JC
263int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp);
264int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
265 BlockReopenQueue *queue, Error **errp);
266void bdrv_reopen_commit(BDRVReopenState *reopen_state);
267void bdrv_reopen_abort(BDRVReopenState *reopen_state);
fbcbbf4e 268int bdrv_read(BdrvChild *child, int64_t sector_num,
faf07963 269 uint8_t *buf, int nb_sectors);
18d51c4b 270int bdrv_write(BdrvChild *child, int64_t sector_num,
faf07963 271 const uint8_t *buf, int nb_sectors);
720ff280 272int bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset,
f5a5ca79 273 int bytes, BdrvRequestFlags flags);
720ff280 274int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags);
cf2ab8fc
KW
275int bdrv_pread(BdrvChild *child, int64_t offset, void *buf, int bytes);
276int bdrv_preadv(BdrvChild *child, int64_t offset, QEMUIOVector *qiov);
d9ca2ea2
KW
277int bdrv_pwrite(BdrvChild *child, int64_t offset, const void *buf, int bytes);
278int bdrv_pwritev(BdrvChild *child, int64_t offset, QEMUIOVector *qiov);
279int bdrv_pwrite_sync(BdrvChild *child, int64_t offset,
280 const void *buf, int count);
28b04a8f
KW
281int coroutine_fn bdrv_co_readv(BdrvChild *child, int64_t sector_num,
282 int nb_sectors, QEMUIOVector *qiov);
25ec177d
KW
283int coroutine_fn bdrv_co_writev(BdrvChild *child, int64_t sector_num,
284 int nb_sectors, QEMUIOVector *qiov);
f08f2dda
SH
285/*
286 * Efficiently zero a region of the disk image. Note that this is a regular
287 * I/O request like read or write and should have a reasonable size. This
288 * function is not suitable for zeroing the entire image in a single request
289 * because it may allocate memory for the entire region.
290 */
a03ef88f 291int coroutine_fn bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset,
f5a5ca79 292 int bytes, BdrvRequestFlags flags);
e8a6bb9c
MT
293BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
294 const char *backing_file);
91af7014 295void bdrv_refresh_filename(BlockDriverState *bs);
7ea37c30
HR
296int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
297 Error **errp);
65a9bb25 298int64_t bdrv_nb_sectors(BlockDriverState *bs);
faf07963 299int64_t bdrv_getlength(BlockDriverState *bs);
4a1d5e1f 300int64_t bdrv_get_allocated_file_size(BlockDriverState *bs);
90880ff1
SH
301BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
302 BlockDriverState *in_bs, Error **errp);
96b8f136 303void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr);
3baca891 304void bdrv_refresh_limits(BlockDriverState *bs, Error **errp);
faf07963 305int bdrv_commit(BlockDriverState *bs);
756e6736
KW
306int bdrv_change_backing_file(BlockDriverState *bs,
307 const char *backing_file, const char *backing_fmt);
5efa9d5a 308void bdrv_register(BlockDriver *bdrv);
bde70715 309int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
54e26900 310 const char *backing_file_str);
6ebdcee2
JC
311BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
312 BlockDriverState *bs);
79fac568 313BlockDriverState *bdrv_find_base(BlockDriverState *bs);
5efa9d5a 314
e076f338
KW
315
316typedef struct BdrvCheckResult {
317 int corruptions;
318 int leaks;
319 int check_errors;
ccf34716
KW
320 int corruptions_fixed;
321 int leaks_fixed;
c6bb9ad1 322 int64_t image_end_offset;
f8111c24 323 BlockFragInfo bfi;
e076f338
KW
324} BdrvCheckResult;
325
4534ff54
KW
326typedef enum {
327 BDRV_FIX_LEAKS = 1,
328 BDRV_FIX_ERRORS = 2,
329} BdrvCheckMode;
330
331int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix);
e076f338 332
77485434
HR
333/* The units of offset and total_work_size may be chosen arbitrarily by the
334 * block driver; total_work_size may change during the course of the amendment
335 * operation */
336typedef void BlockDriverAmendStatusCB(BlockDriverState *bs, int64_t offset,
8b13976d 337 int64_t total_work_size, void *opaque);
77485434 338int bdrv_amend_options(BlockDriverState *bs_new, QemuOpts *opts,
8b13976d 339 BlockDriverAmendStatusCB *status_cb, void *cb_opaque);
6f176b48 340
f6186f49 341/* external snapshots */
212a5a8f
BC
342bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
343 BlockDriverState *candidate);
344bool bdrv_is_first_non_filter(BlockDriverState *candidate);
f6186f49 345
09158f00 346/* check if a named node can be replaced when doing drive-mirror */
e12f3784
WC
347BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
348 const char *node_name, Error **errp);
09158f00 349
faf07963 350/* async block I/O */
7c84b1b8
MA
351void bdrv_aio_cancel(BlockAIOCB *acb);
352void bdrv_aio_cancel_async(BlockAIOCB *acb);
faf07963 353
7d780669 354/* sg packet commands */
48af776a 355int bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf);
7d780669 356
0f15423c 357/* Invalidate any cached metadata used by image formats */
5a8a30db
KW
358void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp);
359void bdrv_invalidate_cache_all(Error **errp);
76b1c7fe 360int bdrv_inactivate_all(void);
0f15423c 361
faf07963 362/* Ensure contents are flushed to disk. */
205ef796 363int bdrv_flush(BlockDriverState *bs);
07f07615 364int coroutine_fn bdrv_co_flush(BlockDriverState *bs);
4085f5c7 365int bdrv_flush_all(void);
2bc93fed 366void bdrv_close_all(void);
5b98db0a 367void bdrv_drain(BlockDriverState *bs);
a77fd4bb 368void coroutine_fn bdrv_co_drain(BlockDriverState *bs);
c0778f66
AG
369void bdrv_drain_all_begin(void);
370void bdrv_drain_all_end(void);
922453bc 371void bdrv_drain_all(void);
c6ca28d6 372
7719f3c9
SH
373/* Returns NULL when bs == NULL */
374AioWait *bdrv_get_aio_wait(BlockDriverState *bs);
375
88b062c2 376#define BDRV_POLL_WHILE(bs, cond) ({ \
88b062c2 377 BlockDriverState *bs_ = (bs); \
7719f3c9
SH
378 AIO_WAIT_WHILE(bdrv_get_aio_wait(bs_), \
379 bdrv_get_aio_context(bs_), \
380 cond); })
88b062c2 381
f5a5ca79
MP
382int bdrv_pdiscard(BlockDriverState *bs, int64_t offset, int bytes);
383int bdrv_co_pdiscard(BlockDriverState *bs, int64_t offset, int bytes);
3ac21627 384int bdrv_has_zero_init_1(BlockDriverState *bs);
f2feebbd 385int bdrv_has_zero_init(BlockDriverState *bs);
4ce78691
PL
386bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs);
387bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs);
237d78f8
EB
388int bdrv_block_status(BlockDriverState *bs, int64_t offset,
389 int64_t bytes, int64_t *pnum, int64_t *map,
390 BlockDriverState **file);
31826642
EB
391int bdrv_block_status_above(BlockDriverState *bs, BlockDriverState *base,
392 int64_t offset, int64_t bytes, int64_t *pnum,
393 int64_t *map, BlockDriverState **file);
d6a644bb
EB
394int bdrv_is_allocated(BlockDriverState *bs, int64_t offset, int64_t bytes,
395 int64_t *pnum);
b35b2bba 396int bdrv_is_allocated_above(BlockDriverState *top, BlockDriverState *base,
51b0a488 397 int64_t offset, int64_t bytes, int64_t *pnum);
faf07963 398
54115412 399bool bdrv_is_read_only(BlockDriverState *bs);
54a32bfe
KW
400int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
401 bool ignore_allow_rdw, Error **errp);
e2b8247a 402int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp);
54115412 403bool bdrv_is_sg(BlockDriverState *bs);
e031f750 404bool bdrv_is_inserted(BlockDriverState *bs);
025e849a 405void bdrv_lock_medium(BlockDriverState *bs, bool locked);
f36f3949 406void bdrv_eject(BlockDriverState *bs, bool eject_flag);
f8d6bba1 407const char *bdrv_get_format_name(BlockDriverState *bs);
dc364f4c 408BlockDriverState *bdrv_find_node(const char *node_name);
d5a8ee60 409BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp);
12d3ba82
BC
410BlockDriverState *bdrv_lookup_bs(const char *device,
411 const char *node_name,
412 Error **errp);
5a6684d2 413bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base);
04df765a 414BlockDriverState *bdrv_next_node(BlockDriverState *bs);
88be7b4b
KW
415
416typedef struct BdrvNextIterator {
417 enum {
418 BDRV_NEXT_BACKEND_ROOTS,
419 BDRV_NEXT_MONITOR_OWNED,
420 } phase;
421 BlockBackend *blk;
422 BlockDriverState *bs;
423} BdrvNextIterator;
424
425BlockDriverState *bdrv_first(BdrvNextIterator *it);
426BlockDriverState *bdrv_next(BdrvNextIterator *it);
5e003f17 427void bdrv_next_cleanup(BdrvNextIterator *it);
88be7b4b 428
262b4e8f 429BlockDriverState *bdrv_next_monitor_owned(BlockDriverState *bs);
54115412 430bool bdrv_is_encrypted(BlockDriverState *bs);
faf07963
PB
431void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
432 void *opaque);
20a9e77d 433const char *bdrv_get_node_name(const BlockDriverState *bs);
bfb197e0 434const char *bdrv_get_device_name(const BlockDriverState *bs);
9b2aa84f 435const char *bdrv_get_device_or_node_name(const BlockDriverState *bs);
c8433287 436int bdrv_get_flags(BlockDriverState *bs);
faf07963 437int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
eae041fe 438ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs);
343bded4 439void bdrv_round_to_clusters(BlockDriverState *bs,
7cfd5275 440 int64_t offset, int64_t bytes,
244483e6 441 int64_t *cluster_offset,
7cfd5275 442 int64_t *cluster_bytes);
faf07963 443
045df330 444const char *bdrv_get_encrypted_filename(BlockDriverState *bs);
faf07963
PB
445void bdrv_get_backing_filename(BlockDriverState *bs,
446 char *filename, int filename_size);
dc5a1371 447void bdrv_get_full_backing_filename(BlockDriverState *bs,
9f07429e 448 char *dest, size_t sz, Error **errp);
0a82855a
HR
449void bdrv_get_full_backing_filename_from_filename(const char *backed,
450 const char *backing,
9f07429e
HR
451 char *dest, size_t sz,
452 Error **errp);
faf07963 453
5c98415b 454int path_has_protocol(const char *path);
faf07963
PB
455int path_is_absolute(const char *path);
456void path_combine(char *dest, int dest_size,
457 const char *base_path,
458 const char *filename);
459
5ddda0b8 460int bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
cf8074b3 461int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
45566e9c
CH
462int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
463 int64_t pos, int size);
178e08a5 464
45566e9c
CH
465int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
466 int64_t pos, int size);
178e08a5 467
d92ada22
LC
468void bdrv_img_create(const char *filename, const char *fmt,
469 const char *base_filename, const char *base_fmt,
f382d43a 470 char *options, uint64_t img_size, int flags,
9217283d 471 bool quiet, Error **errp);
f88e1a42 472
339064d5
KW
473/* Returns the alignment in bytes that is required so that no bounce buffer
474 * is required throughout the stack */
4196d2f0
DL
475size_t bdrv_min_mem_align(BlockDriverState *bs);
476/* Returns optimal alignment in bytes for bounce buffer */
339064d5 477size_t bdrv_opt_mem_align(BlockDriverState *bs);
ba5b7ad4 478void *qemu_blockalign(BlockDriverState *bs, size_t size);
9ebd8448 479void *qemu_blockalign0(BlockDriverState *bs, size_t size);
7d2a35cc 480void *qemu_try_blockalign(BlockDriverState *bs, size_t size);
9ebd8448 481void *qemu_try_blockalign0(BlockDriverState *bs, size_t size);
c53b1c51 482bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov);
ba5b7ad4 483
53fec9d3
SH
484void bdrv_enable_copy_on_read(BlockDriverState *bs);
485void bdrv_disable_copy_on_read(BlockDriverState *bs);
486
9fcb0251
FZ
487void bdrv_ref(BlockDriverState *bs);
488void bdrv_unref(BlockDriverState *bs);
33a60407 489void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child);
98292c61
WC
490BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
491 BlockDriverState *child_bs,
492 const char *child_name,
8b2ff529
KW
493 const BdrvChildRole *child_role,
494 Error **errp);
8b9b0cc2 495
fbe40ff7
FZ
496bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp);
497void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason);
498void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason);
499void bdrv_op_block_all(BlockDriverState *bs, Error *reason);
500void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason);
501bool bdrv_op_blocker_is_empty(BlockDriverState *bs);
502
9a4f4c31
KW
503#define BLKDBG_EVENT(child, evt) \
504 do { \
505 if (child) { \
506 bdrv_debug_event(child->bs, evt); \
507 } \
508 } while (0)
509
a31939e6 510void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event);
8b9b0cc2 511
41c695c7
KW
512int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
513 const char *tag);
4cc70e93 514int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag);
41c695c7
KW
515int bdrv_debug_resume(BlockDriverState *bs, const char *tag);
516bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag);
517
db519cba
FZ
518/**
519 * bdrv_get_aio_context:
520 *
521 * Returns: the currently bound #AioContext
522 */
523AioContext *bdrv_get_aio_context(BlockDriverState *bs);
524
052a7572
FZ
525/**
526 * Transfer control to @co in the aio context of @bs
527 */
528void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co);
529
dcd04228
SH
530/**
531 * bdrv_set_aio_context:
532 *
533 * Changes the #AioContext used for fd handlers, timers, and BHs by this
534 * BlockDriverState and all its children.
535 *
2e5b887c 536 * This function must be called with iothread lock held.
dcd04228
SH
537 */
538void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context);
892b7de8
ET
539int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz);
540int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo);
dcd04228 541
448ad91d
ML
542void bdrv_io_plug(BlockDriverState *bs);
543void bdrv_io_unplug(BlockDriverState *bs);
448ad91d 544
14e9559f
FZ
545/**
546 * bdrv_parent_drained_begin:
547 *
548 * Begin a quiesced section of all users of @bs. This is part of
549 * bdrv_drained_begin.
550 */
0152bf40 551void bdrv_parent_drained_begin(BlockDriverState *bs, BdrvChild *ignore);
14e9559f
FZ
552
553/**
554 * bdrv_parent_drained_end:
555 *
556 * End a quiesced section of all users of @bs. This is part of
557 * bdrv_drained_end.
558 */
0152bf40 559void bdrv_parent_drained_end(BlockDriverState *bs, BdrvChild *ignore);
14e9559f 560
51288d79
FZ
561/**
562 * bdrv_drained_begin:
563 *
564 * Begin a quiesced section for exclusive access to the BDS, by disabling
565 * external request sources including NBD server and device model. Note that
566 * this doesn't block timers or coroutines from submitting more requests, which
567 * means block_job_pause is still necessary.
568 *
569 * This function can be recursive.
570 */
571void bdrv_drained_begin(BlockDriverState *bs);
572
b0165585
KW
573/**
574 * Like bdrv_drained_begin, but recursively begins a quiesced section for
575 * exclusive access to all child nodes as well.
b0165585
KW
576 */
577void bdrv_subtree_drained_begin(BlockDriverState *bs);
578
51288d79
FZ
579/**
580 * bdrv_drained_end:
581 *
582 * End a quiescent section started by bdrv_drained_begin().
583 */
584void bdrv_drained_end(BlockDriverState *bs);
585
b0165585
KW
586/**
587 * End a quiescent section started by bdrv_subtree_drained_begin().
588 */
589void bdrv_subtree_drained_end(BlockDriverState *bs);
590
e06018ad
WC
591void bdrv_add_child(BlockDriverState *parent, BlockDriverState *child,
592 Error **errp);
593void bdrv_del_child(BlockDriverState *parent, BdrvChild *child, Error **errp);
594
67b792f5
VSO
595bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
596 uint32_t granularity, Error **errp);
23d0ba93
FZ
597/**
598 *
599 * bdrv_register_buf/bdrv_unregister_buf:
600 *
601 * Register/unregister a buffer for I/O. For example, VFIO drivers are
602 * interested to know the memory areas that would later be used for I/O, so
603 * that they can prepare IOMMU mapping etc., to get better performance.
604 */
605void bdrv_register_buf(BlockDriverState *bs, void *host, size_t size);
606void bdrv_unregister_buf(BlockDriverState *bs, void *host);
8a4bc5aa 607#endif