Statistics
| Branch: | Revision:

root / block.h @ 463ce4ae

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