]> git.proxmox.com Git - mirror_qemu.git/blame - include/block/block-io.h
block: Mark bdrv_(un)register_buf() GRAPH_RDLOCK
[mirror_qemu.git] / include / block / block-io.h
CommitLineData
3b491a90
EGE
1/*
2 * QEMU System Emulator block driver
3 *
4 * Copyright (c) 2003 Fabrice Bellard
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 */
24#ifndef BLOCK_IO_H
25#define BLOCK_IO_H
26
e2c1c34f
MA
27#include "block/aio-wait.h"
28#include "block/block-common.h"
29#include "qemu/coroutine.h"
30#include "qemu/iov.h"
3b491a90
EGE
31
32/*
33 * I/O API functions. These functions are thread-safe, and therefore
34 * can run in any thread as long as the thread has called
35 * aio_context_acquire/release().
36 *
37 * These functions can only call functions from I/O and Common categories,
38 * but can be invoked by GS, "I/O or GS" and I/O APIs.
39 *
40 * All functions in this category must use the macro
41 * IO_CODE();
42 * to catch when they are accidentally called by the wrong API.
43 */
44
90830f59
EGE
45int co_wrapper_mixed_bdrv_rdlock
46bdrv_pwrite_zeroes(BdrvChild *child, int64_t offset, int64_t bytes,
47 BdrvRequestFlags flags);
48
3b491a90 49int bdrv_make_zero(BdrvChild *child, BdrvRequestFlags flags);
90830f59
EGE
50
51int co_wrapper_mixed_bdrv_rdlock
52bdrv_pread(BdrvChild *child, int64_t offset, int64_t bytes, void *buf,
53 BdrvRequestFlags flags);
54
55int co_wrapper_mixed_bdrv_rdlock
56bdrv_pwrite(BdrvChild *child, int64_t offset,int64_t bytes,
57 const void *buf, BdrvRequestFlags flags);
58
59int co_wrapper_mixed_bdrv_rdlock
60bdrv_pwrite_sync(BdrvChild *child, int64_t offset, int64_t bytes,
61 const void *buf, BdrvRequestFlags flags);
62
b24a4c41
KW
63int coroutine_fn GRAPH_RDLOCK
64bdrv_co_pwrite_sync(BdrvChild *child, int64_t offset, int64_t bytes,
65 const void *buf, BdrvRequestFlags flags);
66
3b491a90
EGE
67/*
68 * Efficiently zero a region of the disk image. Note that this is a regular
69 * I/O request like read or write and should have a reasonable size. This
70 * function is not suitable for zeroing the entire image in a single request
71 * because it may allocate memory for the entire region.
72 */
abaf8b75
KW
73int coroutine_fn GRAPH_RDLOCK
74bdrv_co_pwrite_zeroes(BdrvChild *child, int64_t offset, int64_t bytes,
75 BdrvRequestFlags flags);
3b491a90 76
c2b8e315
KW
77int coroutine_fn GRAPH_RDLOCK
78bdrv_co_truncate(BdrvChild *child, int64_t offset, bool exact,
79 PreallocMode prealloc, BdrvRequestFlags flags, Error **errp);
3b491a90 80
c86422c5
EGE
81int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs);
82int64_t co_wrapper_mixed bdrv_nb_sectors(BlockDriverState *bs);
83
84int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs);
85int64_t co_wrapper_mixed bdrv_getlength(BlockDriverState *bs);
86
82618d7b
EGE
87int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs);
88int64_t co_wrapper bdrv_get_allocated_file_size(BlockDriverState *bs);
89
3b491a90
EGE
90BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
91 BlockDriverState *in_bs, Error **errp);
92void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr);
93int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp);
94void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs);
95
96
97/* async block I/O */
98void bdrv_aio_cancel(BlockAIOCB *acb);
99void bdrv_aio_cancel_async(BlockAIOCB *acb);
100
101/* sg packet commands */
26c518ab
KW
102int coroutine_fn GRAPH_RDLOCK
103bdrv_co_ioctl(BlockDriverState *bs, int req, void *buf);
3b491a90
EGE
104
105/* Ensure contents are flushed to disk. */
88095349 106int coroutine_fn GRAPH_RDLOCK bdrv_co_flush(BlockDriverState *bs);
3b491a90 107
9a5a1c62
EGE
108int coroutine_fn GRAPH_RDLOCK bdrv_co_pdiscard(BdrvChild *child, int64_t offset,
109 int64_t bytes);
110
3b491a90
EGE
111bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs);
112int bdrv_block_status(BlockDriverState *bs, int64_t offset,
113 int64_t bytes, int64_t *pnum, int64_t *map,
114 BlockDriverState **file);
7b52a921 115
7ff9579e
KW
116int coroutine_fn GRAPH_RDLOCK
117bdrv_co_block_status_above(BlockDriverState *bs, BlockDriverState *base,
118 int64_t offset, int64_t bytes, int64_t *pnum,
119 int64_t *map, BlockDriverState **file);
3b491a90
EGE
120int bdrv_block_status_above(BlockDriverState *bs, BlockDriverState *base,
121 int64_t offset, int64_t bytes, int64_t *pnum,
122 int64_t *map, BlockDriverState **file);
7b52a921 123
7ff9579e
KW
124int coroutine_fn GRAPH_RDLOCK
125bdrv_co_is_allocated(BlockDriverState *bs, int64_t offset, int64_t bytes,
126 int64_t *pnum);
3b491a90
EGE
127int bdrv_is_allocated(BlockDriverState *bs, int64_t offset, int64_t bytes,
128 int64_t *pnum);
7b52a921 129
7ff9579e
KW
130int coroutine_fn GRAPH_RDLOCK
131bdrv_co_is_allocated_above(BlockDriverState *top, BlockDriverState *base,
132 bool include_base, int64_t offset, int64_t bytes,
133 int64_t *pnum);
3b491a90
EGE
134int bdrv_is_allocated_above(BlockDriverState *top, BlockDriverState *base,
135 bool include_base, int64_t offset, int64_t bytes,
136 int64_t *pnum);
7b52a921 137
abaf8b75
KW
138int coroutine_fn GRAPH_RDLOCK
139bdrv_co_is_zero_fast(BlockDriverState *bs, int64_t offset, int64_t bytes);
3b491a90 140
3b491a90
EGE
141int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
142 Error **errp);
143bool bdrv_is_read_only(BlockDriverState *bs);
144bool bdrv_is_writable(BlockDriverState *bs);
145bool bdrv_is_sg(BlockDriverState *bs);
15aee7ac 146int bdrv_get_flags(BlockDriverState *bs);
1e97be91 147
c73ff92c
EGE
148bool coroutine_fn GRAPH_RDLOCK bdrv_co_is_inserted(BlockDriverState *bs);
149bool co_wrapper_bdrv_rdlock bdrv_is_inserted(BlockDriverState *bs);
1e97be91 150
79a292e5
KW
151void coroutine_fn GRAPH_RDLOCK
152bdrv_co_lock_medium(BlockDriverState *bs, bool locked);
153
154void coroutine_fn GRAPH_RDLOCK
155bdrv_co_eject(BlockDriverState *bs, bool eject_flag);
2531b390 156
3b491a90
EGE
157const char *bdrv_get_format_name(BlockDriverState *bs);
158
159bool bdrv_supports_compressed_writes(BlockDriverState *bs);
160const char *bdrv_get_node_name(const BlockDriverState *bs);
161const char *bdrv_get_device_name(const BlockDriverState *bs);
162const char *bdrv_get_device_or_node_name(const BlockDriverState *bs);
3d47eb0a
EGE
163
164int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
165int co_wrapper_mixed bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
166
3b491a90
EGE
167ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
168 Error **errp);
169BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs);
170void bdrv_round_to_clusters(BlockDriverState *bs,
171 int64_t offset, int64_t bytes,
172 int64_t *cluster_offset,
173 int64_t *cluster_bytes);
174
175void bdrv_get_backing_filename(BlockDriverState *bs,
176 char *filename, int filename_size);
177
178int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
179 int64_t pos, int size);
180
181int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
182 int64_t pos, int size);
183
184/*
185 * Returns the alignment in bytes that is required so that no bounce buffer
186 * is required throughout the stack
187 */
188size_t bdrv_min_mem_align(BlockDriverState *bs);
189/* Returns optimal alignment in bytes for bounce buffer */
190size_t bdrv_opt_mem_align(BlockDriverState *bs);
191void *qemu_blockalign(BlockDriverState *bs, size_t size);
192void *qemu_blockalign0(BlockDriverState *bs, size_t size);
193void *qemu_try_blockalign(BlockDriverState *bs, size_t size);
194void *qemu_try_blockalign0(BlockDriverState *bs, size_t size);
3b491a90
EGE
195
196void bdrv_enable_copy_on_read(BlockDriverState *bs);
197void bdrv_disable_copy_on_read(BlockDriverState *bs);
198
c834dc05
EGE
199void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs,
200 BlkdebugEvent event);
201void co_wrapper_mixed bdrv_debug_event(BlockDriverState *bs,
202 BlkdebugEvent event);
3b491a90
EGE
203
204#define BLKDBG_EVENT(child, evt) \
205 do { \
206 if (child) { \
207 bdrv_debug_event(child->bs, evt); \
208 } \
209 } while (0)
210
211/**
212 * bdrv_get_aio_context:
213 *
214 * Returns: the currently bound #AioContext
215 */
216AioContext *bdrv_get_aio_context(BlockDriverState *bs);
217
d5f8d79c
HR
218AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c);
219
3b491a90
EGE
220/**
221 * Move the current coroutine to the AioContext of @bs and return the old
222 * AioContext of the coroutine. Increase bs->in_flight so that draining @bs
223 * will wait for the operation to proceed until the corresponding
224 * bdrv_co_leave().
225 *
226 * Consequently, you can't call drain inside a bdrv_co_enter/leave() section as
227 * this will deadlock.
228 */
229AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs);
230
231/**
232 * Ends a section started by bdrv_co_enter(). Move the current coroutine back
233 * to old_ctx and decrease bs->in_flight again.
234 */
235void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx);
236
3b491a90
EGE
237AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c);
238
c3827069
KW
239void coroutine_fn GRAPH_RDLOCK bdrv_co_io_plug(BlockDriverState *bs);
240void coroutine_fn GRAPH_RDLOCK bdrv_co_io_unplug(BlockDriverState *bs);
3b491a90 241
0508d0be
EGE
242bool coroutine_fn bdrv_co_can_store_new_dirty_bitmap(BlockDriverState *bs,
243 const char *name,
244 uint32_t granularity,
245 Error **errp);
246bool co_wrapper bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs,
247 const char *name,
248 uint32_t granularity,
249 Error **errp);
3b491a90
EGE
250
251/**
252 *
253 * bdrv_co_copy_range:
254 *
255 * Do offloaded copy between two children. If the operation is not implemented
256 * by the driver, or if the backend storage doesn't support it, a negative
257 * error code will be returned.
258 *
259 * Note: block layer doesn't emulate or fallback to a bounce buffer approach
260 * because usually the caller shouldn't attempt offloaded copy any more (e.g.
261 * calling copy_file_range(2)) after the first error, thus it should fall back
262 * to a read+write path in the caller level.
263 *
264 * @src: Source child to copy data from
265 * @src_offset: offset in @src image to read data
266 * @dst: Destination child to copy data to
267 * @dst_offset: offset in @dst image to write data
268 * @bytes: number of bytes to copy
269 * @flags: request flags. Supported flags:
270 * BDRV_REQ_ZERO_WRITE - treat the @src range as zero data and do zero
271 * write on @dst as if bdrv_co_pwrite_zeroes is
272 * called. Used to simplify caller code, or
273 * during BlockDriver.bdrv_co_copy_range_from()
274 * recursion.
275 * BDRV_REQ_NO_SERIALISING - do not serialize with other overlapping
276 * requests currently in flight.
277 *
278 * Returns: 0 if succeeded; negative error code if failed.
279 **/
742bf09b
EGE
280int coroutine_fn GRAPH_RDLOCK
281bdrv_co_copy_range(BdrvChild *src, int64_t src_offset,
282 BdrvChild *dst, int64_t dst_offset,
283 int64_t bytes, BdrvRequestFlags read_flags,
284 BdrvRequestFlags write_flags);
3b491a90 285
3b491a90
EGE
286/*
287 * "I/O or GS" API functions. These functions can run without
288 * the BQL, but only in one specific iothread/main loop.
289 *
290 * More specifically, these functions use BDRV_POLL_WHILE(bs), which
291 * requires the caller to be either in the main thread and hold
292 * the BlockdriverState (bs) AioContext lock, or directly in the
293 * home thread that runs the bs AioContext. Calling them from
294 * another thread in another AioContext would cause deadlocks.
295 *
296 * Therefore, these functions are not proper I/O, because they
297 * can't run in *any* iothreads, but only in a specific one.
298 *
299 * These functions can call any function from I/O, Common and this
300 * categories, but must be invoked only by other "I/O or GS" and GS APIs.
301 *
302 * All functions in this category must use the macro
303 * IO_OR_GS_CODE();
304 * to catch when they are accidentally called by the wrong API.
305 */
306
307#define BDRV_POLL_WHILE(bs, cond) ({ \
308 BlockDriverState *bs_ = (bs); \
384a48fb 309 IO_OR_GS_CODE(); \
3b491a90
EGE
310 AIO_WAIT_WHILE(bdrv_get_aio_context(bs_), \
311 cond); })
312
313void bdrv_drain(BlockDriverState *bs);
3b491a90 314
90830f59 315int co_wrapper_mixed_bdrv_rdlock
3b491a90
EGE
316bdrv_truncate(BdrvChild *child, int64_t offset, bool exact,
317 PreallocMode prealloc, BdrvRequestFlags flags, Error **errp);
318
90830f59
EGE
319int co_wrapper_mixed_bdrv_rdlock
320bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix);
3b491a90
EGE
321
322/* Invalidate any cached metadata used by image formats */
90830f59
EGE
323int co_wrapper_mixed_bdrv_rdlock
324bdrv_invalidate_cache(BlockDriverState *bs, Error **errp);
325
326int co_wrapper_mixed_bdrv_rdlock bdrv_flush(BlockDriverState *bs);
327
328int co_wrapper_mixed_bdrv_rdlock
329bdrv_pdiscard(BdrvChild *child, int64_t offset, int64_t bytes);
330
331int co_wrapper_mixed_bdrv_rdlock
3b491a90 332bdrv_readv_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
90830f59
EGE
333
334int co_wrapper_mixed_bdrv_rdlock
3b491a90
EGE
335bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos);
336
337/**
338 * bdrv_parent_drained_begin_single:
339 *
606ed756 340 * Begin a quiesced section for the parent of @c.
3b491a90 341 */
606ed756 342void bdrv_parent_drained_begin_single(BdrvChild *c);
3b491a90 343
23987471
KW
344/**
345 * bdrv_parent_drained_poll_single:
346 *
347 * Returns true if there is any pending activity to cease before @c can be
348 * called quiesced, false otherwise.
349 */
350bool bdrv_parent_drained_poll_single(BdrvChild *c);
351
3b491a90
EGE
352/**
353 * bdrv_parent_drained_end_single:
354 *
355 * End a quiesced section for the parent of @c.
3b491a90
EGE
356 */
357void bdrv_parent_drained_end_single(BdrvChild *c);
358
359/**
360 * bdrv_drain_poll:
361 *
299403ae 362 * Poll for pending requests in @bs and its parents (except for @ignore_parent).
3b491a90
EGE
363 *
364 * If @ignore_bds_parents is true, parents that are BlockDriverStates must
365 * ignore the drain request because they will be drained separately (used for
366 * drain_all).
367 *
368 * This is part of bdrv_drained_begin.
369 */
299403ae
KW
370bool bdrv_drain_poll(BlockDriverState *bs, BdrvChild *ignore_parent,
371 bool ignore_bds_parents);
3b491a90
EGE
372
373/**
374 * bdrv_drained_begin:
375 *
376 * Begin a quiesced section for exclusive access to the BDS, by disabling
377 * external request sources including NBD server, block jobs, and device model.
378 *
379 * This function can be recursive.
380 */
381void bdrv_drained_begin(BlockDriverState *bs);
382
383/**
384 * bdrv_do_drained_begin_quiesce:
385 *
386 * Quiesces a BDS like bdrv_drained_begin(), but does not wait for already
387 * running requests to complete.
388 */
a82a3bd1 389void bdrv_do_drained_begin_quiesce(BlockDriverState *bs, BdrvChild *parent);
3b491a90 390
3b491a90
EGE
391/**
392 * bdrv_drained_end:
393 *
394 * End a quiescent section started by bdrv_drained_begin().
3b491a90
EGE
395 */
396void bdrv_drained_end(BlockDriverState *bs);
397
3b491a90 398#endif /* BLOCK_IO_H */