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