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