| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU System Emulator block driver | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |  * Copyright (c) 2003 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | #ifndef BLOCK_INT_H
 | 
					
						
							|  |  |  | #define BLOCK_INT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-11-11 02:51:17 +00:00
										 |  |  | #include "block.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-16 21:59:02 +00:00
										 |  |  | #define BLOCK_FLAG_ENCRYPT	1
 | 
					
						
							|  |  |  | #define BLOCK_FLAG_COMPRESS	2
 | 
					
						
							|  |  |  | #define BLOCK_FLAG_COMPAT6	4
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  | struct BlockDriver { | 
					
						
							|  |  |  |     const char *format_name; | 
					
						
							|  |  |  |     int instance_size; | 
					
						
							|  |  |  |     int (*bdrv_probe)(const uint8_t *buf, int buf_size, const char *filename); | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  |     int (*bdrv_open)(BlockDriverState *bs, const char *filename, int flags); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_read)(BlockDriverState *bs, int64_t sector_num, | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |                      uint8_t *buf, int nb_sectors); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_write)(BlockDriverState *bs, int64_t sector_num, | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |                       const uint8_t *buf, int nb_sectors); | 
					
						
							| 
									
										
										
										
											2004-09-18 19:32:11 +00:00
										 |  |  |     void (*bdrv_close)(BlockDriverState *bs); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_create)(const char *filename, int64_t total_sectors, | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |                        const char *backing_file, int flags); | 
					
						
							| 
									
										
										
										
											2006-06-04 11:39:07 +00:00
										 |  |  |     void (*bdrv_flush)(BlockDriverState *bs); | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     int (*bdrv_is_allocated)(BlockDriverState *bs, int64_t sector_num, | 
					
						
							|  |  |  |                              int nb_sectors, int *pnum); | 
					
						
							|  |  |  |     int (*bdrv_set_key)(BlockDriverState *bs, const char *key); | 
					
						
							| 
									
										
										
										
											2005-12-18 18:28:15 +00:00
										 |  |  |     int (*bdrv_make_empty)(BlockDriverState *bs); | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  |     /* aio */ | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     BlockDriverAIOCB *(*bdrv_aio_read)(BlockDriverState *bs, | 
					
						
							|  |  |  |         int64_t sector_num, uint8_t *buf, int nb_sectors, | 
					
						
							|  |  |  |         BlockDriverCompletionFunc *cb, void *opaque); | 
					
						
							|  |  |  |     BlockDriverAIOCB *(*bdrv_aio_write)(BlockDriverState *bs, | 
					
						
							|  |  |  |         int64_t sector_num, const uint8_t *buf, int nb_sectors, | 
					
						
							|  |  |  |         BlockDriverCompletionFunc *cb, void *opaque); | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  |     void (*bdrv_aio_cancel)(BlockDriverAIOCB *acb); | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     int aiocb_size; | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const char *protocol_name; | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_pread)(BlockDriverState *bs, int64_t offset, | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  |                       uint8_t *buf, int count); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_pwrite)(BlockDriverState *bs, int64_t offset, | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  |                        const uint8_t *buf, int count); | 
					
						
							|  |  |  |     int (*bdrv_truncate)(BlockDriverState *bs, int64_t offset); | 
					
						
							|  |  |  |     int64_t (*bdrv_getlength)(BlockDriverState *bs); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_write_compressed)(BlockDriverState *bs, int64_t sector_num, | 
					
						
							| 
									
										
										
										
											2006-08-05 21:31:00 +00:00
										 |  |  |                                  const uint8_t *buf, int nb_sectors); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_snapshot_create)(BlockDriverState *bs, | 
					
						
							| 
									
										
										
										
											2006-08-05 21:31:00 +00:00
										 |  |  |                                 QEMUSnapshotInfo *sn_info); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_snapshot_goto)(BlockDriverState *bs, | 
					
						
							| 
									
										
										
										
											2006-08-05 21:31:00 +00:00
										 |  |  |                               const char *snapshot_id); | 
					
						
							|  |  |  |     int (*bdrv_snapshot_delete)(BlockDriverState *bs, const char *snapshot_id); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |     int (*bdrv_snapshot_list)(BlockDriverState *bs, | 
					
						
							| 
									
										
										
										
											2006-08-05 21:31:00 +00:00
										 |  |  |                               QEMUSnapshotInfo **psn_info); | 
					
						
							|  |  |  |     int (*bdrv_get_info)(BlockDriverState *bs, BlockDriverInfo *bdi); | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-19 11:45:59 +00:00
										 |  |  |     /* removable device specific */ | 
					
						
							|  |  |  |     int (*bdrv_is_inserted)(BlockDriverState *bs); | 
					
						
							|  |  |  |     int (*bdrv_media_changed)(BlockDriverState *bs); | 
					
						
							|  |  |  |     int (*bdrv_eject)(BlockDriverState *bs, int eject_flag); | 
					
						
							|  |  |  |     int (*bdrv_set_locked)(BlockDriverState *bs, int locked); | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-24 16:10:43 +00:00
										 |  |  |     /* to control generic scsi devices */ | 
					
						
							|  |  |  |     int (*bdrv_ioctl)(BlockDriverState *bs, unsigned long int req, void *buf); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     BlockDriverAIOCB *free_aiocb; | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     struct BlockDriver *next; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct BlockDriverState { | 
					
						
							| 
									
										
										
										
											2006-08-06 13:35:09 +00:00
										 |  |  |     int64_t total_sectors; /* if we are reading a disk image, give its
 | 
					
						
							|  |  |  |                               size in sectors */ | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     int read_only; /* if true, the media is read only */ | 
					
						
							|  |  |  |     int removable; /* if true, the media can be removed */ | 
					
						
							|  |  |  |     int locked;    /* if true, the media cannot temporarily be ejected */ | 
					
						
							|  |  |  |     int encrypted; /* if true, the media is encrypted */ | 
					
						
							| 
									
										
										
										
											2007-12-24 16:10:43 +00:00
										 |  |  |     int sg;        /* if true, the device is a /dev/sg* */ | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     /* event callback when inserting/removing */ | 
					
						
							|  |  |  |     void (*change_cb)(void *opaque); | 
					
						
							|  |  |  |     void *change_opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-19 11:45:59 +00:00
										 |  |  |     BlockDriver *drv; /* NULL means no media */ | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     void *opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     char filename[1024]; | 
					
						
							|  |  |  |     char backing_file[1024]; /* if non zero, the image is a diff of
 | 
					
						
							|  |  |  |                                 this file image */ | 
					
						
							|  |  |  |     int is_temporary; | 
					
						
							| 
									
										
										
										
											2006-08-19 11:45:59 +00:00
										 |  |  |     int media_changed; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     BlockDriverState *backing_hd; | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     /* async read/write emulation */ | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     void *sync_aiocb; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-12-02 05:18:19 +00:00
										 |  |  |     /* I/O stats (display with "info blockstats"). */ | 
					
						
							|  |  |  |     uint64_t rd_bytes; | 
					
						
							|  |  |  |     uint64_t wr_bytes; | 
					
						
							|  |  |  |     uint64_t rd_ops; | 
					
						
							|  |  |  |     uint64_t wr_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     /* NOTE: the following infos are only hints for real hardware
 | 
					
						
							|  |  |  |        drivers. They are not used by the block driver */ | 
					
						
							| 
									
										
										
										
											2004-11-16 01:45:27 +00:00
										 |  |  |     int cyls, heads, secs, translation; | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  |     int type; | 
					
						
							|  |  |  |     char device_name[32]; | 
					
						
							|  |  |  |     BlockDriverState *next; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  | struct BlockDriverAIOCB { | 
					
						
							|  |  |  |     BlockDriverState *bs; | 
					
						
							|  |  |  |     BlockDriverCompletionFunc *cb; | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  |     void *opaque; | 
					
						
							|  |  |  |     BlockDriverAIOCB *next; | 
					
						
							| 
									
										
										
										
											2006-08-01 16:21:11 +00:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-12-18 18:28:15 +00:00
										 |  |  | void get_tmp_filename(char *filename, int size); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-08-07 02:38:06 +00:00
										 |  |  | void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb, | 
					
						
							|  |  |  |                    void *opaque); | 
					
						
							|  |  |  | void qemu_aio_release(void *p); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-09-17 19:04:14 +00:00
										 |  |  | extern BlockDriverState *bdrv_first; | 
					
						
							| 
									
										
										
										
											2007-11-11 02:51:17 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-01 21:59:26 +00:00
										 |  |  | #endif /* BLOCK_INT_H */
 |