Statistics
| Branch: | Revision:

root / block.h @ 0056c093

History | View | Annotate | Download (17 kB)

1 faf07963 pbrook
#ifndef BLOCK_H
2 faf07963 pbrook
#define BLOCK_H
3 faf07963 pbrook
4 a76bab49 aliguori
#include "qemu-aio.h"
5 3b69e4b9 aliguori
#include "qemu-common.h"
6 0e7e1989 Kevin Wolf
#include "qemu-option.h"
7 da1fa91d Kevin Wolf
#include "qemu-coroutine.h"
8 d15e5465 Luiz Capitulino
#include "qobject.h"
9 a76bab49 aliguori
10 faf07963 pbrook
/* block.c */
11 faf07963 pbrook
typedef struct BlockDriver BlockDriver;
12 faf07963 pbrook
13 faf07963 pbrook
typedef struct BlockDriverInfo {
14 faf07963 pbrook
    /* in bytes, 0 if irrelevant */
15 faf07963 pbrook
    int cluster_size;
16 faf07963 pbrook
    /* offset at which the VM state can be saved (0 if not possible) */
17 faf07963 pbrook
    int64_t vm_state_offset;
18 faf07963 pbrook
} BlockDriverInfo;
19 faf07963 pbrook
20 faf07963 pbrook
typedef struct QEMUSnapshotInfo {
21 faf07963 pbrook
    char id_str[128]; /* unique snapshot id */
22 faf07963 pbrook
    /* the following fields are informative. They are not needed for
23 faf07963 pbrook
       the consistency of the snapshot */
24 e7d81004 Stefan Weil
    char name[256]; /* user chosen name */
25 c2c9a466 Kevin Wolf
    uint64_t vm_state_size; /* VM state info size */
26 faf07963 pbrook
    uint32_t date_sec; /* UTC date of the snapshot */
27 faf07963 pbrook
    uint32_t date_nsec;
28 faf07963 pbrook
    uint64_t vm_clock_nsec; /* VM clock relative to boot */
29 faf07963 pbrook
} QEMUSnapshotInfo;
30 faf07963 pbrook
31 145feb17 Markus Armbruster
/* Callbacks for block device models */
32 0e49de52 Markus Armbruster
typedef struct BlockDevOps {
33 145feb17 Markus Armbruster
    /*
34 145feb17 Markus Armbruster
     * Runs when virtual media changed (monitor commands eject, change)
35 7d4b4ba5 Markus Armbruster
     * Argument load is true on load and false on eject.
36 145feb17 Markus Armbruster
     * Beware: doesn't run when a host device's physical media
37 145feb17 Markus Armbruster
     * changes.  Sure would be useful if it did.
38 2c6942fa Markus Armbruster
     * Device models with removable media must implement this callback.
39 145feb17 Markus Armbruster
     */
40 7d4b4ba5 Markus Armbruster
    void (*change_media_cb)(void *opaque, bool load);
41 145feb17 Markus Armbruster
    /*
42 025ccaa7 Paolo Bonzini
     * Runs when an eject request is issued from the monitor, the tray
43 025ccaa7 Paolo Bonzini
     * is closed, and the medium is locked.
44 025ccaa7 Paolo Bonzini
     * Device models that do not implement is_medium_locked will not need
45 025ccaa7 Paolo Bonzini
     * this callback.  Device models that can lock the medium or tray might
46 025ccaa7 Paolo Bonzini
     * want to implement the callback and unlock the tray when "force" is
47 025ccaa7 Paolo Bonzini
     * true, even if they do not support eject requests.
48 025ccaa7 Paolo Bonzini
     */
49 025ccaa7 Paolo Bonzini
    void (*eject_request_cb)(void *opaque, bool force);
50 025ccaa7 Paolo Bonzini
    /*
51 e4def80b Markus Armbruster
     * Is the virtual tray open?
52 e4def80b Markus Armbruster
     * Device models implement this only when the device has a tray.
53 e4def80b Markus Armbruster
     */
54 e4def80b Markus Armbruster
    bool (*is_tray_open)(void *opaque);
55 e4def80b Markus Armbruster
    /*
56 f107639a Markus Armbruster
     * Is the virtual medium locked into the device?
57 f107639a Markus Armbruster
     * Device models implement this only when device has such a lock.
58 f107639a Markus Armbruster
     */
59 f107639a Markus Armbruster
    bool (*is_medium_locked)(void *opaque);
60 f107639a Markus Armbruster
    /*
61 145feb17 Markus Armbruster
     * Runs when the size changed (e.g. monitor command block_resize)
62 145feb17 Markus Armbruster
     */
63 145feb17 Markus Armbruster
    void (*resize_cb)(void *opaque);
64 0e49de52 Markus Armbruster
} BlockDevOps;
65 0e49de52 Markus Armbruster
66 faf07963 pbrook
#define BDRV_O_RDWR        0x0002
67 faf07963 pbrook
#define BDRV_O_SNAPSHOT    0x0008 /* open the file read only and save writes in a snapshot */
68 9f7965c7 aliguori
#define BDRV_O_NOCACHE     0x0020 /* do not use the host page cache */
69 9f7965c7 aliguori
#define BDRV_O_CACHE_WB    0x0040 /* use write-back caching */
70 5c6c3a6c Christoph Hellwig
#define BDRV_O_NATIVE_AIO  0x0080 /* use native AIO instead of the thread pool */
71 b783e409 Kevin Wolf
#define BDRV_O_NO_BACKING  0x0100 /* don't open the backing file */
72 016f5cf6 Alexander Graf
#define BDRV_O_NO_FLUSH    0x0200 /* disable flushing on this disk */
73 53fec9d3 Stefan Hajnoczi
#define BDRV_O_COPY_ON_READ 0x0400 /* copy read backing sectors into image */
74 9f7965c7 aliguori
75 ceb25e5c Kevin Wolf
#define BDRV_O_CACHE_MASK  (BDRV_O_NOCACHE | BDRV_O_CACHE_WB | BDRV_O_NO_FLUSH)
76 faf07963 pbrook
77 6ea44308 Jan Kiszka
#define BDRV_SECTOR_BITS   9
78 c63782cb Jes Sorensen
#define BDRV_SECTOR_SIZE   (1ULL << BDRV_SECTOR_BITS)
79 3abbc4d9 Stefan Hajnoczi
#define BDRV_SECTOR_MASK   ~(BDRV_SECTOR_SIZE - 1)
80 6ea44308 Jan Kiszka
81 2582bfed Luiz Capitulino
typedef enum {
82 abd7f68d Markus Armbruster
    BLOCK_ERR_REPORT, BLOCK_ERR_IGNORE, BLOCK_ERR_STOP_ENOSPC,
83 abd7f68d Markus Armbruster
    BLOCK_ERR_STOP_ANY
84 abd7f68d Markus Armbruster
} BlockErrorAction;
85 abd7f68d Markus Armbruster
86 abd7f68d Markus Armbruster
typedef enum {
87 2582bfed Luiz Capitulino
    BDRV_ACTION_REPORT, BDRV_ACTION_IGNORE, BDRV_ACTION_STOP
88 329c0a48 Luiz Capitulino
} BlockQMPEventAction;
89 2582bfed Luiz Capitulino
90 28a7282a Luiz Capitulino
void bdrv_iostatus_enable(BlockDriverState *bs);
91 28a7282a Luiz Capitulino
void bdrv_iostatus_reset(BlockDriverState *bs);
92 28a7282a Luiz Capitulino
void bdrv_iostatus_disable(BlockDriverState *bs);
93 28a7282a Luiz Capitulino
bool bdrv_iostatus_is_enabled(const BlockDriverState *bs);
94 28a7282a Luiz Capitulino
void bdrv_iostatus_set_err(BlockDriverState *bs, int error);
95 329c0a48 Luiz Capitulino
void bdrv_emit_qmp_error_event(const BlockDriverState *bdrv,
96 329c0a48 Luiz Capitulino
                               BlockQMPEventAction action, int is_read);
97 d15e5465 Luiz Capitulino
void bdrv_info_print(Monitor *mon, const QObject *data);
98 d15e5465 Luiz Capitulino
void bdrv_info(Monitor *mon, QObject **ret_data);
99 218a536a Luiz Capitulino
void bdrv_stats_print(Monitor *mon, const QObject *data);
100 218a536a Luiz Capitulino
void bdrv_info_stats(Monitor *mon, QObject **ret_data);
101 faf07963 pbrook
102 0563e191 Zhi Yong Wu
/* disk I/O throttling */
103 0563e191 Zhi Yong Wu
void bdrv_io_limits_enable(BlockDriverState *bs);
104 98f90dba Zhi Yong Wu
void bdrv_io_limits_disable(BlockDriverState *bs);
105 0563e191 Zhi Yong Wu
bool bdrv_io_limits_enabled(BlockDriverState *bs);
106 0563e191 Zhi Yong Wu
107 faf07963 pbrook
void bdrv_init(void);
108 eb852011 Markus Armbruster
void bdrv_init_with_whitelist(void);
109 b50cbabc MORITA Kazutaka
BlockDriver *bdrv_find_protocol(const char *filename);
110 faf07963 pbrook
BlockDriver *bdrv_find_format(const char *format_name);
111 eb852011 Markus Armbruster
BlockDriver *bdrv_find_whitelisted_format(const char *format_name);
112 0e7e1989 Kevin Wolf
int bdrv_create(BlockDriver *drv, const char* filename,
113 0e7e1989 Kevin Wolf
    QEMUOptionParameter *options);
114 84a12e66 Christoph Hellwig
int bdrv_create_file(const char* filename, QEMUOptionParameter *options);
115 faf07963 pbrook
BlockDriverState *bdrv_new(const char *device_name);
116 d22b2f41 Ryan Harper
void bdrv_make_anon(BlockDriverState *bs);
117 faf07963 pbrook
void bdrv_delete(BlockDriverState *bs);
118 c3993cdc Stefan Hajnoczi
int bdrv_parse_cache_flags(const char *mode, int *flags);
119 faf07963 pbrook
int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags);
120 d6e9098e Kevin Wolf
int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
121 d6e9098e Kevin Wolf
              BlockDriver *drv);
122 faf07963 pbrook
void bdrv_close(BlockDriverState *bs);
123 fa879d62 Markus Armbruster
int bdrv_attach_dev(BlockDriverState *bs, void *dev);
124 fa879d62 Markus Armbruster
void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev);
125 fa879d62 Markus Armbruster
void bdrv_detach_dev(BlockDriverState *bs, void *dev);
126 fa879d62 Markus Armbruster
void *bdrv_get_attached_dev(BlockDriverState *bs);
127 0e49de52 Markus Armbruster
void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
128 0e49de52 Markus Armbruster
                      void *opaque);
129 025ccaa7 Paolo Bonzini
void bdrv_dev_eject_request(BlockDriverState *bs, bool force);
130 2c6942fa Markus Armbruster
bool bdrv_dev_has_removable_media(BlockDriverState *bs);
131 e4def80b Markus Armbruster
bool bdrv_dev_is_tray_open(BlockDriverState *bs);
132 f107639a Markus Armbruster
bool bdrv_dev_is_medium_locked(BlockDriverState *bs);
133 faf07963 pbrook
int bdrv_read(BlockDriverState *bs, int64_t sector_num,
134 faf07963 pbrook
              uint8_t *buf, int nb_sectors);
135 faf07963 pbrook
int bdrv_write(BlockDriverState *bs, int64_t sector_num,
136 faf07963 pbrook
               const uint8_t *buf, int nb_sectors);
137 faf07963 pbrook
int bdrv_pread(BlockDriverState *bs, int64_t offset,
138 faf07963 pbrook
               void *buf, int count);
139 faf07963 pbrook
int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
140 faf07963 pbrook
                const void *buf, int count);
141 f08145fe Kevin Wolf
int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
142 f08145fe Kevin Wolf
    const void *buf, int count);
143 da1fa91d Kevin Wolf
int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
144 da1fa91d Kevin Wolf
    int nb_sectors, QEMUIOVector *qiov);
145 470c0504 Stefan Hajnoczi
int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
146 470c0504 Stefan Hajnoczi
    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov);
147 da1fa91d Kevin Wolf
int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
148 da1fa91d Kevin Wolf
    int nb_sectors, QEMUIOVector *qiov);
149 f08f2dda Stefan Hajnoczi
/*
150 f08f2dda Stefan Hajnoczi
 * Efficiently zero a region of the disk image.  Note that this is a regular
151 f08f2dda Stefan Hajnoczi
 * I/O request like read or write and should have a reasonable size.  This
152 f08f2dda Stefan Hajnoczi
 * function is not suitable for zeroing the entire image in a single request
153 f08f2dda Stefan Hajnoczi
 * because it may allocate memory for the entire region.
154 f08f2dda Stefan Hajnoczi
 */
155 f08f2dda Stefan Hajnoczi
int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, int64_t sector_num,
156 f08f2dda Stefan Hajnoczi
    int nb_sectors);
157 060f51c9 Stefan Hajnoczi
int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
158 060f51c9 Stefan Hajnoczi
    int nb_sectors, int *pnum);
159 e8a6bb9c Marcelo Tosatti
BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
160 e8a6bb9c Marcelo Tosatti
    const char *backing_file);
161 faf07963 pbrook
int bdrv_truncate(BlockDriverState *bs, int64_t offset);
162 faf07963 pbrook
int64_t bdrv_getlength(BlockDriverState *bs);
163 4a1d5e1f Fam Zheng
int64_t bdrv_get_allocated_file_size(BlockDriverState *bs);
164 96b8f136 ths
void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr);
165 f3d54fc4 aliguori
void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs);
166 faf07963 pbrook
int bdrv_commit(BlockDriverState *bs);
167 6ab4b5ab Markus Armbruster
void bdrv_commit_all(void);
168 756e6736 Kevin Wolf
int bdrv_change_backing_file(BlockDriverState *bs,
169 756e6736 Kevin Wolf
    const char *backing_file, const char *backing_fmt);
170 5efa9d5a Anthony Liguori
void bdrv_register(BlockDriver *bdrv);
171 5efa9d5a Anthony Liguori
172 e076f338 Kevin Wolf
173 e076f338 Kevin Wolf
typedef struct BdrvCheckResult {
174 e076f338 Kevin Wolf
    int corruptions;
175 e076f338 Kevin Wolf
    int leaks;
176 e076f338 Kevin Wolf
    int check_errors;
177 e076f338 Kevin Wolf
} BdrvCheckResult;
178 e076f338 Kevin Wolf
179 e076f338 Kevin Wolf
int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res);
180 e076f338 Kevin Wolf
181 faf07963 pbrook
/* async block I/O */
182 faf07963 pbrook
typedef struct BlockDriverAIOCB BlockDriverAIOCB;
183 faf07963 pbrook
typedef void BlockDriverCompletionFunc(void *opaque, int ret);
184 7cd1e32a lirans@il.ibm.com
typedef void BlockDriverDirtyHandler(BlockDriverState *bs, int64_t sector,
185 39aa9a12 Devin Nakamura
                                     int sector_num);
186 3b69e4b9 aliguori
BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
187 3b69e4b9 aliguori
                                 QEMUIOVector *iov, int nb_sectors,
188 3b69e4b9 aliguori
                                 BlockDriverCompletionFunc *cb, void *opaque);
189 3b69e4b9 aliguori
BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
190 3b69e4b9 aliguori
                                  QEMUIOVector *iov, int nb_sectors,
191 3b69e4b9 aliguori
                                  BlockDriverCompletionFunc *cb, void *opaque);
192 b2e12bc6 Christoph Hellwig
BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
193 39aa9a12 Devin Nakamura
                                 BlockDriverCompletionFunc *cb, void *opaque);
194 4265d620 Paolo Bonzini
BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
195 4265d620 Paolo Bonzini
                                   int64_t sector_num, int nb_sectors,
196 4265d620 Paolo Bonzini
                                   BlockDriverCompletionFunc *cb, void *opaque);
197 faf07963 pbrook
void bdrv_aio_cancel(BlockDriverAIOCB *acb);
198 faf07963 pbrook
199 40b4f539 Kevin Wolf
typedef struct BlockRequest {
200 40b4f539 Kevin Wolf
    /* Fields to be filled by multiwrite caller */
201 40b4f539 Kevin Wolf
    int64_t sector;
202 40b4f539 Kevin Wolf
    int nb_sectors;
203 40b4f539 Kevin Wolf
    QEMUIOVector *qiov;
204 40b4f539 Kevin Wolf
    BlockDriverCompletionFunc *cb;
205 40b4f539 Kevin Wolf
    void *opaque;
206 40b4f539 Kevin Wolf
207 40b4f539 Kevin Wolf
    /* Filled by multiwrite implementation */
208 40b4f539 Kevin Wolf
    int error;
209 40b4f539 Kevin Wolf
} BlockRequest;
210 40b4f539 Kevin Wolf
211 40b4f539 Kevin Wolf
int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs,
212 40b4f539 Kevin Wolf
    int num_reqs);
213 40b4f539 Kevin Wolf
214 7d780669 aliguori
/* sg packet commands */
215 221f715d aliguori
int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf);
216 221f715d aliguori
BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
217 221f715d aliguori
        unsigned long int req, void *buf,
218 221f715d aliguori
        BlockDriverCompletionFunc *cb, void *opaque);
219 7d780669 aliguori
220 0f15423c Anthony Liguori
/* Invalidate any cached metadata used by image formats */
221 0f15423c Anthony Liguori
void bdrv_invalidate_cache(BlockDriverState *bs);
222 0f15423c Anthony Liguori
void bdrv_invalidate_cache_all(void);
223 0f15423c Anthony Liguori
224 faf07963 pbrook
/* Ensure contents are flushed to disk.  */
225 205ef796 Kevin Wolf
int bdrv_flush(BlockDriverState *bs);
226 07f07615 Paolo Bonzini
int coroutine_fn bdrv_co_flush(BlockDriverState *bs);
227 c6ca28d6 aliguori
void bdrv_flush_all(void);
228 2bc93fed MORITA Kazutaka
void bdrv_close_all(void);
229 922453bc Stefan Hajnoczi
void bdrv_drain_all(void);
230 c6ca28d6 aliguori
231 bb8bf76f Christoph Hellwig
int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors);
232 4265d620 Paolo Bonzini
int bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors);
233 f2feebbd Kevin Wolf
int bdrv_has_zero_init(BlockDriverState *bs);
234 f58c7b35 ths
int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
235 39aa9a12 Devin Nakamura
                      int *pnum);
236 faf07963 pbrook
237 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_AUTO   0
238 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_NONE   1
239 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_LBA    2
240 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_LARGE  3
241 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_RECHS  4
242 faf07963 pbrook
243 faf07963 pbrook
void bdrv_set_geometry_hint(BlockDriverState *bs,
244 faf07963 pbrook
                            int cyls, int heads, int secs);
245 faf07963 pbrook
void bdrv_set_translation_hint(BlockDriverState *bs, int translation);
246 faf07963 pbrook
void bdrv_get_geometry_hint(BlockDriverState *bs,
247 faf07963 pbrook
                            int *pcyls, int *pheads, int *psecs);
248 5bbdbb46 Blue Swirl
typedef enum FDriveType {
249 5bbdbb46 Blue Swirl
    FDRIVE_DRV_144  = 0x00,   /* 1.44 MB 3"5 drive      */
250 5bbdbb46 Blue Swirl
    FDRIVE_DRV_288  = 0x01,   /* 2.88 MB 3"5 drive      */
251 5bbdbb46 Blue Swirl
    FDRIVE_DRV_120  = 0x02,   /* 1.2  MB 5"25 drive     */
252 5bbdbb46 Blue Swirl
    FDRIVE_DRV_NONE = 0x03,   /* No drive connected     */
253 5bbdbb46 Blue Swirl
} FDriveType;
254 5bbdbb46 Blue Swirl
255 5bbdbb46 Blue Swirl
void bdrv_get_floppy_geometry_hint(BlockDriverState *bs, int *nb_heads,
256 5bbdbb46 Blue Swirl
                                   int *max_track, int *last_sect,
257 5bbdbb46 Blue Swirl
                                   FDriveType drive_in, FDriveType *drive);
258 faf07963 pbrook
int bdrv_get_translation_hint(BlockDriverState *bs);
259 abd7f68d Markus Armbruster
void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
260 abd7f68d Markus Armbruster
                       BlockErrorAction on_write_error);
261 abd7f68d Markus Armbruster
BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read);
262 faf07963 pbrook
int bdrv_is_read_only(BlockDriverState *bs);
263 985a03b0 ths
int bdrv_is_sg(BlockDriverState *bs);
264 e900a7b7 Christoph Hellwig
int bdrv_enable_write_cache(BlockDriverState *bs);
265 faf07963 pbrook
int bdrv_is_inserted(BlockDriverState *bs);
266 faf07963 pbrook
int bdrv_media_changed(BlockDriverState *bs);
267 025e849a Markus Armbruster
void bdrv_lock_medium(BlockDriverState *bs, bool locked);
268 f36f3949 Luiz Capitulino
void bdrv_eject(BlockDriverState *bs, bool eject_flag);
269 faf07963 pbrook
void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size);
270 faf07963 pbrook
BlockDriverState *bdrv_find(const char *name);
271 2f399b0a Markus Armbruster
BlockDriverState *bdrv_next(BlockDriverState *bs);
272 51de9760 aliguori
void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs),
273 51de9760 aliguori
                  void *opaque);
274 faf07963 pbrook
int bdrv_is_encrypted(BlockDriverState *bs);
275 c0f4ce77 aliguori
int bdrv_key_required(BlockDriverState *bs);
276 faf07963 pbrook
int bdrv_set_key(BlockDriverState *bs, const char *key);
277 c0f4ce77 aliguori
int bdrv_query_missing_keys(void);
278 faf07963 pbrook
void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
279 faf07963 pbrook
                         void *opaque);
280 faf07963 pbrook
const char *bdrv_get_device_name(BlockDriverState *bs);
281 faf07963 pbrook
int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
282 faf07963 pbrook
                          const uint8_t *buf, int nb_sectors);
283 faf07963 pbrook
int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
284 faf07963 pbrook
285 045df330 aliguori
const char *bdrv_get_encrypted_filename(BlockDriverState *bs);
286 faf07963 pbrook
void bdrv_get_backing_filename(BlockDriverState *bs,
287 faf07963 pbrook
                               char *filename, int filename_size);
288 feeee5ac Miguel Di Ciurcio Filho
int bdrv_can_snapshot(BlockDriverState *bs);
289 199630b6 Blue Swirl
int bdrv_is_snapshot(BlockDriverState *bs);
290 f9092b10 Markus Armbruster
BlockDriverState *bdrv_snapshots(void);
291 faf07963 pbrook
int bdrv_snapshot_create(BlockDriverState *bs,
292 faf07963 pbrook
                         QEMUSnapshotInfo *sn_info);
293 faf07963 pbrook
int bdrv_snapshot_goto(BlockDriverState *bs,
294 faf07963 pbrook
                       const char *snapshot_id);
295 faf07963 pbrook
int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id);
296 faf07963 pbrook
int bdrv_snapshot_list(BlockDriverState *bs,
297 faf07963 pbrook
                       QEMUSnapshotInfo **psn_info);
298 51ef6727 edison
int bdrv_snapshot_load_tmp(BlockDriverState *bs,
299 51ef6727 edison
                           const char *snapshot_name);
300 faf07963 pbrook
char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn);
301 faf07963 pbrook
302 faf07963 pbrook
char *get_human_readable_size(char *buf, int buf_size, int64_t size);
303 faf07963 pbrook
int path_is_absolute(const char *path);
304 faf07963 pbrook
void path_combine(char *dest, int dest_size,
305 faf07963 pbrook
                  const char *base_path,
306 faf07963 pbrook
                  const char *filename);
307 faf07963 pbrook
308 45566e9c Christoph Hellwig
int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
309 45566e9c Christoph Hellwig
                      int64_t pos, int size);
310 178e08a5 aliguori
311 45566e9c Christoph Hellwig
int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
312 45566e9c Christoph Hellwig
                      int64_t pos, int size);
313 178e08a5 aliguori
314 f88e1a42 Jes Sorensen
int bdrv_img_create(const char *filename, const char *fmt,
315 f88e1a42 Jes Sorensen
                    const char *base_filename, const char *base_fmt,
316 f88e1a42 Jes Sorensen
                    char *options, uint64_t img_size, int flags);
317 f88e1a42 Jes Sorensen
318 7b6f9300 Markus Armbruster
void bdrv_set_buffer_alignment(BlockDriverState *bs, int align);
319 ba5b7ad4 Markus Armbruster
void *qemu_blockalign(BlockDriverState *bs, size_t size);
320 ba5b7ad4 Markus Armbruster
321 23bd90d2 Jan Kiszka
#define BDRV_SECTORS_PER_DIRTY_CHUNK 2048
322 6ea44308 Jan Kiszka
323 7cd1e32a lirans@il.ibm.com
void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable);
324 7cd1e32a lirans@il.ibm.com
int bdrv_get_dirty(BlockDriverState *bs, int64_t sector);
325 a55eb92c Jan Kiszka
void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
326 a55eb92c Jan Kiszka
                      int nr_sectors);
327 aaa0eb75 Liran Schour
int64_t bdrv_get_dirty_count(BlockDriverState *bs);
328 8b9b0cc2 Kevin Wolf
329 53fec9d3 Stefan Hajnoczi
void bdrv_enable_copy_on_read(BlockDriverState *bs);
330 53fec9d3 Stefan Hajnoczi
void bdrv_disable_copy_on_read(BlockDriverState *bs);
331 53fec9d3 Stefan Hajnoczi
332 db593f25 Marcelo Tosatti
void bdrv_set_in_use(BlockDriverState *bs, int in_use);
333 db593f25 Marcelo Tosatti
int bdrv_in_use(BlockDriverState *bs);
334 8b9b0cc2 Kevin Wolf
335 a597e79c Christoph Hellwig
enum BlockAcctType {
336 a597e79c Christoph Hellwig
    BDRV_ACCT_READ,
337 a597e79c Christoph Hellwig
    BDRV_ACCT_WRITE,
338 a597e79c Christoph Hellwig
    BDRV_ACCT_FLUSH,
339 a597e79c Christoph Hellwig
    BDRV_MAX_IOTYPE,
340 a597e79c Christoph Hellwig
};
341 a597e79c Christoph Hellwig
342 a597e79c Christoph Hellwig
typedef struct BlockAcctCookie {
343 a597e79c Christoph Hellwig
    int64_t bytes;
344 c488c7f6 Christoph Hellwig
    int64_t start_time_ns;
345 a597e79c Christoph Hellwig
    enum BlockAcctType type;
346 a597e79c Christoph Hellwig
} BlockAcctCookie;
347 a597e79c Christoph Hellwig
348 a597e79c Christoph Hellwig
void bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie,
349 a597e79c Christoph Hellwig
        int64_t bytes, enum BlockAcctType type);
350 a597e79c Christoph Hellwig
void bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie);
351 a597e79c Christoph Hellwig
352 8b9b0cc2 Kevin Wolf
typedef enum {
353 8252278a Kevin Wolf
    BLKDBG_L1_UPDATE,
354 8252278a Kevin Wolf
355 8252278a Kevin Wolf
    BLKDBG_L1_GROW_ALLOC_TABLE,
356 8252278a Kevin Wolf
    BLKDBG_L1_GROW_WRITE_TABLE,
357 8252278a Kevin Wolf
    BLKDBG_L1_GROW_ACTIVATE_TABLE,
358 8252278a Kevin Wolf
359 8252278a Kevin Wolf
    BLKDBG_L2_LOAD,
360 8252278a Kevin Wolf
    BLKDBG_L2_UPDATE,
361 8252278a Kevin Wolf
    BLKDBG_L2_UPDATE_COMPRESSED,
362 8252278a Kevin Wolf
    BLKDBG_L2_ALLOC_COW_READ,
363 8252278a Kevin Wolf
    BLKDBG_L2_ALLOC_WRITE,
364 8252278a Kevin Wolf
365 8252278a Kevin Wolf
    BLKDBG_READ,
366 8252278a Kevin Wolf
    BLKDBG_READ_AIO,
367 8252278a Kevin Wolf
    BLKDBG_READ_BACKING,
368 8252278a Kevin Wolf
    BLKDBG_READ_BACKING_AIO,
369 8252278a Kevin Wolf
    BLKDBG_READ_COMPRESSED,
370 8252278a Kevin Wolf
371 8252278a Kevin Wolf
    BLKDBG_WRITE_AIO,
372 8252278a Kevin Wolf
    BLKDBG_WRITE_COMPRESSED,
373 8252278a Kevin Wolf
374 8252278a Kevin Wolf
    BLKDBG_VMSTATE_LOAD,
375 8252278a Kevin Wolf
    BLKDBG_VMSTATE_SAVE,
376 8252278a Kevin Wolf
377 8252278a Kevin Wolf
    BLKDBG_COW_READ,
378 8252278a Kevin Wolf
    BLKDBG_COW_WRITE,
379 8252278a Kevin Wolf
380 8252278a Kevin Wolf
    BLKDBG_REFTABLE_LOAD,
381 8252278a Kevin Wolf
    BLKDBG_REFTABLE_GROW,
382 8252278a Kevin Wolf
383 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_LOAD,
384 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_UPDATE,
385 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_UPDATE_PART,
386 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC,
387 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_HOOKUP,
388 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE,
389 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS,
390 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE,
391 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE,
392 8252278a Kevin Wolf
393 8252278a Kevin Wolf
    BLKDBG_CLUSTER_ALLOC,
394 8252278a Kevin Wolf
    BLKDBG_CLUSTER_ALLOC_BYTES,
395 8252278a Kevin Wolf
    BLKDBG_CLUSTER_FREE,
396 8252278a Kevin Wolf
397 8b9b0cc2 Kevin Wolf
    BLKDBG_EVENT_MAX,
398 8b9b0cc2 Kevin Wolf
} BlkDebugEvent;
399 8b9b0cc2 Kevin Wolf
400 8b9b0cc2 Kevin Wolf
#define BLKDBG_EVENT(bs, evt) bdrv_debug_event(bs, evt)
401 8b9b0cc2 Kevin Wolf
void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event);
402 8b9b0cc2 Kevin Wolf
403 d1a0739d Markus Armbruster
404 d1a0739d Markus Armbruster
/* Convenience for block device models */
405 d1a0739d Markus Armbruster
406 d1a0739d Markus Armbruster
typedef struct BlockConf {
407 d1a0739d Markus Armbruster
    BlockDriverState *bs;
408 d1a0739d Markus Armbruster
    uint16_t physical_block_size;
409 d1a0739d Markus Armbruster
    uint16_t logical_block_size;
410 d1a0739d Markus Armbruster
    uint16_t min_io_size;
411 d1a0739d Markus Armbruster
    uint32_t opt_io_size;
412 d1a0739d Markus Armbruster
    int32_t bootindex;
413 d1a0739d Markus Armbruster
    uint32_t discard_granularity;
414 d1a0739d Markus Armbruster
} BlockConf;
415 d1a0739d Markus Armbruster
416 d1a0739d Markus Armbruster
static inline unsigned int get_physical_block_exp(BlockConf *conf)
417 d1a0739d Markus Armbruster
{
418 d1a0739d Markus Armbruster
    unsigned int exp = 0, size;
419 d1a0739d Markus Armbruster
420 d1a0739d Markus Armbruster
    for (size = conf->physical_block_size;
421 d1a0739d Markus Armbruster
        size > conf->logical_block_size;
422 d1a0739d Markus Armbruster
        size >>= 1) {
423 d1a0739d Markus Armbruster
        exp++;
424 d1a0739d Markus Armbruster
    }
425 d1a0739d Markus Armbruster
426 d1a0739d Markus Armbruster
    return exp;
427 d1a0739d Markus Armbruster
}
428 d1a0739d Markus Armbruster
429 d1a0739d Markus Armbruster
#define DEFINE_BLOCK_PROPERTIES(_state, _conf)                          \
430 d1a0739d Markus Armbruster
    DEFINE_PROP_DRIVE("drive", _state, _conf.bs),                       \
431 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("logical_block_size", _state,                    \
432 d1a0739d Markus Armbruster
                       _conf.logical_block_size, 512),                  \
433 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("physical_block_size", _state,                   \
434 d1a0739d Markus Armbruster
                       _conf.physical_block_size, 512),                 \
435 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0),  \
436 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0),    \
437 d1a0739d Markus Armbruster
    DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1),        \
438 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT32("discard_granularity", _state, \
439 d1a0739d Markus Armbruster
                       _conf.discard_granularity, 0)
440 d1a0739d Markus Armbruster
441 faf07963 pbrook
#endif