bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU System Emulator block driver |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 3 | * |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 4 | * Copyright (c) 2003 Fabrice Bellard |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 5 | * |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 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 | */ |
blueswir1 | 3990d09 | 2008-12-05 17:53:21 +0000 | [diff] [blame] | 24 | #include "config-host.h" |
| 25 | #ifdef _BSD |
| 26 | /* include native header before sys-queue.h */ |
| 27 | #include <sys/queue.h> |
| 28 | #endif |
| 29 | |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 30 | #include "qemu-common.h" |
pbrook | 87ecb68 | 2007-11-17 17:14:51 +0000 | [diff] [blame] | 31 | #include "console.h" |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 32 | #include "block_int.h" |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 33 | |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 34 | #ifdef _BSD |
| 35 | #include <sys/types.h> |
| 36 | #include <sys/stat.h> |
| 37 | #include <sys/ioctl.h> |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 38 | #include <sys/disk.h> |
| 39 | #endif |
| 40 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 41 | #define SECTOR_BITS 9 |
| 42 | #define SECTOR_SIZE (1 << SECTOR_BITS) |
bellard | 3b0d4f6 | 2005-10-30 18:30:10 +0000 | [diff] [blame] | 43 | |
bellard | 9076542 | 2006-08-07 19:10:16 +0000 | [diff] [blame] | 44 | typedef struct BlockDriverAIOCBSync { |
| 45 | BlockDriverAIOCB common; |
| 46 | QEMUBH *bh; |
| 47 | int ret; |
| 48 | } BlockDriverAIOCBSync; |
| 49 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 50 | static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs, |
| 51 | int64_t sector_num, uint8_t *buf, int nb_sectors, |
| 52 | BlockDriverCompletionFunc *cb, void *opaque); |
| 53 | static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs, |
| 54 | int64_t sector_num, const uint8_t *buf, int nb_sectors, |
| 55 | BlockDriverCompletionFunc *cb, void *opaque); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 56 | static void bdrv_aio_cancel_em(BlockDriverAIOCB *acb); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 57 | static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 58 | uint8_t *buf, int nb_sectors); |
| 59 | static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num, |
| 60 | const uint8_t *buf, int nb_sectors); |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 61 | |
blueswir1 | 7ee930d | 2008-09-17 19:04:14 +0000 | [diff] [blame] | 62 | BlockDriverState *bdrv_first; |
| 63 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 64 | static BlockDriver *first_drv; |
| 65 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 66 | int path_is_absolute(const char *path) |
| 67 | { |
| 68 | const char *p; |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 69 | #ifdef _WIN32 |
| 70 | /* specific case for names like: "\\.\d:" */ |
| 71 | if (*path == '/' || *path == '\\') |
| 72 | return 1; |
| 73 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 74 | p = strchr(path, ':'); |
| 75 | if (p) |
| 76 | p++; |
| 77 | else |
| 78 | p = path; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 79 | #ifdef _WIN32 |
| 80 | return (*p == '/' || *p == '\\'); |
| 81 | #else |
| 82 | return (*p == '/'); |
| 83 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 84 | } |
| 85 | |
| 86 | /* if filename is absolute, just copy it to dest. Otherwise, build a |
| 87 | path to it by considering it is relative to base_path. URL are |
| 88 | supported. */ |
| 89 | void path_combine(char *dest, int dest_size, |
| 90 | const char *base_path, |
| 91 | const char *filename) |
| 92 | { |
| 93 | const char *p, *p1; |
| 94 | int len; |
| 95 | |
| 96 | if (dest_size <= 0) |
| 97 | return; |
| 98 | if (path_is_absolute(filename)) { |
| 99 | pstrcpy(dest, dest_size, filename); |
| 100 | } else { |
| 101 | p = strchr(base_path, ':'); |
| 102 | if (p) |
| 103 | p++; |
| 104 | else |
| 105 | p = base_path; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 106 | p1 = strrchr(base_path, '/'); |
| 107 | #ifdef _WIN32 |
| 108 | { |
| 109 | const char *p2; |
| 110 | p2 = strrchr(base_path, '\\'); |
| 111 | if (!p1 || p2 > p1) |
| 112 | p1 = p2; |
| 113 | } |
| 114 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 115 | if (p1) |
| 116 | p1++; |
| 117 | else |
| 118 | p1 = base_path; |
| 119 | if (p1 > p) |
| 120 | p = p1; |
| 121 | len = p - base_path; |
| 122 | if (len > dest_size - 1) |
| 123 | len = dest_size - 1; |
| 124 | memcpy(dest, base_path, len); |
| 125 | dest[len] = '\0'; |
| 126 | pstrcat(dest, dest_size, filename); |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | |
pbrook | 9596ebb | 2007-11-18 01:44:38 +0000 | [diff] [blame] | 131 | static void bdrv_register(BlockDriver *bdrv) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 132 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 133 | if (!bdrv->bdrv_aio_read) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 134 | /* add AIO emulation layer */ |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 135 | bdrv->bdrv_aio_read = bdrv_aio_read_em; |
| 136 | bdrv->bdrv_aio_write = bdrv_aio_write_em; |
| 137 | bdrv->bdrv_aio_cancel = bdrv_aio_cancel_em; |
bellard | 9076542 | 2006-08-07 19:10:16 +0000 | [diff] [blame] | 138 | bdrv->aiocb_size = sizeof(BlockDriverAIOCBSync); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 139 | } else if (!bdrv->bdrv_read && !bdrv->bdrv_pread) { |
| 140 | /* add synchronous IO emulation layer */ |
| 141 | bdrv->bdrv_read = bdrv_read_em; |
| 142 | bdrv->bdrv_write = bdrv_write_em; |
| 143 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 144 | bdrv->next = first_drv; |
| 145 | first_drv = bdrv; |
| 146 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 147 | |
| 148 | /* create a new block device (by default it is empty) */ |
| 149 | BlockDriverState *bdrv_new(const char *device_name) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 150 | { |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 151 | BlockDriverState **pbs, *bs; |
| 152 | |
| 153 | bs = qemu_mallocz(sizeof(BlockDriverState)); |
| 154 | if(!bs) |
| 155 | return NULL; |
| 156 | pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 157 | if (device_name[0] != '\0') { |
| 158 | /* insert at the end */ |
| 159 | pbs = &bdrv_first; |
| 160 | while (*pbs != NULL) |
| 161 | pbs = &(*pbs)->next; |
| 162 | *pbs = bs; |
| 163 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 164 | return bs; |
| 165 | } |
| 166 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 167 | BlockDriver *bdrv_find_format(const char *format_name) |
| 168 | { |
| 169 | BlockDriver *drv1; |
| 170 | for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) { |
| 171 | if (!strcmp(drv1->format_name, format_name)) |
| 172 | return drv1; |
| 173 | } |
| 174 | return NULL; |
| 175 | } |
| 176 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 177 | int bdrv_create(BlockDriver *drv, |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 178 | const char *filename, int64_t size_in_sectors, |
| 179 | const char *backing_file, int flags) |
| 180 | { |
| 181 | if (!drv->bdrv_create) |
| 182 | return -ENOTSUP; |
| 183 | return drv->bdrv_create(filename, size_in_sectors, backing_file, flags); |
| 184 | } |
| 185 | |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 186 | #ifdef _WIN32 |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 187 | void get_tmp_filename(char *filename, int size) |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 188 | { |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 189 | char temp_dir[MAX_PATH]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 190 | |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 191 | GetTempPath(MAX_PATH, temp_dir); |
| 192 | GetTempFileName(temp_dir, "qem", 0, filename); |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 193 | } |
| 194 | #else |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 195 | void get_tmp_filename(char *filename, int size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 196 | { |
| 197 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 198 | const char *tmpdir; |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 199 | /* XXX: race condition possible */ |
aurel32 | 0badc1e | 2008-03-10 00:05:34 +0000 | [diff] [blame] | 200 | tmpdir = getenv("TMPDIR"); |
| 201 | if (!tmpdir) |
| 202 | tmpdir = "/tmp"; |
| 203 | snprintf(filename, size, "%s/vl.XXXXXX", tmpdir); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 204 | fd = mkstemp(filename); |
| 205 | close(fd); |
| 206 | } |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 207 | #endif |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 208 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 209 | #ifdef _WIN32 |
bellard | f45512f | 2006-08-23 21:40:13 +0000 | [diff] [blame] | 210 | static int is_windows_drive_prefix(const char *filename) |
| 211 | { |
| 212 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 213 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 214 | filename[1] == ':'); |
| 215 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 216 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 217 | static int is_windows_drive(const char *filename) |
| 218 | { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 219 | if (is_windows_drive_prefix(filename) && |
bellard | f45512f | 2006-08-23 21:40:13 +0000 | [diff] [blame] | 220 | filename[2] == '\0') |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 221 | return 1; |
| 222 | if (strstart(filename, "\\\\.\\", NULL) || |
| 223 | strstart(filename, "//./", NULL)) |
| 224 | return 1; |
| 225 | return 0; |
| 226 | } |
| 227 | #endif |
| 228 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 229 | static BlockDriver *find_protocol(const char *filename) |
| 230 | { |
| 231 | BlockDriver *drv1; |
| 232 | char protocol[128]; |
| 233 | int len; |
| 234 | const char *p; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 235 | |
| 236 | #ifdef _WIN32 |
bellard | f45512f | 2006-08-23 21:40:13 +0000 | [diff] [blame] | 237 | if (is_windows_drive(filename) || |
| 238 | is_windows_drive_prefix(filename)) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 239 | return &bdrv_raw; |
| 240 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 241 | p = strchr(filename, ':'); |
| 242 | if (!p) |
| 243 | return &bdrv_raw; |
| 244 | len = p - filename; |
| 245 | if (len > sizeof(protocol) - 1) |
| 246 | len = sizeof(protocol) - 1; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 247 | memcpy(protocol, filename, len); |
| 248 | protocol[len] = '\0'; |
| 249 | for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 250 | if (drv1->protocol_name && |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 251 | !strcmp(drv1->protocol_name, protocol)) |
| 252 | return drv1; |
| 253 | } |
| 254 | return NULL; |
| 255 | } |
| 256 | |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 257 | /* XXX: force raw format if block or character device ? It would |
| 258 | simplify the BSD case */ |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 259 | static BlockDriver *find_image_format(const char *filename) |
| 260 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 261 | int ret, score, score_max; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 262 | BlockDriver *drv1, *drv; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 263 | uint8_t buf[2048]; |
| 264 | BlockDriverState *bs; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 265 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 266 | /* detect host devices. By convention, /dev/cdrom[N] is always |
| 267 | recognized as a host CDROM */ |
| 268 | if (strstart(filename, "/dev/cdrom", NULL)) |
| 269 | return &bdrv_host_device; |
| 270 | #ifdef _WIN32 |
| 271 | if (is_windows_drive(filename)) |
| 272 | return &bdrv_host_device; |
| 273 | #else |
| 274 | { |
| 275 | struct stat st; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 276 | if (stat(filename, &st) >= 0 && |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 277 | (S_ISCHR(st.st_mode) || S_ISBLK(st.st_mode))) { |
| 278 | return &bdrv_host_device; |
| 279 | } |
| 280 | } |
| 281 | #endif |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 282 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 283 | drv = find_protocol(filename); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 284 | /* no need to test disk image formats for vvfat */ |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 285 | if (drv == &bdrv_vvfat) |
| 286 | return drv; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 287 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 288 | ret = bdrv_file_open(&bs, filename, BDRV_O_RDONLY); |
| 289 | if (ret < 0) |
| 290 | return NULL; |
| 291 | ret = bdrv_pread(bs, 0, buf, sizeof(buf)); |
| 292 | bdrv_delete(bs); |
| 293 | if (ret < 0) { |
| 294 | return NULL; |
| 295 | } |
| 296 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 297 | score_max = 0; |
| 298 | for(drv1 = first_drv; drv1 != NULL; drv1 = drv1->next) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 299 | if (drv1->bdrv_probe) { |
| 300 | score = drv1->bdrv_probe(buf, ret, filename); |
| 301 | if (score > score_max) { |
| 302 | score_max = score; |
| 303 | drv = drv1; |
| 304 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 305 | } |
| 306 | } |
| 307 | return drv; |
| 308 | } |
| 309 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 310 | int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 311 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 312 | BlockDriverState *bs; |
| 313 | int ret; |
| 314 | |
| 315 | bs = bdrv_new(""); |
| 316 | if (!bs) |
| 317 | return -ENOMEM; |
| 318 | ret = bdrv_open2(bs, filename, flags | BDRV_O_FILE, NULL); |
| 319 | if (ret < 0) { |
| 320 | bdrv_delete(bs); |
| 321 | return ret; |
bellard | 3b0d4f6 | 2005-10-30 18:30:10 +0000 | [diff] [blame] | 322 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 323 | *pbs = bs; |
| 324 | return 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 325 | } |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 326 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 327 | int bdrv_open(BlockDriverState *bs, const char *filename, int flags) |
| 328 | { |
| 329 | return bdrv_open2(bs, filename, flags, NULL); |
| 330 | } |
| 331 | |
| 332 | int bdrv_open2(BlockDriverState *bs, const char *filename, int flags, |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 333 | BlockDriver *drv) |
| 334 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 335 | int ret, open_flags; |
ths | eb5c851 | 2007-02-11 15:06:09 +0000 | [diff] [blame] | 336 | char tmp_filename[PATH_MAX]; |
| 337 | char backing_filename[PATH_MAX]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 338 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 339 | bs->read_only = 0; |
| 340 | bs->is_temporary = 0; |
| 341 | bs->encrypted = 0; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 342 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 343 | if (flags & BDRV_O_SNAPSHOT) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 344 | BlockDriverState *bs1; |
| 345 | int64_t total_size; |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 346 | int is_protocol = 0; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 347 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 348 | /* if snapshot, we create a temporary backing file and open it |
| 349 | instead of opening 'filename' directly */ |
| 350 | |
| 351 | /* if there is a backing file, use it */ |
| 352 | bs1 = bdrv_new(""); |
| 353 | if (!bs1) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 354 | return -ENOMEM; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 355 | } |
| 356 | if (bdrv_open(bs1, filename, 0) < 0) { |
| 357 | bdrv_delete(bs1); |
| 358 | return -1; |
| 359 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 360 | total_size = bdrv_getlength(bs1) >> SECTOR_BITS; |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 361 | |
| 362 | if (bs1->drv && bs1->drv->protocol_name) |
| 363 | is_protocol = 1; |
| 364 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 365 | bdrv_delete(bs1); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 366 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 367 | get_tmp_filename(tmp_filename, sizeof(tmp_filename)); |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 368 | |
| 369 | /* Real path is meaningless for protocols */ |
| 370 | if (is_protocol) |
| 371 | snprintf(backing_filename, sizeof(backing_filename), |
| 372 | "%s", filename); |
| 373 | else |
| 374 | realpath(filename, backing_filename); |
| 375 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 376 | if (bdrv_create(&bdrv_qcow2, tmp_filename, |
bellard | a817d93 | 2006-08-24 19:53:37 +0000 | [diff] [blame] | 377 | total_size, backing_filename, 0) < 0) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 378 | return -1; |
| 379 | } |
| 380 | filename = tmp_filename; |
| 381 | bs->is_temporary = 1; |
| 382 | } |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 383 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 384 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 385 | if (flags & BDRV_O_FILE) { |
| 386 | drv = find_protocol(filename); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 387 | if (!drv) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 388 | return -ENOENT; |
| 389 | } else { |
| 390 | if (!drv) { |
| 391 | drv = find_image_format(filename); |
| 392 | if (!drv) |
| 393 | return -1; |
| 394 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 395 | } |
| 396 | bs->drv = drv; |
| 397 | bs->opaque = qemu_mallocz(drv->instance_size); |
| 398 | if (bs->opaque == NULL && drv->instance_size > 0) |
| 399 | return -1; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 400 | /* Note: for compatibility, we open disk image files as RDWR, and |
| 401 | RDONLY as fallback */ |
| 402 | if (!(flags & BDRV_O_FILE)) |
aliguori | 9f7965c | 2008-10-14 14:42:54 +0000 | [diff] [blame] | 403 | open_flags = BDRV_O_RDWR | (flags & BDRV_O_CACHE_MASK); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 404 | else |
| 405 | open_flags = flags & ~(BDRV_O_FILE | BDRV_O_SNAPSHOT); |
| 406 | ret = drv->bdrv_open(bs, filename, open_flags); |
aurel32 | a0a8353 | 2008-10-13 21:08:34 +0000 | [diff] [blame] | 407 | if ((ret == -EACCES || ret == -EPERM) && !(flags & BDRV_O_FILE)) { |
aliguori | 9f7965c | 2008-10-14 14:42:54 +0000 | [diff] [blame] | 408 | ret = drv->bdrv_open(bs, filename, open_flags & ~BDRV_O_RDWR); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 409 | bs->read_only = 1; |
| 410 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 411 | if (ret < 0) { |
| 412 | qemu_free(bs->opaque); |
bellard | 6b21b97 | 2006-08-23 21:14:37 +0000 | [diff] [blame] | 413 | bs->opaque = NULL; |
| 414 | bs->drv = NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 415 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 416 | } |
bellard | d15a771 | 2006-08-06 13:35:09 +0000 | [diff] [blame] | 417 | if (drv->bdrv_getlength) { |
| 418 | bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS; |
| 419 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 420 | #ifndef _WIN32 |
| 421 | if (bs->is_temporary) { |
| 422 | unlink(filename); |
| 423 | } |
| 424 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 425 | if (bs->backing_file[0] != '\0') { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 426 | /* if there is a backing file, use it */ |
| 427 | bs->backing_hd = bdrv_new(""); |
| 428 | if (!bs->backing_hd) { |
| 429 | fail: |
| 430 | bdrv_close(bs); |
bellard | 6b21b97 | 2006-08-23 21:14:37 +0000 | [diff] [blame] | 431 | return -ENOMEM; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 432 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 433 | path_combine(backing_filename, sizeof(backing_filename), |
| 434 | filename, bs->backing_file); |
aliguori | 9f7965c | 2008-10-14 14:42:54 +0000 | [diff] [blame] | 435 | if (bdrv_open(bs->backing_hd, backing_filename, open_flags) < 0) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 436 | goto fail; |
| 437 | } |
| 438 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 439 | /* call the change callback */ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 440 | bs->media_changed = 1; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 441 | if (bs->change_cb) |
| 442 | bs->change_cb(bs->change_opaque); |
| 443 | |
| 444 | return 0; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 445 | } |
| 446 | |
| 447 | void bdrv_close(BlockDriverState *bs) |
| 448 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 449 | if (bs->drv) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 450 | if (bs->backing_hd) |
| 451 | bdrv_delete(bs->backing_hd); |
| 452 | bs->drv->bdrv_close(bs); |
| 453 | qemu_free(bs->opaque); |
| 454 | #ifdef _WIN32 |
| 455 | if (bs->is_temporary) { |
| 456 | unlink(bs->filename); |
| 457 | } |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 458 | #endif |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 459 | bs->opaque = NULL; |
| 460 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 461 | |
| 462 | /* call the change callback */ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 463 | bs->media_changed = 1; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 464 | if (bs->change_cb) |
| 465 | bs->change_cb(bs->change_opaque); |
| 466 | } |
| 467 | } |
| 468 | |
| 469 | void bdrv_delete(BlockDriverState *bs) |
| 470 | { |
aurel32 | 34c6f05 | 2008-04-08 19:51:21 +0000 | [diff] [blame] | 471 | BlockDriverState **pbs; |
| 472 | |
| 473 | pbs = &bdrv_first; |
| 474 | while (*pbs != bs && *pbs != NULL) |
| 475 | pbs = &(*pbs)->next; |
| 476 | if (*pbs == bs) |
| 477 | *pbs = bs->next; |
| 478 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 479 | bdrv_close(bs); |
| 480 | qemu_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 481 | } |
| 482 | |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 483 | /* commit COW file into the raw image */ |
| 484 | int bdrv_commit(BlockDriverState *bs) |
| 485 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 486 | BlockDriver *drv = bs->drv; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 487 | int64_t i, total_sectors; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 488 | int n, j; |
| 489 | unsigned char sector[512]; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 490 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 491 | if (!drv) |
| 492 | return -ENOMEDIUM; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 493 | |
| 494 | if (bs->read_only) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 495 | return -EACCES; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 496 | } |
| 497 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 498 | if (!bs->backing_hd) { |
| 499 | return -ENOTSUP; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 500 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 501 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 502 | total_sectors = bdrv_getlength(bs) >> SECTOR_BITS; |
| 503 | for (i = 0; i < total_sectors;) { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 504 | if (drv->bdrv_is_allocated(bs, i, 65536, &n)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 505 | for(j = 0; j < n; j++) { |
| 506 | if (bdrv_read(bs, i, sector, 1) != 0) { |
| 507 | return -EIO; |
| 508 | } |
| 509 | |
| 510 | if (bdrv_write(bs->backing_hd, i, sector, 1) != 0) { |
| 511 | return -EIO; |
| 512 | } |
| 513 | i++; |
| 514 | } |
| 515 | } else { |
| 516 | i += n; |
| 517 | } |
| 518 | } |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 519 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 520 | if (drv->bdrv_make_empty) |
| 521 | return drv->bdrv_make_empty(bs); |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 522 | |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 523 | return 0; |
| 524 | } |
| 525 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 526 | /* return < 0 if error. See bdrv_write() for the return codes */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 527 | int bdrv_read(BlockDriverState *bs, int64_t sector_num, |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 528 | uint8_t *buf, int nb_sectors) |
| 529 | { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 530 | BlockDriver *drv = bs->drv; |
| 531 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 532 | if (!drv) |
| 533 | return -ENOMEDIUM; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 534 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 535 | if (drv->bdrv_pread) { |
| 536 | int ret, len; |
| 537 | len = nb_sectors * 512; |
| 538 | ret = drv->bdrv_pread(bs, sector_num * 512, buf, len); |
| 539 | if (ret < 0) |
| 540 | return ret; |
| 541 | else if (ret != len) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 542 | return -EINVAL; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 543 | else { |
| 544 | bs->rd_bytes += (unsigned) len; |
| 545 | bs->rd_ops ++; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 546 | return 0; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 547 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 548 | } else { |
| 549 | return drv->bdrv_read(bs, sector_num, buf, nb_sectors); |
| 550 | } |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 551 | } |
| 552 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 553 | /* Return < 0 if error. Important errors are: |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 554 | -EIO generic I/O error (may happen for all errors) |
| 555 | -ENOMEDIUM No media inserted. |
| 556 | -EINVAL Invalid sector number or nb_sectors |
| 557 | -EACCES Trying to write a read-only device |
| 558 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 559 | int bdrv_write(BlockDriverState *bs, int64_t sector_num, |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 560 | const uint8_t *buf, int nb_sectors) |
| 561 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 562 | BlockDriver *drv = bs->drv; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 563 | if (!bs->drv) |
| 564 | return -ENOMEDIUM; |
bellard | 0849bf0 | 2003-06-30 23:17:31 +0000 | [diff] [blame] | 565 | if (bs->read_only) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 566 | return -EACCES; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 567 | if (drv->bdrv_pwrite) { |
aliguori | 42fb280 | 2009-01-15 20:43:39 +0000 | [diff] [blame] | 568 | int ret, len, count = 0; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 569 | len = nb_sectors * 512; |
aliguori | 42fb280 | 2009-01-15 20:43:39 +0000 | [diff] [blame] | 570 | do { |
| 571 | ret = drv->bdrv_pwrite(bs, sector_num * 512, buf, len - count); |
| 572 | if (ret < 0) { |
| 573 | printf("bdrv_write ret=%d\n", ret); |
| 574 | return ret; |
| 575 | } |
| 576 | count += ret; |
| 577 | buf += ret; |
| 578 | } while (count != len); |
| 579 | bs->wr_bytes += (unsigned) len; |
| 580 | bs->wr_ops ++; |
| 581 | return 0; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 582 | } |
aliguori | 42fb280 | 2009-01-15 20:43:39 +0000 | [diff] [blame] | 583 | return drv->bdrv_write(bs, sector_num, buf, nb_sectors); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 584 | } |
| 585 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 586 | static int bdrv_pread_em(BlockDriverState *bs, int64_t offset, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 587 | uint8_t *buf, int count1) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 588 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 589 | uint8_t tmp_buf[SECTOR_SIZE]; |
| 590 | int len, nb_sectors, count; |
| 591 | int64_t sector_num; |
| 592 | |
| 593 | count = count1; |
| 594 | /* first read to align to sector start */ |
| 595 | len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1); |
| 596 | if (len > count) |
| 597 | len = count; |
| 598 | sector_num = offset >> SECTOR_BITS; |
| 599 | if (len > 0) { |
| 600 | if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0) |
| 601 | return -EIO; |
| 602 | memcpy(buf, tmp_buf + (offset & (SECTOR_SIZE - 1)), len); |
| 603 | count -= len; |
| 604 | if (count == 0) |
| 605 | return count1; |
| 606 | sector_num++; |
| 607 | buf += len; |
| 608 | } |
| 609 | |
| 610 | /* read the sectors "in place" */ |
| 611 | nb_sectors = count >> SECTOR_BITS; |
| 612 | if (nb_sectors > 0) { |
| 613 | if (bdrv_read(bs, sector_num, buf, nb_sectors) < 0) |
| 614 | return -EIO; |
| 615 | sector_num += nb_sectors; |
| 616 | len = nb_sectors << SECTOR_BITS; |
| 617 | buf += len; |
| 618 | count -= len; |
| 619 | } |
| 620 | |
| 621 | /* add data from the last sector */ |
| 622 | if (count > 0) { |
| 623 | if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0) |
| 624 | return -EIO; |
| 625 | memcpy(buf, tmp_buf, count); |
| 626 | } |
| 627 | return count1; |
| 628 | } |
| 629 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 630 | static int bdrv_pwrite_em(BlockDriverState *bs, int64_t offset, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 631 | const uint8_t *buf, int count1) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 632 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 633 | uint8_t tmp_buf[SECTOR_SIZE]; |
| 634 | int len, nb_sectors, count; |
| 635 | int64_t sector_num; |
| 636 | |
| 637 | count = count1; |
| 638 | /* first write to align to sector start */ |
| 639 | len = (SECTOR_SIZE - offset) & (SECTOR_SIZE - 1); |
| 640 | if (len > count) |
| 641 | len = count; |
| 642 | sector_num = offset >> SECTOR_BITS; |
| 643 | if (len > 0) { |
| 644 | if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0) |
| 645 | return -EIO; |
| 646 | memcpy(tmp_buf + (offset & (SECTOR_SIZE - 1)), buf, len); |
| 647 | if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0) |
| 648 | return -EIO; |
| 649 | count -= len; |
| 650 | if (count == 0) |
| 651 | return count1; |
| 652 | sector_num++; |
| 653 | buf += len; |
| 654 | } |
| 655 | |
| 656 | /* write the sectors "in place" */ |
| 657 | nb_sectors = count >> SECTOR_BITS; |
| 658 | if (nb_sectors > 0) { |
| 659 | if (bdrv_write(bs, sector_num, buf, nb_sectors) < 0) |
| 660 | return -EIO; |
| 661 | sector_num += nb_sectors; |
| 662 | len = nb_sectors << SECTOR_BITS; |
| 663 | buf += len; |
| 664 | count -= len; |
| 665 | } |
| 666 | |
| 667 | /* add data from the last sector */ |
| 668 | if (count > 0) { |
| 669 | if (bdrv_read(bs, sector_num, tmp_buf, 1) < 0) |
| 670 | return -EIO; |
| 671 | memcpy(tmp_buf, buf, count); |
| 672 | if (bdrv_write(bs, sector_num, tmp_buf, 1) < 0) |
| 673 | return -EIO; |
| 674 | } |
| 675 | return count1; |
| 676 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 677 | |
| 678 | /** |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 679 | * Read with byte offsets (needed only for file protocols) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 680 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 681 | int bdrv_pread(BlockDriverState *bs, int64_t offset, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 682 | void *buf1, int count1) |
| 683 | { |
| 684 | BlockDriver *drv = bs->drv; |
| 685 | |
| 686 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 687 | return -ENOMEDIUM; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 688 | if (!drv->bdrv_pread) |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 689 | return bdrv_pread_em(bs, offset, buf1, count1); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 690 | return drv->bdrv_pread(bs, offset, buf1, count1); |
| 691 | } |
| 692 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 693 | /** |
| 694 | * Write with byte offsets (needed only for file protocols) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 695 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 696 | int bdrv_pwrite(BlockDriverState *bs, int64_t offset, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 697 | const void *buf1, int count1) |
| 698 | { |
| 699 | BlockDriver *drv = bs->drv; |
| 700 | |
| 701 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 702 | return -ENOMEDIUM; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 703 | if (!drv->bdrv_pwrite) |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 704 | return bdrv_pwrite_em(bs, offset, buf1, count1); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 705 | return drv->bdrv_pwrite(bs, offset, buf1, count1); |
| 706 | } |
| 707 | |
| 708 | /** |
| 709 | * Truncate file to 'offset' bytes (needed only for file protocols) |
| 710 | */ |
| 711 | int bdrv_truncate(BlockDriverState *bs, int64_t offset) |
| 712 | { |
| 713 | BlockDriver *drv = bs->drv; |
| 714 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 715 | return -ENOMEDIUM; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 716 | if (!drv->bdrv_truncate) |
| 717 | return -ENOTSUP; |
| 718 | return drv->bdrv_truncate(bs, offset); |
| 719 | } |
| 720 | |
| 721 | /** |
| 722 | * Length of a file in bytes. Return < 0 if error or unknown. |
| 723 | */ |
| 724 | int64_t bdrv_getlength(BlockDriverState *bs) |
| 725 | { |
| 726 | BlockDriver *drv = bs->drv; |
| 727 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 728 | return -ENOMEDIUM; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 729 | if (!drv->bdrv_getlength) { |
| 730 | /* legacy mode */ |
| 731 | return bs->total_sectors * SECTOR_SIZE; |
| 732 | } |
| 733 | return drv->bdrv_getlength(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 734 | } |
| 735 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 736 | /* return 0 as number of sectors if no device present or error */ |
ths | 96b8f13 | 2007-12-17 01:35:20 +0000 | [diff] [blame] | 737 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 738 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 739 | int64_t length; |
| 740 | length = bdrv_getlength(bs); |
| 741 | if (length < 0) |
| 742 | length = 0; |
| 743 | else |
| 744 | length = length >> SECTOR_BITS; |
| 745 | *nb_sectors_ptr = length; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 746 | } |
bellard | cf98951 | 2004-02-16 21:56:36 +0000 | [diff] [blame] | 747 | |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 748 | struct partition { |
| 749 | uint8_t boot_ind; /* 0x80 - active */ |
| 750 | uint8_t head; /* starting head */ |
| 751 | uint8_t sector; /* starting sector */ |
| 752 | uint8_t cyl; /* starting cylinder */ |
| 753 | uint8_t sys_ind; /* What partition type */ |
| 754 | uint8_t end_head; /* end head */ |
| 755 | uint8_t end_sector; /* end sector */ |
| 756 | uint8_t end_cyl; /* end cylinder */ |
| 757 | uint32_t start_sect; /* starting sector counting from 0 */ |
| 758 | uint32_t nr_sects; /* nr of sectors in partition */ |
| 759 | } __attribute__((packed)); |
| 760 | |
| 761 | /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */ |
| 762 | static int guess_disk_lchs(BlockDriverState *bs, |
| 763 | int *pcylinders, int *pheads, int *psectors) |
| 764 | { |
| 765 | uint8_t buf[512]; |
| 766 | int ret, i, heads, sectors, cylinders; |
| 767 | struct partition *p; |
| 768 | uint32_t nr_sects; |
blueswir1 | a38131b | 2008-12-05 17:56:40 +0000 | [diff] [blame] | 769 | uint64_t nb_sectors; |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 770 | |
| 771 | bdrv_get_geometry(bs, &nb_sectors); |
| 772 | |
| 773 | ret = bdrv_read(bs, 0, buf, 1); |
| 774 | if (ret < 0) |
| 775 | return -1; |
| 776 | /* test msdos magic */ |
| 777 | if (buf[510] != 0x55 || buf[511] != 0xaa) |
| 778 | return -1; |
| 779 | for(i = 0; i < 4; i++) { |
| 780 | p = ((struct partition *)(buf + 0x1be)) + i; |
| 781 | nr_sects = le32_to_cpu(p->nr_sects); |
| 782 | if (nr_sects && p->end_head) { |
| 783 | /* We make the assumption that the partition terminates on |
| 784 | a cylinder boundary */ |
| 785 | heads = p->end_head + 1; |
| 786 | sectors = p->end_sector & 63; |
| 787 | if (sectors == 0) |
| 788 | continue; |
| 789 | cylinders = nb_sectors / (heads * sectors); |
| 790 | if (cylinders < 1 || cylinders > 16383) |
| 791 | continue; |
| 792 | *pheads = heads; |
| 793 | *psectors = sectors; |
| 794 | *pcylinders = cylinders; |
| 795 | #if 0 |
| 796 | printf("guessed geometry: LCHS=%d %d %d\n", |
| 797 | cylinders, heads, sectors); |
| 798 | #endif |
| 799 | return 0; |
| 800 | } |
| 801 | } |
| 802 | return -1; |
| 803 | } |
| 804 | |
| 805 | void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs) |
| 806 | { |
| 807 | int translation, lba_detected = 0; |
| 808 | int cylinders, heads, secs; |
blueswir1 | a38131b | 2008-12-05 17:56:40 +0000 | [diff] [blame] | 809 | uint64_t nb_sectors; |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 810 | |
| 811 | /* if a geometry hint is available, use it */ |
| 812 | bdrv_get_geometry(bs, &nb_sectors); |
| 813 | bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs); |
| 814 | translation = bdrv_get_translation_hint(bs); |
| 815 | if (cylinders != 0) { |
| 816 | *pcyls = cylinders; |
| 817 | *pheads = heads; |
| 818 | *psecs = secs; |
| 819 | } else { |
| 820 | if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) { |
| 821 | if (heads > 16) { |
| 822 | /* if heads > 16, it means that a BIOS LBA |
| 823 | translation was active, so the default |
| 824 | hardware geometry is OK */ |
| 825 | lba_detected = 1; |
| 826 | goto default_geometry; |
| 827 | } else { |
| 828 | *pcyls = cylinders; |
| 829 | *pheads = heads; |
| 830 | *psecs = secs; |
| 831 | /* disable any translation to be in sync with |
| 832 | the logical geometry */ |
| 833 | if (translation == BIOS_ATA_TRANSLATION_AUTO) { |
| 834 | bdrv_set_translation_hint(bs, |
| 835 | BIOS_ATA_TRANSLATION_NONE); |
| 836 | } |
| 837 | } |
| 838 | } else { |
| 839 | default_geometry: |
| 840 | /* if no geometry, use a standard physical disk geometry */ |
| 841 | cylinders = nb_sectors / (16 * 63); |
| 842 | |
| 843 | if (cylinders > 16383) |
| 844 | cylinders = 16383; |
| 845 | else if (cylinders < 2) |
| 846 | cylinders = 2; |
| 847 | *pcyls = cylinders; |
| 848 | *pheads = 16; |
| 849 | *psecs = 63; |
| 850 | if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) { |
| 851 | if ((*pcyls * *pheads) <= 131072) { |
| 852 | bdrv_set_translation_hint(bs, |
| 853 | BIOS_ATA_TRANSLATION_LARGE); |
| 854 | } else { |
| 855 | bdrv_set_translation_hint(bs, |
| 856 | BIOS_ATA_TRANSLATION_LBA); |
| 857 | } |
| 858 | } |
| 859 | } |
| 860 | bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs); |
| 861 | } |
| 862 | } |
| 863 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 864 | void bdrv_set_geometry_hint(BlockDriverState *bs, |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 865 | int cyls, int heads, int secs) |
| 866 | { |
| 867 | bs->cyls = cyls; |
| 868 | bs->heads = heads; |
| 869 | bs->secs = secs; |
| 870 | } |
| 871 | |
| 872 | void bdrv_set_type_hint(BlockDriverState *bs, int type) |
| 873 | { |
| 874 | bs->type = type; |
| 875 | bs->removable = ((type == BDRV_TYPE_CDROM || |
| 876 | type == BDRV_TYPE_FLOPPY)); |
| 877 | } |
| 878 | |
bellard | 46d4767 | 2004-11-16 01:45:27 +0000 | [diff] [blame] | 879 | void bdrv_set_translation_hint(BlockDriverState *bs, int translation) |
| 880 | { |
| 881 | bs->translation = translation; |
| 882 | } |
| 883 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 884 | void bdrv_get_geometry_hint(BlockDriverState *bs, |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 885 | int *pcyls, int *pheads, int *psecs) |
| 886 | { |
| 887 | *pcyls = bs->cyls; |
| 888 | *pheads = bs->heads; |
| 889 | *psecs = bs->secs; |
| 890 | } |
| 891 | |
| 892 | int bdrv_get_type_hint(BlockDriverState *bs) |
| 893 | { |
| 894 | return bs->type; |
| 895 | } |
| 896 | |
bellard | 46d4767 | 2004-11-16 01:45:27 +0000 | [diff] [blame] | 897 | int bdrv_get_translation_hint(BlockDriverState *bs) |
| 898 | { |
| 899 | return bs->translation; |
| 900 | } |
| 901 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 902 | int bdrv_is_removable(BlockDriverState *bs) |
| 903 | { |
| 904 | return bs->removable; |
| 905 | } |
| 906 | |
| 907 | int bdrv_is_read_only(BlockDriverState *bs) |
| 908 | { |
| 909 | return bs->read_only; |
| 910 | } |
| 911 | |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 912 | int bdrv_is_sg(BlockDriverState *bs) |
| 913 | { |
| 914 | return bs->sg; |
| 915 | } |
| 916 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 917 | /* XXX: no longer used */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 918 | void bdrv_set_change_cb(BlockDriverState *bs, |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 919 | void (*change_cb)(void *opaque), void *opaque) |
| 920 | { |
| 921 | bs->change_cb = change_cb; |
| 922 | bs->change_opaque = opaque; |
| 923 | } |
| 924 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 925 | int bdrv_is_encrypted(BlockDriverState *bs) |
| 926 | { |
| 927 | if (bs->backing_hd && bs->backing_hd->encrypted) |
| 928 | return 1; |
| 929 | return bs->encrypted; |
| 930 | } |
| 931 | |
| 932 | int bdrv_set_key(BlockDriverState *bs, const char *key) |
| 933 | { |
| 934 | int ret; |
| 935 | if (bs->backing_hd && bs->backing_hd->encrypted) { |
| 936 | ret = bdrv_set_key(bs->backing_hd, key); |
| 937 | if (ret < 0) |
| 938 | return ret; |
| 939 | if (!bs->encrypted) |
| 940 | return 0; |
| 941 | } |
| 942 | if (!bs->encrypted || !bs->drv || !bs->drv->bdrv_set_key) |
| 943 | return -1; |
| 944 | return bs->drv->bdrv_set_key(bs, key); |
| 945 | } |
| 946 | |
| 947 | void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size) |
| 948 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 949 | if (!bs->drv) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 950 | buf[0] = '\0'; |
| 951 | } else { |
| 952 | pstrcpy(buf, buf_size, bs->drv->format_name); |
| 953 | } |
| 954 | } |
| 955 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 956 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 957 | void *opaque) |
| 958 | { |
| 959 | BlockDriver *drv; |
| 960 | |
| 961 | for (drv = first_drv; drv != NULL; drv = drv->next) { |
| 962 | it(opaque, drv->format_name); |
| 963 | } |
| 964 | } |
| 965 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 966 | BlockDriverState *bdrv_find(const char *name) |
| 967 | { |
| 968 | BlockDriverState *bs; |
| 969 | |
| 970 | for (bs = bdrv_first; bs != NULL; bs = bs->next) { |
| 971 | if (!strcmp(name, bs->device_name)) |
| 972 | return bs; |
| 973 | } |
| 974 | return NULL; |
| 975 | } |
| 976 | |
bellard | 81d0912 | 2004-07-14 17:21:37 +0000 | [diff] [blame] | 977 | void bdrv_iterate(void (*it)(void *opaque, const char *name), void *opaque) |
| 978 | { |
| 979 | BlockDriverState *bs; |
| 980 | |
| 981 | for (bs = bdrv_first; bs != NULL; bs = bs->next) { |
| 982 | it(opaque, bs->device_name); |
| 983 | } |
| 984 | } |
| 985 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 986 | const char *bdrv_get_device_name(BlockDriverState *bs) |
| 987 | { |
| 988 | return bs->device_name; |
| 989 | } |
| 990 | |
pbrook | 7a6cba6 | 2006-06-04 11:39:07 +0000 | [diff] [blame] | 991 | void bdrv_flush(BlockDriverState *bs) |
| 992 | { |
| 993 | if (bs->drv->bdrv_flush) |
| 994 | bs->drv->bdrv_flush(bs); |
| 995 | if (bs->backing_hd) |
| 996 | bdrv_flush(bs->backing_hd); |
| 997 | } |
| 998 | |
aliguori | c6ca28d | 2008-10-06 13:55:43 +0000 | [diff] [blame] | 999 | void bdrv_flush_all(void) |
| 1000 | { |
| 1001 | BlockDriverState *bs; |
| 1002 | |
| 1003 | for (bs = bdrv_first; bs != NULL; bs = bs->next) |
| 1004 | if (bs->drv && !bdrv_is_read_only(bs) && |
| 1005 | (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) |
| 1006 | bdrv_flush(bs); |
| 1007 | } |
| 1008 | |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1009 | /* |
| 1010 | * Returns true iff the specified sector is present in the disk image. Drivers |
| 1011 | * not implementing the functionality are assumed to not support backing files, |
| 1012 | * hence all their sectors are reported as allocated. |
| 1013 | * |
| 1014 | * 'pnum' is set to the number of sectors (including and immediately following |
| 1015 | * the specified sector) that are known to be in the same |
| 1016 | * allocated/unallocated state. |
| 1017 | * |
| 1018 | * 'nb_sectors' is the max value 'pnum' should be set to. |
| 1019 | */ |
| 1020 | int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, |
| 1021 | int *pnum) |
| 1022 | { |
| 1023 | int64_t n; |
| 1024 | if (!bs->drv->bdrv_is_allocated) { |
| 1025 | if (sector_num >= bs->total_sectors) { |
| 1026 | *pnum = 0; |
| 1027 | return 0; |
| 1028 | } |
| 1029 | n = bs->total_sectors - sector_num; |
| 1030 | *pnum = (n < nb_sectors) ? (n) : (nb_sectors); |
| 1031 | return 1; |
| 1032 | } |
| 1033 | return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum); |
| 1034 | } |
| 1035 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1036 | void bdrv_info(void) |
| 1037 | { |
| 1038 | BlockDriverState *bs; |
| 1039 | |
| 1040 | for (bs = bdrv_first; bs != NULL; bs = bs->next) { |
| 1041 | term_printf("%s:", bs->device_name); |
| 1042 | term_printf(" type="); |
| 1043 | switch(bs->type) { |
| 1044 | case BDRV_TYPE_HD: |
| 1045 | term_printf("hd"); |
| 1046 | break; |
| 1047 | case BDRV_TYPE_CDROM: |
| 1048 | term_printf("cdrom"); |
| 1049 | break; |
| 1050 | case BDRV_TYPE_FLOPPY: |
| 1051 | term_printf("floppy"); |
| 1052 | break; |
| 1053 | } |
| 1054 | term_printf(" removable=%d", bs->removable); |
| 1055 | if (bs->removable) { |
| 1056 | term_printf(" locked=%d", bs->locked); |
| 1057 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1058 | if (bs->drv) { |
ths | fef3074 | 2006-12-22 14:11:32 +0000 | [diff] [blame] | 1059 | term_printf(" file="); |
| 1060 | term_print_filename(bs->filename); |
| 1061 | if (bs->backing_file[0] != '\0') { |
| 1062 | term_printf(" backing_file="); |
| 1063 | term_print_filename(bs->backing_file); |
| 1064 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1065 | term_printf(" ro=%d", bs->read_only); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1066 | term_printf(" drv=%s", bs->drv->format_name); |
| 1067 | if (bs->encrypted) |
| 1068 | term_printf(" encrypted"); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1069 | } else { |
| 1070 | term_printf(" [not inserted]"); |
| 1071 | } |
| 1072 | term_printf("\n"); |
| 1073 | } |
| 1074 | } |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1075 | |
| 1076 | /* The "info blockstats" command. */ |
| 1077 | void bdrv_info_stats (void) |
| 1078 | { |
| 1079 | BlockDriverState *bs; |
aliguori | a7cbfae | 2009-01-22 18:57:30 +0000 | [diff] [blame] | 1080 | BlockDriverInfo bdi; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1081 | |
| 1082 | for (bs = bdrv_first; bs != NULL; bs = bs->next) { |
| 1083 | term_printf ("%s:" |
| 1084 | " rd_bytes=%" PRIu64 |
| 1085 | " wr_bytes=%" PRIu64 |
| 1086 | " rd_operations=%" PRIu64 |
| 1087 | " wr_operations=%" PRIu64 |
aliguori | a7cbfae | 2009-01-22 18:57:30 +0000 | [diff] [blame] | 1088 | , |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1089 | bs->device_name, |
| 1090 | bs->rd_bytes, bs->wr_bytes, |
| 1091 | bs->rd_ops, bs->wr_ops); |
aliguori | a7cbfae | 2009-01-22 18:57:30 +0000 | [diff] [blame] | 1092 | if (bdrv_get_info(bs, &bdi) == 0) |
aliguori | 1987530 | 2009-01-22 18:57:34 +0000 | [diff] [blame] | 1093 | term_printf(" high=%" PRId64 |
| 1094 | " bytes_free=%" PRId64, |
| 1095 | bdi.highest_alloc, bdi.num_free_bytes); |
aliguori | a7cbfae | 2009-01-22 18:57:30 +0000 | [diff] [blame] | 1096 | term_printf("\n"); |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1097 | } |
| 1098 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1099 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1100 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1101 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1102 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1103 | if (!bs->backing_hd) { |
| 1104 | pstrcpy(filename, filename_size, ""); |
| 1105 | } else { |
| 1106 | pstrcpy(filename, filename_size, bs->backing_file); |
| 1107 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1108 | } |
| 1109 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1110 | int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1111 | const uint8_t *buf, int nb_sectors) |
| 1112 | { |
| 1113 | BlockDriver *drv = bs->drv; |
| 1114 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1115 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1116 | if (!drv->bdrv_write_compressed) |
| 1117 | return -ENOTSUP; |
| 1118 | return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); |
| 1119 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1120 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1121 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
| 1122 | { |
| 1123 | BlockDriver *drv = bs->drv; |
| 1124 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1125 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1126 | if (!drv->bdrv_get_info) |
| 1127 | return -ENOTSUP; |
| 1128 | memset(bdi, 0, sizeof(*bdi)); |
| 1129 | return drv->bdrv_get_info(bs, bdi); |
| 1130 | } |
| 1131 | |
| 1132 | /**************************************************************/ |
| 1133 | /* handling of snapshots */ |
| 1134 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1135 | int bdrv_snapshot_create(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1136 | QEMUSnapshotInfo *sn_info) |
| 1137 | { |
| 1138 | BlockDriver *drv = bs->drv; |
| 1139 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1140 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1141 | if (!drv->bdrv_snapshot_create) |
| 1142 | return -ENOTSUP; |
| 1143 | return drv->bdrv_snapshot_create(bs, sn_info); |
| 1144 | } |
| 1145 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1146 | int bdrv_snapshot_goto(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1147 | const char *snapshot_id) |
| 1148 | { |
| 1149 | BlockDriver *drv = bs->drv; |
| 1150 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1151 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1152 | if (!drv->bdrv_snapshot_goto) |
| 1153 | return -ENOTSUP; |
| 1154 | return drv->bdrv_snapshot_goto(bs, snapshot_id); |
| 1155 | } |
| 1156 | |
| 1157 | int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) |
| 1158 | { |
| 1159 | BlockDriver *drv = bs->drv; |
| 1160 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1161 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1162 | if (!drv->bdrv_snapshot_delete) |
| 1163 | return -ENOTSUP; |
| 1164 | return drv->bdrv_snapshot_delete(bs, snapshot_id); |
| 1165 | } |
| 1166 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1167 | int bdrv_snapshot_list(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1168 | QEMUSnapshotInfo **psn_info) |
| 1169 | { |
| 1170 | BlockDriver *drv = bs->drv; |
| 1171 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1172 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1173 | if (!drv->bdrv_snapshot_list) |
| 1174 | return -ENOTSUP; |
| 1175 | return drv->bdrv_snapshot_list(bs, psn_info); |
| 1176 | } |
| 1177 | |
| 1178 | #define NB_SUFFIXES 4 |
| 1179 | |
| 1180 | char *get_human_readable_size(char *buf, int buf_size, int64_t size) |
| 1181 | { |
| 1182 | static const char suffixes[NB_SUFFIXES] = "KMGT"; |
| 1183 | int64_t base; |
| 1184 | int i; |
| 1185 | |
| 1186 | if (size <= 999) { |
| 1187 | snprintf(buf, buf_size, "%" PRId64, size); |
| 1188 | } else { |
| 1189 | base = 1024; |
| 1190 | for(i = 0; i < NB_SUFFIXES; i++) { |
| 1191 | if (size < (10 * base)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1192 | snprintf(buf, buf_size, "%0.1f%c", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1193 | (double)size / base, |
| 1194 | suffixes[i]); |
| 1195 | break; |
| 1196 | } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1197 | snprintf(buf, buf_size, "%" PRId64 "%c", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1198 | ((size + (base >> 1)) / base), |
| 1199 | suffixes[i]); |
| 1200 | break; |
| 1201 | } |
| 1202 | base = base * 1024; |
| 1203 | } |
| 1204 | } |
| 1205 | return buf; |
| 1206 | } |
| 1207 | |
| 1208 | char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn) |
| 1209 | { |
| 1210 | char buf1[128], date_buf[128], clock_buf[128]; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 1211 | #ifdef _WIN32 |
| 1212 | struct tm *ptm; |
| 1213 | #else |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1214 | struct tm tm; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 1215 | #endif |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1216 | time_t ti; |
| 1217 | int64_t secs; |
| 1218 | |
| 1219 | if (!sn) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1220 | snprintf(buf, buf_size, |
| 1221 | "%-10s%-20s%7s%20s%15s", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1222 | "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK"); |
| 1223 | } else { |
| 1224 | ti = sn->date_sec; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 1225 | #ifdef _WIN32 |
| 1226 | ptm = localtime(&ti); |
| 1227 | strftime(date_buf, sizeof(date_buf), |
| 1228 | "%Y-%m-%d %H:%M:%S", ptm); |
| 1229 | #else |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1230 | localtime_r(&ti, &tm); |
| 1231 | strftime(date_buf, sizeof(date_buf), |
| 1232 | "%Y-%m-%d %H:%M:%S", &tm); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 1233 | #endif |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1234 | secs = sn->vm_clock_nsec / 1000000000; |
| 1235 | snprintf(clock_buf, sizeof(clock_buf), |
| 1236 | "%02d:%02d:%02d.%03d", |
| 1237 | (int)(secs / 3600), |
| 1238 | (int)((secs / 60) % 60), |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1239 | (int)(secs % 60), |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1240 | (int)((sn->vm_clock_nsec / 1000000) % 1000)); |
| 1241 | snprintf(buf, buf_size, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1242 | "%-10s%-20s%7s%20s%15s", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1243 | sn->id_str, sn->name, |
| 1244 | get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size), |
| 1245 | date_buf, |
| 1246 | clock_buf); |
| 1247 | } |
| 1248 | return buf; |
| 1249 | } |
| 1250 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1251 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1252 | /**************************************************************/ |
| 1253 | /* async I/Os */ |
| 1254 | |
aliguori | 3b69e4b | 2009-01-22 16:59:24 +0000 | [diff] [blame] | 1255 | typedef struct VectorTranslationState { |
| 1256 | QEMUIOVector *iov; |
| 1257 | uint8_t *bounce; |
| 1258 | int is_write; |
| 1259 | BlockDriverAIOCB *aiocb; |
| 1260 | BlockDriverAIOCB *this_aiocb; |
| 1261 | } VectorTranslationState; |
| 1262 | |
| 1263 | static void bdrv_aio_rw_vector_cb(void *opaque, int ret) |
| 1264 | { |
| 1265 | VectorTranslationState *s = opaque; |
| 1266 | |
| 1267 | if (!s->is_write) { |
aliguori | 249aa74 | 2009-01-26 17:17:52 +0000 | [diff] [blame^] | 1268 | qemu_iovec_from_buffer(s->iov, s->bounce, s->iov->size); |
aliguori | 3b69e4b | 2009-01-22 16:59:24 +0000 | [diff] [blame] | 1269 | } |
| 1270 | qemu_free(s->bounce); |
| 1271 | s->this_aiocb->cb(s->this_aiocb->opaque, ret); |
| 1272 | qemu_aio_release(s->this_aiocb); |
| 1273 | } |
| 1274 | |
| 1275 | static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, |
| 1276 | int64_t sector_num, |
| 1277 | QEMUIOVector *iov, |
| 1278 | int nb_sectors, |
| 1279 | BlockDriverCompletionFunc *cb, |
| 1280 | void *opaque, |
| 1281 | int is_write) |
| 1282 | |
| 1283 | { |
| 1284 | VectorTranslationState *s = qemu_mallocz(sizeof(*s)); |
| 1285 | BlockDriverAIOCB *aiocb = qemu_aio_get(bs, cb, opaque); |
| 1286 | |
| 1287 | s->this_aiocb = aiocb; |
| 1288 | s->iov = iov; |
| 1289 | s->bounce = qemu_memalign(512, nb_sectors * 512); |
| 1290 | s->is_write = is_write; |
| 1291 | if (is_write) { |
| 1292 | qemu_iovec_to_buffer(s->iov, s->bounce); |
| 1293 | s->aiocb = bdrv_aio_write(bs, sector_num, s->bounce, nb_sectors, |
| 1294 | bdrv_aio_rw_vector_cb, s); |
| 1295 | } else { |
| 1296 | s->aiocb = bdrv_aio_read(bs, sector_num, s->bounce, nb_sectors, |
| 1297 | bdrv_aio_rw_vector_cb, s); |
| 1298 | } |
| 1299 | return aiocb; |
| 1300 | } |
| 1301 | |
| 1302 | BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, |
| 1303 | QEMUIOVector *iov, int nb_sectors, |
| 1304 | BlockDriverCompletionFunc *cb, void *opaque) |
| 1305 | { |
| 1306 | return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors, |
| 1307 | cb, opaque, 0); |
| 1308 | } |
| 1309 | |
| 1310 | BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, |
| 1311 | QEMUIOVector *iov, int nb_sectors, |
| 1312 | BlockDriverCompletionFunc *cb, void *opaque) |
| 1313 | { |
| 1314 | return bdrv_aio_rw_vector(bs, sector_num, iov, nb_sectors, |
| 1315 | cb, opaque, 1); |
| 1316 | } |
| 1317 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1318 | BlockDriverAIOCB *bdrv_aio_read(BlockDriverState *bs, int64_t sector_num, |
| 1319 | uint8_t *buf, int nb_sectors, |
| 1320 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1321 | { |
| 1322 | BlockDriver *drv = bs->drv; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1323 | BlockDriverAIOCB *ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1324 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1325 | if (!drv) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1326 | return NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1327 | |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1328 | ret = drv->bdrv_aio_read(bs, sector_num, buf, nb_sectors, cb, opaque); |
| 1329 | |
| 1330 | if (ret) { |
| 1331 | /* Update stats even though technically transfer has not happened. */ |
| 1332 | bs->rd_bytes += (unsigned) nb_sectors * SECTOR_SIZE; |
| 1333 | bs->rd_ops ++; |
| 1334 | } |
| 1335 | |
| 1336 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1337 | } |
| 1338 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1339 | BlockDriverAIOCB *bdrv_aio_write(BlockDriverState *bs, int64_t sector_num, |
| 1340 | const uint8_t *buf, int nb_sectors, |
| 1341 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1342 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1343 | BlockDriver *drv = bs->drv; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1344 | BlockDriverAIOCB *ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1345 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1346 | if (!drv) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1347 | return NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1348 | if (bs->read_only) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1349 | return NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1350 | |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1351 | ret = drv->bdrv_aio_write(bs, sector_num, buf, nb_sectors, cb, opaque); |
| 1352 | |
| 1353 | if (ret) { |
| 1354 | /* Update stats even though technically transfer has not happened. */ |
| 1355 | bs->wr_bytes += (unsigned) nb_sectors * SECTOR_SIZE; |
| 1356 | bs->wr_ops ++; |
| 1357 | } |
| 1358 | |
| 1359 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1360 | } |
| 1361 | |
| 1362 | void bdrv_aio_cancel(BlockDriverAIOCB *acb) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1363 | { |
| 1364 | BlockDriver *drv = acb->bs->drv; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1365 | |
aliguori | 3b69e4b | 2009-01-22 16:59:24 +0000 | [diff] [blame] | 1366 | if (acb->cb == bdrv_aio_rw_vector_cb) { |
| 1367 | VectorTranslationState *s = acb->opaque; |
| 1368 | acb = s->aiocb; |
| 1369 | } |
| 1370 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1371 | drv->bdrv_aio_cancel(acb); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1372 | } |
| 1373 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1374 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1375 | /**************************************************************/ |
| 1376 | /* async block device emulation */ |
| 1377 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1378 | static void bdrv_aio_bh_cb(void *opaque) |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 1379 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1380 | BlockDriverAIOCBSync *acb = opaque; |
| 1381 | acb->common.cb(acb->common.opaque, acb->ret); |
| 1382 | qemu_aio_release(acb); |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 1383 | } |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 1384 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1385 | static BlockDriverAIOCB *bdrv_aio_read_em(BlockDriverState *bs, |
| 1386 | int64_t sector_num, uint8_t *buf, int nb_sectors, |
| 1387 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1388 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1389 | BlockDriverAIOCBSync *acb; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1390 | int ret; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1391 | |
| 1392 | acb = qemu_aio_get(bs, cb, opaque); |
| 1393 | if (!acb->bh) |
| 1394 | acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); |
| 1395 | ret = bdrv_read(bs, sector_num, buf, nb_sectors); |
| 1396 | acb->ret = ret; |
| 1397 | qemu_bh_schedule(acb->bh); |
| 1398 | return &acb->common; |
pbrook | 7a6cba6 | 2006-06-04 11:39:07 +0000 | [diff] [blame] | 1399 | } |
| 1400 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1401 | static BlockDriverAIOCB *bdrv_aio_write_em(BlockDriverState *bs, |
| 1402 | int64_t sector_num, const uint8_t *buf, int nb_sectors, |
| 1403 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1404 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1405 | BlockDriverAIOCBSync *acb; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1406 | int ret; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1407 | |
| 1408 | acb = qemu_aio_get(bs, cb, opaque); |
| 1409 | if (!acb->bh) |
| 1410 | acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); |
| 1411 | ret = bdrv_write(bs, sector_num, buf, nb_sectors); |
| 1412 | acb->ret = ret; |
| 1413 | qemu_bh_schedule(acb->bh); |
| 1414 | return &acb->common; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1415 | } |
| 1416 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1417 | static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1418 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1419 | BlockDriverAIOCBSync *acb = (BlockDriverAIOCBSync *)blockacb; |
| 1420 | qemu_bh_cancel(acb->bh); |
| 1421 | qemu_aio_release(acb); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1422 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1423 | |
| 1424 | /**************************************************************/ |
| 1425 | /* sync block device emulation */ |
| 1426 | |
| 1427 | static void bdrv_rw_em_cb(void *opaque, int ret) |
| 1428 | { |
| 1429 | *(int *)opaque = ret; |
| 1430 | } |
| 1431 | |
| 1432 | #define NOT_DONE 0x7fffffff |
| 1433 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1434 | static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1435 | uint8_t *buf, int nb_sectors) |
| 1436 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1437 | int async_ret; |
| 1438 | BlockDriverAIOCB *acb; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1439 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1440 | async_ret = NOT_DONE; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1441 | acb = bdrv_aio_read(bs, sector_num, buf, nb_sectors, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1442 | bdrv_rw_em_cb, &async_ret); |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 1443 | if (acb == NULL) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1444 | return -1; |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 1445 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1446 | while (async_ret == NOT_DONE) { |
| 1447 | qemu_aio_wait(); |
| 1448 | } |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 1449 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1450 | return async_ret; |
| 1451 | } |
| 1452 | |
| 1453 | static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num, |
| 1454 | const uint8_t *buf, int nb_sectors) |
| 1455 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1456 | int async_ret; |
| 1457 | BlockDriverAIOCB *acb; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1458 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1459 | async_ret = NOT_DONE; |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1460 | acb = bdrv_aio_write(bs, sector_num, buf, nb_sectors, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1461 | bdrv_rw_em_cb, &async_ret); |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 1462 | if (acb == NULL) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1463 | return -1; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1464 | while (async_ret == NOT_DONE) { |
| 1465 | qemu_aio_wait(); |
| 1466 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1467 | return async_ret; |
| 1468 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1469 | |
| 1470 | void bdrv_init(void) |
| 1471 | { |
| 1472 | bdrv_register(&bdrv_raw); |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1473 | bdrv_register(&bdrv_host_device); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1474 | #ifndef _WIN32 |
| 1475 | bdrv_register(&bdrv_cow); |
| 1476 | #endif |
| 1477 | bdrv_register(&bdrv_qcow); |
| 1478 | bdrv_register(&bdrv_vmdk); |
bellard | 3c56521 | 2004-09-29 21:29:14 +0000 | [diff] [blame] | 1479 | bdrv_register(&bdrv_cloop); |
bellard | 585d0ed | 2004-12-12 11:24:44 +0000 | [diff] [blame] | 1480 | bdrv_register(&bdrv_dmg); |
bellard | a8753c3 | 2005-04-26 21:34:00 +0000 | [diff] [blame] | 1481 | bdrv_register(&bdrv_bochs); |
bellard | 6a0f9e8 | 2005-04-27 20:17:58 +0000 | [diff] [blame] | 1482 | bdrv_register(&bdrv_vpc); |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 1483 | bdrv_register(&bdrv_vvfat); |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1484 | bdrv_register(&bdrv_qcow2); |
ths | 6ada745 | 2007-07-31 23:28:53 +0000 | [diff] [blame] | 1485 | bdrv_register(&bdrv_parallels); |
ths | 7581825 | 2008-07-03 13:41:03 +0000 | [diff] [blame] | 1486 | bdrv_register(&bdrv_nbd); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1487 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 1488 | |
| 1489 | void *qemu_aio_get(BlockDriverState *bs, BlockDriverCompletionFunc *cb, |
| 1490 | void *opaque) |
| 1491 | { |
| 1492 | BlockDriver *drv; |
| 1493 | BlockDriverAIOCB *acb; |
| 1494 | |
| 1495 | drv = bs->drv; |
| 1496 | if (drv->free_aiocb) { |
| 1497 | acb = drv->free_aiocb; |
| 1498 | drv->free_aiocb = acb->next; |
| 1499 | } else { |
| 1500 | acb = qemu_mallocz(drv->aiocb_size); |
| 1501 | if (!acb) |
| 1502 | return NULL; |
| 1503 | } |
| 1504 | acb->bs = bs; |
| 1505 | acb->cb = cb; |
| 1506 | acb->opaque = opaque; |
| 1507 | return acb; |
| 1508 | } |
| 1509 | |
| 1510 | void qemu_aio_release(void *p) |
| 1511 | { |
| 1512 | BlockDriverAIOCB *acb = p; |
| 1513 | BlockDriver *drv = acb->bs->drv; |
| 1514 | acb->next = drv->free_aiocb; |
| 1515 | drv->free_aiocb = acb; |
| 1516 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1517 | |
| 1518 | /**************************************************************/ |
| 1519 | /* removable device support */ |
| 1520 | |
| 1521 | /** |
| 1522 | * Return TRUE if the media is present |
| 1523 | */ |
| 1524 | int bdrv_is_inserted(BlockDriverState *bs) |
| 1525 | { |
| 1526 | BlockDriver *drv = bs->drv; |
| 1527 | int ret; |
| 1528 | if (!drv) |
| 1529 | return 0; |
| 1530 | if (!drv->bdrv_is_inserted) |
| 1531 | return 1; |
| 1532 | ret = drv->bdrv_is_inserted(bs); |
| 1533 | return ret; |
| 1534 | } |
| 1535 | |
| 1536 | /** |
| 1537 | * Return TRUE if the media changed since the last call to this |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1538 | * function. It is currently only used for floppy disks |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1539 | */ |
| 1540 | int bdrv_media_changed(BlockDriverState *bs) |
| 1541 | { |
| 1542 | BlockDriver *drv = bs->drv; |
| 1543 | int ret; |
| 1544 | |
| 1545 | if (!drv || !drv->bdrv_media_changed) |
| 1546 | ret = -ENOTSUP; |
| 1547 | else |
| 1548 | ret = drv->bdrv_media_changed(bs); |
| 1549 | if (ret == -ENOTSUP) |
| 1550 | ret = bs->media_changed; |
| 1551 | bs->media_changed = 0; |
| 1552 | return ret; |
| 1553 | } |
| 1554 | |
| 1555 | /** |
| 1556 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 1557 | */ |
| 1558 | void bdrv_eject(BlockDriverState *bs, int eject_flag) |
| 1559 | { |
| 1560 | BlockDriver *drv = bs->drv; |
| 1561 | int ret; |
| 1562 | |
| 1563 | if (!drv || !drv->bdrv_eject) { |
| 1564 | ret = -ENOTSUP; |
| 1565 | } else { |
| 1566 | ret = drv->bdrv_eject(bs, eject_flag); |
| 1567 | } |
| 1568 | if (ret == -ENOTSUP) { |
| 1569 | if (eject_flag) |
| 1570 | bdrv_close(bs); |
| 1571 | } |
| 1572 | } |
| 1573 | |
| 1574 | int bdrv_is_locked(BlockDriverState *bs) |
| 1575 | { |
| 1576 | return bs->locked; |
| 1577 | } |
| 1578 | |
| 1579 | /** |
| 1580 | * Lock or unlock the media (if it is locked, the user won't be able |
| 1581 | * to eject it manually). |
| 1582 | */ |
| 1583 | void bdrv_set_locked(BlockDriverState *bs, int locked) |
| 1584 | { |
| 1585 | BlockDriver *drv = bs->drv; |
| 1586 | |
| 1587 | bs->locked = locked; |
| 1588 | if (drv && drv->bdrv_set_locked) { |
| 1589 | drv->bdrv_set_locked(bs, locked); |
| 1590 | } |
| 1591 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 1592 | |
| 1593 | /* needed for generic scsi interface */ |
| 1594 | |
| 1595 | int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) |
| 1596 | { |
| 1597 | BlockDriver *drv = bs->drv; |
| 1598 | |
| 1599 | if (drv && drv->bdrv_ioctl) |
| 1600 | return drv->bdrv_ioctl(bs, req, buf); |
| 1601 | return -ENOTSUP; |
| 1602 | } |