Statistics
| Branch: | Revision:

root / block.h @ 93148aa5

History | View | Annotate | Download (17.3 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 8802d1fd Jeff Cody
void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top);
118 faf07963 pbrook
void bdrv_delete(BlockDriverState *bs);
119 c3993cdc Stefan Hajnoczi
int bdrv_parse_cache_flags(const char *mode, int *flags);
120 faf07963 pbrook
int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags);
121 d6e9098e Kevin Wolf
int bdrv_open(BlockDriverState *bs, const char *filename, int flags,
122 d6e9098e Kevin Wolf
              BlockDriver *drv);
123 faf07963 pbrook
void bdrv_close(BlockDriverState *bs);
124 fa879d62 Markus Armbruster
int bdrv_attach_dev(BlockDriverState *bs, void *dev);
125 fa879d62 Markus Armbruster
void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev);
126 fa879d62 Markus Armbruster
void bdrv_detach_dev(BlockDriverState *bs, void *dev);
127 fa879d62 Markus Armbruster
void *bdrv_get_attached_dev(BlockDriverState *bs);
128 0e49de52 Markus Armbruster
void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
129 0e49de52 Markus Armbruster
                      void *opaque);
130 025ccaa7 Paolo Bonzini
void bdrv_dev_eject_request(BlockDriverState *bs, bool force);
131 2c6942fa Markus Armbruster
bool bdrv_dev_has_removable_media(BlockDriverState *bs);
132 e4def80b Markus Armbruster
bool bdrv_dev_is_tray_open(BlockDriverState *bs);
133 f107639a Markus Armbruster
bool bdrv_dev_is_medium_locked(BlockDriverState *bs);
134 faf07963 pbrook
int bdrv_read(BlockDriverState *bs, int64_t sector_num,
135 faf07963 pbrook
              uint8_t *buf, int nb_sectors);
136 faf07963 pbrook
int bdrv_write(BlockDriverState *bs, int64_t sector_num,
137 faf07963 pbrook
               const uint8_t *buf, int nb_sectors);
138 faf07963 pbrook
int bdrv_pread(BlockDriverState *bs, int64_t offset,
139 faf07963 pbrook
               void *buf, int count);
140 faf07963 pbrook
int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
141 faf07963 pbrook
                const void *buf, int count);
142 f08145fe Kevin Wolf
int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
143 f08145fe Kevin Wolf
    const void *buf, int count);
144 da1fa91d Kevin Wolf
int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
145 da1fa91d Kevin Wolf
    int nb_sectors, QEMUIOVector *qiov);
146 470c0504 Stefan Hajnoczi
int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
147 470c0504 Stefan Hajnoczi
    int64_t sector_num, int nb_sectors, QEMUIOVector *qiov);
148 da1fa91d Kevin Wolf
int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
149 da1fa91d Kevin Wolf
    int nb_sectors, QEMUIOVector *qiov);
150 f08f2dda Stefan Hajnoczi
/*
151 f08f2dda Stefan Hajnoczi
 * Efficiently zero a region of the disk image.  Note that this is a regular
152 f08f2dda Stefan Hajnoczi
 * I/O request like read or write and should have a reasonable size.  This
153 f08f2dda Stefan Hajnoczi
 * function is not suitable for zeroing the entire image in a single request
154 f08f2dda Stefan Hajnoczi
 * because it may allocate memory for the entire region.
155 f08f2dda Stefan Hajnoczi
 */
156 f08f2dda Stefan Hajnoczi
int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs, int64_t sector_num,
157 f08f2dda Stefan Hajnoczi
    int nb_sectors);
158 060f51c9 Stefan Hajnoczi
int coroutine_fn bdrv_co_is_allocated(BlockDriverState *bs, int64_t sector_num,
159 060f51c9 Stefan Hajnoczi
    int nb_sectors, int *pnum);
160 e8a6bb9c Marcelo Tosatti
BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
161 e8a6bb9c Marcelo Tosatti
    const char *backing_file);
162 faf07963 pbrook
int bdrv_truncate(BlockDriverState *bs, int64_t offset);
163 faf07963 pbrook
int64_t bdrv_getlength(BlockDriverState *bs);
164 4a1d5e1f Fam Zheng
int64_t bdrv_get_allocated_file_size(BlockDriverState *bs);
165 96b8f136 ths
void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr);
166 f3d54fc4 aliguori
void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs);
167 faf07963 pbrook
int bdrv_commit(BlockDriverState *bs);
168 6ab4b5ab Markus Armbruster
void bdrv_commit_all(void);
169 756e6736 Kevin Wolf
int bdrv_change_backing_file(BlockDriverState *bs,
170 756e6736 Kevin Wolf
    const char *backing_file, const char *backing_fmt);
171 5efa9d5a Anthony Liguori
void bdrv_register(BlockDriver *bdrv);
172 5efa9d5a Anthony Liguori
173 e076f338 Kevin Wolf
174 e076f338 Kevin Wolf
typedef struct BdrvCheckResult {
175 e076f338 Kevin Wolf
    int corruptions;
176 e076f338 Kevin Wolf
    int leaks;
177 e076f338 Kevin Wolf
    int check_errors;
178 e076f338 Kevin Wolf
} BdrvCheckResult;
179 e076f338 Kevin Wolf
180 e076f338 Kevin Wolf
int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res);
181 e076f338 Kevin Wolf
182 faf07963 pbrook
/* async block I/O */
183 faf07963 pbrook
typedef struct BlockDriverAIOCB BlockDriverAIOCB;
184 faf07963 pbrook
typedef void BlockDriverCompletionFunc(void *opaque, int ret);
185 7cd1e32a lirans@il.ibm.com
typedef void BlockDriverDirtyHandler(BlockDriverState *bs, int64_t sector,
186 39aa9a12 Devin Nakamura
                                     int sector_num);
187 3b69e4b9 aliguori
BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
188 3b69e4b9 aliguori
                                 QEMUIOVector *iov, int nb_sectors,
189 3b69e4b9 aliguori
                                 BlockDriverCompletionFunc *cb, void *opaque);
190 3b69e4b9 aliguori
BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
191 3b69e4b9 aliguori
                                  QEMUIOVector *iov, int nb_sectors,
192 3b69e4b9 aliguori
                                  BlockDriverCompletionFunc *cb, void *opaque);
193 b2e12bc6 Christoph Hellwig
BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
194 39aa9a12 Devin Nakamura
                                 BlockDriverCompletionFunc *cb, void *opaque);
195 4265d620 Paolo Bonzini
BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
196 4265d620 Paolo Bonzini
                                   int64_t sector_num, int nb_sectors,
197 4265d620 Paolo Bonzini
                                   BlockDriverCompletionFunc *cb, void *opaque);
198 faf07963 pbrook
void bdrv_aio_cancel(BlockDriverAIOCB *acb);
199 faf07963 pbrook
200 40b4f539 Kevin Wolf
typedef struct BlockRequest {
201 40b4f539 Kevin Wolf
    /* Fields to be filled by multiwrite caller */
202 40b4f539 Kevin Wolf
    int64_t sector;
203 40b4f539 Kevin Wolf
    int nb_sectors;
204 40b4f539 Kevin Wolf
    QEMUIOVector *qiov;
205 40b4f539 Kevin Wolf
    BlockDriverCompletionFunc *cb;
206 40b4f539 Kevin Wolf
    void *opaque;
207 40b4f539 Kevin Wolf
208 40b4f539 Kevin Wolf
    /* Filled by multiwrite implementation */
209 40b4f539 Kevin Wolf
    int error;
210 40b4f539 Kevin Wolf
} BlockRequest;
211 40b4f539 Kevin Wolf
212 40b4f539 Kevin Wolf
int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs,
213 40b4f539 Kevin Wolf
    int num_reqs);
214 40b4f539 Kevin Wolf
215 7d780669 aliguori
/* sg packet commands */
216 221f715d aliguori
int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf);
217 221f715d aliguori
BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
218 221f715d aliguori
        unsigned long int req, void *buf,
219 221f715d aliguori
        BlockDriverCompletionFunc *cb, void *opaque);
220 7d780669 aliguori
221 0f15423c Anthony Liguori
/* Invalidate any cached metadata used by image formats */
222 0f15423c Anthony Liguori
void bdrv_invalidate_cache(BlockDriverState *bs);
223 0f15423c Anthony Liguori
void bdrv_invalidate_cache_all(void);
224 0f15423c Anthony Liguori
225 faf07963 pbrook
/* Ensure contents are flushed to disk.  */
226 205ef796 Kevin Wolf
int bdrv_flush(BlockDriverState *bs);
227 07f07615 Paolo Bonzini
int coroutine_fn bdrv_co_flush(BlockDriverState *bs);
228 c6ca28d6 aliguori
void bdrv_flush_all(void);
229 2bc93fed MORITA Kazutaka
void bdrv_close_all(void);
230 922453bc Stefan Hajnoczi
void bdrv_drain_all(void);
231 c6ca28d6 aliguori
232 bb8bf76f Christoph Hellwig
int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors);
233 4265d620 Paolo Bonzini
int bdrv_co_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors);
234 f2feebbd Kevin Wolf
int bdrv_has_zero_init(BlockDriverState *bs);
235 f58c7b35 ths
int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors,
236 39aa9a12 Devin Nakamura
                      int *pnum);
237 faf07963 pbrook
238 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_AUTO   0
239 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_NONE   1
240 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_LBA    2
241 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_LARGE  3
242 faf07963 pbrook
#define BIOS_ATA_TRANSLATION_RECHS  4
243 faf07963 pbrook
244 faf07963 pbrook
void bdrv_set_geometry_hint(BlockDriverState *bs,
245 faf07963 pbrook
                            int cyls, int heads, int secs);
246 faf07963 pbrook
void bdrv_set_translation_hint(BlockDriverState *bs, int translation);
247 faf07963 pbrook
void bdrv_get_geometry_hint(BlockDriverState *bs,
248 faf07963 pbrook
                            int *pcyls, int *pheads, int *psecs);
249 5bbdbb46 Blue Swirl
typedef enum FDriveType {
250 5bbdbb46 Blue Swirl
    FDRIVE_DRV_144  = 0x00,   /* 1.44 MB 3"5 drive      */
251 5bbdbb46 Blue Swirl
    FDRIVE_DRV_288  = 0x01,   /* 2.88 MB 3"5 drive      */
252 5bbdbb46 Blue Swirl
    FDRIVE_DRV_120  = 0x02,   /* 1.2  MB 5"25 drive     */
253 5bbdbb46 Blue Swirl
    FDRIVE_DRV_NONE = 0x03,   /* No drive connected     */
254 5bbdbb46 Blue Swirl
} FDriveType;
255 5bbdbb46 Blue Swirl
256 f8d3d128 Hervรฉ Poussineau
typedef enum FDriveRate {
257 f8d3d128 Hervรฉ Poussineau
    FDRIVE_RATE_500K = 0x00,  /* 500 Kbps */
258 f8d3d128 Hervรฉ Poussineau
    FDRIVE_RATE_300K = 0x01,  /* 300 Kbps */
259 f8d3d128 Hervรฉ Poussineau
    FDRIVE_RATE_250K = 0x02,  /* 250 Kbps */
260 f8d3d128 Hervรฉ Poussineau
    FDRIVE_RATE_1M   = 0x03,  /*   1 Mbps */
261 f8d3d128 Hervรฉ Poussineau
} FDriveRate;
262 f8d3d128 Hervรฉ Poussineau
263 5bbdbb46 Blue Swirl
void bdrv_get_floppy_geometry_hint(BlockDriverState *bs, int *nb_heads,
264 5bbdbb46 Blue Swirl
                                   int *max_track, int *last_sect,
265 f8d3d128 Hervรฉ Poussineau
                                   FDriveType drive_in, FDriveType *drive,
266 f8d3d128 Hervรฉ Poussineau
                                   FDriveRate *rate);
267 faf07963 pbrook
int bdrv_get_translation_hint(BlockDriverState *bs);
268 abd7f68d Markus Armbruster
void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error,
269 abd7f68d Markus Armbruster
                       BlockErrorAction on_write_error);
270 abd7f68d Markus Armbruster
BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read);
271 faf07963 pbrook
int bdrv_is_read_only(BlockDriverState *bs);
272 985a03b0 ths
int bdrv_is_sg(BlockDriverState *bs);
273 e900a7b7 Christoph Hellwig
int bdrv_enable_write_cache(BlockDriverState *bs);
274 faf07963 pbrook
int bdrv_is_inserted(BlockDriverState *bs);
275 faf07963 pbrook
int bdrv_media_changed(BlockDriverState *bs);
276 025e849a Markus Armbruster
void bdrv_lock_medium(BlockDriverState *bs, bool locked);
277 f36f3949 Luiz Capitulino
void bdrv_eject(BlockDriverState *bs, bool eject_flag);
278 faf07963 pbrook
void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size);
279 faf07963 pbrook
BlockDriverState *bdrv_find(const char *name);
280 2f399b0a Markus Armbruster
BlockDriverState *bdrv_next(BlockDriverState *bs);
281 51de9760 aliguori
void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs),
282 51de9760 aliguori
                  void *opaque);
283 faf07963 pbrook
int bdrv_is_encrypted(BlockDriverState *bs);
284 c0f4ce77 aliguori
int bdrv_key_required(BlockDriverState *bs);
285 faf07963 pbrook
int bdrv_set_key(BlockDriverState *bs, const char *key);
286 c0f4ce77 aliguori
int bdrv_query_missing_keys(void);
287 faf07963 pbrook
void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
288 faf07963 pbrook
                         void *opaque);
289 faf07963 pbrook
const char *bdrv_get_device_name(BlockDriverState *bs);
290 faf07963 pbrook
int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
291 faf07963 pbrook
                          const uint8_t *buf, int nb_sectors);
292 faf07963 pbrook
int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi);
293 faf07963 pbrook
294 045df330 aliguori
const char *bdrv_get_encrypted_filename(BlockDriverState *bs);
295 faf07963 pbrook
void bdrv_get_backing_filename(BlockDriverState *bs,
296 faf07963 pbrook
                               char *filename, int filename_size);
297 feeee5ac Miguel Di Ciurcio Filho
int bdrv_can_snapshot(BlockDriverState *bs);
298 199630b6 Blue Swirl
int bdrv_is_snapshot(BlockDriverState *bs);
299 f9092b10 Markus Armbruster
BlockDriverState *bdrv_snapshots(void);
300 faf07963 pbrook
int bdrv_snapshot_create(BlockDriverState *bs,
301 faf07963 pbrook
                         QEMUSnapshotInfo *sn_info);
302 faf07963 pbrook
int bdrv_snapshot_goto(BlockDriverState *bs,
303 faf07963 pbrook
                       const char *snapshot_id);
304 faf07963 pbrook
int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id);
305 faf07963 pbrook
int bdrv_snapshot_list(BlockDriverState *bs,
306 faf07963 pbrook
                       QEMUSnapshotInfo **psn_info);
307 51ef6727 edison
int bdrv_snapshot_load_tmp(BlockDriverState *bs,
308 51ef6727 edison
                           const char *snapshot_name);
309 faf07963 pbrook
char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn);
310 faf07963 pbrook
311 faf07963 pbrook
char *get_human_readable_size(char *buf, int buf_size, int64_t size);
312 faf07963 pbrook
int path_is_absolute(const char *path);
313 faf07963 pbrook
void path_combine(char *dest, int dest_size,
314 faf07963 pbrook
                  const char *base_path,
315 faf07963 pbrook
                  const char *filename);
316 faf07963 pbrook
317 45566e9c Christoph Hellwig
int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
318 45566e9c Christoph Hellwig
                      int64_t pos, int size);
319 178e08a5 aliguori
320 45566e9c Christoph Hellwig
int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
321 45566e9c Christoph Hellwig
                      int64_t pos, int size);
322 178e08a5 aliguori
323 f88e1a42 Jes Sorensen
int bdrv_img_create(const char *filename, const char *fmt,
324 f88e1a42 Jes Sorensen
                    const char *base_filename, const char *base_fmt,
325 f88e1a42 Jes Sorensen
                    char *options, uint64_t img_size, int flags);
326 f88e1a42 Jes Sorensen
327 7b6f9300 Markus Armbruster
void bdrv_set_buffer_alignment(BlockDriverState *bs, int align);
328 ba5b7ad4 Markus Armbruster
void *qemu_blockalign(BlockDriverState *bs, size_t size);
329 ba5b7ad4 Markus Armbruster
330 23bd90d2 Jan Kiszka
#define BDRV_SECTORS_PER_DIRTY_CHUNK 2048
331 6ea44308 Jan Kiszka
332 7cd1e32a lirans@il.ibm.com
void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable);
333 7cd1e32a lirans@il.ibm.com
int bdrv_get_dirty(BlockDriverState *bs, int64_t sector);
334 a55eb92c Jan Kiszka
void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector,
335 a55eb92c Jan Kiszka
                      int nr_sectors);
336 aaa0eb75 Liran Schour
int64_t bdrv_get_dirty_count(BlockDriverState *bs);
337 8b9b0cc2 Kevin Wolf
338 53fec9d3 Stefan Hajnoczi
void bdrv_enable_copy_on_read(BlockDriverState *bs);
339 53fec9d3 Stefan Hajnoczi
void bdrv_disable_copy_on_read(BlockDriverState *bs);
340 53fec9d3 Stefan Hajnoczi
341 db593f25 Marcelo Tosatti
void bdrv_set_in_use(BlockDriverState *bs, int in_use);
342 db593f25 Marcelo Tosatti
int bdrv_in_use(BlockDriverState *bs);
343 8b9b0cc2 Kevin Wolf
344 a597e79c Christoph Hellwig
enum BlockAcctType {
345 a597e79c Christoph Hellwig
    BDRV_ACCT_READ,
346 a597e79c Christoph Hellwig
    BDRV_ACCT_WRITE,
347 a597e79c Christoph Hellwig
    BDRV_ACCT_FLUSH,
348 a597e79c Christoph Hellwig
    BDRV_MAX_IOTYPE,
349 a597e79c Christoph Hellwig
};
350 a597e79c Christoph Hellwig
351 a597e79c Christoph Hellwig
typedef struct BlockAcctCookie {
352 a597e79c Christoph Hellwig
    int64_t bytes;
353 c488c7f6 Christoph Hellwig
    int64_t start_time_ns;
354 a597e79c Christoph Hellwig
    enum BlockAcctType type;
355 a597e79c Christoph Hellwig
} BlockAcctCookie;
356 a597e79c Christoph Hellwig
357 a597e79c Christoph Hellwig
void bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie,
358 a597e79c Christoph Hellwig
        int64_t bytes, enum BlockAcctType type);
359 a597e79c Christoph Hellwig
void bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie);
360 a597e79c Christoph Hellwig
361 8b9b0cc2 Kevin Wolf
typedef enum {
362 8252278a Kevin Wolf
    BLKDBG_L1_UPDATE,
363 8252278a Kevin Wolf
364 8252278a Kevin Wolf
    BLKDBG_L1_GROW_ALLOC_TABLE,
365 8252278a Kevin Wolf
    BLKDBG_L1_GROW_WRITE_TABLE,
366 8252278a Kevin Wolf
    BLKDBG_L1_GROW_ACTIVATE_TABLE,
367 8252278a Kevin Wolf
368 8252278a Kevin Wolf
    BLKDBG_L2_LOAD,
369 8252278a Kevin Wolf
    BLKDBG_L2_UPDATE,
370 8252278a Kevin Wolf
    BLKDBG_L2_UPDATE_COMPRESSED,
371 8252278a Kevin Wolf
    BLKDBG_L2_ALLOC_COW_READ,
372 8252278a Kevin Wolf
    BLKDBG_L2_ALLOC_WRITE,
373 8252278a Kevin Wolf
374 8252278a Kevin Wolf
    BLKDBG_READ,
375 8252278a Kevin Wolf
    BLKDBG_READ_AIO,
376 8252278a Kevin Wolf
    BLKDBG_READ_BACKING,
377 8252278a Kevin Wolf
    BLKDBG_READ_BACKING_AIO,
378 8252278a Kevin Wolf
    BLKDBG_READ_COMPRESSED,
379 8252278a Kevin Wolf
380 8252278a Kevin Wolf
    BLKDBG_WRITE_AIO,
381 8252278a Kevin Wolf
    BLKDBG_WRITE_COMPRESSED,
382 8252278a Kevin Wolf
383 8252278a Kevin Wolf
    BLKDBG_VMSTATE_LOAD,
384 8252278a Kevin Wolf
    BLKDBG_VMSTATE_SAVE,
385 8252278a Kevin Wolf
386 8252278a Kevin Wolf
    BLKDBG_COW_READ,
387 8252278a Kevin Wolf
    BLKDBG_COW_WRITE,
388 8252278a Kevin Wolf
389 8252278a Kevin Wolf
    BLKDBG_REFTABLE_LOAD,
390 8252278a Kevin Wolf
    BLKDBG_REFTABLE_GROW,
391 8252278a Kevin Wolf
392 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_LOAD,
393 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_UPDATE,
394 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_UPDATE_PART,
395 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC,
396 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_HOOKUP,
397 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE,
398 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE_BLOCKS,
399 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_WRITE_TABLE,
400 8252278a Kevin Wolf
    BLKDBG_REFBLOCK_ALLOC_SWITCH_TABLE,
401 8252278a Kevin Wolf
402 8252278a Kevin Wolf
    BLKDBG_CLUSTER_ALLOC,
403 8252278a Kevin Wolf
    BLKDBG_CLUSTER_ALLOC_BYTES,
404 8252278a Kevin Wolf
    BLKDBG_CLUSTER_FREE,
405 8252278a Kevin Wolf
406 8b9b0cc2 Kevin Wolf
    BLKDBG_EVENT_MAX,
407 8b9b0cc2 Kevin Wolf
} BlkDebugEvent;
408 8b9b0cc2 Kevin Wolf
409 8b9b0cc2 Kevin Wolf
#define BLKDBG_EVENT(bs, evt) bdrv_debug_event(bs, evt)
410 8b9b0cc2 Kevin Wolf
void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event);
411 8b9b0cc2 Kevin Wolf
412 d1a0739d Markus Armbruster
413 d1a0739d Markus Armbruster
/* Convenience for block device models */
414 d1a0739d Markus Armbruster
415 d1a0739d Markus Armbruster
typedef struct BlockConf {
416 d1a0739d Markus Armbruster
    BlockDriverState *bs;
417 d1a0739d Markus Armbruster
    uint16_t physical_block_size;
418 d1a0739d Markus Armbruster
    uint16_t logical_block_size;
419 d1a0739d Markus Armbruster
    uint16_t min_io_size;
420 d1a0739d Markus Armbruster
    uint32_t opt_io_size;
421 d1a0739d Markus Armbruster
    int32_t bootindex;
422 d1a0739d Markus Armbruster
    uint32_t discard_granularity;
423 d1a0739d Markus Armbruster
} BlockConf;
424 d1a0739d Markus Armbruster
425 d1a0739d Markus Armbruster
static inline unsigned int get_physical_block_exp(BlockConf *conf)
426 d1a0739d Markus Armbruster
{
427 d1a0739d Markus Armbruster
    unsigned int exp = 0, size;
428 d1a0739d Markus Armbruster
429 d1a0739d Markus Armbruster
    for (size = conf->physical_block_size;
430 d1a0739d Markus Armbruster
        size > conf->logical_block_size;
431 d1a0739d Markus Armbruster
        size >>= 1) {
432 d1a0739d Markus Armbruster
        exp++;
433 d1a0739d Markus Armbruster
    }
434 d1a0739d Markus Armbruster
435 d1a0739d Markus Armbruster
    return exp;
436 d1a0739d Markus Armbruster
}
437 d1a0739d Markus Armbruster
438 d1a0739d Markus Armbruster
#define DEFINE_BLOCK_PROPERTIES(_state, _conf)                          \
439 d1a0739d Markus Armbruster
    DEFINE_PROP_DRIVE("drive", _state, _conf.bs),                       \
440 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("logical_block_size", _state,                    \
441 d1a0739d Markus Armbruster
                       _conf.logical_block_size, 512),                  \
442 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("physical_block_size", _state,                   \
443 d1a0739d Markus Armbruster
                       _conf.physical_block_size, 512),                 \
444 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT16("min_io_size", _state, _conf.min_io_size, 0),  \
445 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT32("opt_io_size", _state, _conf.opt_io_size, 0),    \
446 d1a0739d Markus Armbruster
    DEFINE_PROP_INT32("bootindex", _state, _conf.bootindex, -1),        \
447 d1a0739d Markus Armbruster
    DEFINE_PROP_UINT32("discard_granularity", _state, \
448 d1a0739d Markus Armbruster
                       _conf.discard_granularity, 0)
449 d1a0739d Markus Armbruster
450 faf07963 pbrook
#endif