block_int.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  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_INT_H
  25. #define BLOCK_INT_H
  26. #include "block.h"
  27. #define BLOCK_FLAG_ENCRYPT 1
  28. #define BLOCK_FLAG_COMPRESS 2
  29. #define BLOCK_FLAG_COMPAT6 4
  30. typedef struct AIOPool {
  31. void (*cancel)(BlockDriverAIOCB *acb);
  32. int aiocb_size;
  33. BlockDriverAIOCB *free_aiocb;
  34. } AIOPool;
  35. struct BlockDriver {
  36. const char *format_name;
  37. int instance_size;
  38. int (*bdrv_probe)(const uint8_t *buf, int buf_size, const char *filename);
  39. int (*bdrv_open)(BlockDriverState *bs, const char *filename, int flags);
  40. int (*bdrv_read)(BlockDriverState *bs, int64_t sector_num,
  41. uint8_t *buf, int nb_sectors);
  42. int (*bdrv_write)(BlockDriverState *bs, int64_t sector_num,
  43. const uint8_t *buf, int nb_sectors);
  44. void (*bdrv_close)(BlockDriverState *bs);
  45. int (*bdrv_create)(const char *filename, int64_t total_sectors,
  46. const char *backing_file, int flags);
  47. void (*bdrv_flush)(BlockDriverState *bs);
  48. int (*bdrv_is_allocated)(BlockDriverState *bs, int64_t sector_num,
  49. int nb_sectors, int *pnum);
  50. int (*bdrv_set_key)(BlockDriverState *bs, const char *key);
  51. int (*bdrv_make_empty)(BlockDriverState *bs);
  52. /* aio */
  53. BlockDriverAIOCB *(*bdrv_aio_read)(BlockDriverState *bs,
  54. int64_t sector_num, uint8_t *buf, int nb_sectors,
  55. BlockDriverCompletionFunc *cb, void *opaque);
  56. BlockDriverAIOCB *(*bdrv_aio_write)(BlockDriverState *bs,
  57. int64_t sector_num, const uint8_t *buf, int nb_sectors,
  58. BlockDriverCompletionFunc *cb, void *opaque);
  59. void (*bdrv_aio_cancel)(BlockDriverAIOCB *acb);
  60. int aiocb_size;
  61. const char *protocol_name;
  62. int (*bdrv_pread)(BlockDriverState *bs, int64_t offset,
  63. uint8_t *buf, int count);
  64. int (*bdrv_pwrite)(BlockDriverState *bs, int64_t offset,
  65. const uint8_t *buf, int count);
  66. int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset);
  67. int64_t (*bdrv_getlength)(BlockDriverState *bs);
  68. int (*bdrv_write_compressed)(BlockDriverState *bs, int64_t sector_num,
  69. const uint8_t *buf, int nb_sectors);
  70. int (*bdrv_snapshot_create)(BlockDriverState *bs,
  71. QEMUSnapshotInfo *sn_info);
  72. int (*bdrv_snapshot_goto)(BlockDriverState *bs,
  73. const char *snapshot_id);
  74. int (*bdrv_snapshot_delete)(BlockDriverState *bs, const char *snapshot_id);
  75. int (*bdrv_snapshot_list)(BlockDriverState *bs,
  76. QEMUSnapshotInfo **psn_info);
  77. int (*bdrv_get_info)(BlockDriverState *bs, BlockDriverInfo *bdi);
  78. int (*bdrv_put_buffer)(BlockDriverState *bs, const uint8_t *buf,
  79. int64_t pos, int size);
  80. int (*bdrv_get_buffer)(BlockDriverState *bs, uint8_t *buf,
  81. int64_t pos, int size);
  82. /* removable device specific */
  83. int (*bdrv_is_inserted)(BlockDriverState *bs);
  84. int (*bdrv_media_changed)(BlockDriverState *bs);
  85. int (*bdrv_eject)(BlockDriverState *bs, int eject_flag);
  86. int (*bdrv_set_locked)(BlockDriverState *bs, int locked);
  87. /* to control generic scsi devices */
  88. int (*bdrv_ioctl)(BlockDriverState *bs, unsigned long int req, void *buf);
  89. AIOPool aio_pool;
  90. struct BlockDriver *next;
  91. };
  92. struct BlockDriverState {
  93. int64_t total_sectors; /* if we are reading a disk image, give its
  94. size in sectors */
  95. int read_only; /* if true, the media is read only */
  96. int removable; /* if true, the media can be removed */
  97. int locked; /* if true, the media cannot temporarily be ejected */
  98. int encrypted; /* if true, the media is encrypted */
  99. int valid_key; /* if true, a valid encryption key has been set */
  100. int sg; /* if true, the device is a /dev/sg* */
  101. /* event callback when inserting/removing */
  102. void (*change_cb)(void *opaque);
  103. void *change_opaque;
  104. BlockDriver *drv; /* NULL means no media */
  105. void *opaque;
  106. char filename[1024];
  107. char backing_file[1024]; /* if non zero, the image is a diff of
  108. this file image */
  109. int is_temporary;
  110. int media_changed;
  111. BlockDriverState *backing_hd;
  112. /* async read/write emulation */
  113. void *sync_aiocb;
  114. /* I/O stats (display with "info blockstats"). */
  115. uint64_t rd_bytes;
  116. uint64_t wr_bytes;
  117. uint64_t rd_ops;
  118. uint64_t wr_ops;
  119. /* Whether the disk can expand beyond total_sectors */
  120. int growable;
  121. /* NOTE: the following infos are only hints for real hardware
  122. drivers. They are not used by the block driver */
  123. int cyls, heads, secs, translation;
  124. int type;
  125. char device_name[32];
  126. BlockDriverState *next;
  127. void *private;
  128. };
  129. struct BlockDriverAIOCB {
  130. AIOPool *pool;
  131. BlockDriverState *bs;
  132. BlockDriverCompletionFunc *cb;
  133. void *opaque;
  134. BlockDriverAIOCB *next;
  135. };
  136. void get_tmp_filename(char *filename, int size);
  137. void aio_pool_init(AIOPool *pool, int aiocb_size,
  138. void (*cancel)(BlockDriverAIOCB *acb));
  139. void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb,
  140. void *opaque);
  141. void *qemu_aio_get_pool(AIOPool *pool, BlockDriverState *bs,
  142. BlockDriverCompletionFunc *cb, void *opaque);
  143. void qemu_aio_release(void *p);
  144. extern BlockDriverState *bdrv_first;
  145. #endif /* BLOCK_INT_H */