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