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" |
pbrook | faf0796 | 2007-11-11 02:51:17 +0000 | [diff] [blame] | 25 | #include "qemu-common.h" |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 26 | #include "trace.h" |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 27 | #include "monitor.h" |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 28 | #include "block_int.h" |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 29 | #include "module.h" |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 30 | #include "qemu-objects.h" |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 31 | |
Juan Quintela | 71e72a1 | 2009-07-27 16:12:56 +0200 | [diff] [blame] | 32 | #ifdef CONFIG_BSD |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 33 | #include <sys/types.h> |
| 34 | #include <sys/stat.h> |
| 35 | #include <sys/ioctl.h> |
Blue Swirl | 72cf2d4 | 2009-09-12 07:36:22 +0000 | [diff] [blame] | 36 | #include <sys/queue.h> |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 37 | #ifndef __DragonFly__ |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 38 | #include <sys/disk.h> |
| 39 | #endif |
blueswir1 | c5e9723 | 2009-03-07 20:06:23 +0000 | [diff] [blame] | 40 | #endif |
bellard | 7674e7b | 2005-04-26 21:59:26 +0000 | [diff] [blame] | 41 | |
aliguori | 49dc768 | 2009-03-08 16:26:59 +0000 | [diff] [blame] | 42 | #ifdef _WIN32 |
| 43 | #include <windows.h> |
| 44 | #endif |
| 45 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 46 | static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, |
| 47 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, |
aliguori | c87c067 | 2009-04-07 18:43:20 +0000 | [diff] [blame] | 48 | BlockDriverCompletionFunc *cb, void *opaque); |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 49 | static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, |
| 50 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 51 | BlockDriverCompletionFunc *cb, void *opaque); |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 52 | static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs, |
| 53 | BlockDriverCompletionFunc *cb, void *opaque); |
Alexander Graf | 016f5cf | 2010-05-26 17:51:49 +0200 | [diff] [blame] | 54 | static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs, |
| 55 | BlockDriverCompletionFunc *cb, void *opaque); |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 56 | static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 57 | uint8_t *buf, int nb_sectors); |
| 58 | static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num, |
| 59 | const uint8_t *buf, int nb_sectors); |
bellard | ec530c8 | 2006-04-25 22:36:06 +0000 | [diff] [blame] | 60 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 61 | static QTAILQ_HEAD(, BlockDriverState) bdrv_states = |
| 62 | QTAILQ_HEAD_INITIALIZER(bdrv_states); |
blueswir1 | 7ee930d | 2008-09-17 19:04:14 +0000 | [diff] [blame] | 63 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 64 | static QLIST_HEAD(, BlockDriver) bdrv_drivers = |
| 65 | QLIST_HEAD_INITIALIZER(bdrv_drivers); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 66 | |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 67 | /* The device to use for VM snapshots */ |
| 68 | static BlockDriverState *bs_snapshots; |
| 69 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 70 | /* If non-zero, use only whitelisted block drivers */ |
| 71 | static int use_bdrv_whitelist; |
| 72 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 73 | #ifdef _WIN32 |
| 74 | static int is_windows_drive_prefix(const char *filename) |
| 75 | { |
| 76 | return (((filename[0] >= 'a' && filename[0] <= 'z') || |
| 77 | (filename[0] >= 'A' && filename[0] <= 'Z')) && |
| 78 | filename[1] == ':'); |
| 79 | } |
| 80 | |
| 81 | int is_windows_drive(const char *filename) |
| 82 | { |
| 83 | if (is_windows_drive_prefix(filename) && |
| 84 | filename[2] == '\0') |
| 85 | return 1; |
| 86 | if (strstart(filename, "\\\\.\\", NULL) || |
| 87 | strstart(filename, "//./", NULL)) |
| 88 | return 1; |
| 89 | return 0; |
| 90 | } |
| 91 | #endif |
| 92 | |
| 93 | /* check if the path starts with "<protocol>:" */ |
| 94 | static int path_has_protocol(const char *path) |
| 95 | { |
| 96 | #ifdef _WIN32 |
| 97 | if (is_windows_drive(path) || |
| 98 | is_windows_drive_prefix(path)) { |
| 99 | return 0; |
| 100 | } |
| 101 | #endif |
| 102 | |
| 103 | return strchr(path, ':') != NULL; |
| 104 | } |
| 105 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 106 | int path_is_absolute(const char *path) |
| 107 | { |
| 108 | const char *p; |
bellard | 2166442 | 2007-01-07 18:22:37 +0000 | [diff] [blame] | 109 | #ifdef _WIN32 |
| 110 | /* specific case for names like: "\\.\d:" */ |
| 111 | if (*path == '/' || *path == '\\') |
| 112 | return 1; |
| 113 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 114 | p = strchr(path, ':'); |
| 115 | if (p) |
| 116 | p++; |
| 117 | else |
| 118 | p = path; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 119 | #ifdef _WIN32 |
| 120 | return (*p == '/' || *p == '\\'); |
| 121 | #else |
| 122 | return (*p == '/'); |
| 123 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | /* if filename is absolute, just copy it to dest. Otherwise, build a |
| 127 | path to it by considering it is relative to base_path. URL are |
| 128 | supported. */ |
| 129 | void path_combine(char *dest, int dest_size, |
| 130 | const char *base_path, |
| 131 | const char *filename) |
| 132 | { |
| 133 | const char *p, *p1; |
| 134 | int len; |
| 135 | |
| 136 | if (dest_size <= 0) |
| 137 | return; |
| 138 | if (path_is_absolute(filename)) { |
| 139 | pstrcpy(dest, dest_size, filename); |
| 140 | } else { |
| 141 | p = strchr(base_path, ':'); |
| 142 | if (p) |
| 143 | p++; |
| 144 | else |
| 145 | p = base_path; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 146 | p1 = strrchr(base_path, '/'); |
| 147 | #ifdef _WIN32 |
| 148 | { |
| 149 | const char *p2; |
| 150 | p2 = strrchr(base_path, '\\'); |
| 151 | if (!p1 || p2 > p1) |
| 152 | p1 = p2; |
| 153 | } |
| 154 | #endif |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 155 | if (p1) |
| 156 | p1++; |
| 157 | else |
| 158 | p1 = base_path; |
| 159 | if (p1 > p) |
| 160 | p = p1; |
| 161 | len = p - base_path; |
| 162 | if (len > dest_size - 1) |
| 163 | len = dest_size - 1; |
| 164 | memcpy(dest, base_path, len); |
| 165 | dest[len] = '\0'; |
| 166 | pstrcat(dest, dest_size, filename); |
| 167 | } |
| 168 | } |
| 169 | |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 170 | void bdrv_register(BlockDriver *bdrv) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 171 | { |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 172 | if (!bdrv->bdrv_aio_readv) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 173 | /* add AIO emulation layer */ |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 174 | bdrv->bdrv_aio_readv = bdrv_aio_readv_em; |
| 175 | bdrv->bdrv_aio_writev = bdrv_aio_writev_em; |
aliguori | eda578e | 2009-03-12 19:57:16 +0000 | [diff] [blame] | 176 | } else if (!bdrv->bdrv_read) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 177 | /* add synchronous IO emulation layer */ |
| 178 | bdrv->bdrv_read = bdrv_read_em; |
| 179 | bdrv->bdrv_write = bdrv_write_em; |
| 180 | } |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 181 | |
| 182 | if (!bdrv->bdrv_aio_flush) |
| 183 | bdrv->bdrv_aio_flush = bdrv_aio_flush_em; |
| 184 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 185 | QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 186 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 187 | |
| 188 | /* create a new block device (by default it is empty) */ |
| 189 | BlockDriverState *bdrv_new(const char *device_name) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 190 | { |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 191 | BlockDriverState *bs; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 192 | |
| 193 | bs = qemu_mallocz(sizeof(BlockDriverState)); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 194 | pstrcpy(bs->device_name, sizeof(bs->device_name), device_name); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 195 | if (device_name[0] != '\0') { |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 196 | QTAILQ_INSERT_TAIL(&bdrv_states, bs, list); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 197 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 198 | return bs; |
| 199 | } |
| 200 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 201 | BlockDriver *bdrv_find_format(const char *format_name) |
| 202 | { |
| 203 | BlockDriver *drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 204 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 205 | if (!strcmp(drv1->format_name, format_name)) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 206 | return drv1; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 207 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 208 | } |
| 209 | return NULL; |
| 210 | } |
| 211 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 212 | static int bdrv_is_whitelisted(BlockDriver *drv) |
| 213 | { |
| 214 | static const char *whitelist[] = { |
| 215 | CONFIG_BDRV_WHITELIST |
| 216 | }; |
| 217 | const char **p; |
| 218 | |
| 219 | if (!whitelist[0]) |
| 220 | return 1; /* no whitelist, anything goes */ |
| 221 | |
| 222 | for (p = whitelist; *p; p++) { |
| 223 | if (!strcmp(drv->format_name, *p)) { |
| 224 | return 1; |
| 225 | } |
| 226 | } |
| 227 | return 0; |
| 228 | } |
| 229 | |
| 230 | BlockDriver *bdrv_find_whitelisted_format(const char *format_name) |
| 231 | { |
| 232 | BlockDriver *drv = bdrv_find_format(format_name); |
| 233 | return drv && bdrv_is_whitelisted(drv) ? drv : NULL; |
| 234 | } |
| 235 | |
Kevin Wolf | 0e7e198 | 2009-05-18 16:42:10 +0200 | [diff] [blame] | 236 | int bdrv_create(BlockDriver *drv, const char* filename, |
| 237 | QEMUOptionParameter *options) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 238 | { |
| 239 | if (!drv->bdrv_create) |
| 240 | return -ENOTSUP; |
Kevin Wolf | 0e7e198 | 2009-05-18 16:42:10 +0200 | [diff] [blame] | 241 | |
| 242 | return drv->bdrv_create(filename, options); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 245 | int bdrv_create_file(const char* filename, QEMUOptionParameter *options) |
| 246 | { |
| 247 | BlockDriver *drv; |
| 248 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 249 | drv = bdrv_find_protocol(filename); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 250 | if (drv == NULL) { |
Stefan Hajnoczi | 16905d7 | 2010-11-30 15:14:14 +0000 | [diff] [blame] | 251 | return -ENOENT; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | return bdrv_create(drv, filename, options); |
| 255 | } |
| 256 | |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 257 | #ifdef _WIN32 |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 258 | void get_tmp_filename(char *filename, int size) |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 259 | { |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 260 | char temp_dir[MAX_PATH]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 261 | |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 262 | GetTempPath(MAX_PATH, temp_dir); |
| 263 | GetTempFileName(temp_dir, "qem", 0, filename); |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 264 | } |
| 265 | #else |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 266 | void get_tmp_filename(char *filename, int size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 267 | { |
| 268 | int fd; |
blueswir1 | 7ccfb2e | 2008-09-14 06:45:34 +0000 | [diff] [blame] | 269 | const char *tmpdir; |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 270 | /* XXX: race condition possible */ |
aurel32 | 0badc1e | 2008-03-10 00:05:34 +0000 | [diff] [blame] | 271 | tmpdir = getenv("TMPDIR"); |
| 272 | if (!tmpdir) |
| 273 | tmpdir = "/tmp"; |
| 274 | snprintf(filename, size, "%s/vl.XXXXXX", tmpdir); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 275 | fd = mkstemp(filename); |
| 276 | close(fd); |
| 277 | } |
bellard | d524939 | 2004-08-03 21:14:23 +0000 | [diff] [blame] | 278 | #endif |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 279 | |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 280 | /* |
| 281 | * Detect host devices. By convention, /dev/cdrom[N] is always |
| 282 | * recognized as a host CDROM. |
| 283 | */ |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 284 | static BlockDriver *find_hdev_driver(const char *filename) |
| 285 | { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 286 | int score_max = 0, score; |
| 287 | BlockDriver *drv = NULL, *d; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 288 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 289 | QLIST_FOREACH(d, &bdrv_drivers, list) { |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 290 | if (d->bdrv_probe_device) { |
| 291 | score = d->bdrv_probe_device(filename); |
| 292 | if (score > score_max) { |
| 293 | score_max = score; |
| 294 | drv = d; |
| 295 | } |
| 296 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 297 | } |
| 298 | |
Christoph Hellwig | 508c7cb | 2009-06-15 14:04:22 +0200 | [diff] [blame] | 299 | return drv; |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 300 | } |
Christoph Hellwig | f3a5d3f | 2009-06-15 13:55:19 +0200 | [diff] [blame] | 301 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 302 | BlockDriver *bdrv_find_protocol(const char *filename) |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 303 | { |
| 304 | BlockDriver *drv1; |
| 305 | char protocol[128]; |
| 306 | int len; |
| 307 | const char *p; |
| 308 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 309 | /* TODO Drivers without bdrv_file_open must be specified explicitly */ |
| 310 | |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 311 | /* |
| 312 | * XXX(hch): we really should not let host device detection |
| 313 | * override an explicit protocol specification, but moving this |
| 314 | * later breaks access to device names with colons in them. |
| 315 | * Thanks to the brain-dead persistent naming schemes on udev- |
| 316 | * based Linux systems those actually are quite common. |
| 317 | */ |
| 318 | drv1 = find_hdev_driver(filename); |
| 319 | if (drv1) { |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 320 | return drv1; |
| 321 | } |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 322 | |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 323 | if (!path_has_protocol(filename)) { |
Christoph Hellwig | 39508e7 | 2010-06-23 12:25:17 +0200 | [diff] [blame] | 324 | return bdrv_find_format("file"); |
| 325 | } |
Stefan Hajnoczi | 9e0b22f | 2010-12-09 11:53:00 +0000 | [diff] [blame] | 326 | p = strchr(filename, ':'); |
| 327 | assert(p != NULL); |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 328 | len = p - filename; |
| 329 | if (len > sizeof(protocol) - 1) |
| 330 | len = sizeof(protocol) - 1; |
| 331 | memcpy(protocol, filename, len); |
| 332 | protocol[len] = '\0'; |
| 333 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
| 334 | if (drv1->protocol_name && |
| 335 | !strcmp(drv1->protocol_name, protocol)) { |
| 336 | return drv1; |
| 337 | } |
| 338 | } |
| 339 | return NULL; |
| 340 | } |
| 341 | |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 342 | static int find_image_format(const char *filename, BlockDriver **pdrv) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 343 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 344 | int ret, score, score_max; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 345 | BlockDriver *drv1, *drv; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 346 | uint8_t buf[2048]; |
| 347 | BlockDriverState *bs; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 348 | |
Naphtali Sprei | f5edb01 | 2010-01-17 16:48:13 +0200 | [diff] [blame] | 349 | ret = bdrv_file_open(&bs, filename, 0); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 350 | if (ret < 0) { |
| 351 | *pdrv = NULL; |
| 352 | return ret; |
| 353 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 354 | |
Kevin Wolf | 08a0055 | 2010-06-01 18:37:31 +0200 | [diff] [blame] | 355 | /* Return the raw BlockDriver * to scsi-generic devices or empty drives */ |
| 356 | if (bs->sg || !bdrv_is_inserted(bs)) { |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 357 | bdrv_delete(bs); |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 358 | drv = bdrv_find_format("raw"); |
| 359 | if (!drv) { |
| 360 | ret = -ENOENT; |
| 361 | } |
| 362 | *pdrv = drv; |
| 363 | return ret; |
Nicholas A. Bellinger | 1a39685 | 2010-05-27 08:56:28 -0700 | [diff] [blame] | 364 | } |
Nicholas Bellinger | f8ea0b0 | 2010-05-17 09:45:57 -0700 | [diff] [blame] | 365 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 366 | ret = bdrv_pread(bs, 0, buf, sizeof(buf)); |
| 367 | bdrv_delete(bs); |
| 368 | if (ret < 0) { |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 369 | *pdrv = NULL; |
| 370 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 371 | } |
| 372 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 373 | score_max = 0; |
Christoph Hellwig | 84a12e6 | 2010-04-07 22:30:24 +0200 | [diff] [blame] | 374 | drv = NULL; |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 375 | QLIST_FOREACH(drv1, &bdrv_drivers, list) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 376 | if (drv1->bdrv_probe) { |
| 377 | score = drv1->bdrv_probe(buf, ret, filename); |
| 378 | if (score > score_max) { |
| 379 | score_max = score; |
| 380 | drv = drv1; |
| 381 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 382 | } |
| 383 | } |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 384 | if (!drv) { |
| 385 | ret = -ENOENT; |
| 386 | } |
| 387 | *pdrv = drv; |
| 388 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 389 | } |
| 390 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 391 | /** |
| 392 | * Set the current 'total_sectors' value |
| 393 | */ |
| 394 | static int refresh_total_sectors(BlockDriverState *bs, int64_t hint) |
| 395 | { |
| 396 | BlockDriver *drv = bs->drv; |
| 397 | |
Nicholas Bellinger | 396759a | 2010-05-17 09:46:04 -0700 | [diff] [blame] | 398 | /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */ |
| 399 | if (bs->sg) |
| 400 | return 0; |
| 401 | |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 402 | /* query actual device if possible, otherwise just trust the hint */ |
| 403 | if (drv->bdrv_getlength) { |
| 404 | int64_t length = drv->bdrv_getlength(bs); |
| 405 | if (length < 0) { |
| 406 | return length; |
| 407 | } |
| 408 | hint = length >> BDRV_SECTOR_BITS; |
| 409 | } |
| 410 | |
| 411 | bs->total_sectors = hint; |
| 412 | return 0; |
| 413 | } |
| 414 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 415 | /* |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 416 | * Common part for opening disk images and files |
| 417 | */ |
| 418 | static int bdrv_open_common(BlockDriverState *bs, const char *filename, |
| 419 | int flags, BlockDriver *drv) |
| 420 | { |
| 421 | int ret, open_flags; |
| 422 | |
| 423 | assert(drv != NULL); |
| 424 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 425 | bs->file = NULL; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 426 | bs->total_sectors = 0; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 427 | bs->encrypted = 0; |
| 428 | bs->valid_key = 0; |
| 429 | bs->open_flags = flags; |
| 430 | /* buffer_alignment defaulted to 512, drivers can change this value */ |
| 431 | bs->buffer_alignment = 512; |
| 432 | |
| 433 | pstrcpy(bs->filename, sizeof(bs->filename), filename); |
| 434 | |
| 435 | if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv)) { |
| 436 | return -ENOTSUP; |
| 437 | } |
| 438 | |
| 439 | bs->drv = drv; |
| 440 | bs->opaque = qemu_mallocz(drv->instance_size); |
| 441 | |
| 442 | /* |
| 443 | * Yes, BDRV_O_NOCACHE aka O_DIRECT means we have to present a |
| 444 | * write cache to the guest. We do need the fdatasync to flush |
| 445 | * out transactions for block allocations, and we maybe have a |
| 446 | * volatile write cache in our backing device to deal with. |
| 447 | */ |
| 448 | if (flags & (BDRV_O_CACHE_WB|BDRV_O_NOCACHE)) |
| 449 | bs->enable_write_cache = 1; |
| 450 | |
| 451 | /* |
| 452 | * Clear flags that are internal to the block layer before opening the |
| 453 | * image. |
| 454 | */ |
| 455 | open_flags = flags & ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
| 456 | |
| 457 | /* |
| 458 | * Snapshots should be writeable. |
| 459 | */ |
| 460 | if (bs->is_temporary) { |
| 461 | open_flags |= BDRV_O_RDWR; |
| 462 | } |
| 463 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 464 | /* Open the image, either directly or using a protocol */ |
| 465 | if (drv->bdrv_file_open) { |
| 466 | ret = drv->bdrv_file_open(bs, filename, open_flags); |
| 467 | } else { |
| 468 | ret = bdrv_file_open(&bs->file, filename, open_flags); |
| 469 | if (ret >= 0) { |
| 470 | ret = drv->bdrv_open(bs, open_flags); |
| 471 | } |
| 472 | } |
| 473 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 474 | if (ret < 0) { |
| 475 | goto free_and_fail; |
| 476 | } |
| 477 | |
| 478 | bs->keep_read_only = bs->read_only = !(open_flags & BDRV_O_RDWR); |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 479 | |
| 480 | ret = refresh_total_sectors(bs, bs->total_sectors); |
| 481 | if (ret < 0) { |
| 482 | goto free_and_fail; |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 483 | } |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 484 | |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 485 | #ifndef _WIN32 |
| 486 | if (bs->is_temporary) { |
| 487 | unlink(filename); |
| 488 | } |
| 489 | #endif |
| 490 | return 0; |
| 491 | |
| 492 | free_and_fail: |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 493 | if (bs->file) { |
| 494 | bdrv_delete(bs->file); |
| 495 | bs->file = NULL; |
| 496 | } |
Kevin Wolf | 5791533 | 2010-04-14 15:24:50 +0200 | [diff] [blame] | 497 | qemu_free(bs->opaque); |
| 498 | bs->opaque = NULL; |
| 499 | bs->drv = NULL; |
| 500 | return ret; |
| 501 | } |
| 502 | |
| 503 | /* |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 504 | * Opens a file using a protocol (file, host_device, nbd, ...) |
| 505 | */ |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 506 | int bdrv_file_open(BlockDriverState **pbs, const char *filename, int flags) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 507 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 508 | BlockDriverState *bs; |
Christoph Hellwig | 6db9560 | 2010-04-05 16:53:57 +0200 | [diff] [blame] | 509 | BlockDriver *drv; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 510 | int ret; |
| 511 | |
MORITA Kazutaka | b50cbab | 2010-05-26 11:35:36 +0900 | [diff] [blame] | 512 | drv = bdrv_find_protocol(filename); |
Christoph Hellwig | 6db9560 | 2010-04-05 16:53:57 +0200 | [diff] [blame] | 513 | if (!drv) { |
| 514 | return -ENOENT; |
| 515 | } |
| 516 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 517 | bs = bdrv_new(""); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 518 | ret = bdrv_open_common(bs, filename, flags, drv); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 519 | if (ret < 0) { |
| 520 | bdrv_delete(bs); |
| 521 | return ret; |
bellard | 3b0d4f6 | 2005-10-30 18:30:10 +0000 | [diff] [blame] | 522 | } |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 523 | bs->growable = 1; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 524 | *pbs = bs; |
| 525 | return 0; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 526 | } |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 527 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 528 | /* |
| 529 | * Opens a disk image (raw, qcow2, vmdk, ...) |
| 530 | */ |
Kevin Wolf | d6e9098 | 2010-03-31 14:40:27 +0200 | [diff] [blame] | 531 | int bdrv_open(BlockDriverState *bs, const char *filename, int flags, |
| 532 | BlockDriver *drv) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 533 | { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 534 | int ret; |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 535 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 536 | if (flags & BDRV_O_SNAPSHOT) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 537 | BlockDriverState *bs1; |
| 538 | int64_t total_size; |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 539 | int is_protocol = 0; |
Kevin Wolf | 91a073a | 2009-05-27 14:48:06 +0200 | [diff] [blame] | 540 | BlockDriver *bdrv_qcow2; |
| 541 | QEMUOptionParameter *options; |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 542 | char tmp_filename[PATH_MAX]; |
| 543 | char backing_filename[PATH_MAX]; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 544 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 545 | /* if snapshot, we create a temporary backing file and open it |
| 546 | instead of opening 'filename' directly */ |
| 547 | |
| 548 | /* if there is a backing file, use it */ |
| 549 | bs1 = bdrv_new(""); |
Kevin Wolf | d6e9098 | 2010-03-31 14:40:27 +0200 | [diff] [blame] | 550 | ret = bdrv_open(bs1, filename, 0, drv); |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 551 | if (ret < 0) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 552 | bdrv_delete(bs1); |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 553 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 554 | } |
Jes Sorensen | 3e82990 | 2010-05-27 16:20:30 +0200 | [diff] [blame] | 555 | total_size = bdrv_getlength(bs1) & BDRV_SECTOR_MASK; |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 556 | |
| 557 | if (bs1->drv && bs1->drv->protocol_name) |
| 558 | is_protocol = 1; |
| 559 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 560 | bdrv_delete(bs1); |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 561 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 562 | get_tmp_filename(tmp_filename, sizeof(tmp_filename)); |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 563 | |
| 564 | /* Real path is meaningless for protocols */ |
| 565 | if (is_protocol) |
| 566 | snprintf(backing_filename, sizeof(backing_filename), |
| 567 | "%s", filename); |
Kirill A. Shutemov | 114cdfa | 2009-12-25 18:19:22 +0000 | [diff] [blame] | 568 | else if (!realpath(filename, backing_filename)) |
| 569 | return -errno; |
aliguori | 7c96d46 | 2008-09-12 17:54:13 +0000 | [diff] [blame] | 570 | |
Kevin Wolf | 91a073a | 2009-05-27 14:48:06 +0200 | [diff] [blame] | 571 | bdrv_qcow2 = bdrv_find_format("qcow2"); |
| 572 | options = parse_option_parameters("", bdrv_qcow2->create_options, NULL); |
| 573 | |
Jes Sorensen | 3e82990 | 2010-05-27 16:20:30 +0200 | [diff] [blame] | 574 | set_option_parameter_int(options, BLOCK_OPT_SIZE, total_size); |
Kevin Wolf | 91a073a | 2009-05-27 14:48:06 +0200 | [diff] [blame] | 575 | set_option_parameter(options, BLOCK_OPT_BACKING_FILE, backing_filename); |
| 576 | if (drv) { |
| 577 | set_option_parameter(options, BLOCK_OPT_BACKING_FMT, |
| 578 | drv->format_name); |
| 579 | } |
| 580 | |
| 581 | ret = bdrv_create(bdrv_qcow2, tmp_filename, options); |
Jan Kiszka | d748768 | 2010-04-29 18:24:50 +0200 | [diff] [blame] | 582 | free_option_parameters(options); |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 583 | if (ret < 0) { |
| 584 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 585 | } |
Kevin Wolf | 91a073a | 2009-05-27 14:48:06 +0200 | [diff] [blame] | 586 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 587 | filename = tmp_filename; |
Kevin Wolf | 91a073a | 2009-05-27 14:48:06 +0200 | [diff] [blame] | 588 | drv = bdrv_qcow2; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 589 | bs->is_temporary = 1; |
| 590 | } |
bellard | 712e787 | 2005-04-28 21:09:32 +0000 | [diff] [blame] | 591 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 592 | /* Find the right image format driver */ |
Christoph Hellwig | 6db9560 | 2010-04-05 16:53:57 +0200 | [diff] [blame] | 593 | if (!drv) { |
Stefan Weil | c98ac35 | 2010-07-21 21:51:51 +0200 | [diff] [blame] | 594 | ret = find_image_format(filename, &drv); |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 595 | } |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 596 | |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 597 | if (!drv) { |
aliguori | 51d7c00 | 2009-03-05 23:00:29 +0000 | [diff] [blame] | 598 | goto unlink_and_fail; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 599 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 600 | |
| 601 | /* Open the image */ |
| 602 | ret = bdrv_open_common(bs, filename, flags, drv); |
| 603 | if (ret < 0) { |
Christoph Hellwig | 6987307 | 2010-01-20 18:13:25 +0100 | [diff] [blame] | 604 | goto unlink_and_fail; |
| 605 | } |
| 606 | |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 607 | /* If there is a backing file, use it */ |
| 608 | if ((flags & BDRV_O_NO_BACKING) == 0 && bs->backing_file[0] != '\0') { |
| 609 | char backing_filename[PATH_MAX]; |
| 610 | int back_flags; |
| 611 | BlockDriver *back_drv = NULL; |
| 612 | |
| 613 | bs->backing_hd = bdrv_new(""); |
Stefan Hajnoczi | df2dbb4 | 2010-12-02 16:54:13 +0000 | [diff] [blame] | 614 | |
| 615 | if (path_has_protocol(bs->backing_file)) { |
| 616 | pstrcpy(backing_filename, sizeof(backing_filename), |
| 617 | bs->backing_file); |
| 618 | } else { |
| 619 | path_combine(backing_filename, sizeof(backing_filename), |
| 620 | filename, bs->backing_file); |
| 621 | } |
| 622 | |
| 623 | if (bs->backing_format[0] != '\0') { |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 624 | back_drv = bdrv_find_format(bs->backing_format); |
Stefan Hajnoczi | df2dbb4 | 2010-12-02 16:54:13 +0000 | [diff] [blame] | 625 | } |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 626 | |
| 627 | /* backing files always opened read-only */ |
| 628 | back_flags = |
| 629 | flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING); |
| 630 | |
| 631 | ret = bdrv_open(bs->backing_hd, backing_filename, back_flags, back_drv); |
| 632 | if (ret < 0) { |
| 633 | bdrv_close(bs); |
| 634 | return ret; |
| 635 | } |
| 636 | if (bs->is_temporary) { |
| 637 | bs->backing_hd->keep_read_only = !(flags & BDRV_O_RDWR); |
| 638 | } else { |
| 639 | /* base image inherits from "parent" */ |
| 640 | bs->backing_hd->keep_read_only = bs->keep_read_only; |
| 641 | } |
| 642 | } |
| 643 | |
| 644 | if (!bdrv_key_required(bs)) { |
| 645 | /* call the change callback */ |
| 646 | bs->media_changed = 1; |
| 647 | if (bs->change_cb) |
Christoph Hellwig | db97ee6 | 2011-01-24 13:32:41 +0100 | [diff] [blame] | 648 | bs->change_cb(bs->change_opaque, CHANGE_MEDIA); |
Kevin Wolf | b6ce07a | 2010-04-12 16:37:13 +0200 | [diff] [blame] | 649 | } |
| 650 | |
| 651 | return 0; |
| 652 | |
| 653 | unlink_and_fail: |
| 654 | if (bs->is_temporary) { |
| 655 | unlink(filename); |
| 656 | } |
| 657 | return ret; |
| 658 | } |
| 659 | |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 660 | void bdrv_close(BlockDriverState *bs) |
| 661 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 662 | if (bs->drv) { |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 663 | if (bs == bs_snapshots) { |
| 664 | bs_snapshots = NULL; |
| 665 | } |
Stefan Hajnoczi | 557df6a | 2010-04-17 10:49:06 +0100 | [diff] [blame] | 666 | if (bs->backing_hd) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 667 | bdrv_delete(bs->backing_hd); |
Stefan Hajnoczi | 557df6a | 2010-04-17 10:49:06 +0100 | [diff] [blame] | 668 | bs->backing_hd = NULL; |
| 669 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 670 | bs->drv->bdrv_close(bs); |
| 671 | qemu_free(bs->opaque); |
| 672 | #ifdef _WIN32 |
| 673 | if (bs->is_temporary) { |
| 674 | unlink(bs->filename); |
| 675 | } |
bellard | 67b915a | 2004-03-31 23:37:16 +0000 | [diff] [blame] | 676 | #endif |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 677 | bs->opaque = NULL; |
| 678 | bs->drv = NULL; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 679 | |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 680 | if (bs->file != NULL) { |
| 681 | bdrv_close(bs->file); |
| 682 | } |
| 683 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 684 | /* call the change callback */ |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 685 | bs->media_changed = 1; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 686 | if (bs->change_cb) |
Christoph Hellwig | db97ee6 | 2011-01-24 13:32:41 +0100 | [diff] [blame] | 687 | bs->change_cb(bs->change_opaque, CHANGE_MEDIA); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 688 | } |
| 689 | } |
| 690 | |
MORITA Kazutaka | 2bc93fe | 2010-05-28 11:44:57 +0900 | [diff] [blame] | 691 | void bdrv_close_all(void) |
| 692 | { |
| 693 | BlockDriverState *bs; |
| 694 | |
| 695 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
| 696 | bdrv_close(bs); |
| 697 | } |
| 698 | } |
| 699 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 700 | void bdrv_delete(BlockDriverState *bs) |
| 701 | { |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 702 | assert(!bs->peer); |
| 703 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 704 | /* remove from list, if necessary */ |
| 705 | if (bs->device_name[0] != '\0') { |
| 706 | QTAILQ_REMOVE(&bdrv_states, bs, list); |
| 707 | } |
aurel32 | 34c6f05 | 2008-04-08 19:51:21 +0000 | [diff] [blame] | 708 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 709 | bdrv_close(bs); |
Kevin Wolf | 66f82ce | 2010-04-14 14:17:38 +0200 | [diff] [blame] | 710 | if (bs->file != NULL) { |
| 711 | bdrv_delete(bs->file); |
| 712 | } |
| 713 | |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 714 | assert(bs != bs_snapshots); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 715 | qemu_free(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 716 | } |
| 717 | |
Markus Armbruster | 18846de | 2010-06-29 16:58:30 +0200 | [diff] [blame] | 718 | int bdrv_attach(BlockDriverState *bs, DeviceState *qdev) |
| 719 | { |
| 720 | if (bs->peer) { |
| 721 | return -EBUSY; |
| 722 | } |
| 723 | bs->peer = qdev; |
| 724 | return 0; |
| 725 | } |
| 726 | |
| 727 | void bdrv_detach(BlockDriverState *bs, DeviceState *qdev) |
| 728 | { |
| 729 | assert(bs->peer == qdev); |
| 730 | bs->peer = NULL; |
| 731 | } |
| 732 | |
| 733 | DeviceState *bdrv_get_attached(BlockDriverState *bs) |
| 734 | { |
| 735 | return bs->peer; |
| 736 | } |
| 737 | |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 738 | /* |
| 739 | * Run consistency checks on an image |
| 740 | * |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 741 | * Returns 0 if the check could be completed (it doesn't mean that the image is |
| 742 | * free of errors) or -errno when an internal error occured. The results of the |
| 743 | * check are stored in res. |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 744 | */ |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 745 | int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res) |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 746 | { |
| 747 | if (bs->drv->bdrv_check == NULL) { |
| 748 | return -ENOTSUP; |
| 749 | } |
| 750 | |
Kevin Wolf | e076f33 | 2010-06-29 11:43:13 +0200 | [diff] [blame] | 751 | memset(res, 0, sizeof(*res)); |
Kevin Wolf | 9ac228e | 2010-06-29 12:37:54 +0200 | [diff] [blame] | 752 | return bs->drv->bdrv_check(bs, res); |
aliguori | e97fc19 | 2009-04-21 23:11:50 +0000 | [diff] [blame] | 753 | } |
| 754 | |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 755 | #define COMMIT_BUF_SECTORS 2048 |
| 756 | |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 757 | /* commit COW file into the raw image */ |
| 758 | int bdrv_commit(BlockDriverState *bs) |
| 759 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 760 | BlockDriver *drv = bs->drv; |
Kevin Wolf | ee18119 | 2010-08-05 13:05:22 +0200 | [diff] [blame] | 761 | BlockDriver *backing_drv; |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 762 | int64_t sector, total_sectors; |
| 763 | int n, ro, open_flags; |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 764 | int ret = 0, rw_ret = 0; |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 765 | uint8_t *buf; |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 766 | char filename[1024]; |
| 767 | BlockDriverState *bs_rw, *bs_ro; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 768 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 769 | if (!drv) |
| 770 | return -ENOMEDIUM; |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 771 | |
| 772 | if (!bs->backing_hd) { |
| 773 | return -ENOTSUP; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 774 | } |
| 775 | |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 776 | if (bs->backing_hd->keep_read_only) { |
| 777 | return -EACCES; |
| 778 | } |
Kevin Wolf | ee18119 | 2010-08-05 13:05:22 +0200 | [diff] [blame] | 779 | |
| 780 | backing_drv = bs->backing_hd->drv; |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 781 | ro = bs->backing_hd->read_only; |
| 782 | strncpy(filename, bs->backing_hd->filename, sizeof(filename)); |
| 783 | open_flags = bs->backing_hd->open_flags; |
| 784 | |
| 785 | if (ro) { |
| 786 | /* re-open as RW */ |
| 787 | bdrv_delete(bs->backing_hd); |
| 788 | bs->backing_hd = NULL; |
| 789 | bs_rw = bdrv_new(""); |
Kevin Wolf | ee18119 | 2010-08-05 13:05:22 +0200 | [diff] [blame] | 790 | rw_ret = bdrv_open(bs_rw, filename, open_flags | BDRV_O_RDWR, |
| 791 | backing_drv); |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 792 | if (rw_ret < 0) { |
| 793 | bdrv_delete(bs_rw); |
| 794 | /* try to re-open read-only */ |
| 795 | bs_ro = bdrv_new(""); |
Kevin Wolf | ee18119 | 2010-08-05 13:05:22 +0200 | [diff] [blame] | 796 | ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, |
| 797 | backing_drv); |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 798 | if (ret < 0) { |
| 799 | bdrv_delete(bs_ro); |
| 800 | /* drive not functional anymore */ |
| 801 | bs->drv = NULL; |
| 802 | return ret; |
| 803 | } |
| 804 | bs->backing_hd = bs_ro; |
| 805 | return rw_ret; |
| 806 | } |
| 807 | bs->backing_hd = bs_rw; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 808 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 809 | |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 810 | total_sectors = bdrv_getlength(bs) >> BDRV_SECTOR_BITS; |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 811 | buf = qemu_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 812 | |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 813 | for (sector = 0; sector < total_sectors; sector += n) { |
| 814 | if (drv->bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n)) { |
| 815 | |
| 816 | if (bdrv_read(bs, sector, buf, n) != 0) { |
| 817 | ret = -EIO; |
| 818 | goto ro_cleanup; |
| 819 | } |
| 820 | |
| 821 | if (bdrv_write(bs->backing_hd, sector, buf, n) != 0) { |
| 822 | ret = -EIO; |
| 823 | goto ro_cleanup; |
| 824 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 825 | } |
| 826 | } |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 827 | |
Christoph Hellwig | 1d44952 | 2010-01-17 12:32:30 +0100 | [diff] [blame] | 828 | if (drv->bdrv_make_empty) { |
| 829 | ret = drv->bdrv_make_empty(bs); |
| 830 | bdrv_flush(bs); |
| 831 | } |
bellard | 95389c8 | 2005-12-18 18:28:15 +0000 | [diff] [blame] | 832 | |
Christoph Hellwig | 3f5075a | 2010-01-12 13:49:23 +0100 | [diff] [blame] | 833 | /* |
| 834 | * Make sure all data we wrote to the backing device is actually |
| 835 | * stable on disk. |
| 836 | */ |
| 837 | if (bs->backing_hd) |
| 838 | bdrv_flush(bs->backing_hd); |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 839 | |
| 840 | ro_cleanup: |
Kevin Wolf | 8a42661 | 2010-07-16 17:17:01 +0200 | [diff] [blame] | 841 | qemu_free(buf); |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 842 | |
| 843 | if (ro) { |
| 844 | /* re-open as RO */ |
| 845 | bdrv_delete(bs->backing_hd); |
| 846 | bs->backing_hd = NULL; |
| 847 | bs_ro = bdrv_new(""); |
Kevin Wolf | ee18119 | 2010-08-05 13:05:22 +0200 | [diff] [blame] | 848 | ret = bdrv_open(bs_ro, filename, open_flags & ~BDRV_O_RDWR, |
| 849 | backing_drv); |
Naphtali Sprei | 4dca4b6 | 2010-02-14 13:39:18 +0200 | [diff] [blame] | 850 | if (ret < 0) { |
| 851 | bdrv_delete(bs_ro); |
| 852 | /* drive not functional anymore */ |
| 853 | bs->drv = NULL; |
| 854 | return ret; |
| 855 | } |
| 856 | bs->backing_hd = bs_ro; |
| 857 | bs->backing_hd->keep_read_only = 0; |
| 858 | } |
| 859 | |
Christoph Hellwig | 1d44952 | 2010-01-17 12:32:30 +0100 | [diff] [blame] | 860 | return ret; |
bellard | 33e3963 | 2003-07-06 17:15:21 +0000 | [diff] [blame] | 861 | } |
| 862 | |
Markus Armbruster | 6ab4b5a | 2010-06-02 18:55:18 +0200 | [diff] [blame] | 863 | void bdrv_commit_all(void) |
| 864 | { |
| 865 | BlockDriverState *bs; |
| 866 | |
| 867 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
| 868 | bdrv_commit(bs); |
| 869 | } |
| 870 | } |
| 871 | |
Kevin Wolf | 756e673 | 2010-01-12 12:55:17 +0100 | [diff] [blame] | 872 | /* |
| 873 | * Return values: |
| 874 | * 0 - success |
| 875 | * -EINVAL - backing format specified, but no file |
| 876 | * -ENOSPC - can't update the backing file because no space is left in the |
| 877 | * image file header |
| 878 | * -ENOTSUP - format driver doesn't support changing the backing file |
| 879 | */ |
| 880 | int bdrv_change_backing_file(BlockDriverState *bs, |
| 881 | const char *backing_file, const char *backing_fmt) |
| 882 | { |
| 883 | BlockDriver *drv = bs->drv; |
| 884 | |
| 885 | if (drv->bdrv_change_backing_file != NULL) { |
| 886 | return drv->bdrv_change_backing_file(bs, backing_file, backing_fmt); |
| 887 | } else { |
| 888 | return -ENOTSUP; |
| 889 | } |
| 890 | } |
| 891 | |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 892 | static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset, |
| 893 | size_t size) |
| 894 | { |
| 895 | int64_t len; |
| 896 | |
| 897 | if (!bdrv_is_inserted(bs)) |
| 898 | return -ENOMEDIUM; |
| 899 | |
| 900 | if (bs->growable) |
| 901 | return 0; |
| 902 | |
| 903 | len = bdrv_getlength(bs); |
| 904 | |
Kevin Wolf | fbb7b4e | 2009-05-08 14:47:24 +0200 | [diff] [blame] | 905 | if (offset < 0) |
| 906 | return -EIO; |
| 907 | |
| 908 | if ((offset > len) || (len - offset < size)) |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 909 | return -EIO; |
| 910 | |
| 911 | return 0; |
| 912 | } |
| 913 | |
| 914 | static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num, |
| 915 | int nb_sectors) |
| 916 | { |
Jes Sorensen | eb5a316 | 2010-05-27 16:20:31 +0200 | [diff] [blame] | 917 | return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE, |
| 918 | nb_sectors * BDRV_SECTOR_SIZE); |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 919 | } |
| 920 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 921 | /* return < 0 if error. See bdrv_write() for the return codes */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 922 | int bdrv_read(BlockDriverState *bs, int64_t sector_num, |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 923 | uint8_t *buf, int nb_sectors) |
| 924 | { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 925 | BlockDriver *drv = bs->drv; |
| 926 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 927 | if (!drv) |
| 928 | return -ENOMEDIUM; |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 929 | if (bdrv_check_request(bs, sector_num, nb_sectors)) |
| 930 | return -EIO; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 931 | |
aliguori | eda578e | 2009-03-12 19:57:16 +0000 | [diff] [blame] | 932 | return drv->bdrv_read(bs, sector_num, buf, nb_sectors); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 933 | } |
| 934 | |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 935 | static void set_dirty_bitmap(BlockDriverState *bs, int64_t sector_num, |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 936 | int nb_sectors, int dirty) |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 937 | { |
| 938 | int64_t start, end; |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 939 | unsigned long val, idx, bit; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 940 | |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 941 | start = sector_num / BDRV_SECTORS_PER_DIRTY_CHUNK; |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 942 | end = (sector_num + nb_sectors - 1) / BDRV_SECTORS_PER_DIRTY_CHUNK; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 943 | |
| 944 | for (; start <= end; start++) { |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 945 | idx = start / (sizeof(unsigned long) * 8); |
| 946 | bit = start % (sizeof(unsigned long) * 8); |
| 947 | val = bs->dirty_bitmap[idx]; |
| 948 | if (dirty) { |
Marcelo Tosatti | 6d59fec | 2010-11-08 17:02:54 -0200 | [diff] [blame] | 949 | if (!(val & (1UL << bit))) { |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 950 | bs->dirty_count++; |
Marcelo Tosatti | 6d59fec | 2010-11-08 17:02:54 -0200 | [diff] [blame] | 951 | val |= 1UL << bit; |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 952 | } |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 953 | } else { |
Marcelo Tosatti | 6d59fec | 2010-11-08 17:02:54 -0200 | [diff] [blame] | 954 | if (val & (1UL << bit)) { |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 955 | bs->dirty_count--; |
Marcelo Tosatti | 6d59fec | 2010-11-08 17:02:54 -0200 | [diff] [blame] | 956 | val &= ~(1UL << bit); |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 957 | } |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 958 | } |
| 959 | bs->dirty_bitmap[idx] = val; |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 960 | } |
| 961 | } |
| 962 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 963 | /* Return < 0 if error. Important errors are: |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 964 | -EIO generic I/O error (may happen for all errors) |
| 965 | -ENOMEDIUM No media inserted. |
| 966 | -EINVAL Invalid sector number or nb_sectors |
| 967 | -EACCES Trying to write a read-only device |
| 968 | */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 969 | int bdrv_write(BlockDriverState *bs, int64_t sector_num, |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 970 | const uint8_t *buf, int nb_sectors) |
| 971 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 972 | BlockDriver *drv = bs->drv; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 973 | if (!bs->drv) |
| 974 | return -ENOMEDIUM; |
bellard | 0849bf0 | 2003-06-30 23:17:31 +0000 | [diff] [blame] | 975 | if (bs->read_only) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 976 | return -EACCES; |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 977 | if (bdrv_check_request(bs, sector_num, nb_sectors)) |
| 978 | return -EIO; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 979 | |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 980 | if (bs->dirty_bitmap) { |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 981 | set_dirty_bitmap(bs, sector_num, nb_sectors, 1); |
| 982 | } |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 983 | |
Kevin Wolf | 294cc35 | 2010-04-28 14:34:01 +0200 | [diff] [blame] | 984 | if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { |
| 985 | bs->wr_highest_sector = sector_num + nb_sectors - 1; |
| 986 | } |
| 987 | |
aliguori | 42fb280 | 2009-01-15 20:43:39 +0000 | [diff] [blame] | 988 | return drv->bdrv_write(bs, sector_num, buf, nb_sectors); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 989 | } |
| 990 | |
aliguori | eda578e | 2009-03-12 19:57:16 +0000 | [diff] [blame] | 991 | int bdrv_pread(BlockDriverState *bs, int64_t offset, |
| 992 | void *buf, int count1) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 993 | { |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 994 | uint8_t tmp_buf[BDRV_SECTOR_SIZE]; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 995 | int len, nb_sectors, count; |
| 996 | int64_t sector_num; |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 997 | int ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 998 | |
| 999 | count = count1; |
| 1000 | /* first read to align to sector start */ |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1001 | len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1002 | if (len > count) |
| 1003 | len = count; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1004 | sector_num = offset >> BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1005 | if (len > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1006 | if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) |
| 1007 | return ret; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1008 | memcpy(buf, tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), len); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1009 | count -= len; |
| 1010 | if (count == 0) |
| 1011 | return count1; |
| 1012 | sector_num++; |
| 1013 | buf += len; |
| 1014 | } |
| 1015 | |
| 1016 | /* read the sectors "in place" */ |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1017 | nb_sectors = count >> BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1018 | if (nb_sectors > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1019 | if ((ret = bdrv_read(bs, sector_num, buf, nb_sectors)) < 0) |
| 1020 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1021 | sector_num += nb_sectors; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1022 | len = nb_sectors << BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1023 | buf += len; |
| 1024 | count -= len; |
| 1025 | } |
| 1026 | |
| 1027 | /* add data from the last sector */ |
| 1028 | if (count > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1029 | if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) |
| 1030 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1031 | memcpy(buf, tmp_buf, count); |
| 1032 | } |
| 1033 | return count1; |
| 1034 | } |
| 1035 | |
aliguori | eda578e | 2009-03-12 19:57:16 +0000 | [diff] [blame] | 1036 | int bdrv_pwrite(BlockDriverState *bs, int64_t offset, |
| 1037 | const void *buf, int count1) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1038 | { |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1039 | uint8_t tmp_buf[BDRV_SECTOR_SIZE]; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1040 | int len, nb_sectors, count; |
| 1041 | int64_t sector_num; |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1042 | int ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1043 | |
| 1044 | count = count1; |
| 1045 | /* first write to align to sector start */ |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1046 | len = (BDRV_SECTOR_SIZE - offset) & (BDRV_SECTOR_SIZE - 1); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1047 | if (len > count) |
| 1048 | len = count; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1049 | sector_num = offset >> BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1050 | if (len > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1051 | if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) |
| 1052 | return ret; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1053 | memcpy(tmp_buf + (offset & (BDRV_SECTOR_SIZE - 1)), buf, len); |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1054 | if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) |
| 1055 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1056 | count -= len; |
| 1057 | if (count == 0) |
| 1058 | return count1; |
| 1059 | sector_num++; |
| 1060 | buf += len; |
| 1061 | } |
| 1062 | |
| 1063 | /* write the sectors "in place" */ |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1064 | nb_sectors = count >> BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1065 | if (nb_sectors > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1066 | if ((ret = bdrv_write(bs, sector_num, buf, nb_sectors)) < 0) |
| 1067 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1068 | sector_num += nb_sectors; |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1069 | len = nb_sectors << BDRV_SECTOR_BITS; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1070 | buf += len; |
| 1071 | count -= len; |
| 1072 | } |
| 1073 | |
| 1074 | /* add data from the last sector */ |
| 1075 | if (count > 0) { |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1076 | if ((ret = bdrv_read(bs, sector_num, tmp_buf, 1)) < 0) |
| 1077 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1078 | memcpy(tmp_buf, buf, count); |
Kevin Wolf | 9a8c4cc | 2010-01-20 15:03:02 +0100 | [diff] [blame] | 1079 | if ((ret = bdrv_write(bs, sector_num, tmp_buf, 1)) < 0) |
| 1080 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1081 | } |
| 1082 | return count1; |
| 1083 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1084 | |
Kevin Wolf | f08145f | 2010-06-16 16:38:15 +0200 | [diff] [blame] | 1085 | /* |
| 1086 | * Writes to the file and ensures that no writes are reordered across this |
| 1087 | * request (acts as a barrier) |
| 1088 | * |
| 1089 | * Returns 0 on success, -errno in error cases. |
| 1090 | */ |
| 1091 | int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset, |
| 1092 | const void *buf, int count) |
| 1093 | { |
| 1094 | int ret; |
| 1095 | |
| 1096 | ret = bdrv_pwrite(bs, offset, buf, count); |
| 1097 | if (ret < 0) { |
| 1098 | return ret; |
| 1099 | } |
| 1100 | |
| 1101 | /* No flush needed for cache=writethrough, it uses O_DSYNC */ |
| 1102 | if ((bs->open_flags & BDRV_O_CACHE_MASK) != 0) { |
| 1103 | bdrv_flush(bs); |
| 1104 | } |
| 1105 | |
| 1106 | return 0; |
| 1107 | } |
| 1108 | |
| 1109 | /* |
| 1110 | * Writes to the file and ensures that no writes are reordered across this |
| 1111 | * request (acts as a barrier) |
| 1112 | * |
| 1113 | * Returns 0 on success, -errno in error cases. |
| 1114 | */ |
| 1115 | int bdrv_write_sync(BlockDriverState *bs, int64_t sector_num, |
| 1116 | const uint8_t *buf, int nb_sectors) |
| 1117 | { |
| 1118 | return bdrv_pwrite_sync(bs, BDRV_SECTOR_SIZE * sector_num, |
| 1119 | buf, BDRV_SECTOR_SIZE * nb_sectors); |
| 1120 | } |
| 1121 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1122 | /** |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1123 | * Truncate file to 'offset' bytes (needed only for file protocols) |
| 1124 | */ |
| 1125 | int bdrv_truncate(BlockDriverState *bs, int64_t offset) |
| 1126 | { |
| 1127 | BlockDriver *drv = bs->drv; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1128 | int ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1129 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1130 | return -ENOMEDIUM; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1131 | if (!drv->bdrv_truncate) |
| 1132 | return -ENOTSUP; |
Naphtali Sprei | 59f2689 | 2009-10-26 16:25:16 +0200 | [diff] [blame] | 1133 | if (bs->read_only) |
| 1134 | return -EACCES; |
Marcelo Tosatti | 8591675 | 2011-01-26 12:12:35 -0200 | [diff] [blame] | 1135 | if (bdrv_in_use(bs)) |
| 1136 | return -EBUSY; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1137 | ret = drv->bdrv_truncate(bs, offset); |
| 1138 | if (ret == 0) { |
| 1139 | ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS); |
Christoph Hellwig | db97ee6 | 2011-01-24 13:32:41 +0100 | [diff] [blame] | 1140 | if (bs->change_cb) { |
| 1141 | bs->change_cb(bs->change_opaque, CHANGE_SIZE); |
| 1142 | } |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1143 | } |
| 1144 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1145 | } |
| 1146 | |
| 1147 | /** |
| 1148 | * Length of a file in bytes. Return < 0 if error or unknown. |
| 1149 | */ |
| 1150 | int64_t bdrv_getlength(BlockDriverState *bs) |
| 1151 | { |
| 1152 | BlockDriver *drv = bs->drv; |
| 1153 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1154 | return -ENOMEDIUM; |
Stefan Hajnoczi | 5176228 | 2010-04-19 16:56:41 +0100 | [diff] [blame] | 1155 | |
| 1156 | /* Fixed size devices use the total_sectors value for speed instead of |
| 1157 | issuing a length query (like lseek) on each call. Also, legacy block |
| 1158 | drivers don't provide a bdrv_getlength function and must use |
| 1159 | total_sectors. */ |
| 1160 | if (!bs->growable || !drv->bdrv_getlength) { |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1161 | return bs->total_sectors * BDRV_SECTOR_SIZE; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1162 | } |
| 1163 | return drv->bdrv_getlength(bs); |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 1164 | } |
| 1165 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1166 | /* return 0 as number of sectors if no device present or error */ |
ths | 96b8f13 | 2007-12-17 01:35:20 +0000 | [diff] [blame] | 1167 | void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr) |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 1168 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1169 | int64_t length; |
| 1170 | length = bdrv_getlength(bs); |
| 1171 | if (length < 0) |
| 1172 | length = 0; |
| 1173 | else |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1174 | length = length >> BDRV_SECTOR_BITS; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1175 | *nb_sectors_ptr = length; |
bellard | fc01f7e | 2003-06-30 10:03:06 +0000 | [diff] [blame] | 1176 | } |
bellard | cf98951 | 2004-02-16 21:56:36 +0000 | [diff] [blame] | 1177 | |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 1178 | struct partition { |
| 1179 | uint8_t boot_ind; /* 0x80 - active */ |
| 1180 | uint8_t head; /* starting head */ |
| 1181 | uint8_t sector; /* starting sector */ |
| 1182 | uint8_t cyl; /* starting cylinder */ |
| 1183 | uint8_t sys_ind; /* What partition type */ |
| 1184 | uint8_t end_head; /* end head */ |
| 1185 | uint8_t end_sector; /* end sector */ |
| 1186 | uint8_t end_cyl; /* end cylinder */ |
| 1187 | uint32_t start_sect; /* starting sector counting from 0 */ |
| 1188 | uint32_t nr_sects; /* nr of sectors in partition */ |
| 1189 | } __attribute__((packed)); |
| 1190 | |
| 1191 | /* try to guess the disk logical geometry from the MSDOS partition table. Return 0 if OK, -1 if could not guess */ |
| 1192 | static int guess_disk_lchs(BlockDriverState *bs, |
| 1193 | int *pcylinders, int *pheads, int *psectors) |
| 1194 | { |
Jes Sorensen | eb5a316 | 2010-05-27 16:20:31 +0200 | [diff] [blame] | 1195 | uint8_t buf[BDRV_SECTOR_SIZE]; |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 1196 | int ret, i, heads, sectors, cylinders; |
| 1197 | struct partition *p; |
| 1198 | uint32_t nr_sects; |
blueswir1 | a38131b | 2008-12-05 17:56:40 +0000 | [diff] [blame] | 1199 | uint64_t nb_sectors; |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 1200 | |
| 1201 | bdrv_get_geometry(bs, &nb_sectors); |
| 1202 | |
| 1203 | ret = bdrv_read(bs, 0, buf, 1); |
| 1204 | if (ret < 0) |
| 1205 | return -1; |
| 1206 | /* test msdos magic */ |
| 1207 | if (buf[510] != 0x55 || buf[511] != 0xaa) |
| 1208 | return -1; |
| 1209 | for(i = 0; i < 4; i++) { |
| 1210 | p = ((struct partition *)(buf + 0x1be)) + i; |
| 1211 | nr_sects = le32_to_cpu(p->nr_sects); |
| 1212 | if (nr_sects && p->end_head) { |
| 1213 | /* We make the assumption that the partition terminates on |
| 1214 | a cylinder boundary */ |
| 1215 | heads = p->end_head + 1; |
| 1216 | sectors = p->end_sector & 63; |
| 1217 | if (sectors == 0) |
| 1218 | continue; |
| 1219 | cylinders = nb_sectors / (heads * sectors); |
| 1220 | if (cylinders < 1 || cylinders > 16383) |
| 1221 | continue; |
| 1222 | *pheads = heads; |
| 1223 | *psectors = sectors; |
| 1224 | *pcylinders = cylinders; |
| 1225 | #if 0 |
| 1226 | printf("guessed geometry: LCHS=%d %d %d\n", |
| 1227 | cylinders, heads, sectors); |
| 1228 | #endif |
| 1229 | return 0; |
| 1230 | } |
| 1231 | } |
| 1232 | return -1; |
| 1233 | } |
| 1234 | |
| 1235 | void bdrv_guess_geometry(BlockDriverState *bs, int *pcyls, int *pheads, int *psecs) |
| 1236 | { |
| 1237 | int translation, lba_detected = 0; |
| 1238 | int cylinders, heads, secs; |
blueswir1 | a38131b | 2008-12-05 17:56:40 +0000 | [diff] [blame] | 1239 | uint64_t nb_sectors; |
aliguori | f3d54fc | 2008-11-25 21:50:24 +0000 | [diff] [blame] | 1240 | |
| 1241 | /* if a geometry hint is available, use it */ |
| 1242 | bdrv_get_geometry(bs, &nb_sectors); |
| 1243 | bdrv_get_geometry_hint(bs, &cylinders, &heads, &secs); |
| 1244 | translation = bdrv_get_translation_hint(bs); |
| 1245 | if (cylinders != 0) { |
| 1246 | *pcyls = cylinders; |
| 1247 | *pheads = heads; |
| 1248 | *psecs = secs; |
| 1249 | } else { |
| 1250 | if (guess_disk_lchs(bs, &cylinders, &heads, &secs) == 0) { |
| 1251 | if (heads > 16) { |
| 1252 | /* if heads > 16, it means that a BIOS LBA |
| 1253 | translation was active, so the default |
| 1254 | hardware geometry is OK */ |
| 1255 | lba_detected = 1; |
| 1256 | goto default_geometry; |
| 1257 | } else { |
| 1258 | *pcyls = cylinders; |
| 1259 | *pheads = heads; |
| 1260 | *psecs = secs; |
| 1261 | /* disable any translation to be in sync with |
| 1262 | the logical geometry */ |
| 1263 | if (translation == BIOS_ATA_TRANSLATION_AUTO) { |
| 1264 | bdrv_set_translation_hint(bs, |
| 1265 | BIOS_ATA_TRANSLATION_NONE); |
| 1266 | } |
| 1267 | } |
| 1268 | } else { |
| 1269 | default_geometry: |
| 1270 | /* if no geometry, use a standard physical disk geometry */ |
| 1271 | cylinders = nb_sectors / (16 * 63); |
| 1272 | |
| 1273 | if (cylinders > 16383) |
| 1274 | cylinders = 16383; |
| 1275 | else if (cylinders < 2) |
| 1276 | cylinders = 2; |
| 1277 | *pcyls = cylinders; |
| 1278 | *pheads = 16; |
| 1279 | *psecs = 63; |
| 1280 | if ((lba_detected == 1) && (translation == BIOS_ATA_TRANSLATION_AUTO)) { |
| 1281 | if ((*pcyls * *pheads) <= 131072) { |
| 1282 | bdrv_set_translation_hint(bs, |
| 1283 | BIOS_ATA_TRANSLATION_LARGE); |
| 1284 | } else { |
| 1285 | bdrv_set_translation_hint(bs, |
| 1286 | BIOS_ATA_TRANSLATION_LBA); |
| 1287 | } |
| 1288 | } |
| 1289 | } |
| 1290 | bdrv_set_geometry_hint(bs, *pcyls, *pheads, *psecs); |
| 1291 | } |
| 1292 | } |
| 1293 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1294 | void bdrv_set_geometry_hint(BlockDriverState *bs, |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1295 | int cyls, int heads, int secs) |
| 1296 | { |
| 1297 | bs->cyls = cyls; |
| 1298 | bs->heads = heads; |
| 1299 | bs->secs = secs; |
| 1300 | } |
| 1301 | |
| 1302 | void bdrv_set_type_hint(BlockDriverState *bs, int type) |
| 1303 | { |
| 1304 | bs->type = type; |
| 1305 | bs->removable = ((type == BDRV_TYPE_CDROM || |
| 1306 | type == BDRV_TYPE_FLOPPY)); |
| 1307 | } |
| 1308 | |
bellard | 46d4767 | 2004-11-16 01:45:27 +0000 | [diff] [blame] | 1309 | void bdrv_set_translation_hint(BlockDriverState *bs, int translation) |
| 1310 | { |
| 1311 | bs->translation = translation; |
| 1312 | } |
| 1313 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1314 | void bdrv_get_geometry_hint(BlockDriverState *bs, |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1315 | int *pcyls, int *pheads, int *psecs) |
| 1316 | { |
| 1317 | *pcyls = bs->cyls; |
| 1318 | *pheads = bs->heads; |
| 1319 | *psecs = bs->secs; |
| 1320 | } |
| 1321 | |
Blue Swirl | 5bbdbb4 | 2011-02-12 20:43:32 +0000 | [diff] [blame] | 1322 | /* Recognize floppy formats */ |
| 1323 | typedef struct FDFormat { |
| 1324 | FDriveType drive; |
| 1325 | uint8_t last_sect; |
| 1326 | uint8_t max_track; |
| 1327 | uint8_t max_head; |
| 1328 | } FDFormat; |
| 1329 | |
| 1330 | static const FDFormat fd_formats[] = { |
| 1331 | /* First entry is default format */ |
| 1332 | /* 1.44 MB 3"1/2 floppy disks */ |
| 1333 | { FDRIVE_DRV_144, 18, 80, 1, }, |
| 1334 | { FDRIVE_DRV_144, 20, 80, 1, }, |
| 1335 | { FDRIVE_DRV_144, 21, 80, 1, }, |
| 1336 | { FDRIVE_DRV_144, 21, 82, 1, }, |
| 1337 | { FDRIVE_DRV_144, 21, 83, 1, }, |
| 1338 | { FDRIVE_DRV_144, 22, 80, 1, }, |
| 1339 | { FDRIVE_DRV_144, 23, 80, 1, }, |
| 1340 | { FDRIVE_DRV_144, 24, 80, 1, }, |
| 1341 | /* 2.88 MB 3"1/2 floppy disks */ |
| 1342 | { FDRIVE_DRV_288, 36, 80, 1, }, |
| 1343 | { FDRIVE_DRV_288, 39, 80, 1, }, |
| 1344 | { FDRIVE_DRV_288, 40, 80, 1, }, |
| 1345 | { FDRIVE_DRV_288, 44, 80, 1, }, |
| 1346 | { FDRIVE_DRV_288, 48, 80, 1, }, |
| 1347 | /* 720 kB 3"1/2 floppy disks */ |
| 1348 | { FDRIVE_DRV_144, 9, 80, 1, }, |
| 1349 | { FDRIVE_DRV_144, 10, 80, 1, }, |
| 1350 | { FDRIVE_DRV_144, 10, 82, 1, }, |
| 1351 | { FDRIVE_DRV_144, 10, 83, 1, }, |
| 1352 | { FDRIVE_DRV_144, 13, 80, 1, }, |
| 1353 | { FDRIVE_DRV_144, 14, 80, 1, }, |
| 1354 | /* 1.2 MB 5"1/4 floppy disks */ |
| 1355 | { FDRIVE_DRV_120, 15, 80, 1, }, |
| 1356 | { FDRIVE_DRV_120, 18, 80, 1, }, |
| 1357 | { FDRIVE_DRV_120, 18, 82, 1, }, |
| 1358 | { FDRIVE_DRV_120, 18, 83, 1, }, |
| 1359 | { FDRIVE_DRV_120, 20, 80, 1, }, |
| 1360 | /* 720 kB 5"1/4 floppy disks */ |
| 1361 | { FDRIVE_DRV_120, 9, 80, 1, }, |
| 1362 | { FDRIVE_DRV_120, 11, 80, 1, }, |
| 1363 | /* 360 kB 5"1/4 floppy disks */ |
| 1364 | { FDRIVE_DRV_120, 9, 40, 1, }, |
| 1365 | { FDRIVE_DRV_120, 9, 40, 0, }, |
| 1366 | { FDRIVE_DRV_120, 10, 41, 1, }, |
| 1367 | { FDRIVE_DRV_120, 10, 42, 1, }, |
| 1368 | /* 320 kB 5"1/4 floppy disks */ |
| 1369 | { FDRIVE_DRV_120, 8, 40, 1, }, |
| 1370 | { FDRIVE_DRV_120, 8, 40, 0, }, |
| 1371 | /* 360 kB must match 5"1/4 better than 3"1/2... */ |
| 1372 | { FDRIVE_DRV_144, 9, 80, 0, }, |
| 1373 | /* end */ |
| 1374 | { FDRIVE_DRV_NONE, -1, -1, 0, }, |
| 1375 | }; |
| 1376 | |
| 1377 | void bdrv_get_floppy_geometry_hint(BlockDriverState *bs, int *nb_heads, |
| 1378 | int *max_track, int *last_sect, |
| 1379 | FDriveType drive_in, FDriveType *drive) |
| 1380 | { |
| 1381 | const FDFormat *parse; |
| 1382 | uint64_t nb_sectors, size; |
| 1383 | int i, first_match, match; |
| 1384 | |
| 1385 | bdrv_get_geometry_hint(bs, nb_heads, max_track, last_sect); |
| 1386 | if (*nb_heads != 0 && *max_track != 0 && *last_sect != 0) { |
| 1387 | /* User defined disk */ |
| 1388 | } else { |
| 1389 | bdrv_get_geometry(bs, &nb_sectors); |
| 1390 | match = -1; |
| 1391 | first_match = -1; |
| 1392 | for (i = 0; ; i++) { |
| 1393 | parse = &fd_formats[i]; |
| 1394 | if (parse->drive == FDRIVE_DRV_NONE) { |
| 1395 | break; |
| 1396 | } |
| 1397 | if (drive_in == parse->drive || |
| 1398 | drive_in == FDRIVE_DRV_NONE) { |
| 1399 | size = (parse->max_head + 1) * parse->max_track * |
| 1400 | parse->last_sect; |
| 1401 | if (nb_sectors == size) { |
| 1402 | match = i; |
| 1403 | break; |
| 1404 | } |
| 1405 | if (first_match == -1) { |
| 1406 | first_match = i; |
| 1407 | } |
| 1408 | } |
| 1409 | } |
| 1410 | if (match == -1) { |
| 1411 | if (first_match == -1) { |
| 1412 | match = 1; |
| 1413 | } else { |
| 1414 | match = first_match; |
| 1415 | } |
| 1416 | parse = &fd_formats[match]; |
| 1417 | } |
| 1418 | *nb_heads = parse->max_head + 1; |
| 1419 | *max_track = parse->max_track; |
| 1420 | *last_sect = parse->last_sect; |
| 1421 | *drive = parse->drive; |
| 1422 | } |
| 1423 | } |
| 1424 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1425 | int bdrv_get_type_hint(BlockDriverState *bs) |
| 1426 | { |
| 1427 | return bs->type; |
| 1428 | } |
| 1429 | |
bellard | 46d4767 | 2004-11-16 01:45:27 +0000 | [diff] [blame] | 1430 | int bdrv_get_translation_hint(BlockDriverState *bs) |
| 1431 | { |
| 1432 | return bs->translation; |
| 1433 | } |
| 1434 | |
Markus Armbruster | abd7f68 | 2010-06-02 18:55:17 +0200 | [diff] [blame] | 1435 | void bdrv_set_on_error(BlockDriverState *bs, BlockErrorAction on_read_error, |
| 1436 | BlockErrorAction on_write_error) |
| 1437 | { |
| 1438 | bs->on_read_error = on_read_error; |
| 1439 | bs->on_write_error = on_write_error; |
| 1440 | } |
| 1441 | |
| 1442 | BlockErrorAction bdrv_get_on_error(BlockDriverState *bs, int is_read) |
| 1443 | { |
| 1444 | return is_read ? bs->on_read_error : bs->on_write_error; |
| 1445 | } |
| 1446 | |
Markus Armbruster | 7d0d695 | 2010-06-25 13:42:14 +0200 | [diff] [blame] | 1447 | void bdrv_set_removable(BlockDriverState *bs, int removable) |
| 1448 | { |
| 1449 | bs->removable = removable; |
| 1450 | if (removable && bs == bs_snapshots) { |
| 1451 | bs_snapshots = NULL; |
| 1452 | } |
| 1453 | } |
| 1454 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1455 | int bdrv_is_removable(BlockDriverState *bs) |
| 1456 | { |
| 1457 | return bs->removable; |
| 1458 | } |
| 1459 | |
| 1460 | int bdrv_is_read_only(BlockDriverState *bs) |
| 1461 | { |
| 1462 | return bs->read_only; |
| 1463 | } |
| 1464 | |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 1465 | int bdrv_is_sg(BlockDriverState *bs) |
| 1466 | { |
| 1467 | return bs->sg; |
| 1468 | } |
| 1469 | |
Christoph Hellwig | e900a7b | 2009-09-04 19:01:15 +0200 | [diff] [blame] | 1470 | int bdrv_enable_write_cache(BlockDriverState *bs) |
| 1471 | { |
| 1472 | return bs->enable_write_cache; |
| 1473 | } |
| 1474 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1475 | /* XXX: no longer used */ |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1476 | void bdrv_set_change_cb(BlockDriverState *bs, |
Christoph Hellwig | db97ee6 | 2011-01-24 13:32:41 +0100 | [diff] [blame] | 1477 | void (*change_cb)(void *opaque, int reason), |
| 1478 | void *opaque) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1479 | { |
| 1480 | bs->change_cb = change_cb; |
| 1481 | bs->change_opaque = opaque; |
| 1482 | } |
| 1483 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1484 | int bdrv_is_encrypted(BlockDriverState *bs) |
| 1485 | { |
| 1486 | if (bs->backing_hd && bs->backing_hd->encrypted) |
| 1487 | return 1; |
| 1488 | return bs->encrypted; |
| 1489 | } |
| 1490 | |
aliguori | c0f4ce7 | 2009-03-05 23:01:01 +0000 | [diff] [blame] | 1491 | int bdrv_key_required(BlockDriverState *bs) |
| 1492 | { |
| 1493 | BlockDriverState *backing_hd = bs->backing_hd; |
| 1494 | |
| 1495 | if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key) |
| 1496 | return 1; |
| 1497 | return (bs->encrypted && !bs->valid_key); |
| 1498 | } |
| 1499 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1500 | int bdrv_set_key(BlockDriverState *bs, const char *key) |
| 1501 | { |
| 1502 | int ret; |
| 1503 | if (bs->backing_hd && bs->backing_hd->encrypted) { |
| 1504 | ret = bdrv_set_key(bs->backing_hd, key); |
| 1505 | if (ret < 0) |
| 1506 | return ret; |
| 1507 | if (!bs->encrypted) |
| 1508 | return 0; |
| 1509 | } |
Shahar Havivi | fd04a2a | 2010-03-06 00:26:13 +0200 | [diff] [blame] | 1510 | if (!bs->encrypted) { |
| 1511 | return -EINVAL; |
| 1512 | } else if (!bs->drv || !bs->drv->bdrv_set_key) { |
| 1513 | return -ENOMEDIUM; |
| 1514 | } |
aliguori | c0f4ce7 | 2009-03-05 23:01:01 +0000 | [diff] [blame] | 1515 | ret = bs->drv->bdrv_set_key(bs, key); |
aliguori | bb5fc20 | 2009-03-05 23:01:15 +0000 | [diff] [blame] | 1516 | if (ret < 0) { |
| 1517 | bs->valid_key = 0; |
| 1518 | } else if (!bs->valid_key) { |
| 1519 | bs->valid_key = 1; |
| 1520 | /* call the change callback now, we skipped it on open */ |
| 1521 | bs->media_changed = 1; |
| 1522 | if (bs->change_cb) |
Christoph Hellwig | db97ee6 | 2011-01-24 13:32:41 +0100 | [diff] [blame] | 1523 | bs->change_cb(bs->change_opaque, CHANGE_MEDIA); |
aliguori | bb5fc20 | 2009-03-05 23:01:15 +0000 | [diff] [blame] | 1524 | } |
aliguori | c0f4ce7 | 2009-03-05 23:01:01 +0000 | [diff] [blame] | 1525 | return ret; |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1526 | } |
| 1527 | |
| 1528 | void bdrv_get_format(BlockDriverState *bs, char *buf, int buf_size) |
| 1529 | { |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1530 | if (!bs->drv) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1531 | buf[0] = '\0'; |
| 1532 | } else { |
| 1533 | pstrcpy(buf, buf_size, bs->drv->format_name); |
| 1534 | } |
| 1535 | } |
| 1536 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1537 | void bdrv_iterate_format(void (*it)(void *opaque, const char *name), |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1538 | void *opaque) |
| 1539 | { |
| 1540 | BlockDriver *drv; |
| 1541 | |
Stefan Hajnoczi | 8a22f02 | 2010-04-13 10:29:33 +0100 | [diff] [blame] | 1542 | QLIST_FOREACH(drv, &bdrv_drivers, list) { |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1543 | it(opaque, drv->format_name); |
| 1544 | } |
| 1545 | } |
| 1546 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1547 | BlockDriverState *bdrv_find(const char *name) |
| 1548 | { |
| 1549 | BlockDriverState *bs; |
| 1550 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1551 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
| 1552 | if (!strcmp(name, bs->device_name)) { |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1553 | return bs; |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1554 | } |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1555 | } |
| 1556 | return NULL; |
| 1557 | } |
| 1558 | |
Markus Armbruster | 2f399b0 | 2010-06-02 18:55:20 +0200 | [diff] [blame] | 1559 | BlockDriverState *bdrv_next(BlockDriverState *bs) |
| 1560 | { |
| 1561 | if (!bs) { |
| 1562 | return QTAILQ_FIRST(&bdrv_states); |
| 1563 | } |
| 1564 | return QTAILQ_NEXT(bs, list); |
| 1565 | } |
| 1566 | |
aliguori | 51de976 | 2009-03-05 23:00:43 +0000 | [diff] [blame] | 1567 | void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque) |
bellard | 81d0912 | 2004-07-14 17:21:37 +0000 | [diff] [blame] | 1568 | { |
| 1569 | BlockDriverState *bs; |
| 1570 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1571 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
aliguori | 51de976 | 2009-03-05 23:00:43 +0000 | [diff] [blame] | 1572 | it(opaque, bs); |
bellard | 81d0912 | 2004-07-14 17:21:37 +0000 | [diff] [blame] | 1573 | } |
| 1574 | } |
| 1575 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1576 | const char *bdrv_get_device_name(BlockDriverState *bs) |
| 1577 | { |
| 1578 | return bs->device_name; |
| 1579 | } |
| 1580 | |
Kevin Wolf | 205ef79 | 2010-10-21 16:43:43 +0200 | [diff] [blame] | 1581 | int bdrv_flush(BlockDriverState *bs) |
pbrook | 7a6cba6 | 2006-06-04 11:39:07 +0000 | [diff] [blame] | 1582 | { |
Alexander Graf | 016f5cf | 2010-05-26 17:51:49 +0200 | [diff] [blame] | 1583 | if (bs->open_flags & BDRV_O_NO_FLUSH) { |
Kevin Wolf | 205ef79 | 2010-10-21 16:43:43 +0200 | [diff] [blame] | 1584 | return 0; |
Alexander Graf | 016f5cf | 2010-05-26 17:51:49 +0200 | [diff] [blame] | 1585 | } |
| 1586 | |
Kevin Wolf | 205ef79 | 2010-10-21 16:43:43 +0200 | [diff] [blame] | 1587 | if (bs->drv && bs->drv->bdrv_flush) { |
| 1588 | return bs->drv->bdrv_flush(bs); |
| 1589 | } |
| 1590 | |
| 1591 | /* |
| 1592 | * Some block drivers always operate in either writethrough or unsafe mode |
| 1593 | * and don't support bdrv_flush therefore. Usually qemu doesn't know how |
| 1594 | * the server works (because the behaviour is hardcoded or depends on |
| 1595 | * server-side configuration), so we can't ensure that everything is safe |
| 1596 | * on disk. Returning an error doesn't work because that would break guests |
| 1597 | * even if the server operates in writethrough mode. |
| 1598 | * |
| 1599 | * Let's hope the user knows what he's doing. |
| 1600 | */ |
| 1601 | return 0; |
pbrook | 7a6cba6 | 2006-06-04 11:39:07 +0000 | [diff] [blame] | 1602 | } |
| 1603 | |
aliguori | c6ca28d | 2008-10-06 13:55:43 +0000 | [diff] [blame] | 1604 | void bdrv_flush_all(void) |
| 1605 | { |
| 1606 | BlockDriverState *bs; |
| 1607 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1608 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
| 1609 | if (bs->drv && !bdrv_is_read_only(bs) && |
| 1610 | (!bdrv_is_removable(bs) || bdrv_is_inserted(bs))) { |
aliguori | c6ca28d | 2008-10-06 13:55:43 +0000 | [diff] [blame] | 1611 | bdrv_flush(bs); |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1612 | } |
| 1613 | } |
aliguori | c6ca28d | 2008-10-06 13:55:43 +0000 | [diff] [blame] | 1614 | } |
| 1615 | |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 1616 | int bdrv_has_zero_init(BlockDriverState *bs) |
| 1617 | { |
| 1618 | assert(bs->drv); |
| 1619 | |
Kevin Wolf | 336c1c1 | 2010-07-28 11:26:29 +0200 | [diff] [blame] | 1620 | if (bs->drv->bdrv_has_zero_init) { |
| 1621 | return bs->drv->bdrv_has_zero_init(bs); |
Kevin Wolf | f2feebb | 2010-04-14 17:30:35 +0200 | [diff] [blame] | 1622 | } |
| 1623 | |
| 1624 | return 1; |
| 1625 | } |
| 1626 | |
Christoph Hellwig | bb8bf76 | 2010-12-16 19:36:31 +0100 | [diff] [blame] | 1627 | int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors) |
| 1628 | { |
| 1629 | if (!bs->drv) { |
| 1630 | return -ENOMEDIUM; |
| 1631 | } |
| 1632 | if (!bs->drv->bdrv_discard) { |
| 1633 | return 0; |
| 1634 | } |
| 1635 | return bs->drv->bdrv_discard(bs, sector_num, nb_sectors); |
| 1636 | } |
| 1637 | |
ths | f58c7b3 | 2008-06-05 21:53:49 +0000 | [diff] [blame] | 1638 | /* |
| 1639 | * Returns true iff the specified sector is present in the disk image. Drivers |
| 1640 | * not implementing the functionality are assumed to not support backing files, |
| 1641 | * hence all their sectors are reported as allocated. |
| 1642 | * |
| 1643 | * 'pnum' is set to the number of sectors (including and immediately following |
| 1644 | * the specified sector) that are known to be in the same |
| 1645 | * allocated/unallocated state. |
| 1646 | * |
| 1647 | * 'nb_sectors' is the max value 'pnum' should be set to. |
| 1648 | */ |
| 1649 | int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, |
| 1650 | int *pnum) |
| 1651 | { |
| 1652 | int64_t n; |
| 1653 | if (!bs->drv->bdrv_is_allocated) { |
| 1654 | if (sector_num >= bs->total_sectors) { |
| 1655 | *pnum = 0; |
| 1656 | return 0; |
| 1657 | } |
| 1658 | n = bs->total_sectors - sector_num; |
| 1659 | *pnum = (n < nb_sectors) ? (n) : (nb_sectors); |
| 1660 | return 1; |
| 1661 | } |
| 1662 | return bs->drv->bdrv_is_allocated(bs, sector_num, nb_sectors, pnum); |
| 1663 | } |
| 1664 | |
Luiz Capitulino | 2582bfe | 2010-02-03 12:41:01 -0200 | [diff] [blame] | 1665 | void bdrv_mon_event(const BlockDriverState *bdrv, |
| 1666 | BlockMonEventAction action, int is_read) |
| 1667 | { |
| 1668 | QObject *data; |
| 1669 | const char *action_str; |
| 1670 | |
| 1671 | switch (action) { |
| 1672 | case BDRV_ACTION_REPORT: |
| 1673 | action_str = "report"; |
| 1674 | break; |
| 1675 | case BDRV_ACTION_IGNORE: |
| 1676 | action_str = "ignore"; |
| 1677 | break; |
| 1678 | case BDRV_ACTION_STOP: |
| 1679 | action_str = "stop"; |
| 1680 | break; |
| 1681 | default: |
| 1682 | abort(); |
| 1683 | } |
| 1684 | |
| 1685 | data = qobject_from_jsonf("{ 'device': %s, 'action': %s, 'operation': %s }", |
| 1686 | bdrv->device_name, |
| 1687 | action_str, |
| 1688 | is_read ? "read" : "write"); |
| 1689 | monitor_protocol_event(QEVENT_BLOCK_IO_ERROR, data); |
| 1690 | |
| 1691 | qobject_decref(data); |
| 1692 | } |
| 1693 | |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1694 | static void bdrv_print_dict(QObject *obj, void *opaque) |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1695 | { |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1696 | QDict *bs_dict; |
| 1697 | Monitor *mon = opaque; |
| 1698 | |
| 1699 | bs_dict = qobject_to_qdict(obj); |
| 1700 | |
| 1701 | monitor_printf(mon, "%s: type=%s removable=%d", |
| 1702 | qdict_get_str(bs_dict, "device"), |
| 1703 | qdict_get_str(bs_dict, "type"), |
| 1704 | qdict_get_bool(bs_dict, "removable")); |
| 1705 | |
| 1706 | if (qdict_get_bool(bs_dict, "removable")) { |
| 1707 | monitor_printf(mon, " locked=%d", qdict_get_bool(bs_dict, "locked")); |
| 1708 | } |
| 1709 | |
| 1710 | if (qdict_haskey(bs_dict, "inserted")) { |
| 1711 | QDict *qdict = qobject_to_qdict(qdict_get(bs_dict, "inserted")); |
| 1712 | |
| 1713 | monitor_printf(mon, " file="); |
| 1714 | monitor_print_filename(mon, qdict_get_str(qdict, "file")); |
| 1715 | if (qdict_haskey(qdict, "backing_file")) { |
| 1716 | monitor_printf(mon, " backing_file="); |
| 1717 | monitor_print_filename(mon, qdict_get_str(qdict, "backing_file")); |
| 1718 | } |
| 1719 | monitor_printf(mon, " ro=%d drv=%s encrypted=%d", |
| 1720 | qdict_get_bool(qdict, "ro"), |
| 1721 | qdict_get_str(qdict, "drv"), |
| 1722 | qdict_get_bool(qdict, "encrypted")); |
| 1723 | } else { |
| 1724 | monitor_printf(mon, " [not inserted]"); |
| 1725 | } |
| 1726 | |
| 1727 | monitor_printf(mon, "\n"); |
| 1728 | } |
| 1729 | |
| 1730 | void bdrv_info_print(Monitor *mon, const QObject *data) |
| 1731 | { |
| 1732 | qlist_iter(qobject_to_qlist(data), bdrv_print_dict, mon); |
| 1733 | } |
| 1734 | |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1735 | void bdrv_info(Monitor *mon, QObject **ret_data) |
| 1736 | { |
| 1737 | QList *bs_list; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1738 | BlockDriverState *bs; |
| 1739 | |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1740 | bs_list = qlist_new(); |
| 1741 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1742 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1743 | QObject *bs_obj; |
| 1744 | const char *type = "unknown"; |
| 1745 | |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1746 | switch(bs->type) { |
| 1747 | case BDRV_TYPE_HD: |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1748 | type = "hd"; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1749 | break; |
| 1750 | case BDRV_TYPE_CDROM: |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1751 | type = "cdrom"; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1752 | break; |
| 1753 | case BDRV_TYPE_FLOPPY: |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1754 | type = "floppy"; |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1755 | break; |
| 1756 | } |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1757 | |
| 1758 | bs_obj = qobject_from_jsonf("{ 'device': %s, 'type': %s, " |
| 1759 | "'removable': %i, 'locked': %i }", |
| 1760 | bs->device_name, type, bs->removable, |
| 1761 | bs->locked); |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1762 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1763 | if (bs->drv) { |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1764 | QObject *obj; |
| 1765 | QDict *bs_dict = qobject_to_qdict(bs_obj); |
| 1766 | |
| 1767 | obj = qobject_from_jsonf("{ 'file': %s, 'ro': %i, 'drv': %s, " |
| 1768 | "'encrypted': %i }", |
| 1769 | bs->filename, bs->read_only, |
| 1770 | bs->drv->format_name, |
| 1771 | bdrv_is_encrypted(bs)); |
ths | fef3074 | 2006-12-22 14:11:32 +0000 | [diff] [blame] | 1772 | if (bs->backing_file[0] != '\0') { |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1773 | QDict *qdict = qobject_to_qdict(obj); |
| 1774 | qdict_put(qdict, "backing_file", |
| 1775 | qstring_from_str(bs->backing_file)); |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 1776 | } |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1777 | |
| 1778 | qdict_put_obj(bs_dict, "inserted", obj); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1779 | } |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1780 | qlist_append_obj(bs_list, bs_obj); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1781 | } |
Luiz Capitulino | d15e546 | 2009-12-10 17:16:06 -0200 | [diff] [blame] | 1782 | |
| 1783 | *ret_data = QOBJECT(bs_list); |
bellard | b338082 | 2004-03-14 21:38:54 +0000 | [diff] [blame] | 1784 | } |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1785 | |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1786 | static void bdrv_stats_iter(QObject *data, void *opaque) |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1787 | { |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1788 | QDict *qdict; |
| 1789 | Monitor *mon = opaque; |
| 1790 | |
| 1791 | qdict = qobject_to_qdict(data); |
| 1792 | monitor_printf(mon, "%s:", qdict_get_str(qdict, "device")); |
| 1793 | |
| 1794 | qdict = qobject_to_qdict(qdict_get(qdict, "stats")); |
| 1795 | monitor_printf(mon, " rd_bytes=%" PRId64 |
| 1796 | " wr_bytes=%" PRId64 |
| 1797 | " rd_operations=%" PRId64 |
| 1798 | " wr_operations=%" PRId64 |
| 1799 | "\n", |
| 1800 | qdict_get_int(qdict, "rd_bytes"), |
| 1801 | qdict_get_int(qdict, "wr_bytes"), |
| 1802 | qdict_get_int(qdict, "rd_operations"), |
| 1803 | qdict_get_int(qdict, "wr_operations")); |
| 1804 | } |
| 1805 | |
| 1806 | void bdrv_stats_print(Monitor *mon, const QObject *data) |
| 1807 | { |
| 1808 | qlist_iter(qobject_to_qlist(data), bdrv_stats_iter, mon); |
| 1809 | } |
| 1810 | |
Kevin Wolf | 294cc35 | 2010-04-28 14:34:01 +0200 | [diff] [blame] | 1811 | static QObject* bdrv_info_stats_bs(BlockDriverState *bs) |
| 1812 | { |
| 1813 | QObject *res; |
| 1814 | QDict *dict; |
| 1815 | |
| 1816 | res = qobject_from_jsonf("{ 'stats': {" |
| 1817 | "'rd_bytes': %" PRId64 "," |
| 1818 | "'wr_bytes': %" PRId64 "," |
| 1819 | "'rd_operations': %" PRId64 "," |
| 1820 | "'wr_operations': %" PRId64 "," |
| 1821 | "'wr_highest_offset': %" PRId64 |
| 1822 | "} }", |
| 1823 | bs->rd_bytes, bs->wr_bytes, |
| 1824 | bs->rd_ops, bs->wr_ops, |
Blue Swirl | 5ffbbc6 | 2010-06-14 18:55:33 +0000 | [diff] [blame] | 1825 | bs->wr_highest_sector * |
| 1826 | (uint64_t)BDRV_SECTOR_SIZE); |
Kevin Wolf | 294cc35 | 2010-04-28 14:34:01 +0200 | [diff] [blame] | 1827 | dict = qobject_to_qdict(res); |
| 1828 | |
| 1829 | if (*bs->device_name) { |
| 1830 | qdict_put(dict, "device", qstring_from_str(bs->device_name)); |
| 1831 | } |
| 1832 | |
| 1833 | if (bs->file) { |
| 1834 | QObject *parent = bdrv_info_stats_bs(bs->file); |
| 1835 | qdict_put_obj(dict, "parent", parent); |
| 1836 | } |
| 1837 | |
| 1838 | return res; |
| 1839 | } |
| 1840 | |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1841 | void bdrv_info_stats(Monitor *mon, QObject **ret_data) |
| 1842 | { |
| 1843 | QObject *obj; |
| 1844 | QList *devices; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1845 | BlockDriverState *bs; |
| 1846 | |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1847 | devices = qlist_new(); |
| 1848 | |
Stefan Hajnoczi | 1b7bdbc | 2010-04-10 07:02:42 +0100 | [diff] [blame] | 1849 | QTAILQ_FOREACH(bs, &bdrv_states, list) { |
Kevin Wolf | 294cc35 | 2010-04-28 14:34:01 +0200 | [diff] [blame] | 1850 | obj = bdrv_info_stats_bs(bs); |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1851 | qlist_append_obj(devices, obj); |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1852 | } |
Luiz Capitulino | 218a536 | 2009-12-10 17:16:07 -0200 | [diff] [blame] | 1853 | |
| 1854 | *ret_data = QOBJECT(devices); |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 1855 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1856 | |
aliguori | 045df33 | 2009-03-05 23:00:48 +0000 | [diff] [blame] | 1857 | const char *bdrv_get_encrypted_filename(BlockDriverState *bs) |
| 1858 | { |
| 1859 | if (bs->backing_hd && bs->backing_hd->encrypted) |
| 1860 | return bs->backing_file; |
| 1861 | else if (bs->encrypted) |
| 1862 | return bs->filename; |
| 1863 | else |
| 1864 | return NULL; |
| 1865 | } |
| 1866 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1867 | void bdrv_get_backing_filename(BlockDriverState *bs, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1868 | char *filename, int filename_size) |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1869 | { |
Kevin Wolf | b783e40 | 2010-01-12 12:55:16 +0100 | [diff] [blame] | 1870 | if (!bs->backing_file) { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 1871 | pstrcpy(filename, filename_size, ""); |
| 1872 | } else { |
| 1873 | pstrcpy(filename, filename_size, bs->backing_file); |
| 1874 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 1875 | } |
| 1876 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1877 | int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1878 | const uint8_t *buf, int nb_sectors) |
| 1879 | { |
| 1880 | BlockDriver *drv = bs->drv; |
| 1881 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1882 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1883 | if (!drv->bdrv_write_compressed) |
| 1884 | return -ENOTSUP; |
Kevin Wolf | fbb7b4e | 2009-05-08 14:47:24 +0200 | [diff] [blame] | 1885 | if (bdrv_check_request(bs, sector_num, nb_sectors)) |
| 1886 | return -EIO; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1887 | |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 1888 | if (bs->dirty_bitmap) { |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 1889 | set_dirty_bitmap(bs, sector_num, nb_sectors, 1); |
| 1890 | } |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 1891 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1892 | return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors); |
| 1893 | } |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 1894 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1895 | int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi) |
| 1896 | { |
| 1897 | BlockDriver *drv = bs->drv; |
| 1898 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1899 | return -ENOMEDIUM; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1900 | if (!drv->bdrv_get_info) |
| 1901 | return -ENOTSUP; |
| 1902 | memset(bdi, 0, sizeof(*bdi)); |
| 1903 | return drv->bdrv_get_info(bs, bdi); |
| 1904 | } |
| 1905 | |
Christoph Hellwig | 45566e9 | 2009-07-10 23:11:57 +0200 | [diff] [blame] | 1906 | int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf, |
| 1907 | int64_t pos, int size) |
aliguori | 178e08a | 2009-04-05 19:10:55 +0000 | [diff] [blame] | 1908 | { |
| 1909 | BlockDriver *drv = bs->drv; |
| 1910 | if (!drv) |
| 1911 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 1912 | if (drv->bdrv_save_vmstate) |
| 1913 | return drv->bdrv_save_vmstate(bs, buf, pos, size); |
| 1914 | if (bs->file) |
| 1915 | return bdrv_save_vmstate(bs->file, buf, pos, size); |
| 1916 | return -ENOTSUP; |
aliguori | 178e08a | 2009-04-05 19:10:55 +0000 | [diff] [blame] | 1917 | } |
| 1918 | |
Christoph Hellwig | 45566e9 | 2009-07-10 23:11:57 +0200 | [diff] [blame] | 1919 | int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf, |
| 1920 | int64_t pos, int size) |
aliguori | 178e08a | 2009-04-05 19:10:55 +0000 | [diff] [blame] | 1921 | { |
| 1922 | BlockDriver *drv = bs->drv; |
| 1923 | if (!drv) |
| 1924 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 1925 | if (drv->bdrv_load_vmstate) |
| 1926 | return drv->bdrv_load_vmstate(bs, buf, pos, size); |
| 1927 | if (bs->file) |
| 1928 | return bdrv_load_vmstate(bs->file, buf, pos, size); |
| 1929 | return -ENOTSUP; |
aliguori | 178e08a | 2009-04-05 19:10:55 +0000 | [diff] [blame] | 1930 | } |
| 1931 | |
Kevin Wolf | 8b9b0cc | 2010-03-15 17:27:00 +0100 | [diff] [blame] | 1932 | void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event) |
| 1933 | { |
| 1934 | BlockDriver *drv = bs->drv; |
| 1935 | |
| 1936 | if (!drv || !drv->bdrv_debug_event) { |
| 1937 | return; |
| 1938 | } |
| 1939 | |
| 1940 | return drv->bdrv_debug_event(bs, event); |
| 1941 | |
| 1942 | } |
| 1943 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1944 | /**************************************************************/ |
| 1945 | /* handling of snapshots */ |
| 1946 | |
Miguel Di Ciurcio Filho | feeee5a | 2010-06-08 10:40:55 -0300 | [diff] [blame] | 1947 | int bdrv_can_snapshot(BlockDriverState *bs) |
| 1948 | { |
| 1949 | BlockDriver *drv = bs->drv; |
| 1950 | if (!drv || bdrv_is_removable(bs) || bdrv_is_read_only(bs)) { |
| 1951 | return 0; |
| 1952 | } |
| 1953 | |
| 1954 | if (!drv->bdrv_snapshot_create) { |
| 1955 | if (bs->file != NULL) { |
| 1956 | return bdrv_can_snapshot(bs->file); |
| 1957 | } |
| 1958 | return 0; |
| 1959 | } |
| 1960 | |
| 1961 | return 1; |
| 1962 | } |
| 1963 | |
Blue Swirl | 199630b | 2010-07-25 20:49:34 +0000 | [diff] [blame] | 1964 | int bdrv_is_snapshot(BlockDriverState *bs) |
| 1965 | { |
| 1966 | return !!(bs->open_flags & BDRV_O_SNAPSHOT); |
| 1967 | } |
| 1968 | |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 1969 | BlockDriverState *bdrv_snapshots(void) |
| 1970 | { |
| 1971 | BlockDriverState *bs; |
| 1972 | |
Markus Armbruster | 3ac906f | 2010-07-01 09:30:38 +0200 | [diff] [blame] | 1973 | if (bs_snapshots) { |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 1974 | return bs_snapshots; |
Markus Armbruster | 3ac906f | 2010-07-01 09:30:38 +0200 | [diff] [blame] | 1975 | } |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 1976 | |
| 1977 | bs = NULL; |
| 1978 | while ((bs = bdrv_next(bs))) { |
| 1979 | if (bdrv_can_snapshot(bs)) { |
Markus Armbruster | 3ac906f | 2010-07-01 09:30:38 +0200 | [diff] [blame] | 1980 | bs_snapshots = bs; |
| 1981 | return bs; |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 1982 | } |
| 1983 | } |
| 1984 | return NULL; |
Markus Armbruster | f9092b1 | 2010-06-25 10:33:39 +0200 | [diff] [blame] | 1985 | } |
| 1986 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 1987 | int bdrv_snapshot_create(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1988 | QEMUSnapshotInfo *sn_info) |
| 1989 | { |
| 1990 | BlockDriver *drv = bs->drv; |
| 1991 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 1992 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 1993 | if (drv->bdrv_snapshot_create) |
| 1994 | return drv->bdrv_snapshot_create(bs, sn_info); |
| 1995 | if (bs->file) |
| 1996 | return bdrv_snapshot_create(bs->file, sn_info); |
| 1997 | return -ENOTSUP; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 1998 | } |
| 1999 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2000 | int bdrv_snapshot_goto(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2001 | const char *snapshot_id) |
| 2002 | { |
| 2003 | BlockDriver *drv = bs->drv; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 2004 | int ret, open_ret; |
| 2005 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2006 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2007 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 2008 | if (drv->bdrv_snapshot_goto) |
| 2009 | return drv->bdrv_snapshot_goto(bs, snapshot_id); |
| 2010 | |
| 2011 | if (bs->file) { |
| 2012 | drv->bdrv_close(bs); |
| 2013 | ret = bdrv_snapshot_goto(bs->file, snapshot_id); |
| 2014 | open_ret = drv->bdrv_open(bs, bs->open_flags); |
| 2015 | if (open_ret < 0) { |
| 2016 | bdrv_delete(bs->file); |
| 2017 | bs->drv = NULL; |
| 2018 | return open_ret; |
| 2019 | } |
| 2020 | return ret; |
| 2021 | } |
| 2022 | |
| 2023 | return -ENOTSUP; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2024 | } |
| 2025 | |
| 2026 | int bdrv_snapshot_delete(BlockDriverState *bs, const char *snapshot_id) |
| 2027 | { |
| 2028 | BlockDriver *drv = bs->drv; |
| 2029 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2030 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 2031 | if (drv->bdrv_snapshot_delete) |
| 2032 | return drv->bdrv_snapshot_delete(bs, snapshot_id); |
| 2033 | if (bs->file) |
| 2034 | return bdrv_snapshot_delete(bs->file, snapshot_id); |
| 2035 | return -ENOTSUP; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2036 | } |
| 2037 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2038 | int bdrv_snapshot_list(BlockDriverState *bs, |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2039 | QEMUSnapshotInfo **psn_info) |
| 2040 | { |
| 2041 | BlockDriver *drv = bs->drv; |
| 2042 | if (!drv) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2043 | return -ENOMEDIUM; |
MORITA Kazutaka | 7cdb1f6 | 2010-05-28 11:44:58 +0900 | [diff] [blame] | 2044 | if (drv->bdrv_snapshot_list) |
| 2045 | return drv->bdrv_snapshot_list(bs, psn_info); |
| 2046 | if (bs->file) |
| 2047 | return bdrv_snapshot_list(bs->file, psn_info); |
| 2048 | return -ENOTSUP; |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2049 | } |
| 2050 | |
edison | 51ef672 | 2010-09-21 19:58:41 -0700 | [diff] [blame] | 2051 | int bdrv_snapshot_load_tmp(BlockDriverState *bs, |
| 2052 | const char *snapshot_name) |
| 2053 | { |
| 2054 | BlockDriver *drv = bs->drv; |
| 2055 | if (!drv) { |
| 2056 | return -ENOMEDIUM; |
| 2057 | } |
| 2058 | if (!bs->read_only) { |
| 2059 | return -EINVAL; |
| 2060 | } |
| 2061 | if (drv->bdrv_snapshot_load_tmp) { |
| 2062 | return drv->bdrv_snapshot_load_tmp(bs, snapshot_name); |
| 2063 | } |
| 2064 | return -ENOTSUP; |
| 2065 | } |
| 2066 | |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2067 | #define NB_SUFFIXES 4 |
| 2068 | |
| 2069 | char *get_human_readable_size(char *buf, int buf_size, int64_t size) |
| 2070 | { |
| 2071 | static const char suffixes[NB_SUFFIXES] = "KMGT"; |
| 2072 | int64_t base; |
| 2073 | int i; |
| 2074 | |
| 2075 | if (size <= 999) { |
| 2076 | snprintf(buf, buf_size, "%" PRId64, size); |
| 2077 | } else { |
| 2078 | base = 1024; |
| 2079 | for(i = 0; i < NB_SUFFIXES; i++) { |
| 2080 | if (size < (10 * base)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2081 | snprintf(buf, buf_size, "%0.1f%c", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2082 | (double)size / base, |
| 2083 | suffixes[i]); |
| 2084 | break; |
| 2085 | } else if (size < (1000 * base) || i == (NB_SUFFIXES - 1)) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2086 | snprintf(buf, buf_size, "%" PRId64 "%c", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2087 | ((size + (base >> 1)) / base), |
| 2088 | suffixes[i]); |
| 2089 | break; |
| 2090 | } |
| 2091 | base = base * 1024; |
| 2092 | } |
| 2093 | } |
| 2094 | return buf; |
| 2095 | } |
| 2096 | |
| 2097 | char *bdrv_snapshot_dump(char *buf, int buf_size, QEMUSnapshotInfo *sn) |
| 2098 | { |
| 2099 | char buf1[128], date_buf[128], clock_buf[128]; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 2100 | #ifdef _WIN32 |
| 2101 | struct tm *ptm; |
| 2102 | #else |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2103 | struct tm tm; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 2104 | #endif |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2105 | time_t ti; |
| 2106 | int64_t secs; |
| 2107 | |
| 2108 | if (!sn) { |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2109 | snprintf(buf, buf_size, |
| 2110 | "%-10s%-20s%7s%20s%15s", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2111 | "ID", "TAG", "VM SIZE", "DATE", "VM CLOCK"); |
| 2112 | } else { |
| 2113 | ti = sn->date_sec; |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 2114 | #ifdef _WIN32 |
| 2115 | ptm = localtime(&ti); |
| 2116 | strftime(date_buf, sizeof(date_buf), |
| 2117 | "%Y-%m-%d %H:%M:%S", ptm); |
| 2118 | #else |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2119 | localtime_r(&ti, &tm); |
| 2120 | strftime(date_buf, sizeof(date_buf), |
| 2121 | "%Y-%m-%d %H:%M:%S", &tm); |
bellard | 3b9f94e | 2007-01-07 17:27:07 +0000 | [diff] [blame] | 2122 | #endif |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2123 | secs = sn->vm_clock_nsec / 1000000000; |
| 2124 | snprintf(clock_buf, sizeof(clock_buf), |
| 2125 | "%02d:%02d:%02d.%03d", |
| 2126 | (int)(secs / 3600), |
| 2127 | (int)((secs / 60) % 60), |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2128 | (int)(secs % 60), |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2129 | (int)((sn->vm_clock_nsec / 1000000) % 1000)); |
| 2130 | snprintf(buf, buf_size, |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2131 | "%-10s%-20s%7s%20s%15s", |
bellard | faea38e | 2006-08-05 21:31:00 +0000 | [diff] [blame] | 2132 | sn->id_str, sn->name, |
| 2133 | get_human_readable_size(buf1, sizeof(buf1), sn->vm_state_size), |
| 2134 | date_buf, |
| 2135 | clock_buf); |
| 2136 | } |
| 2137 | return buf; |
| 2138 | } |
| 2139 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2140 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2141 | /**************************************************************/ |
| 2142 | /* async I/Os */ |
| 2143 | |
aliguori | 3b69e4b | 2009-01-22 16:59:24 +0000 | [diff] [blame] | 2144 | BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2145 | QEMUIOVector *qiov, int nb_sectors, |
aliguori | 3b69e4b | 2009-01-22 16:59:24 +0000 | [diff] [blame] | 2146 | BlockDriverCompletionFunc *cb, void *opaque) |
| 2147 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2148 | BlockDriver *drv = bs->drv; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2149 | BlockDriverAIOCB *ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2150 | |
Stefan Hajnoczi | bbf0a44 | 2010-10-05 14:28:53 +0100 | [diff] [blame] | 2151 | trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque); |
| 2152 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2153 | if (!drv) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2154 | return NULL; |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 2155 | if (bdrv_check_request(bs, sector_num, nb_sectors)) |
| 2156 | return NULL; |
ths | 3b46e62 | 2007-09-17 08:09:54 +0000 | [diff] [blame] | 2157 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2158 | ret = drv->bdrv_aio_readv(bs, sector_num, qiov, nb_sectors, |
| 2159 | cb, opaque); |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2160 | |
| 2161 | if (ret) { |
| 2162 | /* Update stats even though technically transfer has not happened. */ |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2163 | bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2164 | bs->rd_ops ++; |
| 2165 | } |
| 2166 | |
| 2167 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2168 | } |
| 2169 | |
Marcelo Tosatti | 4dcafbb | 2010-11-08 17:02:55 -0200 | [diff] [blame] | 2170 | typedef struct BlockCompleteData { |
| 2171 | BlockDriverCompletionFunc *cb; |
| 2172 | void *opaque; |
| 2173 | BlockDriverState *bs; |
| 2174 | int64_t sector_num; |
| 2175 | int nb_sectors; |
| 2176 | } BlockCompleteData; |
| 2177 | |
| 2178 | static void block_complete_cb(void *opaque, int ret) |
| 2179 | { |
| 2180 | BlockCompleteData *b = opaque; |
| 2181 | |
| 2182 | if (b->bs->dirty_bitmap) { |
| 2183 | set_dirty_bitmap(b->bs, b->sector_num, b->nb_sectors, 1); |
| 2184 | } |
| 2185 | b->cb(b->opaque, ret); |
| 2186 | qemu_free(b); |
| 2187 | } |
| 2188 | |
| 2189 | static BlockCompleteData *blk_dirty_cb_alloc(BlockDriverState *bs, |
| 2190 | int64_t sector_num, |
| 2191 | int nb_sectors, |
| 2192 | BlockDriverCompletionFunc *cb, |
| 2193 | void *opaque) |
| 2194 | { |
| 2195 | BlockCompleteData *blkdata = qemu_mallocz(sizeof(BlockCompleteData)); |
| 2196 | |
| 2197 | blkdata->bs = bs; |
| 2198 | blkdata->cb = cb; |
| 2199 | blkdata->opaque = opaque; |
| 2200 | blkdata->sector_num = sector_num; |
| 2201 | blkdata->nb_sectors = nb_sectors; |
| 2202 | |
| 2203 | return blkdata; |
| 2204 | } |
| 2205 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2206 | BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num, |
| 2207 | QEMUIOVector *qiov, int nb_sectors, |
| 2208 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2209 | { |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2210 | BlockDriver *drv = bs->drv; |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2211 | BlockDriverAIOCB *ret; |
Marcelo Tosatti | 4dcafbb | 2010-11-08 17:02:55 -0200 | [diff] [blame] | 2212 | BlockCompleteData *blk_cb_data; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2213 | |
Stefan Hajnoczi | bbf0a44 | 2010-10-05 14:28:53 +0100 | [diff] [blame] | 2214 | trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque); |
| 2215 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2216 | if (!drv) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2217 | return NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2218 | if (bs->read_only) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2219 | return NULL; |
aliguori | 71d0770 | 2009-03-03 17:37:16 +0000 | [diff] [blame] | 2220 | if (bdrv_check_request(bs, sector_num, nb_sectors)) |
| 2221 | return NULL; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2222 | |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 2223 | if (bs->dirty_bitmap) { |
Marcelo Tosatti | 4dcafbb | 2010-11-08 17:02:55 -0200 | [diff] [blame] | 2224 | blk_cb_data = blk_dirty_cb_alloc(bs, sector_num, nb_sectors, cb, |
| 2225 | opaque); |
| 2226 | cb = &block_complete_cb; |
| 2227 | opaque = blk_cb_data; |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2228 | } |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2229 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2230 | ret = drv->bdrv_aio_writev(bs, sector_num, qiov, nb_sectors, |
| 2231 | cb, opaque); |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2232 | |
| 2233 | if (ret) { |
Kevin Wolf | 294cc35 | 2010-04-28 14:34:01 +0200 | [diff] [blame] | 2234 | /* Update stats even though technically transfer has not happened. */ |
| 2235 | bs->wr_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE; |
| 2236 | bs->wr_ops ++; |
| 2237 | if (bs->wr_highest_sector < sector_num + nb_sectors - 1) { |
| 2238 | bs->wr_highest_sector = sector_num + nb_sectors - 1; |
| 2239 | } |
ths | a36e69d | 2007-12-02 05:18:19 +0000 | [diff] [blame] | 2240 | } |
| 2241 | |
| 2242 | return ret; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2243 | } |
| 2244 | |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2245 | |
| 2246 | typedef struct MultiwriteCB { |
| 2247 | int error; |
| 2248 | int num_requests; |
| 2249 | int num_callbacks; |
| 2250 | struct { |
| 2251 | BlockDriverCompletionFunc *cb; |
| 2252 | void *opaque; |
| 2253 | QEMUIOVector *free_qiov; |
| 2254 | void *free_buf; |
| 2255 | } callbacks[]; |
| 2256 | } MultiwriteCB; |
| 2257 | |
| 2258 | static void multiwrite_user_cb(MultiwriteCB *mcb) |
| 2259 | { |
| 2260 | int i; |
| 2261 | |
| 2262 | for (i = 0; i < mcb->num_callbacks; i++) { |
| 2263 | mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error); |
Stefan Hajnoczi | 1e1ea48 | 2010-04-21 20:35:45 +0100 | [diff] [blame] | 2264 | if (mcb->callbacks[i].free_qiov) { |
| 2265 | qemu_iovec_destroy(mcb->callbacks[i].free_qiov); |
| 2266 | } |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2267 | qemu_free(mcb->callbacks[i].free_qiov); |
Herve Poussineau | f8a8324 | 2010-01-24 21:23:56 +0000 | [diff] [blame] | 2268 | qemu_vfree(mcb->callbacks[i].free_buf); |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2269 | } |
| 2270 | } |
| 2271 | |
| 2272 | static void multiwrite_cb(void *opaque, int ret) |
| 2273 | { |
| 2274 | MultiwriteCB *mcb = opaque; |
| 2275 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 2276 | trace_multiwrite_cb(mcb, ret); |
| 2277 | |
Kevin Wolf | cb6d3ca | 2010-04-01 22:48:44 +0200 | [diff] [blame] | 2278 | if (ret < 0 && !mcb->error) { |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2279 | mcb->error = ret; |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2280 | } |
| 2281 | |
| 2282 | mcb->num_requests--; |
| 2283 | if (mcb->num_requests == 0) { |
Kevin Wolf | de189a1 | 2010-07-01 16:08:51 +0200 | [diff] [blame] | 2284 | multiwrite_user_cb(mcb); |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2285 | qemu_free(mcb); |
| 2286 | } |
| 2287 | } |
| 2288 | |
| 2289 | static int multiwrite_req_compare(const void *a, const void *b) |
| 2290 | { |
Christoph Hellwig | 77be436 | 2010-05-19 20:53:10 +0200 | [diff] [blame] | 2291 | const BlockRequest *req1 = a, *req2 = b; |
| 2292 | |
| 2293 | /* |
| 2294 | * Note that we can't simply subtract req2->sector from req1->sector |
| 2295 | * here as that could overflow the return value. |
| 2296 | */ |
| 2297 | if (req1->sector > req2->sector) { |
| 2298 | return 1; |
| 2299 | } else if (req1->sector < req2->sector) { |
| 2300 | return -1; |
| 2301 | } else { |
| 2302 | return 0; |
| 2303 | } |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2304 | } |
| 2305 | |
| 2306 | /* |
| 2307 | * Takes a bunch of requests and tries to merge them. Returns the number of |
| 2308 | * requests that remain after merging. |
| 2309 | */ |
| 2310 | static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs, |
| 2311 | int num_reqs, MultiwriteCB *mcb) |
| 2312 | { |
| 2313 | int i, outidx; |
| 2314 | |
| 2315 | // Sort requests by start sector |
| 2316 | qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare); |
| 2317 | |
| 2318 | // Check if adjacent requests touch the same clusters. If so, combine them, |
| 2319 | // filling up gaps with zero sectors. |
| 2320 | outidx = 0; |
| 2321 | for (i = 1; i < num_reqs; i++) { |
| 2322 | int merge = 0; |
| 2323 | int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors; |
| 2324 | |
| 2325 | // This handles the cases that are valid for all block drivers, namely |
| 2326 | // exactly sequential writes and overlapping writes. |
| 2327 | if (reqs[i].sector <= oldreq_last) { |
| 2328 | merge = 1; |
| 2329 | } |
| 2330 | |
| 2331 | // The block driver may decide that it makes sense to combine requests |
| 2332 | // even if there is a gap of some sectors between them. In this case, |
| 2333 | // the gap is filled with zeros (therefore only applicable for yet |
| 2334 | // unused space in format like qcow2). |
| 2335 | if (!merge && bs->drv->bdrv_merge_requests) { |
| 2336 | merge = bs->drv->bdrv_merge_requests(bs, &reqs[outidx], &reqs[i]); |
| 2337 | } |
| 2338 | |
Christoph Hellwig | e2a305f | 2010-01-26 14:49:08 +0100 | [diff] [blame] | 2339 | if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) { |
| 2340 | merge = 0; |
| 2341 | } |
| 2342 | |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2343 | if (merge) { |
| 2344 | size_t size; |
| 2345 | QEMUIOVector *qiov = qemu_mallocz(sizeof(*qiov)); |
| 2346 | qemu_iovec_init(qiov, |
| 2347 | reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1); |
| 2348 | |
| 2349 | // Add the first request to the merged one. If the requests are |
| 2350 | // overlapping, drop the last sectors of the first request. |
| 2351 | size = (reqs[i].sector - reqs[outidx].sector) << 9; |
| 2352 | qemu_iovec_concat(qiov, reqs[outidx].qiov, size); |
| 2353 | |
| 2354 | // We might need to add some zeros between the two requests |
| 2355 | if (reqs[i].sector > oldreq_last) { |
| 2356 | size_t zero_bytes = (reqs[i].sector - oldreq_last) << 9; |
| 2357 | uint8_t *buf = qemu_blockalign(bs, zero_bytes); |
| 2358 | memset(buf, 0, zero_bytes); |
| 2359 | qemu_iovec_add(qiov, buf, zero_bytes); |
| 2360 | mcb->callbacks[i].free_buf = buf; |
| 2361 | } |
| 2362 | |
| 2363 | // Add the second request |
| 2364 | qemu_iovec_concat(qiov, reqs[i].qiov, reqs[i].qiov->size); |
| 2365 | |
Kevin Wolf | cbf1dff | 2010-05-21 11:09:42 +0200 | [diff] [blame] | 2366 | reqs[outidx].nb_sectors = qiov->size >> 9; |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2367 | reqs[outidx].qiov = qiov; |
| 2368 | |
| 2369 | mcb->callbacks[i].free_qiov = reqs[outidx].qiov; |
| 2370 | } else { |
| 2371 | outidx++; |
| 2372 | reqs[outidx].sector = reqs[i].sector; |
| 2373 | reqs[outidx].nb_sectors = reqs[i].nb_sectors; |
| 2374 | reqs[outidx].qiov = reqs[i].qiov; |
| 2375 | } |
| 2376 | } |
| 2377 | |
| 2378 | return outidx + 1; |
| 2379 | } |
| 2380 | |
| 2381 | /* |
| 2382 | * Submit multiple AIO write requests at once. |
| 2383 | * |
| 2384 | * On success, the function returns 0 and all requests in the reqs array have |
| 2385 | * been submitted. In error case this function returns -1, and any of the |
| 2386 | * requests may or may not be submitted yet. In particular, this means that the |
| 2387 | * callback will be called for some of the requests, for others it won't. The |
| 2388 | * caller must check the error field of the BlockRequest to wait for the right |
| 2389 | * callbacks (if error != 0, no callback will be called). |
| 2390 | * |
| 2391 | * The implementation may modify the contents of the reqs array, e.g. to merge |
| 2392 | * requests. However, the fields opaque and error are left unmodified as they |
| 2393 | * are used to signal failure for a single request to the caller. |
| 2394 | */ |
| 2395 | int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs) |
| 2396 | { |
| 2397 | BlockDriverAIOCB *acb; |
| 2398 | MultiwriteCB *mcb; |
| 2399 | int i; |
| 2400 | |
Ryan Harper | 301db7c | 2011-03-07 10:01:04 -0600 | [diff] [blame] | 2401 | /* don't submit writes if we don't have a medium */ |
| 2402 | if (bs->drv == NULL) { |
| 2403 | for (i = 0; i < num_reqs; i++) { |
| 2404 | reqs[i].error = -ENOMEDIUM; |
| 2405 | } |
| 2406 | return -1; |
| 2407 | } |
| 2408 | |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2409 | if (num_reqs == 0) { |
| 2410 | return 0; |
| 2411 | } |
| 2412 | |
| 2413 | // Create MultiwriteCB structure |
| 2414 | mcb = qemu_mallocz(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks)); |
| 2415 | mcb->num_requests = 0; |
| 2416 | mcb->num_callbacks = num_reqs; |
| 2417 | |
| 2418 | for (i = 0; i < num_reqs; i++) { |
| 2419 | mcb->callbacks[i].cb = reqs[i].cb; |
| 2420 | mcb->callbacks[i].opaque = reqs[i].opaque; |
| 2421 | } |
| 2422 | |
| 2423 | // Check for mergable requests |
| 2424 | num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb); |
| 2425 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 2426 | trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs); |
| 2427 | |
Kevin Wolf | 453f9a1 | 2010-07-02 14:01:21 +0200 | [diff] [blame] | 2428 | /* |
| 2429 | * Run the aio requests. As soon as one request can't be submitted |
| 2430 | * successfully, fail all requests that are not yet submitted (we must |
| 2431 | * return failure for all requests anyway) |
| 2432 | * |
| 2433 | * num_requests cannot be set to the right value immediately: If |
| 2434 | * bdrv_aio_writev fails for some request, num_requests would be too high |
| 2435 | * and therefore multiwrite_cb() would never recognize the multiwrite |
| 2436 | * request as completed. We also cannot use the loop variable i to set it |
| 2437 | * when the first request fails because the callback may already have been |
| 2438 | * called for previously submitted requests. Thus, num_requests must be |
| 2439 | * incremented for each request that is submitted. |
| 2440 | * |
| 2441 | * The problem that callbacks may be called early also means that we need |
| 2442 | * to take care that num_requests doesn't become 0 before all requests are |
| 2443 | * submitted - multiwrite_cb() would consider the multiwrite request |
| 2444 | * completed. A dummy request that is "completed" by a manual call to |
| 2445 | * multiwrite_cb() takes care of this. |
| 2446 | */ |
| 2447 | mcb->num_requests = 1; |
| 2448 | |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 2449 | // Run the aio requests |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2450 | for (i = 0; i < num_reqs; i++) { |
Kevin Wolf | 453f9a1 | 2010-07-02 14:01:21 +0200 | [diff] [blame] | 2451 | mcb->num_requests++; |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2452 | acb = bdrv_aio_writev(bs, reqs[i].sector, reqs[i].qiov, |
| 2453 | reqs[i].nb_sectors, multiwrite_cb, mcb); |
| 2454 | |
| 2455 | if (acb == NULL) { |
| 2456 | // We can only fail the whole thing if no request has been |
| 2457 | // submitted yet. Otherwise we'll wait for the submitted AIOs to |
| 2458 | // complete and report the error in the callback. |
Kevin Wolf | 453f9a1 | 2010-07-02 14:01:21 +0200 | [diff] [blame] | 2459 | if (i == 0) { |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 2460 | trace_bdrv_aio_multiwrite_earlyfail(mcb); |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2461 | goto fail; |
| 2462 | } else { |
Stefan Hajnoczi | 6d519a5 | 2010-05-22 18:15:08 +0100 | [diff] [blame] | 2463 | trace_bdrv_aio_multiwrite_latefail(mcb, i); |
Kevin Wolf | 7eb58a6 | 2010-04-06 18:24:07 +0200 | [diff] [blame] | 2464 | multiwrite_cb(mcb, -EIO); |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2465 | break; |
| 2466 | } |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2467 | } |
| 2468 | } |
| 2469 | |
Kevin Wolf | 453f9a1 | 2010-07-02 14:01:21 +0200 | [diff] [blame] | 2470 | /* Complete the dummy request */ |
| 2471 | multiwrite_cb(mcb, 0); |
| 2472 | |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2473 | return 0; |
| 2474 | |
| 2475 | fail: |
Kevin Wolf | 453f9a1 | 2010-07-02 14:01:21 +0200 | [diff] [blame] | 2476 | for (i = 0; i < mcb->num_callbacks; i++) { |
| 2477 | reqs[i].error = -EIO; |
| 2478 | } |
Bruce Rogers | af47459 | 2010-05-13 15:14:33 -0600 | [diff] [blame] | 2479 | qemu_free(mcb); |
Kevin Wolf | 40b4f53 | 2009-09-09 17:53:37 +0200 | [diff] [blame] | 2480 | return -1; |
| 2481 | } |
| 2482 | |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 2483 | BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs, |
| 2484 | BlockDriverCompletionFunc *cb, void *opaque) |
| 2485 | { |
| 2486 | BlockDriver *drv = bs->drv; |
| 2487 | |
Stefan Hajnoczi | a13aac0 | 2011-03-07 07:58:04 +0000 | [diff] [blame] | 2488 | trace_bdrv_aio_flush(bs, opaque); |
| 2489 | |
Alexander Graf | 016f5cf | 2010-05-26 17:51:49 +0200 | [diff] [blame] | 2490 | if (bs->open_flags & BDRV_O_NO_FLUSH) { |
| 2491 | return bdrv_aio_noop_em(bs, cb, opaque); |
| 2492 | } |
| 2493 | |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 2494 | if (!drv) |
| 2495 | return NULL; |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 2496 | return drv->bdrv_aio_flush(bs, cb, opaque); |
| 2497 | } |
| 2498 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2499 | void bdrv_aio_cancel(BlockDriverAIOCB *acb) |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2500 | { |
aliguori | 6bbff9a | 2009-03-20 18:25:59 +0000 | [diff] [blame] | 2501 | acb->pool->cancel(acb); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2502 | } |
| 2503 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2504 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2505 | /**************************************************************/ |
| 2506 | /* async block device emulation */ |
| 2507 | |
Christoph Hellwig | c16b5a2 | 2009-05-25 12:37:32 +0200 | [diff] [blame] | 2508 | typedef struct BlockDriverAIOCBSync { |
| 2509 | BlockDriverAIOCB common; |
| 2510 | QEMUBH *bh; |
| 2511 | int ret; |
| 2512 | /* vector translation state */ |
| 2513 | QEMUIOVector *qiov; |
| 2514 | uint8_t *bounce; |
| 2515 | int is_write; |
| 2516 | } BlockDriverAIOCBSync; |
| 2517 | |
| 2518 | static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb) |
| 2519 | { |
Kevin Wolf | b666d23 | 2010-05-05 11:44:39 +0200 | [diff] [blame] | 2520 | BlockDriverAIOCBSync *acb = |
| 2521 | container_of(blockacb, BlockDriverAIOCBSync, common); |
Dor Laor | 6a7ad29 | 2009-06-01 12:07:23 +0300 | [diff] [blame] | 2522 | qemu_bh_delete(acb->bh); |
Avi Kivity | 36afc45 | 2009-06-23 16:20:36 +0300 | [diff] [blame] | 2523 | acb->bh = NULL; |
Christoph Hellwig | c16b5a2 | 2009-05-25 12:37:32 +0200 | [diff] [blame] | 2524 | qemu_aio_release(acb); |
| 2525 | } |
| 2526 | |
| 2527 | static AIOPool bdrv_em_aio_pool = { |
| 2528 | .aiocb_size = sizeof(BlockDriverAIOCBSync), |
| 2529 | .cancel = bdrv_aio_cancel_em, |
| 2530 | }; |
| 2531 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2532 | static void bdrv_aio_bh_cb(void *opaque) |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 2533 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2534 | BlockDriverAIOCBSync *acb = opaque; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2535 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2536 | if (!acb->is_write) |
| 2537 | qemu_iovec_from_buffer(acb->qiov, acb->bounce, acb->qiov->size); |
aliguori | ceb42de | 2009-04-07 18:43:28 +0000 | [diff] [blame] | 2538 | qemu_vfree(acb->bounce); |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2539 | acb->common.cb(acb->common.opaque, acb->ret); |
Dor Laor | 6a7ad29 | 2009-06-01 12:07:23 +0300 | [diff] [blame] | 2540 | qemu_bh_delete(acb->bh); |
Avi Kivity | 36afc45 | 2009-06-23 16:20:36 +0300 | [diff] [blame] | 2541 | acb->bh = NULL; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2542 | qemu_aio_release(acb); |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 2543 | } |
bellard | beac80c | 2006-06-26 20:08:57 +0000 | [diff] [blame] | 2544 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2545 | static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs, |
| 2546 | int64_t sector_num, |
| 2547 | QEMUIOVector *qiov, |
| 2548 | int nb_sectors, |
| 2549 | BlockDriverCompletionFunc *cb, |
| 2550 | void *opaque, |
| 2551 | int is_write) |
| 2552 | |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2553 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2554 | BlockDriverAIOCBSync *acb; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2555 | |
Christoph Hellwig | c16b5a2 | 2009-05-25 12:37:32 +0200 | [diff] [blame] | 2556 | acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque); |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2557 | acb->is_write = is_write; |
| 2558 | acb->qiov = qiov; |
aliguori | e268ca5 | 2009-04-22 20:20:00 +0000 | [diff] [blame] | 2559 | acb->bounce = qemu_blockalign(bs, qiov->size); |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2560 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2561 | if (!acb->bh) |
| 2562 | acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2563 | |
| 2564 | if (is_write) { |
| 2565 | qemu_iovec_to_buffer(acb->qiov, acb->bounce); |
| 2566 | acb->ret = bdrv_write(bs, sector_num, acb->bounce, nb_sectors); |
| 2567 | } else { |
| 2568 | acb->ret = bdrv_read(bs, sector_num, acb->bounce, nb_sectors); |
| 2569 | } |
| 2570 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2571 | qemu_bh_schedule(acb->bh); |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2572 | |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2573 | return &acb->common; |
pbrook | 7a6cba6 | 2006-06-04 11:39:07 +0000 | [diff] [blame] | 2574 | } |
| 2575 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2576 | static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs, |
| 2577 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2578 | BlockDriverCompletionFunc *cb, void *opaque) |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2579 | { |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2580 | return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2581 | } |
| 2582 | |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2583 | static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs, |
| 2584 | int64_t sector_num, QEMUIOVector *qiov, int nb_sectors, |
| 2585 | BlockDriverCompletionFunc *cb, void *opaque) |
| 2586 | { |
| 2587 | return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1); |
| 2588 | } |
| 2589 | |
Christoph Hellwig | b2e12bc | 2009-09-04 19:01:49 +0200 | [diff] [blame] | 2590 | static BlockDriverAIOCB *bdrv_aio_flush_em(BlockDriverState *bs, |
| 2591 | BlockDriverCompletionFunc *cb, void *opaque) |
| 2592 | { |
| 2593 | BlockDriverAIOCBSync *acb; |
| 2594 | |
| 2595 | acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque); |
| 2596 | acb->is_write = 1; /* don't bounce in the completion hadler */ |
| 2597 | acb->qiov = NULL; |
| 2598 | acb->bounce = NULL; |
| 2599 | acb->ret = 0; |
| 2600 | |
| 2601 | if (!acb->bh) |
| 2602 | acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); |
| 2603 | |
| 2604 | bdrv_flush(bs); |
| 2605 | qemu_bh_schedule(acb->bh); |
| 2606 | return &acb->common; |
| 2607 | } |
| 2608 | |
Alexander Graf | 016f5cf | 2010-05-26 17:51:49 +0200 | [diff] [blame] | 2609 | static BlockDriverAIOCB *bdrv_aio_noop_em(BlockDriverState *bs, |
| 2610 | BlockDriverCompletionFunc *cb, void *opaque) |
| 2611 | { |
| 2612 | BlockDriverAIOCBSync *acb; |
| 2613 | |
| 2614 | acb = qemu_aio_get(&bdrv_em_aio_pool, bs, cb, opaque); |
| 2615 | acb->is_write = 1; /* don't bounce in the completion handler */ |
| 2616 | acb->qiov = NULL; |
| 2617 | acb->bounce = NULL; |
| 2618 | acb->ret = 0; |
| 2619 | |
| 2620 | if (!acb->bh) { |
| 2621 | acb->bh = qemu_bh_new(bdrv_aio_bh_cb, acb); |
| 2622 | } |
| 2623 | |
| 2624 | qemu_bh_schedule(acb->bh); |
| 2625 | return &acb->common; |
| 2626 | } |
| 2627 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2628 | /**************************************************************/ |
| 2629 | /* sync block device emulation */ |
| 2630 | |
| 2631 | static void bdrv_rw_em_cb(void *opaque, int ret) |
| 2632 | { |
| 2633 | *(int *)opaque = ret; |
| 2634 | } |
| 2635 | |
| 2636 | #define NOT_DONE 0x7fffffff |
| 2637 | |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2638 | static int bdrv_read_em(BlockDriverState *bs, int64_t sector_num, |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2639 | uint8_t *buf, int nb_sectors) |
| 2640 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2641 | int async_ret; |
| 2642 | BlockDriverAIOCB *acb; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2643 | struct iovec iov; |
| 2644 | QEMUIOVector qiov; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2645 | |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2646 | async_context_push(); |
| 2647 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2648 | async_ret = NOT_DONE; |
blueswir1 | 3f4cb3d | 2009-04-13 16:31:01 +0000 | [diff] [blame] | 2649 | iov.iov_base = (void *)buf; |
Jes Sorensen | eb5a316 | 2010-05-27 16:20:31 +0200 | [diff] [blame] | 2650 | iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2651 | qemu_iovec_init_external(&qiov, &iov, 1); |
| 2652 | acb = bdrv_aio_readv(bs, sector_num, &qiov, nb_sectors, |
| 2653 | bdrv_rw_em_cb, &async_ret); |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2654 | if (acb == NULL) { |
| 2655 | async_ret = -1; |
| 2656 | goto fail; |
| 2657 | } |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 2658 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2659 | while (async_ret == NOT_DONE) { |
| 2660 | qemu_aio_wait(); |
| 2661 | } |
aliguori | baf35cb | 2008-09-10 15:45:19 +0000 | [diff] [blame] | 2662 | |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2663 | |
| 2664 | fail: |
| 2665 | async_context_pop(); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2666 | return async_ret; |
| 2667 | } |
| 2668 | |
| 2669 | static int bdrv_write_em(BlockDriverState *bs, int64_t sector_num, |
| 2670 | const uint8_t *buf, int nb_sectors) |
| 2671 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2672 | int async_ret; |
| 2673 | BlockDriverAIOCB *acb; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2674 | struct iovec iov; |
| 2675 | QEMUIOVector qiov; |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2676 | |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2677 | async_context_push(); |
| 2678 | |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2679 | async_ret = NOT_DONE; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2680 | iov.iov_base = (void *)buf; |
Jes Sorensen | eb5a316 | 2010-05-27 16:20:31 +0200 | [diff] [blame] | 2681 | iov.iov_len = nb_sectors * BDRV_SECTOR_SIZE; |
aliguori | f141eaf | 2009-04-07 18:43:24 +0000 | [diff] [blame] | 2682 | qemu_iovec_init_external(&qiov, &iov, 1); |
| 2683 | acb = bdrv_aio_writev(bs, sector_num, &qiov, nb_sectors, |
| 2684 | bdrv_rw_em_cb, &async_ret); |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2685 | if (acb == NULL) { |
| 2686 | async_ret = -1; |
| 2687 | goto fail; |
| 2688 | } |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2689 | while (async_ret == NOT_DONE) { |
| 2690 | qemu_aio_wait(); |
| 2691 | } |
Kevin Wolf | 65d6b3d | 2009-10-22 17:54:39 +0200 | [diff] [blame] | 2692 | |
| 2693 | fail: |
| 2694 | async_context_pop(); |
bellard | 83f6409 | 2006-08-01 16:21:11 +0000 | [diff] [blame] | 2695 | return async_ret; |
| 2696 | } |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2697 | |
| 2698 | void bdrv_init(void) |
| 2699 | { |
Anthony Liguori | 5efa9d5 | 2009-05-09 17:03:42 -0500 | [diff] [blame] | 2700 | module_call_init(MODULE_INIT_BLOCK); |
bellard | ea2384d | 2004-08-01 21:59:26 +0000 | [diff] [blame] | 2701 | } |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2702 | |
Markus Armbruster | eb85201 | 2009-10-27 18:41:44 +0100 | [diff] [blame] | 2703 | void bdrv_init_with_whitelist(void) |
| 2704 | { |
| 2705 | use_bdrv_whitelist = 1; |
| 2706 | bdrv_init(); |
| 2707 | } |
| 2708 | |
Christoph Hellwig | c16b5a2 | 2009-05-25 12:37:32 +0200 | [diff] [blame] | 2709 | void *qemu_aio_get(AIOPool *pool, BlockDriverState *bs, |
| 2710 | BlockDriverCompletionFunc *cb, void *opaque) |
aliguori | 6bbff9a | 2009-03-20 18:25:59 +0000 | [diff] [blame] | 2711 | { |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2712 | BlockDriverAIOCB *acb; |
| 2713 | |
aliguori | 6bbff9a | 2009-03-20 18:25:59 +0000 | [diff] [blame] | 2714 | if (pool->free_aiocb) { |
| 2715 | acb = pool->free_aiocb; |
| 2716 | pool->free_aiocb = acb->next; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2717 | } else { |
aliguori | 6bbff9a | 2009-03-20 18:25:59 +0000 | [diff] [blame] | 2718 | acb = qemu_mallocz(pool->aiocb_size); |
| 2719 | acb->pool = pool; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2720 | } |
| 2721 | acb->bs = bs; |
| 2722 | acb->cb = cb; |
| 2723 | acb->opaque = opaque; |
| 2724 | return acb; |
| 2725 | } |
| 2726 | |
| 2727 | void qemu_aio_release(void *p) |
| 2728 | { |
aliguori | 6bbff9a | 2009-03-20 18:25:59 +0000 | [diff] [blame] | 2729 | BlockDriverAIOCB *acb = (BlockDriverAIOCB *)p; |
| 2730 | AIOPool *pool = acb->pool; |
| 2731 | acb->next = pool->free_aiocb; |
| 2732 | pool->free_aiocb = acb; |
pbrook | ce1a14d | 2006-08-07 02:38:06 +0000 | [diff] [blame] | 2733 | } |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2734 | |
| 2735 | /**************************************************************/ |
| 2736 | /* removable device support */ |
| 2737 | |
| 2738 | /** |
| 2739 | * Return TRUE if the media is present |
| 2740 | */ |
| 2741 | int bdrv_is_inserted(BlockDriverState *bs) |
| 2742 | { |
| 2743 | BlockDriver *drv = bs->drv; |
| 2744 | int ret; |
| 2745 | if (!drv) |
| 2746 | return 0; |
| 2747 | if (!drv->bdrv_is_inserted) |
Markus Armbruster | 4be9762 | 2010-07-27 14:02:01 +0200 | [diff] [blame] | 2748 | return !bs->tray_open; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2749 | ret = drv->bdrv_is_inserted(bs); |
| 2750 | return ret; |
| 2751 | } |
| 2752 | |
| 2753 | /** |
| 2754 | * Return TRUE if the media changed since the last call to this |
ths | 5fafdf2 | 2007-09-16 21:08:06 +0000 | [diff] [blame] | 2755 | * function. It is currently only used for floppy disks |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2756 | */ |
| 2757 | int bdrv_media_changed(BlockDriverState *bs) |
| 2758 | { |
| 2759 | BlockDriver *drv = bs->drv; |
| 2760 | int ret; |
| 2761 | |
| 2762 | if (!drv || !drv->bdrv_media_changed) |
| 2763 | ret = -ENOTSUP; |
| 2764 | else |
| 2765 | ret = drv->bdrv_media_changed(bs); |
| 2766 | if (ret == -ENOTSUP) |
| 2767 | ret = bs->media_changed; |
| 2768 | bs->media_changed = 0; |
| 2769 | return ret; |
| 2770 | } |
| 2771 | |
| 2772 | /** |
| 2773 | * If eject_flag is TRUE, eject the media. Otherwise, close the tray |
| 2774 | */ |
Mark McLoughlin | aea2a33 | 2009-05-27 10:06:11 +0100 | [diff] [blame] | 2775 | int bdrv_eject(BlockDriverState *bs, int eject_flag) |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2776 | { |
| 2777 | BlockDriver *drv = bs->drv; |
| 2778 | int ret; |
| 2779 | |
Mark McLoughlin | aea2a33 | 2009-05-27 10:06:11 +0100 | [diff] [blame] | 2780 | if (bs->locked) { |
| 2781 | return -EBUSY; |
| 2782 | } |
| 2783 | |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2784 | if (!drv || !drv->bdrv_eject) { |
| 2785 | ret = -ENOTSUP; |
| 2786 | } else { |
| 2787 | ret = drv->bdrv_eject(bs, eject_flag); |
| 2788 | } |
| 2789 | if (ret == -ENOTSUP) { |
Mark McLoughlin | aea2a33 | 2009-05-27 10:06:11 +0100 | [diff] [blame] | 2790 | ret = 0; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2791 | } |
Markus Armbruster | 4be9762 | 2010-07-27 14:02:01 +0200 | [diff] [blame] | 2792 | if (ret >= 0) { |
| 2793 | bs->tray_open = eject_flag; |
| 2794 | } |
Mark McLoughlin | aea2a33 | 2009-05-27 10:06:11 +0100 | [diff] [blame] | 2795 | |
| 2796 | return ret; |
bellard | 19cb373 | 2006-08-19 11:45:59 +0000 | [diff] [blame] | 2797 | } |
| 2798 | |
| 2799 | int bdrv_is_locked(BlockDriverState *bs) |
| 2800 | { |
| 2801 | return bs->locked; |
| 2802 | } |
| 2803 | |
| 2804 | /** |
| 2805 | * Lock or unlock the media (if it is locked, the user won't be able |
| 2806 | * to eject it manually). |
| 2807 | */ |
| 2808 | void bdrv_set_locked(BlockDriverState *bs, int locked) |
| 2809 | { |
| 2810 | BlockDriver *drv = bs->drv; |
| 2811 | |
| 2812 | bs->locked = locked; |
| 2813 | if (drv && drv->bdrv_set_locked) { |
| 2814 | drv->bdrv_set_locked(bs, locked); |
| 2815 | } |
| 2816 | } |
ths | 985a03b | 2007-12-24 16:10:43 +0000 | [diff] [blame] | 2817 | |
| 2818 | /* needed for generic scsi interface */ |
| 2819 | |
| 2820 | int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf) |
| 2821 | { |
| 2822 | BlockDriver *drv = bs->drv; |
| 2823 | |
| 2824 | if (drv && drv->bdrv_ioctl) |
| 2825 | return drv->bdrv_ioctl(bs, req, buf); |
| 2826 | return -ENOTSUP; |
| 2827 | } |
aliguori | 7d78066 | 2009-03-12 19:57:08 +0000 | [diff] [blame] | 2828 | |
aliguori | 221f715 | 2009-03-28 17:28:41 +0000 | [diff] [blame] | 2829 | BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs, |
| 2830 | unsigned long int req, void *buf, |
| 2831 | BlockDriverCompletionFunc *cb, void *opaque) |
aliguori | 7d78066 | 2009-03-12 19:57:08 +0000 | [diff] [blame] | 2832 | { |
aliguori | 221f715 | 2009-03-28 17:28:41 +0000 | [diff] [blame] | 2833 | BlockDriver *drv = bs->drv; |
aliguori | 7d78066 | 2009-03-12 19:57:08 +0000 | [diff] [blame] | 2834 | |
aliguori | 221f715 | 2009-03-28 17:28:41 +0000 | [diff] [blame] | 2835 | if (drv && drv->bdrv_aio_ioctl) |
| 2836 | return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque); |
| 2837 | return NULL; |
aliguori | 7d78066 | 2009-03-12 19:57:08 +0000 | [diff] [blame] | 2838 | } |
aliguori | e268ca5 | 2009-04-22 20:20:00 +0000 | [diff] [blame] | 2839 | |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2840 | |
| 2841 | |
aliguori | e268ca5 | 2009-04-22 20:20:00 +0000 | [diff] [blame] | 2842 | void *qemu_blockalign(BlockDriverState *bs, size_t size) |
| 2843 | { |
| 2844 | return qemu_memalign((bs && bs->buffer_alignment) ? bs->buffer_alignment : 512, size); |
| 2845 | } |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2846 | |
| 2847 | void bdrv_set_dirty_tracking(BlockDriverState *bs, int enable) |
| 2848 | { |
| 2849 | int64_t bitmap_size; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2850 | |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 2851 | bs->dirty_count = 0; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2852 | if (enable) { |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 2853 | if (!bs->dirty_bitmap) { |
| 2854 | bitmap_size = (bdrv_getlength(bs) >> BDRV_SECTOR_BITS) + |
| 2855 | BDRV_SECTORS_PER_DIRTY_CHUNK * 8 - 1; |
| 2856 | bitmap_size /= BDRV_SECTORS_PER_DIRTY_CHUNK * 8; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2857 | |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2858 | bs->dirty_bitmap = qemu_mallocz(bitmap_size); |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2859 | } |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2860 | } else { |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 2861 | if (bs->dirty_bitmap) { |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2862 | qemu_free(bs->dirty_bitmap); |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 2863 | bs->dirty_bitmap = NULL; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2864 | } |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2865 | } |
| 2866 | } |
| 2867 | |
| 2868 | int bdrv_get_dirty(BlockDriverState *bs, int64_t sector) |
| 2869 | { |
Jan Kiszka | 6ea4430 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2870 | int64_t chunk = sector / (int64_t)BDRV_SECTORS_PER_DIRTY_CHUNK; |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2871 | |
Jan Kiszka | c6d2283 | 2009-11-30 18:21:20 +0100 | [diff] [blame] | 2872 | if (bs->dirty_bitmap && |
| 2873 | (sector << BDRV_SECTOR_BITS) < bdrv_getlength(bs)) { |
Marcelo Tosatti | 6d59fec | 2010-11-08 17:02:54 -0200 | [diff] [blame] | 2874 | return !!(bs->dirty_bitmap[chunk / (sizeof(unsigned long) * 8)] & |
| 2875 | (1UL << (chunk % (sizeof(unsigned long) * 8)))); |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2876 | } else { |
| 2877 | return 0; |
| 2878 | } |
| 2879 | } |
| 2880 | |
Jan Kiszka | a55eb92 | 2009-11-30 18:21:19 +0100 | [diff] [blame] | 2881 | void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, |
| 2882 | int nr_sectors) |
lirans@il.ibm.com | 7cd1e32 | 2009-11-02 15:40:41 +0200 | [diff] [blame] | 2883 | { |
| 2884 | set_dirty_bitmap(bs, cur_sector, nr_sectors, 0); |
| 2885 | } |
Liran Schour | aaa0eb7 | 2010-01-26 10:31:48 +0200 | [diff] [blame] | 2886 | |
| 2887 | int64_t bdrv_get_dirty_count(BlockDriverState *bs) |
| 2888 | { |
| 2889 | return bs->dirty_count; |
| 2890 | } |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2891 | |
Marcelo Tosatti | db593f2 | 2011-01-26 12:12:34 -0200 | [diff] [blame] | 2892 | void bdrv_set_in_use(BlockDriverState *bs, int in_use) |
| 2893 | { |
| 2894 | assert(bs->in_use != in_use); |
| 2895 | bs->in_use = in_use; |
| 2896 | } |
| 2897 | |
| 2898 | int bdrv_in_use(BlockDriverState *bs) |
| 2899 | { |
| 2900 | return bs->in_use; |
| 2901 | } |
| 2902 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2903 | int bdrv_img_create(const char *filename, const char *fmt, |
| 2904 | const char *base_filename, const char *base_fmt, |
| 2905 | char *options, uint64_t img_size, int flags) |
| 2906 | { |
| 2907 | QEMUOptionParameter *param = NULL, *create_options = NULL; |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 2908 | QEMUOptionParameter *backing_fmt, *backing_file; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2909 | BlockDriverState *bs = NULL; |
| 2910 | BlockDriver *drv, *proto_drv; |
Stefan Hajnoczi | 96df67d | 2011-01-24 09:32:20 +0000 | [diff] [blame] | 2911 | BlockDriver *backing_drv = NULL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2912 | int ret = 0; |
| 2913 | |
| 2914 | /* Find driver and parse its options */ |
| 2915 | drv = bdrv_find_format(fmt); |
| 2916 | if (!drv) { |
| 2917 | error_report("Unknown file format '%s'", fmt); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2918 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2919 | goto out; |
| 2920 | } |
| 2921 | |
| 2922 | proto_drv = bdrv_find_protocol(filename); |
| 2923 | if (!proto_drv) { |
| 2924 | error_report("Unknown protocol '%s'", filename); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2925 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2926 | goto out; |
| 2927 | } |
| 2928 | |
| 2929 | create_options = append_option_parameters(create_options, |
| 2930 | drv->create_options); |
| 2931 | create_options = append_option_parameters(create_options, |
| 2932 | proto_drv->create_options); |
| 2933 | |
| 2934 | /* Create parameter list with default values */ |
| 2935 | param = parse_option_parameters("", create_options, param); |
| 2936 | |
| 2937 | set_option_parameter_int(param, BLOCK_OPT_SIZE, img_size); |
| 2938 | |
| 2939 | /* Parse -o options */ |
| 2940 | if (options) { |
| 2941 | param = parse_option_parameters(options, create_options, param); |
| 2942 | if (param == NULL) { |
| 2943 | error_report("Invalid options for file format '%s'.", fmt); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2944 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2945 | goto out; |
| 2946 | } |
| 2947 | } |
| 2948 | |
| 2949 | if (base_filename) { |
| 2950 | if (set_option_parameter(param, BLOCK_OPT_BACKING_FILE, |
| 2951 | base_filename)) { |
| 2952 | error_report("Backing file not supported for file format '%s'", |
| 2953 | fmt); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2954 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2955 | goto out; |
| 2956 | } |
| 2957 | } |
| 2958 | |
| 2959 | if (base_fmt) { |
| 2960 | if (set_option_parameter(param, BLOCK_OPT_BACKING_FMT, base_fmt)) { |
| 2961 | error_report("Backing file format not supported for file " |
| 2962 | "format '%s'", fmt); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2963 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2964 | goto out; |
| 2965 | } |
| 2966 | } |
| 2967 | |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 2968 | backing_file = get_option_parameter(param, BLOCK_OPT_BACKING_FILE); |
| 2969 | if (backing_file && backing_file->value.s) { |
| 2970 | if (!strcmp(filename, backing_file->value.s)) { |
| 2971 | error_report("Error: Trying to create an image with the " |
| 2972 | "same filename as the backing file"); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2973 | ret = -EINVAL; |
Jes Sorensen | 792da93 | 2010-12-16 13:52:17 +0100 | [diff] [blame] | 2974 | goto out; |
| 2975 | } |
| 2976 | } |
| 2977 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2978 | backing_fmt = get_option_parameter(param, BLOCK_OPT_BACKING_FMT); |
| 2979 | if (backing_fmt && backing_fmt->value.s) { |
Stefan Hajnoczi | 96df67d | 2011-01-24 09:32:20 +0000 | [diff] [blame] | 2980 | backing_drv = bdrv_find_format(backing_fmt->value.s); |
| 2981 | if (!backing_drv) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2982 | error_report("Unknown backing file format '%s'", |
| 2983 | backing_fmt->value.s); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 2984 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2985 | goto out; |
| 2986 | } |
| 2987 | } |
| 2988 | |
| 2989 | // The size for the image must always be specified, with one exception: |
| 2990 | // If we are using a backing file, we can obtain the size from there |
| 2991 | if (get_option_parameter(param, BLOCK_OPT_SIZE)->value.n == -1) { |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2992 | if (backing_file && backing_file->value.s) { |
| 2993 | uint64_t size; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2994 | char buf[32]; |
| 2995 | |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2996 | bs = bdrv_new(""); |
| 2997 | |
Stefan Hajnoczi | 96df67d | 2011-01-24 09:32:20 +0000 | [diff] [blame] | 2998 | ret = bdrv_open(bs, backing_file->value.s, flags, backing_drv); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 2999 | if (ret < 0) { |
Stefan Hajnoczi | 96df67d | 2011-01-24 09:32:20 +0000 | [diff] [blame] | 3000 | error_report("Could not open '%s'", backing_file->value.s); |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 3001 | goto out; |
| 3002 | } |
| 3003 | bdrv_get_geometry(bs, &size); |
| 3004 | size *= 512; |
| 3005 | |
| 3006 | snprintf(buf, sizeof(buf), "%" PRId64, size); |
| 3007 | set_option_parameter(param, BLOCK_OPT_SIZE, buf); |
| 3008 | } else { |
| 3009 | error_report("Image creation needs a size parameter"); |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 3010 | ret = -EINVAL; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 3011 | goto out; |
| 3012 | } |
| 3013 | } |
| 3014 | |
| 3015 | printf("Formatting '%s', fmt=%s ", filename, fmt); |
| 3016 | print_option_parameters(param); |
| 3017 | puts(""); |
| 3018 | |
| 3019 | ret = bdrv_create(drv, filename, param); |
| 3020 | |
| 3021 | if (ret < 0) { |
| 3022 | if (ret == -ENOTSUP) { |
| 3023 | error_report("Formatting or formatting option not supported for " |
| 3024 | "file format '%s'", fmt); |
| 3025 | } else if (ret == -EFBIG) { |
| 3026 | error_report("The image size is too large for file format '%s'", |
| 3027 | fmt); |
| 3028 | } else { |
| 3029 | error_report("%s: error while creating %s: %s", filename, fmt, |
| 3030 | strerror(-ret)); |
| 3031 | } |
| 3032 | } |
| 3033 | |
| 3034 | out: |
| 3035 | free_option_parameters(create_options); |
| 3036 | free_option_parameters(param); |
| 3037 | |
| 3038 | if (bs) { |
| 3039 | bdrv_delete(bs); |
| 3040 | } |
Jes Sorensen | 4f70f24 | 2010-12-16 13:52:18 +0100 | [diff] [blame] | 3041 | |
| 3042 | return ret; |
Jes Sorensen | f88e1a4 | 2010-12-16 13:52:15 +0100 | [diff] [blame] | 3043 | } |