]> git.proxmox.com Git - mirror_qemu.git/blame - block.c
linux-user: support strace of epoll_create1
[mirror_qemu.git] / block.c
CommitLineData
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"
737e150e
PB
27#include "block/block_int.h"
28#include "block/blockjob.h"
1de7afc9 29#include "qemu/module.h"
7b1b5d19 30#include "qapi/qmp/qjson.h"
9c17d615 31#include "sysemu/sysemu.h"
1de7afc9 32#include "qemu/notify.h"
737e150e 33#include "block/coroutine.h"
c13163fb 34#include "block/qapi.h"
b2023818 35#include "qmp-commands.h"
1de7afc9 36#include "qemu/timer.h"
a5ee7bd4 37#include "qapi-event.h"
fc01f7e7 38
71e72a19 39#ifdef CONFIG_BSD
7674e7bf
FB
40#include <sys/types.h>
41#include <sys/stat.h>
42#include <sys/ioctl.h>
72cf2d4f 43#include <sys/queue.h>
c5e97233 44#ifndef __DragonFly__
7674e7bf
FB
45#include <sys/disk.h>
46#endif
c5e97233 47#endif
7674e7bf 48
49dc768d
AL
49#ifdef _WIN32
50#include <windows.h>
51#endif
52
e4654d2d
FZ
53struct BdrvDirtyBitmap {
54 HBitmap *bitmap;
55 QLIST_ENTRY(BdrvDirtyBitmap) list;
56};
57
1c9805a3
SH
58#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
59
7d4b4ba5 60static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
f141eafe
AL
61static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
62 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
c87c0672 63 BlockDriverCompletionFunc *cb, void *opaque);
f141eafe
AL
64static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
65 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 66 BlockDriverCompletionFunc *cb, void *opaque);
f9f05dc5
KW
67static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
68 int64_t sector_num, int nb_sectors,
69 QEMUIOVector *iov);
70static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
71 int64_t sector_num, int nb_sectors,
72 QEMUIOVector *iov);
775aa8b6
KW
73static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
74 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
470c0504 75 BdrvRequestFlags flags);
775aa8b6
KW
76static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
77 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
f08f2dda 78 BdrvRequestFlags flags);
b2a61371
SH
79static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
80 int64_t sector_num,
81 QEMUIOVector *qiov,
82 int nb_sectors,
d20d9b7c 83 BdrvRequestFlags flags,
b2a61371
SH
84 BlockDriverCompletionFunc *cb,
85 void *opaque,
8c5873d6 86 bool is_write);
b2a61371 87static void coroutine_fn bdrv_co_do_rw(void *opaque);
621f0589 88static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
aa7bfbff 89 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags);
ec530c81 90
1b7bdbc1
SH
91static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
92 QTAILQ_HEAD_INITIALIZER(bdrv_states);
7ee930d0 93
dc364f4c
BC
94static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
95 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
96
8a22f02a
SH
97static QLIST_HEAD(, BlockDriver) bdrv_drivers =
98 QLIST_HEAD_INITIALIZER(bdrv_drivers);
ea2384d3 99
eb852011
MA
100/* If non-zero, use only whitelisted block drivers */
101static int use_bdrv_whitelist;
102
9e0b22f4
SH
103#ifdef _WIN32
104static int is_windows_drive_prefix(const char *filename)
105{
106 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
107 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
108 filename[1] == ':');
109}
110
111int is_windows_drive(const char *filename)
112{
113 if (is_windows_drive_prefix(filename) &&
114 filename[2] == '\0')
115 return 1;
116 if (strstart(filename, "\\\\.\\", NULL) ||
117 strstart(filename, "//./", NULL))
118 return 1;
119 return 0;
120}
121#endif
122
0563e191 123/* throttling disk I/O limits */
cc0681c4
BC
124void bdrv_set_io_limits(BlockDriverState *bs,
125 ThrottleConfig *cfg)
98f90dba 126{
cc0681c4 127 int i;
98f90dba 128
cc0681c4 129 throttle_config(&bs->throttle_state, cfg);
98f90dba 130
cc0681c4
BC
131 for (i = 0; i < 2; i++) {
132 qemu_co_enter_next(&bs->throttled_reqs[i]);
98f90dba 133 }
cc0681c4
BC
134}
135
136/* this function drain all the throttled IOs */
137static bool bdrv_start_throttled_reqs(BlockDriverState *bs)
138{
139 bool drained = false;
140 bool enabled = bs->io_limits_enabled;
141 int i;
142
143 bs->io_limits_enabled = false;
144
145 for (i = 0; i < 2; i++) {
146 while (qemu_co_enter_next(&bs->throttled_reqs[i])) {
147 drained = true;
148 }
149 }
150
151 bs->io_limits_enabled = enabled;
98f90dba 152
cc0681c4 153 return drained;
98f90dba
ZYW
154}
155
cc0681c4 156void bdrv_io_limits_disable(BlockDriverState *bs)
0563e191 157{
cc0681c4 158 bs->io_limits_enabled = false;
0563e191 159
cc0681c4
BC
160 bdrv_start_throttled_reqs(bs);
161
162 throttle_destroy(&bs->throttle_state);
0563e191
ZYW
163}
164
cc0681c4 165static void bdrv_throttle_read_timer_cb(void *opaque)
0563e191 166{
cc0681c4
BC
167 BlockDriverState *bs = opaque;
168 qemu_co_enter_next(&bs->throttled_reqs[0]);
0563e191
ZYW
169}
170
cc0681c4 171static void bdrv_throttle_write_timer_cb(void *opaque)
0563e191 172{
cc0681c4
BC
173 BlockDriverState *bs = opaque;
174 qemu_co_enter_next(&bs->throttled_reqs[1]);
0563e191
ZYW
175}
176
cc0681c4
BC
177/* should be called before bdrv_set_io_limits if a limit is set */
178void bdrv_io_limits_enable(BlockDriverState *bs)
179{
180 assert(!bs->io_limits_enabled);
181 throttle_init(&bs->throttle_state,
13af91eb 182 bdrv_get_aio_context(bs),
cc0681c4
BC
183 QEMU_CLOCK_VIRTUAL,
184 bdrv_throttle_read_timer_cb,
185 bdrv_throttle_write_timer_cb,
186 bs);
187 bs->io_limits_enabled = true;
188}
189
190/* This function makes an IO wait if needed
191 *
192 * @nb_sectors: the number of sectors of the IO
193 * @is_write: is the IO a write
194 */
98f90dba 195static void bdrv_io_limits_intercept(BlockDriverState *bs,
d5103588 196 unsigned int bytes,
cc0681c4 197 bool is_write)
98f90dba 198{
cc0681c4
BC
199 /* does this io must wait */
200 bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write);
98f90dba 201
cc0681c4
BC
202 /* if must wait or any request of this type throttled queue the IO */
203 if (must_wait ||
204 !qemu_co_queue_empty(&bs->throttled_reqs[is_write])) {
205 qemu_co_queue_wait(&bs->throttled_reqs[is_write]);
98f90dba
ZYW
206 }
207
cc0681c4 208 /* the IO will be executed, do the accounting */
d5103588
KW
209 throttle_account(&bs->throttle_state, is_write, bytes);
210
98f90dba 211
cc0681c4
BC
212 /* if the next request must wait -> do nothing */
213 if (throttle_schedule_timer(&bs->throttle_state, is_write)) {
214 return;
98f90dba
ZYW
215 }
216
cc0681c4
BC
217 /* else queue next request for execution */
218 qemu_co_queue_next(&bs->throttled_reqs[is_write]);
98f90dba
ZYW
219}
220
339064d5
KW
221size_t bdrv_opt_mem_align(BlockDriverState *bs)
222{
223 if (!bs || !bs->drv) {
224 /* 4k should be on the safe side */
225 return 4096;
226 }
227
228 return bs->bl.opt_mem_alignment;
229}
230
9e0b22f4
SH
231/* check if the path starts with "<protocol>:" */
232static int path_has_protocol(const char *path)
233{
947995c0
PB
234 const char *p;
235
9e0b22f4
SH
236#ifdef _WIN32
237 if (is_windows_drive(path) ||
238 is_windows_drive_prefix(path)) {
239 return 0;
240 }
947995c0
PB
241 p = path + strcspn(path, ":/\\");
242#else
243 p = path + strcspn(path, ":/");
9e0b22f4
SH
244#endif
245
947995c0 246 return *p == ':';
9e0b22f4
SH
247}
248
83f64091 249int path_is_absolute(const char *path)
3b0d4f61 250{
21664424
FB
251#ifdef _WIN32
252 /* specific case for names like: "\\.\d:" */
f53f4da9 253 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
21664424 254 return 1;
f53f4da9
PB
255 }
256 return (*path == '/' || *path == '\\');
3b9f94e1 257#else
f53f4da9 258 return (*path == '/');
3b9f94e1 259#endif
3b0d4f61
FB
260}
261
83f64091
FB
262/* if filename is absolute, just copy it to dest. Otherwise, build a
263 path to it by considering it is relative to base_path. URL are
264 supported. */
265void path_combine(char *dest, int dest_size,
266 const char *base_path,
267 const char *filename)
3b0d4f61 268{
83f64091
FB
269 const char *p, *p1;
270 int len;
271
272 if (dest_size <= 0)
273 return;
274 if (path_is_absolute(filename)) {
275 pstrcpy(dest, dest_size, filename);
276 } else {
277 p = strchr(base_path, ':');
278 if (p)
279 p++;
280 else
281 p = base_path;
3b9f94e1
FB
282 p1 = strrchr(base_path, '/');
283#ifdef _WIN32
284 {
285 const char *p2;
286 p2 = strrchr(base_path, '\\');
287 if (!p1 || p2 > p1)
288 p1 = p2;
289 }
290#endif
83f64091
FB
291 if (p1)
292 p1++;
293 else
294 p1 = base_path;
295 if (p1 > p)
296 p = p1;
297 len = p - base_path;
298 if (len > dest_size - 1)
299 len = dest_size - 1;
300 memcpy(dest, base_path, len);
301 dest[len] = '\0';
302 pstrcat(dest, dest_size, filename);
3b0d4f61 303 }
3b0d4f61
FB
304}
305
dc5a1371
PB
306void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz)
307{
308 if (bs->backing_file[0] == '\0' || path_has_protocol(bs->backing_file)) {
309 pstrcpy(dest, sz, bs->backing_file);
310 } else {
311 path_combine(dest, sz, bs->filename, bs->backing_file);
312 }
313}
314
5efa9d5a 315void bdrv_register(BlockDriver *bdrv)
ea2384d3 316{
8c5873d6
SH
317 /* Block drivers without coroutine functions need emulation */
318 if (!bdrv->bdrv_co_readv) {
f9f05dc5
KW
319 bdrv->bdrv_co_readv = bdrv_co_readv_em;
320 bdrv->bdrv_co_writev = bdrv_co_writev_em;
321
f8c35c1d
SH
322 /* bdrv_co_readv_em()/brdv_co_writev_em() work in terms of aio, so if
323 * the block driver lacks aio we need to emulate that too.
324 */
f9f05dc5
KW
325 if (!bdrv->bdrv_aio_readv) {
326 /* add AIO emulation layer */
327 bdrv->bdrv_aio_readv = bdrv_aio_readv_em;
328 bdrv->bdrv_aio_writev = bdrv_aio_writev_em;
f9f05dc5 329 }
83f64091 330 }
b2e12bc6 331
8a22f02a 332 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
ea2384d3 333}
b338082b
FB
334
335/* create a new block device (by default it is empty) */
98522f63 336BlockDriverState *bdrv_new(const char *device_name, Error **errp)
b338082b 337{
1b7bdbc1 338 BlockDriverState *bs;
fbe40ff7 339 int i;
b338082b 340
f2d953ec
KW
341 if (bdrv_find(device_name)) {
342 error_setg(errp, "Device with id '%s' already exists",
343 device_name);
344 return NULL;
345 }
346 if (bdrv_find_node(device_name)) {
347 error_setg(errp, "Device with node-name '%s' already exists",
348 device_name);
349 return NULL;
350 }
351
7267c094 352 bs = g_malloc0(sizeof(BlockDriverState));
e4654d2d 353 QLIST_INIT(&bs->dirty_bitmaps);
b338082b 354 pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
ea2384d3 355 if (device_name[0] != '\0') {
dc364f4c 356 QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list);
ea2384d3 357 }
fbe40ff7
FZ
358 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
359 QLIST_INIT(&bs->op_blockers[i]);
360 }
28a7282a 361 bdrv_iostatus_disable(bs);
d7d512f6 362 notifier_list_init(&bs->close_notifiers);
d616b224 363 notifier_with_return_list_init(&bs->before_write_notifiers);
cc0681c4
BC
364 qemu_co_queue_init(&bs->throttled_reqs[0]);
365 qemu_co_queue_init(&bs->throttled_reqs[1]);
9fcb0251 366 bs->refcnt = 1;
dcd04228 367 bs->aio_context = qemu_get_aio_context();
d7d512f6 368
b338082b
FB
369 return bs;
370}
371
d7d512f6
PB
372void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify)
373{
374 notifier_list_add(&bs->close_notifiers, notify);
375}
376
ea2384d3
FB
377BlockDriver *bdrv_find_format(const char *format_name)
378{
379 BlockDriver *drv1;
8a22f02a
SH
380 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
381 if (!strcmp(drv1->format_name, format_name)) {
ea2384d3 382 return drv1;
8a22f02a 383 }
ea2384d3
FB
384 }
385 return NULL;
386}
387
b64ec4e4 388static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
eb852011 389{
b64ec4e4
FZ
390 static const char *whitelist_rw[] = {
391 CONFIG_BDRV_RW_WHITELIST
392 };
393 static const char *whitelist_ro[] = {
394 CONFIG_BDRV_RO_WHITELIST
eb852011
MA
395 };
396 const char **p;
397
b64ec4e4 398 if (!whitelist_rw[0] && !whitelist_ro[0]) {
eb852011 399 return 1; /* no whitelist, anything goes */
b64ec4e4 400 }
eb852011 401
b64ec4e4 402 for (p = whitelist_rw; *p; p++) {
eb852011
MA
403 if (!strcmp(drv->format_name, *p)) {
404 return 1;
405 }
406 }
b64ec4e4
FZ
407 if (read_only) {
408 for (p = whitelist_ro; *p; p++) {
409 if (!strcmp(drv->format_name, *p)) {
410 return 1;
411 }
412 }
413 }
eb852011
MA
414 return 0;
415}
416
b64ec4e4
FZ
417BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
418 bool read_only)
eb852011
MA
419{
420 BlockDriver *drv = bdrv_find_format(format_name);
b64ec4e4 421 return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL;
eb852011
MA
422}
423
5b7e1542
ZYW
424typedef struct CreateCo {
425 BlockDriver *drv;
426 char *filename;
83d0521a 427 QemuOpts *opts;
5b7e1542 428 int ret;
cc84d90f 429 Error *err;
5b7e1542
ZYW
430} CreateCo;
431
432static void coroutine_fn bdrv_create_co_entry(void *opaque)
433{
cc84d90f
HR
434 Error *local_err = NULL;
435 int ret;
436
5b7e1542
ZYW
437 CreateCo *cco = opaque;
438 assert(cco->drv);
439
c282e1fd 440 ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
84d18f06 441 if (local_err) {
cc84d90f
HR
442 error_propagate(&cco->err, local_err);
443 }
444 cco->ret = ret;
5b7e1542
ZYW
445}
446
0e7e1989 447int bdrv_create(BlockDriver *drv, const char* filename,
83d0521a 448 QemuOpts *opts, Error **errp)
ea2384d3 449{
5b7e1542
ZYW
450 int ret;
451
452 Coroutine *co;
453 CreateCo cco = {
454 .drv = drv,
455 .filename = g_strdup(filename),
83d0521a 456 .opts = opts,
5b7e1542 457 .ret = NOT_DONE,
cc84d90f 458 .err = NULL,
5b7e1542
ZYW
459 };
460
c282e1fd 461 if (!drv->bdrv_create) {
cc84d90f 462 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
80168bff
LC
463 ret = -ENOTSUP;
464 goto out;
5b7e1542
ZYW
465 }
466
467 if (qemu_in_coroutine()) {
468 /* Fast-path if already in coroutine context */
469 bdrv_create_co_entry(&cco);
470 } else {
471 co = qemu_coroutine_create(bdrv_create_co_entry);
472 qemu_coroutine_enter(co, &cco);
473 while (cco.ret == NOT_DONE) {
474 qemu_aio_wait();
475 }
476 }
477
478 ret = cco.ret;
cc84d90f 479 if (ret < 0) {
84d18f06 480 if (cco.err) {
cc84d90f
HR
481 error_propagate(errp, cco.err);
482 } else {
483 error_setg_errno(errp, -ret, "Could not create image");
484 }
485 }
0e7e1989 486
80168bff
LC
487out:
488 g_free(cco.filename);
5b7e1542 489 return ret;
ea2384d3
FB
490}
491
c282e1fd 492int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
84a12e66
CH
493{
494 BlockDriver *drv;
cc84d90f
HR
495 Error *local_err = NULL;
496 int ret;
84a12e66 497
98289620 498 drv = bdrv_find_protocol(filename, true);
84a12e66 499 if (drv == NULL) {
cc84d90f 500 error_setg(errp, "Could not find protocol for file '%s'", filename);
16905d71 501 return -ENOENT;
84a12e66
CH
502 }
503
c282e1fd 504 ret = bdrv_create(drv, filename, opts, &local_err);
84d18f06 505 if (local_err) {
cc84d90f
HR
506 error_propagate(errp, local_err);
507 }
508 return ret;
84a12e66
CH
509}
510
355ef4ac 511int bdrv_refresh_limits(BlockDriverState *bs)
d34682cd
KW
512{
513 BlockDriver *drv = bs->drv;
514
515 memset(&bs->bl, 0, sizeof(bs->bl));
516
466ad822
KW
517 if (!drv) {
518 return 0;
519 }
520
521 /* Take some limits from the children as a default */
522 if (bs->file) {
523 bdrv_refresh_limits(bs->file);
524 bs->bl.opt_transfer_length = bs->file->bl.opt_transfer_length;
339064d5
KW
525 bs->bl.opt_mem_alignment = bs->file->bl.opt_mem_alignment;
526 } else {
527 bs->bl.opt_mem_alignment = 512;
466ad822
KW
528 }
529
530 if (bs->backing_hd) {
531 bdrv_refresh_limits(bs->backing_hd);
532 bs->bl.opt_transfer_length =
533 MAX(bs->bl.opt_transfer_length,
534 bs->backing_hd->bl.opt_transfer_length);
339064d5
KW
535 bs->bl.opt_mem_alignment =
536 MAX(bs->bl.opt_mem_alignment,
537 bs->backing_hd->bl.opt_mem_alignment);
466ad822
KW
538 }
539
540 /* Then let the driver override it */
541 if (drv->bdrv_refresh_limits) {
d34682cd
KW
542 return drv->bdrv_refresh_limits(bs);
543 }
544
545 return 0;
546}
547
eba25057
JM
548/*
549 * Create a uniquely-named empty temporary file.
550 * Return 0 upon success, otherwise a negative errno value.
551 */
552int get_tmp_filename(char *filename, int size)
d5249393 553{
eba25057 554#ifdef _WIN32
3b9f94e1 555 char temp_dir[MAX_PATH];
eba25057
JM
556 /* GetTempFileName requires that its output buffer (4th param)
557 have length MAX_PATH or greater. */
558 assert(size >= MAX_PATH);
559 return (GetTempPath(MAX_PATH, temp_dir)
560 && GetTempFileName(temp_dir, "qem", 0, filename)
561 ? 0 : -GetLastError());
d5249393 562#else
67b915a5 563 int fd;
7ccfb2eb 564 const char *tmpdir;
0badc1ee 565 tmpdir = getenv("TMPDIR");
69bef793
AS
566 if (!tmpdir) {
567 tmpdir = "/var/tmp";
568 }
eba25057
JM
569 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
570 return -EOVERFLOW;
571 }
ea2384d3 572 fd = mkstemp(filename);
fe235a06
DH
573 if (fd < 0) {
574 return -errno;
575 }
576 if (close(fd) != 0) {
577 unlink(filename);
eba25057
JM
578 return -errno;
579 }
580 return 0;
d5249393 581#endif
eba25057 582}
fc01f7e7 583
84a12e66
CH
584/*
585 * Detect host devices. By convention, /dev/cdrom[N] is always
586 * recognized as a host CDROM.
587 */
588static BlockDriver *find_hdev_driver(const char *filename)
589{
590 int score_max = 0, score;
591 BlockDriver *drv = NULL, *d;
592
593 QLIST_FOREACH(d, &bdrv_drivers, list) {
594 if (d->bdrv_probe_device) {
595 score = d->bdrv_probe_device(filename);
596 if (score > score_max) {
597 score_max = score;
598 drv = d;
599 }
600 }
601 }
602
603 return drv;
604}
605
98289620
KW
606BlockDriver *bdrv_find_protocol(const char *filename,
607 bool allow_protocol_prefix)
83f64091
FB
608{
609 BlockDriver *drv1;
610 char protocol[128];
1cec71e3 611 int len;
83f64091 612 const char *p;
19cb3738 613
66f82cee
KW
614 /* TODO Drivers without bdrv_file_open must be specified explicitly */
615
39508e7a
CH
616 /*
617 * XXX(hch): we really should not let host device detection
618 * override an explicit protocol specification, but moving this
619 * later breaks access to device names with colons in them.
620 * Thanks to the brain-dead persistent naming schemes on udev-
621 * based Linux systems those actually are quite common.
622 */
623 drv1 = find_hdev_driver(filename);
624 if (drv1) {
625 return drv1;
626 }
627
98289620 628 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
39508e7a 629 return bdrv_find_format("file");
84a12e66 630 }
98289620 631
9e0b22f4
SH
632 p = strchr(filename, ':');
633 assert(p != NULL);
1cec71e3
AL
634 len = p - filename;
635 if (len > sizeof(protocol) - 1)
636 len = sizeof(protocol) - 1;
637 memcpy(protocol, filename, len);
638 protocol[len] = '\0';
8a22f02a 639 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
5fafdf24 640 if (drv1->protocol_name &&
8a22f02a 641 !strcmp(drv1->protocol_name, protocol)) {
83f64091 642 return drv1;
8a22f02a 643 }
83f64091
FB
644 }
645 return NULL;
646}
647
f500a6d3 648static int find_image_format(BlockDriverState *bs, const char *filename,
34b5d2c6 649 BlockDriver **pdrv, Error **errp)
f3a5d3f8 650{
f500a6d3 651 int score, score_max;
f3a5d3f8
CH
652 BlockDriver *drv1, *drv;
653 uint8_t buf[2048];
f500a6d3 654 int ret = 0;
f8ea0b00 655
08a00559 656 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
8e895599 657 if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
c98ac35d
SW
658 drv = bdrv_find_format("raw");
659 if (!drv) {
34b5d2c6 660 error_setg(errp, "Could not find raw image format");
c98ac35d
SW
661 ret = -ENOENT;
662 }
663 *pdrv = drv;
664 return ret;
1a396859 665 }
f8ea0b00 666
83f64091 667 ret = bdrv_pread(bs, 0, buf, sizeof(buf));
83f64091 668 if (ret < 0) {
34b5d2c6
HR
669 error_setg_errno(errp, -ret, "Could not read image for determining its "
670 "format");
c98ac35d
SW
671 *pdrv = NULL;
672 return ret;
83f64091
FB
673 }
674
ea2384d3 675 score_max = 0;
84a12e66 676 drv = NULL;
8a22f02a 677 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
83f64091
FB
678 if (drv1->bdrv_probe) {
679 score = drv1->bdrv_probe(buf, ret, filename);
680 if (score > score_max) {
681 score_max = score;
682 drv = drv1;
683 }
0849bf08 684 }
fc01f7e7 685 }
c98ac35d 686 if (!drv) {
34b5d2c6
HR
687 error_setg(errp, "Could not determine image format: No compatible "
688 "driver found");
c98ac35d
SW
689 ret = -ENOENT;
690 }
691 *pdrv = drv;
692 return ret;
ea2384d3
FB
693}
694
51762288
SH
695/**
696 * Set the current 'total_sectors' value
697 */
698static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
699{
700 BlockDriver *drv = bs->drv;
701
396759ad
NB
702 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
703 if (bs->sg)
704 return 0;
705
51762288
SH
706 /* query actual device if possible, otherwise just trust the hint */
707 if (drv->bdrv_getlength) {
708 int64_t length = drv->bdrv_getlength(bs);
709 if (length < 0) {
710 return length;
711 }
7e382003 712 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
51762288
SH
713 }
714
715 bs->total_sectors = hint;
716 return 0;
717}
718
9e8f1835
PB
719/**
720 * Set open flags for a given discard mode
721 *
722 * Return 0 on success, -1 if the discard mode was invalid.
723 */
724int bdrv_parse_discard_flags(const char *mode, int *flags)
725{
726 *flags &= ~BDRV_O_UNMAP;
727
728 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
729 /* do nothing */
730 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
731 *flags |= BDRV_O_UNMAP;
732 } else {
733 return -1;
734 }
735
736 return 0;
737}
738
c3993cdc
SH
739/**
740 * Set open flags for a given cache mode
741 *
742 * Return 0 on success, -1 if the cache mode was invalid.
743 */
744int bdrv_parse_cache_flags(const char *mode, int *flags)
745{
746 *flags &= ~BDRV_O_CACHE_MASK;
747
748 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
749 *flags |= BDRV_O_NOCACHE | BDRV_O_CACHE_WB;
92196b2f
SH
750 } else if (!strcmp(mode, "directsync")) {
751 *flags |= BDRV_O_NOCACHE;
c3993cdc
SH
752 } else if (!strcmp(mode, "writeback")) {
753 *flags |= BDRV_O_CACHE_WB;
754 } else if (!strcmp(mode, "unsafe")) {
755 *flags |= BDRV_O_CACHE_WB;
756 *flags |= BDRV_O_NO_FLUSH;
757 } else if (!strcmp(mode, "writethrough")) {
758 /* this is the default */
759 } else {
760 return -1;
761 }
762
763 return 0;
764}
765
53fec9d3
SH
766/**
767 * The copy-on-read flag is actually a reference count so multiple users may
768 * use the feature without worrying about clobbering its previous state.
769 * Copy-on-read stays enabled until all users have called to disable it.
770 */
771void bdrv_enable_copy_on_read(BlockDriverState *bs)
772{
773 bs->copy_on_read++;
774}
775
776void bdrv_disable_copy_on_read(BlockDriverState *bs)
777{
778 assert(bs->copy_on_read > 0);
779 bs->copy_on_read--;
780}
781
b1e6fc08
KW
782/*
783 * Returns the flags that a temporary snapshot should get, based on the
784 * originally requested flags (the originally requested image will have flags
785 * like a backing file)
786 */
787static int bdrv_temp_snapshot_flags(int flags)
788{
789 return (flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
790}
791
0b50cc88
KW
792/*
793 * Returns the flags that bs->file should get, based on the given flags for
794 * the parent BDS
795 */
796static int bdrv_inherited_flags(int flags)
797{
798 /* Enable protocol handling, disable format probing for bs->file */
799 flags |= BDRV_O_PROTOCOL;
800
801 /* Our block drivers take care to send flushes and respect unmap policy,
802 * so we can enable both unconditionally on lower layers. */
803 flags |= BDRV_O_CACHE_WB | BDRV_O_UNMAP;
804
0b50cc88 805 /* Clear flags that only apply to the top layer */
5669b44d 806 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
0b50cc88
KW
807
808 return flags;
809}
810
317fc44e
KW
811/*
812 * Returns the flags that bs->backing_hd should get, based on the given flags
813 * for the parent BDS
814 */
815static int bdrv_backing_flags(int flags)
816{
817 /* backing files always opened read-only */
818 flags &= ~(BDRV_O_RDWR | BDRV_O_COPY_ON_READ);
819
820 /* snapshot=on is handled on the top layer */
8bfea15d 821 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
317fc44e
KW
822
823 return flags;
824}
825
7b272452
KW
826static int bdrv_open_flags(BlockDriverState *bs, int flags)
827{
828 int open_flags = flags | BDRV_O_CACHE_WB;
829
830 /*
831 * Clear flags that are internal to the block layer before opening the
832 * image.
833 */
834 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
835
836 /*
837 * Snapshots should be writable.
838 */
8bfea15d 839 if (flags & BDRV_O_TEMPORARY) {
7b272452
KW
840 open_flags |= BDRV_O_RDWR;
841 }
842
843 return open_flags;
844}
845
636ea370
KW
846static void bdrv_assign_node_name(BlockDriverState *bs,
847 const char *node_name,
848 Error **errp)
6913c0c2
BC
849{
850 if (!node_name) {
636ea370 851 return;
6913c0c2
BC
852 }
853
854 /* empty string node name is invalid */
855 if (node_name[0] == '\0') {
856 error_setg(errp, "Empty node name");
636ea370 857 return;
6913c0c2
BC
858 }
859
0c5e94ee
BC
860 /* takes care of avoiding namespaces collisions */
861 if (bdrv_find(node_name)) {
862 error_setg(errp, "node-name=%s is conflicting with a device id",
863 node_name);
636ea370 864 return;
0c5e94ee
BC
865 }
866
6913c0c2
BC
867 /* takes care of avoiding duplicates node names */
868 if (bdrv_find_node(node_name)) {
869 error_setg(errp, "Duplicate node name");
636ea370 870 return;
6913c0c2
BC
871 }
872
873 /* copy node name into the bs and insert it into the graph list */
874 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
875 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
6913c0c2
BC
876}
877
57915332
KW
878/*
879 * Common part for opening disk images and files
b6ad491a
KW
880 *
881 * Removes all processed options from *options.
57915332 882 */
f500a6d3 883static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file,
34b5d2c6 884 QDict *options, int flags, BlockDriver *drv, Error **errp)
57915332
KW
885{
886 int ret, open_flags;
035fccdf 887 const char *filename;
6913c0c2 888 const char *node_name = NULL;
34b5d2c6 889 Error *local_err = NULL;
57915332
KW
890
891 assert(drv != NULL);
6405875c 892 assert(bs->file == NULL);
707ff828 893 assert(options != NULL && bs->options != options);
57915332 894
45673671
KW
895 if (file != NULL) {
896 filename = file->filename;
897 } else {
898 filename = qdict_get_try_str(options, "filename");
899 }
900
765003db
KW
901 if (drv->bdrv_needs_filename && !filename) {
902 error_setg(errp, "The '%s' block driver requires a file name",
903 drv->format_name);
904 return -EINVAL;
905 }
906
45673671 907 trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name);
28dcee10 908
6913c0c2 909 node_name = qdict_get_try_str(options, "node-name");
636ea370 910 bdrv_assign_node_name(bs, node_name, &local_err);
0fb6395c 911 if (local_err) {
636ea370
KW
912 error_propagate(errp, local_err);
913 return -EINVAL;
6913c0c2
BC
914 }
915 qdict_del(options, "node-name");
916
5d186eb0
KW
917 /* bdrv_open() with directly using a protocol as drv. This layer is already
918 * opened, so assign it to bs (while file becomes a closed BlockDriverState)
919 * and return immediately. */
920 if (file != NULL && drv->bdrv_file_open) {
921 bdrv_swap(file, bs);
922 return 0;
923 }
924
57915332 925 bs->open_flags = flags;
1b7fd729 926 bs->guest_block_size = 512;
c25f53b0 927 bs->request_alignment = 512;
0d51b4de 928 bs->zero_beyond_eof = true;
b64ec4e4
FZ
929 open_flags = bdrv_open_flags(bs, flags);
930 bs->read_only = !(open_flags & BDRV_O_RDWR);
931
932 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
8f94a6e4
KW
933 error_setg(errp,
934 !bs->read_only && bdrv_is_whitelisted(drv, true)
935 ? "Driver '%s' can only be used for read-only devices"
936 : "Driver '%s' is not whitelisted",
937 drv->format_name);
b64ec4e4
FZ
938 return -ENOTSUP;
939 }
57915332 940
53fec9d3 941 assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
0ebd24e0
KW
942 if (flags & BDRV_O_COPY_ON_READ) {
943 if (!bs->read_only) {
944 bdrv_enable_copy_on_read(bs);
945 } else {
946 error_setg(errp, "Can't use copy-on-read on read-only device");
947 return -EINVAL;
948 }
53fec9d3
SH
949 }
950
c2ad1b0c
KW
951 if (filename != NULL) {
952 pstrcpy(bs->filename, sizeof(bs->filename), filename);
953 } else {
954 bs->filename[0] = '\0';
955 }
57915332 956
57915332 957 bs->drv = drv;
7267c094 958 bs->opaque = g_malloc0(drv->instance_size);
57915332 959
03f541bd 960 bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
e7c63796 961
66f82cee
KW
962 /* Open the image, either directly or using a protocol */
963 if (drv->bdrv_file_open) {
5d186eb0 964 assert(file == NULL);
030be321 965 assert(!drv->bdrv_needs_filename || filename != NULL);
34b5d2c6 966 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
f500a6d3 967 } else {
2af5ef70 968 if (file == NULL) {
34b5d2c6
HR
969 error_setg(errp, "Can't use '%s' as a block driver for the "
970 "protocol level", drv->format_name);
2af5ef70
KW
971 ret = -EINVAL;
972 goto free_and_fail;
973 }
f500a6d3 974 bs->file = file;
34b5d2c6 975 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
66f82cee
KW
976 }
977
57915332 978 if (ret < 0) {
84d18f06 979 if (local_err) {
34b5d2c6 980 error_propagate(errp, local_err);
2fa9aa59
DH
981 } else if (bs->filename[0]) {
982 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
34b5d2c6
HR
983 } else {
984 error_setg_errno(errp, -ret, "Could not open image");
985 }
57915332
KW
986 goto free_and_fail;
987 }
988
51762288
SH
989 ret = refresh_total_sectors(bs, bs->total_sectors);
990 if (ret < 0) {
34b5d2c6 991 error_setg_errno(errp, -ret, "Could not refresh total sector count");
51762288 992 goto free_and_fail;
57915332 993 }
51762288 994
d34682cd 995 bdrv_refresh_limits(bs);
c25f53b0 996 assert(bdrv_opt_mem_align(bs) != 0);
47ea2de2 997 assert((bs->request_alignment != 0) || bs->sg);
57915332
KW
998 return 0;
999
1000free_and_fail:
f500a6d3 1001 bs->file = NULL;
7267c094 1002 g_free(bs->opaque);
57915332
KW
1003 bs->opaque = NULL;
1004 bs->drv = NULL;
1005 return ret;
1006}
1007
b6ce07aa
KW
1008/*
1009 * Opens a file using a protocol (file, host_device, nbd, ...)
787e4a85 1010 *
5acd9d81
HR
1011 * options is an indirect pointer to a QDict of options to pass to the block
1012 * drivers, or pointer to NULL for an empty set of options. If this function
1013 * takes ownership of the QDict reference, it will set *options to NULL;
1014 * otherwise, it will contain unused/unrecognized options after this function
1015 * returns. Then, the caller is responsible for freeing it. If it intends to
1016 * reuse the QDict, QINCREF() should be called beforehand.
b6ce07aa 1017 */
d4446eae 1018static int bdrv_file_open(BlockDriverState *bs, const char *filename,
5acd9d81 1019 QDict **options, int flags, Error **errp)
ea2384d3 1020{
6db95603 1021 BlockDriver *drv;
c2ad1b0c 1022 const char *drvname;
e3fa4bfa 1023 bool parse_filename = false;
34b5d2c6 1024 Error *local_err = NULL;
83f64091
FB
1025 int ret;
1026
035fccdf
KW
1027 /* Fetch the file name from the options QDict if necessary */
1028 if (!filename) {
5acd9d81
HR
1029 filename = qdict_get_try_str(*options, "filename");
1030 } else if (filename && !qdict_haskey(*options, "filename")) {
1031 qdict_put(*options, "filename", qstring_from_str(filename));
e3fa4bfa 1032 parse_filename = true;
035fccdf 1033 } else {
34b5d2c6
HR
1034 error_setg(errp, "Can't specify 'file' and 'filename' options at the "
1035 "same time");
035fccdf
KW
1036 ret = -EINVAL;
1037 goto fail;
1038 }
1039
c2ad1b0c 1040 /* Find the right block driver */
5acd9d81 1041 drvname = qdict_get_try_str(*options, "driver");
c2ad1b0c 1042 if (drvname) {
8f94a6e4 1043 drv = bdrv_find_format(drvname);
34b5d2c6
HR
1044 if (!drv) {
1045 error_setg(errp, "Unknown driver '%s'", drvname);
1046 }
5acd9d81 1047 qdict_del(*options, "driver");
c2ad1b0c 1048 } else if (filename) {
e3fa4bfa 1049 drv = bdrv_find_protocol(filename, parse_filename);
98289620 1050 if (!drv) {
34b5d2c6 1051 error_setg(errp, "Unknown protocol");
98289620 1052 }
c2ad1b0c 1053 } else {
34b5d2c6 1054 error_setg(errp, "Must specify either driver or file");
c2ad1b0c
KW
1055 drv = NULL;
1056 }
1057
1058 if (!drv) {
34b5d2c6 1059 /* errp has been set already */
c2ad1b0c
KW
1060 ret = -ENOENT;
1061 goto fail;
1062 }
1063
1064 /* Parse the filename and open it */
e3fa4bfa 1065 if (drv->bdrv_parse_filename && parse_filename) {
5acd9d81 1066 drv->bdrv_parse_filename(filename, *options, &local_err);
84d18f06 1067 if (local_err) {
34b5d2c6 1068 error_propagate(errp, local_err);
6963a30d
KW
1069 ret = -EINVAL;
1070 goto fail;
1071 }
cd5d031e
HR
1072
1073 if (!drv->bdrv_needs_filename) {
1074 qdict_del(*options, "filename");
1075 } else {
1076 filename = qdict_get_str(*options, "filename");
1077 }
6963a30d
KW
1078 }
1079
505d7583 1080 if (!drv->bdrv_file_open) {
5acd9d81
HR
1081 ret = bdrv_open(&bs, filename, NULL, *options, flags, drv, &local_err);
1082 *options = NULL;
505d7583 1083 } else {
5acd9d81 1084 ret = bdrv_open_common(bs, NULL, *options, flags, drv, &local_err);
505d7583 1085 }
83f64091 1086 if (ret < 0) {
34b5d2c6 1087 error_propagate(errp, local_err);
707ff828
KW
1088 goto fail;
1089 }
1090
71d0770c 1091 bs->growable = 1;
83f64091 1092 return 0;
707ff828
KW
1093
1094fail:
707ff828 1095 return ret;
83f64091
FB
1096}
1097
8d24cce1
FZ
1098void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
1099{
1100
826b6ca0
FZ
1101 if (bs->backing_hd) {
1102 assert(bs->backing_blocker);
1103 bdrv_op_unblock_all(bs->backing_hd, bs->backing_blocker);
1104 } else if (backing_hd) {
1105 error_setg(&bs->backing_blocker,
1106 "device is used as backing hd of '%s'",
1107 bs->device_name);
1108 }
1109
8d24cce1
FZ
1110 bs->backing_hd = backing_hd;
1111 if (!backing_hd) {
826b6ca0
FZ
1112 error_free(bs->backing_blocker);
1113 bs->backing_blocker = NULL;
8d24cce1
FZ
1114 goto out;
1115 }
1116 bs->open_flags &= ~BDRV_O_NO_BACKING;
1117 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_hd->filename);
1118 pstrcpy(bs->backing_format, sizeof(bs->backing_format),
1119 backing_hd->drv ? backing_hd->drv->format_name : "");
826b6ca0
FZ
1120
1121 bdrv_op_block_all(bs->backing_hd, bs->backing_blocker);
1122 /* Otherwise we won't be able to commit due to check in bdrv_commit */
1123 bdrv_op_unblock(bs->backing_hd, BLOCK_OP_TYPE_COMMIT,
1124 bs->backing_blocker);
8d24cce1
FZ
1125out:
1126 bdrv_refresh_limits(bs);
1127}
1128
31ca6d07
KW
1129/*
1130 * Opens the backing file for a BlockDriverState if not yet open
1131 *
1132 * options is a QDict of options to pass to the block drivers, or NULL for an
1133 * empty set of options. The reference to the QDict is transferred to this
1134 * function (even on failure), so if the caller intends to reuse the dictionary,
1135 * it needs to use QINCREF() before calling bdrv_file_open.
1136 */
34b5d2c6 1137int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp)
9156df12 1138{
1ba4b6a5 1139 char *backing_filename = g_malloc0(PATH_MAX);
317fc44e 1140 int ret = 0;
9156df12 1141 BlockDriver *back_drv = NULL;
8d24cce1 1142 BlockDriverState *backing_hd;
34b5d2c6 1143 Error *local_err = NULL;
9156df12
PB
1144
1145 if (bs->backing_hd != NULL) {
31ca6d07 1146 QDECREF(options);
1ba4b6a5 1147 goto free_exit;
9156df12
PB
1148 }
1149
31ca6d07
KW
1150 /* NULL means an empty set of options */
1151 if (options == NULL) {
1152 options = qdict_new();
1153 }
1154
9156df12 1155 bs->open_flags &= ~BDRV_O_NO_BACKING;
1cb6f506
KW
1156 if (qdict_haskey(options, "file.filename")) {
1157 backing_filename[0] = '\0';
1158 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
31ca6d07 1159 QDECREF(options);
1ba4b6a5 1160 goto free_exit;
dbecebdd 1161 } else {
1ba4b6a5 1162 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX);
9156df12
PB
1163 }
1164
8d24cce1
FZ
1165 backing_hd = bdrv_new("", errp);
1166
9156df12
PB
1167 if (bs->backing_format[0] != '\0') {
1168 back_drv = bdrv_find_format(bs->backing_format);
1169 }
1170
f67503e5 1171 assert(bs->backing_hd == NULL);
8d24cce1 1172 ret = bdrv_open(&backing_hd,
ddf5636d 1173 *backing_filename ? backing_filename : NULL, NULL, options,
317fc44e 1174 bdrv_backing_flags(bs->open_flags), back_drv, &local_err);
9156df12 1175 if (ret < 0) {
8d24cce1
FZ
1176 bdrv_unref(backing_hd);
1177 backing_hd = NULL;
9156df12 1178 bs->open_flags |= BDRV_O_NO_BACKING;
b04b6b6e
FZ
1179 error_setg(errp, "Could not open backing file: %s",
1180 error_get_pretty(local_err));
1181 error_free(local_err);
1ba4b6a5 1182 goto free_exit;
9156df12 1183 }
8d24cce1 1184 bdrv_set_backing_hd(bs, backing_hd);
d80ac658 1185
1ba4b6a5
BC
1186free_exit:
1187 g_free(backing_filename);
1188 return ret;
9156df12
PB
1189}
1190
da557aac
HR
1191/*
1192 * Opens a disk image whose options are given as BlockdevRef in another block
1193 * device's options.
1194 *
da557aac
HR
1195 * If allow_none is true, no image will be opened if filename is false and no
1196 * BlockdevRef is given. *pbs will remain unchanged and 0 will be returned.
1197 *
1198 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
1199 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
1200 * itself, all options starting with "${bdref_key}." are considered part of the
1201 * BlockdevRef.
1202 *
1203 * The BlockdevRef will be removed from the options QDict.
f67503e5
HR
1204 *
1205 * To conform with the behavior of bdrv_open(), *pbs has to be NULL.
da557aac
HR
1206 */
1207int bdrv_open_image(BlockDriverState **pbs, const char *filename,
1208 QDict *options, const char *bdref_key, int flags,
f7d9fd8c 1209 bool allow_none, Error **errp)
da557aac
HR
1210{
1211 QDict *image_options;
1212 int ret;
1213 char *bdref_key_dot;
1214 const char *reference;
1215
f67503e5
HR
1216 assert(pbs);
1217 assert(*pbs == NULL);
1218
da557aac
HR
1219 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
1220 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
1221 g_free(bdref_key_dot);
1222
1223 reference = qdict_get_try_str(options, bdref_key);
1224 if (!filename && !reference && !qdict_size(image_options)) {
1225 if (allow_none) {
1226 ret = 0;
1227 } else {
1228 error_setg(errp, "A block device must be specified for \"%s\"",
1229 bdref_key);
1230 ret = -EINVAL;
1231 }
b20e61e0 1232 QDECREF(image_options);
da557aac
HR
1233 goto done;
1234 }
1235
f7d9fd8c 1236 ret = bdrv_open(pbs, filename, reference, image_options, flags, NULL, errp);
da557aac
HR
1237
1238done:
1239 qdict_del(options, bdref_key);
1240 return ret;
1241}
1242
b1e6fc08 1243void bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp)
b998875d
KW
1244{
1245 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
1ba4b6a5 1246 char *tmp_filename = g_malloc0(PATH_MAX + 1);
b998875d
KW
1247 int64_t total_size;
1248 BlockDriver *bdrv_qcow2;
83d0521a 1249 QemuOpts *opts = NULL;
b998875d
KW
1250 QDict *snapshot_options;
1251 BlockDriverState *bs_snapshot;
1252 Error *local_err;
1253 int ret;
1254
1255 /* if snapshot, we create a temporary backing file and open it
1256 instead of opening 'filename' directly */
1257
1258 /* Get the required size from the image */
f187743a
KW
1259 total_size = bdrv_getlength(bs);
1260 if (total_size < 0) {
1261 error_setg_errno(errp, -total_size, "Could not get image size");
1ba4b6a5 1262 goto out;
f187743a
KW
1263 }
1264 total_size &= BDRV_SECTOR_MASK;
b998875d
KW
1265
1266 /* Create the temporary image */
1ba4b6a5 1267 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
b998875d
KW
1268 if (ret < 0) {
1269 error_setg_errno(errp, -ret, "Could not get temporary filename");
1ba4b6a5 1270 goto out;
b998875d
KW
1271 }
1272
1273 bdrv_qcow2 = bdrv_find_format("qcow2");
c282e1fd
CL
1274 opts = qemu_opts_create(bdrv_qcow2->create_opts, NULL, 0,
1275 &error_abort);
83d0521a 1276 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size);
c282e1fd 1277 ret = bdrv_create(bdrv_qcow2, tmp_filename, opts, &local_err);
83d0521a 1278 qemu_opts_del(opts);
b998875d
KW
1279 if (ret < 0) {
1280 error_setg_errno(errp, -ret, "Could not create temporary overlay "
1281 "'%s': %s", tmp_filename,
1282 error_get_pretty(local_err));
1283 error_free(local_err);
1ba4b6a5 1284 goto out;
b998875d
KW
1285 }
1286
1287 /* Prepare a new options QDict for the temporary file */
1288 snapshot_options = qdict_new();
1289 qdict_put(snapshot_options, "file.driver",
1290 qstring_from_str("file"));
1291 qdict_put(snapshot_options, "file.filename",
1292 qstring_from_str(tmp_filename));
1293
98522f63 1294 bs_snapshot = bdrv_new("", &error_abort);
b998875d
KW
1295
1296 ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options,
b1e6fc08 1297 flags, bdrv_qcow2, &local_err);
b998875d
KW
1298 if (ret < 0) {
1299 error_propagate(errp, local_err);
1ba4b6a5 1300 goto out;
b998875d
KW
1301 }
1302
1303 bdrv_append(bs_snapshot, bs);
1ba4b6a5
BC
1304
1305out:
1306 g_free(tmp_filename);
b998875d
KW
1307}
1308
4993f7ea
HR
1309static QDict *parse_json_filename(const char *filename, Error **errp)
1310{
1311 QObject *options_obj;
1312 QDict *options;
1313 int ret;
1314
1315 ret = strstart(filename, "json:", &filename);
1316 assert(ret);
1317
1318 options_obj = qobject_from_json(filename);
1319 if (!options_obj) {
1320 error_setg(errp, "Could not parse the JSON options");
1321 return NULL;
1322 }
1323
1324 if (qobject_type(options_obj) != QTYPE_QDICT) {
1325 qobject_decref(options_obj);
1326 error_setg(errp, "Invalid JSON object given");
1327 return NULL;
1328 }
1329
1330 options = qobject_to_qdict(options_obj);
1331 qdict_flatten(options);
1332
1333 return options;
1334}
1335
b6ce07aa
KW
1336/*
1337 * Opens a disk image (raw, qcow2, vmdk, ...)
de9c0cec
KW
1338 *
1339 * options is a QDict of options to pass to the block drivers, or NULL for an
1340 * empty set of options. The reference to the QDict belongs to the block layer
1341 * after the call (even on failure), so if the caller intends to reuse the
1342 * dictionary, it needs to use QINCREF() before calling bdrv_open.
f67503e5
HR
1343 *
1344 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
1345 * If it is not NULL, the referenced BDS will be reused.
ddf5636d
HR
1346 *
1347 * The reference parameter may be used to specify an existing block device which
1348 * should be opened. If specified, neither options nor a filename may be given,
1349 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
b6ce07aa 1350 */
ddf5636d
HR
1351int bdrv_open(BlockDriverState **pbs, const char *filename,
1352 const char *reference, QDict *options, int flags,
1353 BlockDriver *drv, Error **errp)
ea2384d3 1354{
b6ce07aa 1355 int ret;
f67503e5 1356 BlockDriverState *file = NULL, *bs;
74fe54f2 1357 const char *drvname;
34b5d2c6 1358 Error *local_err = NULL;
b1e6fc08 1359 int snapshot_flags = 0;
712e7874 1360
f67503e5
HR
1361 assert(pbs);
1362
ddf5636d
HR
1363 if (reference) {
1364 bool options_non_empty = options ? qdict_size(options) : false;
1365 QDECREF(options);
1366
1367 if (*pbs) {
1368 error_setg(errp, "Cannot reuse an existing BDS when referencing "
1369 "another block device");
1370 return -EINVAL;
1371 }
1372
1373 if (filename || options_non_empty) {
1374 error_setg(errp, "Cannot reference an existing block device with "
1375 "additional options or a new filename");
1376 return -EINVAL;
1377 }
1378
1379 bs = bdrv_lookup_bs(reference, reference, errp);
1380 if (!bs) {
1381 return -ENODEV;
1382 }
1383 bdrv_ref(bs);
1384 *pbs = bs;
1385 return 0;
1386 }
1387
f67503e5
HR
1388 if (*pbs) {
1389 bs = *pbs;
1390 } else {
98522f63 1391 bs = bdrv_new("", &error_abort);
f67503e5
HR
1392 }
1393
de9c0cec
KW
1394 /* NULL means an empty set of options */
1395 if (options == NULL) {
1396 options = qdict_new();
1397 }
1398
4993f7ea
HR
1399 if (filename && g_str_has_prefix(filename, "json:")) {
1400 QDict *json_options = parse_json_filename(filename, &local_err);
1401 if (local_err) {
1402 ret = -EINVAL;
1403 goto fail;
1404 }
1405
1406 /* Options given in the filename have lower priority than options
1407 * specified directly */
1408 qdict_join(options, json_options, false);
1409 QDECREF(json_options);
1410 filename = NULL;
1411 }
1412
de9c0cec 1413 bs->options = options;
b6ad491a 1414 options = qdict_clone_shallow(options);
de9c0cec 1415
5469a2a6
HR
1416 if (flags & BDRV_O_PROTOCOL) {
1417 assert(!drv);
5acd9d81 1418 ret = bdrv_file_open(bs, filename, &options, flags & ~BDRV_O_PROTOCOL,
5469a2a6 1419 &local_err);
5469a2a6 1420 if (!ret) {
eb909c7f 1421 drv = bs->drv;
5acd9d81 1422 goto done;
5469a2a6
HR
1423 } else if (bs->drv) {
1424 goto close_and_fail;
1425 } else {
1426 goto fail;
1427 }
1428 }
1429
f500a6d3
KW
1430 /* Open image file without format layer */
1431 if (flags & BDRV_O_RDWR) {
1432 flags |= BDRV_O_ALLOW_RDWR;
1433 }
b1e6fc08
KW
1434 if (flags & BDRV_O_SNAPSHOT) {
1435 snapshot_flags = bdrv_temp_snapshot_flags(flags);
1436 flags = bdrv_backing_flags(flags);
1437 }
f500a6d3 1438
f67503e5 1439 assert(file == NULL);
054963f8 1440 ret = bdrv_open_image(&file, filename, options, "file",
0b50cc88
KW
1441 bdrv_inherited_flags(flags),
1442 true, &local_err);
054963f8 1443 if (ret < 0) {
8bfea15d 1444 goto fail;
f500a6d3
KW
1445 }
1446
b6ce07aa 1447 /* Find the right image format driver */
74fe54f2
KW
1448 drvname = qdict_get_try_str(options, "driver");
1449 if (drvname) {
8f94a6e4 1450 drv = bdrv_find_format(drvname);
74fe54f2 1451 qdict_del(options, "driver");
06d22aa3
KW
1452 if (!drv) {
1453 error_setg(errp, "Invalid driver: '%s'", drvname);
1454 ret = -EINVAL;
8bfea15d 1455 goto fail;
06d22aa3 1456 }
74fe54f2
KW
1457 }
1458
6db95603 1459 if (!drv) {
2a05cbe4
HR
1460 if (file) {
1461 ret = find_image_format(file, filename, &drv, &local_err);
1462 } else {
1463 error_setg(errp, "Must specify either driver or file");
1464 ret = -EINVAL;
8bfea15d 1465 goto fail;
2a05cbe4 1466 }
51d7c00c 1467 }
6987307c 1468
51d7c00c 1469 if (!drv) {
8bfea15d 1470 goto fail;
ea2384d3 1471 }
b6ce07aa
KW
1472
1473 /* Open the image */
34b5d2c6 1474 ret = bdrv_open_common(bs, file, options, flags, drv, &local_err);
b6ce07aa 1475 if (ret < 0) {
8bfea15d 1476 goto fail;
6987307c
CH
1477 }
1478
2a05cbe4 1479 if (file && (bs->file != file)) {
4f6fd349 1480 bdrv_unref(file);
f500a6d3
KW
1481 file = NULL;
1482 }
1483
b6ce07aa 1484 /* If there is a backing file, use it */
9156df12 1485 if ((flags & BDRV_O_NO_BACKING) == 0) {
31ca6d07
KW
1486 QDict *backing_options;
1487
5726d872 1488 qdict_extract_subqdict(options, &backing_options, "backing.");
34b5d2c6 1489 ret = bdrv_open_backing_file(bs, backing_options, &local_err);
b6ce07aa 1490 if (ret < 0) {
b6ad491a 1491 goto close_and_fail;
b6ce07aa 1492 }
b6ce07aa
KW
1493 }
1494
b998875d
KW
1495 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1496 * temporary snapshot afterwards. */
b1e6fc08
KW
1497 if (snapshot_flags) {
1498 bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err);
b998875d
KW
1499 if (local_err) {
1500 error_propagate(errp, local_err);
1501 goto close_and_fail;
1502 }
1503 }
1504
1505
5acd9d81 1506done:
b6ad491a 1507 /* Check if any unknown options were used */
5acd9d81 1508 if (options && (qdict_size(options) != 0)) {
b6ad491a 1509 const QDictEntry *entry = qdict_first(options);
5acd9d81
HR
1510 if (flags & BDRV_O_PROTOCOL) {
1511 error_setg(errp, "Block protocol '%s' doesn't support the option "
1512 "'%s'", drv->format_name, entry->key);
1513 } else {
1514 error_setg(errp, "Block format '%s' used by device '%s' doesn't "
1515 "support the option '%s'", drv->format_name,
1516 bs->device_name, entry->key);
1517 }
b6ad491a
KW
1518
1519 ret = -EINVAL;
1520 goto close_and_fail;
1521 }
b6ad491a 1522
b6ce07aa 1523 if (!bdrv_key_required(bs)) {
7d4b4ba5 1524 bdrv_dev_change_media_cb(bs, true);
c3adb58f
MA
1525 } else if (!runstate_check(RUN_STATE_PRELAUNCH)
1526 && !runstate_check(RUN_STATE_INMIGRATE)
1527 && !runstate_check(RUN_STATE_PAUSED)) { /* HACK */
1528 error_setg(errp,
1529 "Guest must be stopped for opening of encrypted image");
1530 ret = -EBUSY;
1531 goto close_and_fail;
b6ce07aa
KW
1532 }
1533
c3adb58f 1534 QDECREF(options);
f67503e5 1535 *pbs = bs;
b6ce07aa
KW
1536 return 0;
1537
8bfea15d 1538fail:
f500a6d3 1539 if (file != NULL) {
4f6fd349 1540 bdrv_unref(file);
f500a6d3 1541 }
de9c0cec 1542 QDECREF(bs->options);
b6ad491a 1543 QDECREF(options);
de9c0cec 1544 bs->options = NULL;
f67503e5
HR
1545 if (!*pbs) {
1546 /* If *pbs is NULL, a new BDS has been created in this function and
1547 needs to be freed now. Otherwise, it does not need to be closed,
1548 since it has not really been opened yet. */
1549 bdrv_unref(bs);
1550 }
84d18f06 1551 if (local_err) {
34b5d2c6
HR
1552 error_propagate(errp, local_err);
1553 }
b6ad491a 1554 return ret;
de9c0cec 1555
b6ad491a 1556close_and_fail:
f67503e5
HR
1557 /* See fail path, but now the BDS has to be always closed */
1558 if (*pbs) {
1559 bdrv_close(bs);
1560 } else {
1561 bdrv_unref(bs);
1562 }
b6ad491a 1563 QDECREF(options);
84d18f06 1564 if (local_err) {
34b5d2c6
HR
1565 error_propagate(errp, local_err);
1566 }
b6ce07aa
KW
1567 return ret;
1568}
1569
e971aa12
JC
1570typedef struct BlockReopenQueueEntry {
1571 bool prepared;
1572 BDRVReopenState state;
1573 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1574} BlockReopenQueueEntry;
1575
1576/*
1577 * Adds a BlockDriverState to a simple queue for an atomic, transactional
1578 * reopen of multiple devices.
1579 *
1580 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
1581 * already performed, or alternatively may be NULL a new BlockReopenQueue will
1582 * be created and initialized. This newly created BlockReopenQueue should be
1583 * passed back in for subsequent calls that are intended to be of the same
1584 * atomic 'set'.
1585 *
1586 * bs is the BlockDriverState to add to the reopen queue.
1587 *
1588 * flags contains the open flags for the associated bs
1589 *
1590 * returns a pointer to bs_queue, which is either the newly allocated
1591 * bs_queue, or the existing bs_queue being used.
1592 *
1593 */
1594BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
1595 BlockDriverState *bs, int flags)
1596{
1597 assert(bs != NULL);
1598
1599 BlockReopenQueueEntry *bs_entry;
1600 if (bs_queue == NULL) {
1601 bs_queue = g_new0(BlockReopenQueue, 1);
1602 QSIMPLEQ_INIT(bs_queue);
1603 }
1604
f1f25a2e
KW
1605 /* bdrv_open() masks this flag out */
1606 flags &= ~BDRV_O_PROTOCOL;
1607
e971aa12 1608 if (bs->file) {
f1f25a2e 1609 bdrv_reopen_queue(bs_queue, bs->file, bdrv_inherited_flags(flags));
e971aa12
JC
1610 }
1611
1612 bs_entry = g_new0(BlockReopenQueueEntry, 1);
1613 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
1614
1615 bs_entry->state.bs = bs;
1616 bs_entry->state.flags = flags;
1617
1618 return bs_queue;
1619}
1620
1621/*
1622 * Reopen multiple BlockDriverStates atomically & transactionally.
1623 *
1624 * The queue passed in (bs_queue) must have been built up previous
1625 * via bdrv_reopen_queue().
1626 *
1627 * Reopens all BDS specified in the queue, with the appropriate
1628 * flags. All devices are prepared for reopen, and failure of any
1629 * device will cause all device changes to be abandonded, and intermediate
1630 * data cleaned up.
1631 *
1632 * If all devices prepare successfully, then the changes are committed
1633 * to all devices.
1634 *
1635 */
1636int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
1637{
1638 int ret = -1;
1639 BlockReopenQueueEntry *bs_entry, *next;
1640 Error *local_err = NULL;
1641
1642 assert(bs_queue != NULL);
1643
1644 bdrv_drain_all();
1645
1646 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1647 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
1648 error_propagate(errp, local_err);
1649 goto cleanup;
1650 }
1651 bs_entry->prepared = true;
1652 }
1653
1654 /* If we reach this point, we have success and just need to apply the
1655 * changes
1656 */
1657 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
1658 bdrv_reopen_commit(&bs_entry->state);
1659 }
1660
1661 ret = 0;
1662
1663cleanup:
1664 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
1665 if (ret && bs_entry->prepared) {
1666 bdrv_reopen_abort(&bs_entry->state);
1667 }
1668 g_free(bs_entry);
1669 }
1670 g_free(bs_queue);
1671 return ret;
1672}
1673
1674
1675/* Reopen a single BlockDriverState with the specified flags. */
1676int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
1677{
1678 int ret = -1;
1679 Error *local_err = NULL;
1680 BlockReopenQueue *queue = bdrv_reopen_queue(NULL, bs, bdrv_flags);
1681
1682 ret = bdrv_reopen_multiple(queue, &local_err);
1683 if (local_err != NULL) {
1684 error_propagate(errp, local_err);
1685 }
1686 return ret;
1687}
1688
1689
1690/*
1691 * Prepares a BlockDriverState for reopen. All changes are staged in the
1692 * 'opaque' field of the BDRVReopenState, which is used and allocated by
1693 * the block driver layer .bdrv_reopen_prepare()
1694 *
1695 * bs is the BlockDriverState to reopen
1696 * flags are the new open flags
1697 * queue is the reopen queue
1698 *
1699 * Returns 0 on success, non-zero on error. On error errp will be set
1700 * as well.
1701 *
1702 * On failure, bdrv_reopen_abort() will be called to clean up any data.
1703 * It is the responsibility of the caller to then call the abort() or
1704 * commit() for any other BDS that have been left in a prepare() state
1705 *
1706 */
1707int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
1708 Error **errp)
1709{
1710 int ret = -1;
1711 Error *local_err = NULL;
1712 BlockDriver *drv;
1713
1714 assert(reopen_state != NULL);
1715 assert(reopen_state->bs->drv != NULL);
1716 drv = reopen_state->bs->drv;
1717
1718 /* if we are to stay read-only, do not allow permission change
1719 * to r/w */
1720 if (!(reopen_state->bs->open_flags & BDRV_O_ALLOW_RDWR) &&
1721 reopen_state->flags & BDRV_O_RDWR) {
1722 error_set(errp, QERR_DEVICE_IS_READ_ONLY,
1723 reopen_state->bs->device_name);
1724 goto error;
1725 }
1726
1727
1728 ret = bdrv_flush(reopen_state->bs);
1729 if (ret) {
1730 error_set(errp, ERROR_CLASS_GENERIC_ERROR, "Error (%s) flushing drive",
1731 strerror(-ret));
1732 goto error;
1733 }
1734
1735 if (drv->bdrv_reopen_prepare) {
1736 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
1737 if (ret) {
1738 if (local_err != NULL) {
1739 error_propagate(errp, local_err);
1740 } else {
d8b6895f
LC
1741 error_setg(errp, "failed while preparing to reopen image '%s'",
1742 reopen_state->bs->filename);
e971aa12
JC
1743 }
1744 goto error;
1745 }
1746 } else {
1747 /* It is currently mandatory to have a bdrv_reopen_prepare()
1748 * handler for each supported drv. */
1749 error_set(errp, QERR_BLOCK_FORMAT_FEATURE_NOT_SUPPORTED,
1750 drv->format_name, reopen_state->bs->device_name,
1751 "reopening of file");
1752 ret = -1;
1753 goto error;
1754 }
1755
1756 ret = 0;
1757
1758error:
1759 return ret;
1760}
1761
1762/*
1763 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
1764 * makes them final by swapping the staging BlockDriverState contents into
1765 * the active BlockDriverState contents.
1766 */
1767void bdrv_reopen_commit(BDRVReopenState *reopen_state)
1768{
1769 BlockDriver *drv;
1770
1771 assert(reopen_state != NULL);
1772 drv = reopen_state->bs->drv;
1773 assert(drv != NULL);
1774
1775 /* If there are any driver level actions to take */
1776 if (drv->bdrv_reopen_commit) {
1777 drv->bdrv_reopen_commit(reopen_state);
1778 }
1779
1780 /* set BDS specific flags now */
1781 reopen_state->bs->open_flags = reopen_state->flags;
1782 reopen_state->bs->enable_write_cache = !!(reopen_state->flags &
1783 BDRV_O_CACHE_WB);
1784 reopen_state->bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
355ef4ac
KW
1785
1786 bdrv_refresh_limits(reopen_state->bs);
e971aa12
JC
1787}
1788
1789/*
1790 * Abort the reopen, and delete and free the staged changes in
1791 * reopen_state
1792 */
1793void bdrv_reopen_abort(BDRVReopenState *reopen_state)
1794{
1795 BlockDriver *drv;
1796
1797 assert(reopen_state != NULL);
1798 drv = reopen_state->bs->drv;
1799 assert(drv != NULL);
1800
1801 if (drv->bdrv_reopen_abort) {
1802 drv->bdrv_reopen_abort(reopen_state);
1803 }
1804}
1805
1806
fc01f7e7
FB
1807void bdrv_close(BlockDriverState *bs)
1808{
3cbc002c
PB
1809 if (bs->job) {
1810 block_job_cancel_sync(bs->job);
1811 }
58fda173
SH
1812 bdrv_drain_all(); /* complete I/O */
1813 bdrv_flush(bs);
1814 bdrv_drain_all(); /* in case flush left pending I/O */
d7d512f6 1815 notifier_list_notify(&bs->close_notifiers, bs);
7094f12f 1816
3cbc002c 1817 if (bs->drv) {
557df6ac 1818 if (bs->backing_hd) {
826b6ca0
FZ
1819 BlockDriverState *backing_hd = bs->backing_hd;
1820 bdrv_set_backing_hd(bs, NULL);
1821 bdrv_unref(backing_hd);
557df6ac 1822 }
ea2384d3 1823 bs->drv->bdrv_close(bs);
7267c094 1824 g_free(bs->opaque);
ea2384d3
FB
1825 bs->opaque = NULL;
1826 bs->drv = NULL;
53fec9d3 1827 bs->copy_on_read = 0;
a275fa42
PB
1828 bs->backing_file[0] = '\0';
1829 bs->backing_format[0] = '\0';
6405875c
PB
1830 bs->total_sectors = 0;
1831 bs->encrypted = 0;
1832 bs->valid_key = 0;
1833 bs->sg = 0;
1834 bs->growable = 0;
0d51b4de 1835 bs->zero_beyond_eof = false;
de9c0cec
KW
1836 QDECREF(bs->options);
1837 bs->options = NULL;
b338082b 1838
66f82cee 1839 if (bs->file != NULL) {
4f6fd349 1840 bdrv_unref(bs->file);
0ac9377d 1841 bs->file = NULL;
66f82cee 1842 }
b338082b 1843 }
98f90dba 1844
9ca11154
PH
1845 bdrv_dev_change_media_cb(bs, false);
1846
98f90dba
ZYW
1847 /*throttling disk I/O limits*/
1848 if (bs->io_limits_enabled) {
1849 bdrv_io_limits_disable(bs);
1850 }
b338082b
FB
1851}
1852
2bc93fed
MK
1853void bdrv_close_all(void)
1854{
1855 BlockDriverState *bs;
1856
dc364f4c 1857 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
ed78cda3
SH
1858 AioContext *aio_context = bdrv_get_aio_context(bs);
1859
1860 aio_context_acquire(aio_context);
2bc93fed 1861 bdrv_close(bs);
ed78cda3 1862 aio_context_release(aio_context);
2bc93fed
MK
1863 }
1864}
1865
88266f5a
SH
1866/* Check if any requests are in-flight (including throttled requests) */
1867static bool bdrv_requests_pending(BlockDriverState *bs)
1868{
1869 if (!QLIST_EMPTY(&bs->tracked_requests)) {
1870 return true;
1871 }
cc0681c4
BC
1872 if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) {
1873 return true;
1874 }
1875 if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) {
88266f5a
SH
1876 return true;
1877 }
1878 if (bs->file && bdrv_requests_pending(bs->file)) {
1879 return true;
1880 }
1881 if (bs->backing_hd && bdrv_requests_pending(bs->backing_hd)) {
1882 return true;
1883 }
1884 return false;
1885}
1886
922453bc
SH
1887/*
1888 * Wait for pending requests to complete across all BlockDriverStates
1889 *
1890 * This function does not flush data to disk, use bdrv_flush_all() for that
1891 * after calling this function.
4c355d53
ZYW
1892 *
1893 * Note that completion of an asynchronous I/O operation can trigger any
1894 * number of other I/O operations on other devices---for example a coroutine
1895 * can be arbitrarily complex and a constant flow of I/O can come until the
1896 * coroutine is complete. Because of this, it is not possible to have a
1897 * function to drain a single device's I/O queue.
922453bc
SH
1898 */
1899void bdrv_drain_all(void)
1900{
88266f5a
SH
1901 /* Always run first iteration so any pending completion BHs run */
1902 bool busy = true;
922453bc
SH
1903 BlockDriverState *bs;
1904
88266f5a 1905 while (busy) {
9b536adc
SH
1906 busy = false;
1907
dc364f4c 1908 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
9b536adc
SH
1909 AioContext *aio_context = bdrv_get_aio_context(bs);
1910 bool bs_busy;
1911
1912 aio_context_acquire(aio_context);
0b06ef3b 1913 bdrv_start_throttled_reqs(bs);
9b536adc
SH
1914 bs_busy = bdrv_requests_pending(bs);
1915 bs_busy |= aio_poll(aio_context, bs_busy);
1916 aio_context_release(aio_context);
922453bc 1917
9b536adc
SH
1918 busy |= bs_busy;
1919 }
922453bc
SH
1920 }
1921}
1922
dc364f4c
BC
1923/* make a BlockDriverState anonymous by removing from bdrv_state and
1924 * graph_bdrv_state list.
d22b2f41
RH
1925 Also, NULL terminate the device_name to prevent double remove */
1926void bdrv_make_anon(BlockDriverState *bs)
1927{
1928 if (bs->device_name[0] != '\0') {
dc364f4c 1929 QTAILQ_REMOVE(&bdrv_states, bs, device_list);
d22b2f41
RH
1930 }
1931 bs->device_name[0] = '\0';
dc364f4c
BC
1932 if (bs->node_name[0] != '\0') {
1933 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
1934 }
1935 bs->node_name[0] = '\0';
d22b2f41
RH
1936}
1937
e023b2e2
PB
1938static void bdrv_rebind(BlockDriverState *bs)
1939{
1940 if (bs->drv && bs->drv->bdrv_rebind) {
1941 bs->drv->bdrv_rebind(bs);
1942 }
1943}
1944
4ddc07ca
PB
1945static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
1946 BlockDriverState *bs_src)
8802d1fd 1947{
4ddc07ca 1948 /* move some fields that need to stay attached to the device */
8802d1fd
JC
1949
1950 /* dev info */
4ddc07ca
PB
1951 bs_dest->dev_ops = bs_src->dev_ops;
1952 bs_dest->dev_opaque = bs_src->dev_opaque;
1953 bs_dest->dev = bs_src->dev;
1b7fd729 1954 bs_dest->guest_block_size = bs_src->guest_block_size;
4ddc07ca 1955 bs_dest->copy_on_read = bs_src->copy_on_read;
8802d1fd 1956
4ddc07ca 1957 bs_dest->enable_write_cache = bs_src->enable_write_cache;
c4a248a1 1958
cc0681c4
BC
1959 /* i/o throttled req */
1960 memcpy(&bs_dest->throttle_state,
1961 &bs_src->throttle_state,
1962 sizeof(ThrottleState));
1963 bs_dest->throttled_reqs[0] = bs_src->throttled_reqs[0];
1964 bs_dest->throttled_reqs[1] = bs_src->throttled_reqs[1];
4ddc07ca 1965 bs_dest->io_limits_enabled = bs_src->io_limits_enabled;
8802d1fd 1966
8802d1fd 1967 /* r/w error */
4ddc07ca
PB
1968 bs_dest->on_read_error = bs_src->on_read_error;
1969 bs_dest->on_write_error = bs_src->on_write_error;
8802d1fd
JC
1970
1971 /* i/o status */
4ddc07ca
PB
1972 bs_dest->iostatus_enabled = bs_src->iostatus_enabled;
1973 bs_dest->iostatus = bs_src->iostatus;
8802d1fd 1974
a9fc4408 1975 /* dirty bitmap */
e4654d2d 1976 bs_dest->dirty_bitmaps = bs_src->dirty_bitmaps;
a9fc4408 1977
9fcb0251
FZ
1978 /* reference count */
1979 bs_dest->refcnt = bs_src->refcnt;
1980
a9fc4408 1981 /* job */
4ddc07ca 1982 bs_dest->job = bs_src->job;
a9fc4408 1983
8802d1fd 1984 /* keep the same entry in bdrv_states */
4ddc07ca
PB
1985 pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
1986 bs_src->device_name);
dc364f4c 1987 bs_dest->device_list = bs_src->device_list;
fbe40ff7
FZ
1988 memcpy(bs_dest->op_blockers, bs_src->op_blockers,
1989 sizeof(bs_dest->op_blockers));
4ddc07ca 1990}
8802d1fd 1991
4ddc07ca
PB
1992/*
1993 * Swap bs contents for two image chains while they are live,
1994 * while keeping required fields on the BlockDriverState that is
1995 * actually attached to a device.
1996 *
1997 * This will modify the BlockDriverState fields, and swap contents
1998 * between bs_new and bs_old. Both bs_new and bs_old are modified.
1999 *
2000 * bs_new is required to be anonymous.
2001 *
2002 * This function does not create any image files.
2003 */
2004void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
2005{
2006 BlockDriverState tmp;
f6801b83 2007
90ce8a06
BC
2008 /* The code needs to swap the node_name but simply swapping node_list won't
2009 * work so first remove the nodes from the graph list, do the swap then
2010 * insert them back if needed.
2011 */
2012 if (bs_new->node_name[0] != '\0') {
2013 QTAILQ_REMOVE(&graph_bdrv_states, bs_new, node_list);
2014 }
2015 if (bs_old->node_name[0] != '\0') {
2016 QTAILQ_REMOVE(&graph_bdrv_states, bs_old, node_list);
2017 }
2018
4ddc07ca
PB
2019 /* bs_new must be anonymous and shouldn't have anything fancy enabled */
2020 assert(bs_new->device_name[0] == '\0');
e4654d2d 2021 assert(QLIST_EMPTY(&bs_new->dirty_bitmaps));
4ddc07ca
PB
2022 assert(bs_new->job == NULL);
2023 assert(bs_new->dev == NULL);
4ddc07ca 2024 assert(bs_new->io_limits_enabled == false);
cc0681c4 2025 assert(!throttle_have_timer(&bs_new->throttle_state));
8802d1fd 2026
4ddc07ca
PB
2027 tmp = *bs_new;
2028 *bs_new = *bs_old;
2029 *bs_old = tmp;
a9fc4408 2030
4ddc07ca
PB
2031 /* there are some fields that should not be swapped, move them back */
2032 bdrv_move_feature_fields(&tmp, bs_old);
2033 bdrv_move_feature_fields(bs_old, bs_new);
2034 bdrv_move_feature_fields(bs_new, &tmp);
8802d1fd 2035
4ddc07ca
PB
2036 /* bs_new shouldn't be in bdrv_states even after the swap! */
2037 assert(bs_new->device_name[0] == '\0');
2038
2039 /* Check a few fields that should remain attached to the device */
2040 assert(bs_new->dev == NULL);
2041 assert(bs_new->job == NULL);
4ddc07ca 2042 assert(bs_new->io_limits_enabled == false);
cc0681c4 2043 assert(!throttle_have_timer(&bs_new->throttle_state));
e023b2e2 2044
90ce8a06
BC
2045 /* insert the nodes back into the graph node list if needed */
2046 if (bs_new->node_name[0] != '\0') {
2047 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_new, node_list);
2048 }
2049 if (bs_old->node_name[0] != '\0') {
2050 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs_old, node_list);
2051 }
2052
e023b2e2 2053 bdrv_rebind(bs_new);
4ddc07ca
PB
2054 bdrv_rebind(bs_old);
2055}
2056
2057/*
2058 * Add new bs contents at the top of an image chain while the chain is
2059 * live, while keeping required fields on the top layer.
2060 *
2061 * This will modify the BlockDriverState fields, and swap contents
2062 * between bs_new and bs_top. Both bs_new and bs_top are modified.
2063 *
2064 * bs_new is required to be anonymous.
2065 *
2066 * This function does not create any image files.
2067 */
2068void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top)
2069{
2070 bdrv_swap(bs_new, bs_top);
2071
2072 /* The contents of 'tmp' will become bs_top, as we are
2073 * swapping bs_new and bs_top contents. */
8d24cce1 2074 bdrv_set_backing_hd(bs_top, bs_new);
8802d1fd
JC
2075}
2076
4f6fd349 2077static void bdrv_delete(BlockDriverState *bs)
b338082b 2078{
fa879d62 2079 assert(!bs->dev);
3e914655 2080 assert(!bs->job);
3718d8ab 2081 assert(bdrv_op_blocker_is_empty(bs));
4f6fd349 2082 assert(!bs->refcnt);
e4654d2d 2083 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
18846dee 2084
e1b5c52e
SH
2085 bdrv_close(bs);
2086
1b7bdbc1 2087 /* remove from list, if necessary */
d22b2f41 2088 bdrv_make_anon(bs);
34c6f050 2089
7267c094 2090 g_free(bs);
fc01f7e7
FB
2091}
2092
fa879d62
MA
2093int bdrv_attach_dev(BlockDriverState *bs, void *dev)
2094/* TODO change to DeviceState *dev when all users are qdevified */
18846dee 2095{
fa879d62 2096 if (bs->dev) {
18846dee
MA
2097 return -EBUSY;
2098 }
fa879d62 2099 bs->dev = dev;
28a7282a 2100 bdrv_iostatus_reset(bs);
18846dee
MA
2101 return 0;
2102}
2103
fa879d62
MA
2104/* TODO qdevified devices don't use this, remove when devices are qdevified */
2105void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
18846dee 2106{
fa879d62
MA
2107 if (bdrv_attach_dev(bs, dev) < 0) {
2108 abort();
2109 }
2110}
2111
2112void bdrv_detach_dev(BlockDriverState *bs, void *dev)
2113/* TODO change to DeviceState *dev when all users are qdevified */
2114{
2115 assert(bs->dev == dev);
2116 bs->dev = NULL;
0e49de52
MA
2117 bs->dev_ops = NULL;
2118 bs->dev_opaque = NULL;
1b7fd729 2119 bs->guest_block_size = 512;
18846dee
MA
2120}
2121
fa879d62
MA
2122/* TODO change to return DeviceState * when all users are qdevified */
2123void *bdrv_get_attached_dev(BlockDriverState *bs)
18846dee 2124{
fa879d62 2125 return bs->dev;
18846dee
MA
2126}
2127
0e49de52
MA
2128void bdrv_set_dev_ops(BlockDriverState *bs, const BlockDevOps *ops,
2129 void *opaque)
2130{
2131 bs->dev_ops = ops;
2132 bs->dev_opaque = opaque;
2133}
2134
7d4b4ba5 2135static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
0e49de52 2136{
145feb17 2137 if (bs->dev_ops && bs->dev_ops->change_media_cb) {
6f382ed2 2138 bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
7d4b4ba5 2139 bs->dev_ops->change_media_cb(bs->dev_opaque, load);
6f382ed2
LC
2140 if (tray_was_closed) {
2141 /* tray open */
a5ee7bd4
WX
2142 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
2143 true, &error_abort);
6f382ed2
LC
2144 }
2145 if (load) {
2146 /* tray close */
a5ee7bd4
WX
2147 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
2148 false, &error_abort);
6f382ed2 2149 }
145feb17
MA
2150 }
2151}
2152
2c6942fa
MA
2153bool bdrv_dev_has_removable_media(BlockDriverState *bs)
2154{
2155 return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
2156}
2157
025ccaa7
PB
2158void bdrv_dev_eject_request(BlockDriverState *bs, bool force)
2159{
2160 if (bs->dev_ops && bs->dev_ops->eject_request_cb) {
2161 bs->dev_ops->eject_request_cb(bs->dev_opaque, force);
2162 }
2163}
2164
e4def80b
MA
2165bool bdrv_dev_is_tray_open(BlockDriverState *bs)
2166{
2167 if (bs->dev_ops && bs->dev_ops->is_tray_open) {
2168 return bs->dev_ops->is_tray_open(bs->dev_opaque);
2169 }
2170 return false;
2171}
2172
145feb17
MA
2173static void bdrv_dev_resize_cb(BlockDriverState *bs)
2174{
2175 if (bs->dev_ops && bs->dev_ops->resize_cb) {
2176 bs->dev_ops->resize_cb(bs->dev_opaque);
0e49de52
MA
2177 }
2178}
2179
f107639a
MA
2180bool bdrv_dev_is_medium_locked(BlockDriverState *bs)
2181{
2182 if (bs->dev_ops && bs->dev_ops->is_medium_locked) {
2183 return bs->dev_ops->is_medium_locked(bs->dev_opaque);
2184 }
2185 return false;
2186}
2187
e97fc193
AL
2188/*
2189 * Run consistency checks on an image
2190 *
e076f338 2191 * Returns 0 if the check could be completed (it doesn't mean that the image is
a1c7273b 2192 * free of errors) or -errno when an internal error occurred. The results of the
e076f338 2193 * check are stored in res.
e97fc193 2194 */
4534ff54 2195int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
e97fc193
AL
2196{
2197 if (bs->drv->bdrv_check == NULL) {
2198 return -ENOTSUP;
2199 }
2200
e076f338 2201 memset(res, 0, sizeof(*res));
4534ff54 2202 return bs->drv->bdrv_check(bs, res, fix);
e97fc193
AL
2203}
2204
8a426614
KW
2205#define COMMIT_BUF_SECTORS 2048
2206
33e3963e
FB
2207/* commit COW file into the raw image */
2208int bdrv_commit(BlockDriverState *bs)
2209{
19cb3738 2210 BlockDriver *drv = bs->drv;
72706ea4 2211 int64_t sector, total_sectors, length, backing_length;
8a426614 2212 int n, ro, open_flags;
0bce597d 2213 int ret = 0;
72706ea4 2214 uint8_t *buf = NULL;
c2cba3d9 2215 char filename[PATH_MAX];
33e3963e 2216
19cb3738
FB
2217 if (!drv)
2218 return -ENOMEDIUM;
4dca4b63
NS
2219
2220 if (!bs->backing_hd) {
2221 return -ENOTSUP;
33e3963e
FB
2222 }
2223
3718d8ab
FZ
2224 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_COMMIT, NULL) ||
2225 bdrv_op_is_blocked(bs->backing_hd, BLOCK_OP_TYPE_COMMIT, NULL)) {
2d3735d3
SH
2226 return -EBUSY;
2227 }
2228
4dca4b63 2229 ro = bs->backing_hd->read_only;
c2cba3d9
JM
2230 /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
2231 pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
4dca4b63
NS
2232 open_flags = bs->backing_hd->open_flags;
2233
2234 if (ro) {
0bce597d
JC
2235 if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
2236 return -EACCES;
4dca4b63 2237 }
ea2384d3 2238 }
33e3963e 2239
72706ea4
JC
2240 length = bdrv_getlength(bs);
2241 if (length < 0) {
2242 ret = length;
2243 goto ro_cleanup;
2244 }
2245
2246 backing_length = bdrv_getlength(bs->backing_hd);
2247 if (backing_length < 0) {
2248 ret = backing_length;
2249 goto ro_cleanup;
2250 }
2251
2252 /* If our top snapshot is larger than the backing file image,
2253 * grow the backing file image if possible. If not possible,
2254 * we must return an error */
2255 if (length > backing_length) {
2256 ret = bdrv_truncate(bs->backing_hd, length);
2257 if (ret < 0) {
2258 goto ro_cleanup;
2259 }
2260 }
2261
2262 total_sectors = length >> BDRV_SECTOR_BITS;
7267c094 2263 buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
8a426614
KW
2264
2265 for (sector = 0; sector < total_sectors; sector += n) {
d663640c
PB
2266 ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n);
2267 if (ret < 0) {
2268 goto ro_cleanup;
2269 }
2270 if (ret) {
dabfa6cc
KW
2271 ret = bdrv_read(bs, sector, buf, n);
2272 if (ret < 0) {
8a426614
KW
2273 goto ro_cleanup;
2274 }
2275
dabfa6cc
KW
2276 ret = bdrv_write(bs->backing_hd, sector, buf, n);
2277 if (ret < 0) {
8a426614
KW
2278 goto ro_cleanup;
2279 }
ea2384d3 2280 }
33e3963e 2281 }
95389c86 2282
1d44952f
CH
2283 if (drv->bdrv_make_empty) {
2284 ret = drv->bdrv_make_empty(bs);
dabfa6cc
KW
2285 if (ret < 0) {
2286 goto ro_cleanup;
2287 }
1d44952f
CH
2288 bdrv_flush(bs);
2289 }
95389c86 2290
3f5075ae
CH
2291 /*
2292 * Make sure all data we wrote to the backing device is actually
2293 * stable on disk.
2294 */
dabfa6cc 2295 if (bs->backing_hd) {
3f5075ae 2296 bdrv_flush(bs->backing_hd);
dabfa6cc 2297 }
4dca4b63 2298
dabfa6cc 2299 ret = 0;
4dca4b63 2300ro_cleanup:
7267c094 2301 g_free(buf);
4dca4b63
NS
2302
2303 if (ro) {
0bce597d
JC
2304 /* ignoring error return here */
2305 bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
4dca4b63
NS
2306 }
2307
1d44952f 2308 return ret;
33e3963e
FB
2309}
2310
e8877497 2311int bdrv_commit_all(void)
6ab4b5ab
MA
2312{
2313 BlockDriverState *bs;
2314
dc364f4c 2315 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
ed78cda3
SH
2316 AioContext *aio_context = bdrv_get_aio_context(bs);
2317
2318 aio_context_acquire(aio_context);
272d2d8e
JC
2319 if (bs->drv && bs->backing_hd) {
2320 int ret = bdrv_commit(bs);
2321 if (ret < 0) {
ed78cda3 2322 aio_context_release(aio_context);
272d2d8e
JC
2323 return ret;
2324 }
e8877497 2325 }
ed78cda3 2326 aio_context_release(aio_context);
6ab4b5ab 2327 }
e8877497 2328 return 0;
6ab4b5ab
MA
2329}
2330
dbffbdcf
SH
2331/**
2332 * Remove an active request from the tracked requests list
2333 *
2334 * This function should be called when a tracked request is completing.
2335 */
2336static void tracked_request_end(BdrvTrackedRequest *req)
2337{
2dbafdc0
KW
2338 if (req->serialising) {
2339 req->bs->serialising_in_flight--;
2340 }
2341
dbffbdcf 2342 QLIST_REMOVE(req, list);
f4658285 2343 qemu_co_queue_restart_all(&req->wait_queue);
dbffbdcf
SH
2344}
2345
2346/**
2347 * Add an active request to the tracked requests list
2348 */
2349static void tracked_request_begin(BdrvTrackedRequest *req,
2350 BlockDriverState *bs,
793ed47a
KW
2351 int64_t offset,
2352 unsigned int bytes, bool is_write)
dbffbdcf
SH
2353{
2354 *req = (BdrvTrackedRequest){
2355 .bs = bs,
2dbafdc0
KW
2356 .offset = offset,
2357 .bytes = bytes,
2358 .is_write = is_write,
2359 .co = qemu_coroutine_self(),
2360 .serialising = false,
7327145f
KW
2361 .overlap_offset = offset,
2362 .overlap_bytes = bytes,
dbffbdcf
SH
2363 };
2364
f4658285
SH
2365 qemu_co_queue_init(&req->wait_queue);
2366
dbffbdcf
SH
2367 QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
2368}
2369
e96126ff 2370static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
2dbafdc0 2371{
7327145f 2372 int64_t overlap_offset = req->offset & ~(align - 1);
e96126ff
KW
2373 unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
2374 - overlap_offset;
7327145f 2375
2dbafdc0
KW
2376 if (!req->serialising) {
2377 req->bs->serialising_in_flight++;
2378 req->serialising = true;
2379 }
7327145f
KW
2380
2381 req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
2382 req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
2dbafdc0
KW
2383}
2384
d83947ac
SH
2385/**
2386 * Round a region to cluster boundaries
2387 */
343bded4
PB
2388void bdrv_round_to_clusters(BlockDriverState *bs,
2389 int64_t sector_num, int nb_sectors,
2390 int64_t *cluster_sector_num,
2391 int *cluster_nb_sectors)
d83947ac
SH
2392{
2393 BlockDriverInfo bdi;
2394
2395 if (bdrv_get_info(bs, &bdi) < 0 || bdi.cluster_size == 0) {
2396 *cluster_sector_num = sector_num;
2397 *cluster_nb_sectors = nb_sectors;
2398 } else {
2399 int64_t c = bdi.cluster_size / BDRV_SECTOR_SIZE;
2400 *cluster_sector_num = QEMU_ALIGN_DOWN(sector_num, c);
2401 *cluster_nb_sectors = QEMU_ALIGN_UP(sector_num - *cluster_sector_num +
2402 nb_sectors, c);
2403 }
2404}
2405
7327145f 2406static int bdrv_get_cluster_size(BlockDriverState *bs)
793ed47a
KW
2407{
2408 BlockDriverInfo bdi;
7327145f 2409 int ret;
793ed47a 2410
7327145f
KW
2411 ret = bdrv_get_info(bs, &bdi);
2412 if (ret < 0 || bdi.cluster_size == 0) {
2413 return bs->request_alignment;
793ed47a 2414 } else {
7327145f 2415 return bdi.cluster_size;
793ed47a
KW
2416 }
2417}
2418
f4658285 2419static bool tracked_request_overlaps(BdrvTrackedRequest *req,
793ed47a
KW
2420 int64_t offset, unsigned int bytes)
2421{
d83947ac 2422 /* aaaa bbbb */
7327145f 2423 if (offset >= req->overlap_offset + req->overlap_bytes) {
d83947ac
SH
2424 return false;
2425 }
2426 /* bbbb aaaa */
7327145f 2427 if (req->overlap_offset >= offset + bytes) {
d83947ac
SH
2428 return false;
2429 }
2430 return true;
f4658285
SH
2431}
2432
28de2dcd 2433static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
f4658285 2434{
2dbafdc0 2435 BlockDriverState *bs = self->bs;
f4658285
SH
2436 BdrvTrackedRequest *req;
2437 bool retry;
28de2dcd 2438 bool waited = false;
f4658285 2439
2dbafdc0 2440 if (!bs->serialising_in_flight) {
28de2dcd 2441 return false;
2dbafdc0
KW
2442 }
2443
f4658285
SH
2444 do {
2445 retry = false;
2446 QLIST_FOREACH(req, &bs->tracked_requests, list) {
2dbafdc0 2447 if (req == self || (!req->serialising && !self->serialising)) {
65afd211
KW
2448 continue;
2449 }
7327145f
KW
2450 if (tracked_request_overlaps(req, self->overlap_offset,
2451 self->overlap_bytes))
2452 {
5f8b6491
SH
2453 /* Hitting this means there was a reentrant request, for
2454 * example, a block driver issuing nested requests. This must
2455 * never happen since it means deadlock.
2456 */
2457 assert(qemu_coroutine_self() != req->co);
2458
6460440f
KW
2459 /* If the request is already (indirectly) waiting for us, or
2460 * will wait for us as soon as it wakes up, then just go on
2461 * (instead of producing a deadlock in the former case). */
2462 if (!req->waiting_for) {
2463 self->waiting_for = req;
2464 qemu_co_queue_wait(&req->wait_queue);
2465 self->waiting_for = NULL;
2466 retry = true;
28de2dcd 2467 waited = true;
6460440f
KW
2468 break;
2469 }
f4658285
SH
2470 }
2471 }
2472 } while (retry);
28de2dcd
KW
2473
2474 return waited;
f4658285
SH
2475}
2476
756e6736
KW
2477/*
2478 * Return values:
2479 * 0 - success
2480 * -EINVAL - backing format specified, but no file
2481 * -ENOSPC - can't update the backing file because no space is left in the
2482 * image file header
2483 * -ENOTSUP - format driver doesn't support changing the backing file
2484 */
2485int bdrv_change_backing_file(BlockDriverState *bs,
2486 const char *backing_file, const char *backing_fmt)
2487{
2488 BlockDriver *drv = bs->drv;
469ef350 2489 int ret;
756e6736 2490
5f377794
PB
2491 /* Backing file format doesn't make sense without a backing file */
2492 if (backing_fmt && !backing_file) {
2493 return -EINVAL;
2494 }
2495
756e6736 2496 if (drv->bdrv_change_backing_file != NULL) {
469ef350 2497 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
756e6736 2498 } else {
469ef350 2499 ret = -ENOTSUP;
756e6736 2500 }
469ef350
PB
2501
2502 if (ret == 0) {
2503 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
2504 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
2505 }
2506 return ret;
756e6736
KW
2507}
2508
6ebdcee2
JC
2509/*
2510 * Finds the image layer in the chain that has 'bs' as its backing file.
2511 *
2512 * active is the current topmost image.
2513 *
2514 * Returns NULL if bs is not found in active's image chain,
2515 * or if active == bs.
2516 */
2517BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
2518 BlockDriverState *bs)
2519{
2520 BlockDriverState *overlay = NULL;
2521 BlockDriverState *intermediate;
2522
2523 assert(active != NULL);
2524 assert(bs != NULL);
2525
2526 /* if bs is the same as active, then by definition it has no overlay
2527 */
2528 if (active == bs) {
2529 return NULL;
2530 }
2531
2532 intermediate = active;
2533 while (intermediate->backing_hd) {
2534 if (intermediate->backing_hd == bs) {
2535 overlay = intermediate;
2536 break;
2537 }
2538 intermediate = intermediate->backing_hd;
2539 }
2540
2541 return overlay;
2542}
2543
2544typedef struct BlkIntermediateStates {
2545 BlockDriverState *bs;
2546 QSIMPLEQ_ENTRY(BlkIntermediateStates) entry;
2547} BlkIntermediateStates;
2548
2549
2550/*
2551 * Drops images above 'base' up to and including 'top', and sets the image
2552 * above 'top' to have base as its backing file.
2553 *
2554 * Requires that the overlay to 'top' is opened r/w, so that the backing file
2555 * information in 'bs' can be properly updated.
2556 *
2557 * E.g., this will convert the following chain:
2558 * bottom <- base <- intermediate <- top <- active
2559 *
2560 * to
2561 *
2562 * bottom <- base <- active
2563 *
2564 * It is allowed for bottom==base, in which case it converts:
2565 *
2566 * base <- intermediate <- top <- active
2567 *
2568 * to
2569 *
2570 * base <- active
2571 *
2572 * Error conditions:
2573 * if active == top, that is considered an error
2574 *
2575 */
2576int bdrv_drop_intermediate(BlockDriverState *active, BlockDriverState *top,
2577 BlockDriverState *base)
2578{
2579 BlockDriverState *intermediate;
2580 BlockDriverState *base_bs = NULL;
2581 BlockDriverState *new_top_bs = NULL;
2582 BlkIntermediateStates *intermediate_state, *next;
2583 int ret = -EIO;
2584
2585 QSIMPLEQ_HEAD(states_to_delete, BlkIntermediateStates) states_to_delete;
2586 QSIMPLEQ_INIT(&states_to_delete);
2587
2588 if (!top->drv || !base->drv) {
2589 goto exit;
2590 }
2591
2592 new_top_bs = bdrv_find_overlay(active, top);
2593
2594 if (new_top_bs == NULL) {
2595 /* we could not find the image above 'top', this is an error */
2596 goto exit;
2597 }
2598
2599 /* special case of new_top_bs->backing_hd already pointing to base - nothing
2600 * to do, no intermediate images */
2601 if (new_top_bs->backing_hd == base) {
2602 ret = 0;
2603 goto exit;
2604 }
2605
2606 intermediate = top;
2607
2608 /* now we will go down through the list, and add each BDS we find
2609 * into our deletion queue, until we hit the 'base'
2610 */
2611 while (intermediate) {
2612 intermediate_state = g_malloc0(sizeof(BlkIntermediateStates));
2613 intermediate_state->bs = intermediate;
2614 QSIMPLEQ_INSERT_TAIL(&states_to_delete, intermediate_state, entry);
2615
2616 if (intermediate->backing_hd == base) {
2617 base_bs = intermediate->backing_hd;
2618 break;
2619 }
2620 intermediate = intermediate->backing_hd;
2621 }
2622 if (base_bs == NULL) {
2623 /* something went wrong, we did not end at the base. safely
2624 * unravel everything, and exit with error */
2625 goto exit;
2626 }
2627
2628 /* success - we can delete the intermediate states, and link top->base */
2629 ret = bdrv_change_backing_file(new_top_bs, base_bs->filename,
2630 base_bs->drv ? base_bs->drv->format_name : "");
2631 if (ret) {
2632 goto exit;
2633 }
920beae1 2634 bdrv_set_backing_hd(new_top_bs, base_bs);
6ebdcee2
JC
2635
2636 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2637 /* so that bdrv_close() does not recursively close the chain */
920beae1 2638 bdrv_set_backing_hd(intermediate_state->bs, NULL);
4f6fd349 2639 bdrv_unref(intermediate_state->bs);
6ebdcee2
JC
2640 }
2641 ret = 0;
2642
2643exit:
2644 QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2645 g_free(intermediate_state);
2646 }
2647 return ret;
2648}
2649
2650
71d0770c
AL
2651static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
2652 size_t size)
2653{
2654 int64_t len;
2655
1dd3a447
KW
2656 if (size > INT_MAX) {
2657 return -EIO;
2658 }
2659
71d0770c
AL
2660 if (!bdrv_is_inserted(bs))
2661 return -ENOMEDIUM;
2662
2663 if (bs->growable)
2664 return 0;
2665
2666 len = bdrv_getlength(bs);
2667
fbb7b4e0
KW
2668 if (offset < 0)
2669 return -EIO;
2670
2671 if ((offset > len) || (len - offset < size))
71d0770c
AL
2672 return -EIO;
2673
2674 return 0;
2675}
2676
2677static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
2678 int nb_sectors)
2679{
54db38a4 2680 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
8f4754ed
KW
2681 return -EIO;
2682 }
2683
eb5a3165
JS
2684 return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
2685 nb_sectors * BDRV_SECTOR_SIZE);
71d0770c
AL
2686}
2687
1c9805a3
SH
2688typedef struct RwCo {
2689 BlockDriverState *bs;
775aa8b6 2690 int64_t offset;
1c9805a3
SH
2691 QEMUIOVector *qiov;
2692 bool is_write;
2693 int ret;
4105eaaa 2694 BdrvRequestFlags flags;
1c9805a3
SH
2695} RwCo;
2696
2697static void coroutine_fn bdrv_rw_co_entry(void *opaque)
fc01f7e7 2698{
1c9805a3 2699 RwCo *rwco = opaque;
ea2384d3 2700
1c9805a3 2701 if (!rwco->is_write) {
775aa8b6
KW
2702 rwco->ret = bdrv_co_do_preadv(rwco->bs, rwco->offset,
2703 rwco->qiov->size, rwco->qiov,
4105eaaa 2704 rwco->flags);
775aa8b6
KW
2705 } else {
2706 rwco->ret = bdrv_co_do_pwritev(rwco->bs, rwco->offset,
2707 rwco->qiov->size, rwco->qiov,
2708 rwco->flags);
1c9805a3
SH
2709 }
2710}
e7a8a783 2711
1c9805a3 2712/*
8d3b1a2d 2713 * Process a vectored synchronous request using coroutines
1c9805a3 2714 */
775aa8b6
KW
2715static int bdrv_prwv_co(BlockDriverState *bs, int64_t offset,
2716 QEMUIOVector *qiov, bool is_write,
2717 BdrvRequestFlags flags)
1c9805a3 2718{
1c9805a3
SH
2719 Coroutine *co;
2720 RwCo rwco = {
2721 .bs = bs,
775aa8b6 2722 .offset = offset,
8d3b1a2d 2723 .qiov = qiov,
1c9805a3
SH
2724 .is_write = is_write,
2725 .ret = NOT_DONE,
4105eaaa 2726 .flags = flags,
1c9805a3 2727 };
e7a8a783 2728
498e386c
ZYW
2729 /**
2730 * In sync call context, when the vcpu is blocked, this throttling timer
2731 * will not fire; so the I/O throttling function has to be disabled here
2732 * if it has been enabled.
2733 */
2734 if (bs->io_limits_enabled) {
2735 fprintf(stderr, "Disabling I/O throttling on '%s' due "
2736 "to synchronous I/O.\n", bdrv_get_device_name(bs));
2737 bdrv_io_limits_disable(bs);
2738 }
2739
1c9805a3
SH
2740 if (qemu_in_coroutine()) {
2741 /* Fast-path if already in coroutine context */
2742 bdrv_rw_co_entry(&rwco);
2743 } else {
2572b37a
SH
2744 AioContext *aio_context = bdrv_get_aio_context(bs);
2745
1c9805a3
SH
2746 co = qemu_coroutine_create(bdrv_rw_co_entry);
2747 qemu_coroutine_enter(co, &rwco);
2748 while (rwco.ret == NOT_DONE) {
2572b37a 2749 aio_poll(aio_context, true);
1c9805a3
SH
2750 }
2751 }
2752 return rwco.ret;
2753}
b338082b 2754
8d3b1a2d
KW
2755/*
2756 * Process a synchronous request using coroutines
2757 */
2758static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
4105eaaa 2759 int nb_sectors, bool is_write, BdrvRequestFlags flags)
8d3b1a2d
KW
2760{
2761 QEMUIOVector qiov;
2762 struct iovec iov = {
2763 .iov_base = (void *)buf,
2764 .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
2765 };
2766
da15ee51
KW
2767 if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2768 return -EINVAL;
2769 }
2770
8d3b1a2d 2771 qemu_iovec_init_external(&qiov, &iov, 1);
775aa8b6
KW
2772 return bdrv_prwv_co(bs, sector_num << BDRV_SECTOR_BITS,
2773 &qiov, is_write, flags);
8d3b1a2d
KW
2774}
2775
1c9805a3
SH
2776/* return < 0 if error. See bdrv_write() for the return codes */
2777int bdrv_read(BlockDriverState *bs, int64_t sector_num,
2778 uint8_t *buf, int nb_sectors)
2779{
4105eaaa 2780 return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0);
fc01f7e7
FB
2781}
2782
07d27a44
MA
2783/* Just like bdrv_read(), but with I/O throttling temporarily disabled */
2784int bdrv_read_unthrottled(BlockDriverState *bs, int64_t sector_num,
2785 uint8_t *buf, int nb_sectors)
2786{
2787 bool enabled;
2788 int ret;
2789
2790 enabled = bs->io_limits_enabled;
2791 bs->io_limits_enabled = false;
4e7395e8 2792 ret = bdrv_read(bs, sector_num, buf, nb_sectors);
07d27a44
MA
2793 bs->io_limits_enabled = enabled;
2794 return ret;
2795}
2796
5fafdf24 2797/* Return < 0 if error. Important errors are:
19cb3738
FB
2798 -EIO generic I/O error (may happen for all errors)
2799 -ENOMEDIUM No media inserted.
2800 -EINVAL Invalid sector number or nb_sectors
2801 -EACCES Trying to write a read-only device
2802*/
5fafdf24 2803int bdrv_write(BlockDriverState *bs, int64_t sector_num,
fc01f7e7
FB
2804 const uint8_t *buf, int nb_sectors)
2805{
4105eaaa 2806 return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
83f64091
FB
2807}
2808
aa7bfbff
PL
2809int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num,
2810 int nb_sectors, BdrvRequestFlags flags)
4105eaaa
PL
2811{
2812 return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true,
aa7bfbff 2813 BDRV_REQ_ZERO_WRITE | flags);
8d3b1a2d
KW
2814}
2815
d75cbb5e
PL
2816/*
2817 * Completely zero out a block device with the help of bdrv_write_zeroes.
2818 * The operation is sped up by checking the block status and only writing
2819 * zeroes to the device if they currently do not return zeroes. Optional
2820 * flags are passed through to bdrv_write_zeroes (e.g. BDRV_REQ_MAY_UNMAP).
2821 *
2822 * Returns < 0 on error, 0 on success. For error codes see bdrv_write().
2823 */
2824int bdrv_make_zero(BlockDriverState *bs, BdrvRequestFlags flags)
2825{
9ce10c0b 2826 int64_t target_size;
d75cbb5e
PL
2827 int64_t ret, nb_sectors, sector_num = 0;
2828 int n;
2829
9ce10c0b
KW
2830 target_size = bdrv_getlength(bs);
2831 if (target_size < 0) {
2832 return target_size;
2833 }
2834 target_size /= BDRV_SECTOR_SIZE;
2835
d75cbb5e
PL
2836 for (;;) {
2837 nb_sectors = target_size - sector_num;
2838 if (nb_sectors <= 0) {
2839 return 0;
2840 }
2841 if (nb_sectors > INT_MAX) {
2842 nb_sectors = INT_MAX;
2843 }
2844 ret = bdrv_get_block_status(bs, sector_num, nb_sectors, &n);
3d94ce60
PL
2845 if (ret < 0) {
2846 error_report("error getting block status at sector %" PRId64 ": %s",
2847 sector_num, strerror(-ret));
2848 return ret;
2849 }
d75cbb5e
PL
2850 if (ret & BDRV_BLOCK_ZERO) {
2851 sector_num += n;
2852 continue;
2853 }
2854 ret = bdrv_write_zeroes(bs, sector_num, n, flags);
2855 if (ret < 0) {
2856 error_report("error writing zeroes at sector %" PRId64 ": %s",
2857 sector_num, strerror(-ret));
2858 return ret;
2859 }
2860 sector_num += n;
2861 }
2862}
2863
a3ef6571 2864int bdrv_pread(BlockDriverState *bs, int64_t offset, void *buf, int bytes)
83f64091 2865{
a3ef6571
KW
2866 QEMUIOVector qiov;
2867 struct iovec iov = {
2868 .iov_base = (void *)buf,
2869 .iov_len = bytes,
2870 };
9a8c4cce 2871 int ret;
83f64091 2872
a3ef6571
KW
2873 if (bytes < 0) {
2874 return -EINVAL;
83f64091
FB
2875 }
2876
a3ef6571
KW
2877 qemu_iovec_init_external(&qiov, &iov, 1);
2878 ret = bdrv_prwv_co(bs, offset, &qiov, false, 0);
2879 if (ret < 0) {
2880 return ret;
83f64091 2881 }
a3ef6571
KW
2882
2883 return bytes;
83f64091
FB
2884}
2885
8d3b1a2d 2886int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov)
83f64091 2887{
9a8c4cce 2888 int ret;
83f64091 2889
8407d5d7
KW
2890 ret = bdrv_prwv_co(bs, offset, qiov, true, 0);
2891 if (ret < 0) {
2892 return ret;
83f64091
FB
2893 }
2894
8d3b1a2d
KW
2895 return qiov->size;
2896}
2897
2898int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
8407d5d7 2899 const void *buf, int bytes)
8d3b1a2d
KW
2900{
2901 QEMUIOVector qiov;
2902 struct iovec iov = {
2903 .iov_base = (void *) buf,
8407d5d7 2904 .iov_len = bytes,
8d3b1a2d
KW
2905 };
2906
8407d5d7
KW
2907 if (bytes < 0) {
2908 return -EINVAL;
2909 }
2910
8d3b1a2d
KW
2911 qemu_iovec_init_external(&qiov, &iov, 1);
2912 return bdrv_pwritev(bs, offset, &qiov);
83f64091 2913}
83f64091 2914
f08145fe
KW
2915/*
2916 * Writes to the file and ensures that no writes are reordered across this
2917 * request (acts as a barrier)
2918 *
2919 * Returns 0 on success, -errno in error cases.
2920 */
2921int bdrv_pwrite_sync(BlockDriverState *bs, int64_t offset,
2922 const void *buf, int count)
2923{
2924 int ret;
2925
2926 ret = bdrv_pwrite(bs, offset, buf, count);
2927 if (ret < 0) {
2928 return ret;
2929 }
2930
f05fa4ad
PB
2931 /* No flush needed for cache modes that already do it */
2932 if (bs->enable_write_cache) {
f08145fe
KW
2933 bdrv_flush(bs);
2934 }
2935
2936 return 0;
2937}
2938
470c0504 2939static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
ab185921
SH
2940 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
2941{
2942 /* Perform I/O through a temporary buffer so that users who scribble over
2943 * their read buffer while the operation is in progress do not end up
2944 * modifying the image file. This is critical for zero-copy guest I/O
2945 * where anything might happen inside guest memory.
2946 */
2947 void *bounce_buffer;
2948
79c053bd 2949 BlockDriver *drv = bs->drv;
ab185921
SH
2950 struct iovec iov;
2951 QEMUIOVector bounce_qiov;
2952 int64_t cluster_sector_num;
2953 int cluster_nb_sectors;
2954 size_t skip_bytes;
2955 int ret;
2956
2957 /* Cover entire cluster so no additional backing file I/O is required when
2958 * allocating cluster in the image file.
2959 */
343bded4
PB
2960 bdrv_round_to_clusters(bs, sector_num, nb_sectors,
2961 &cluster_sector_num, &cluster_nb_sectors);
ab185921 2962
470c0504
SH
2963 trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2964 cluster_sector_num, cluster_nb_sectors);
ab185921
SH
2965
2966 iov.iov_len = cluster_nb_sectors * BDRV_SECTOR_SIZE;
2967 iov.iov_base = bounce_buffer = qemu_blockalign(bs, iov.iov_len);
2968 qemu_iovec_init_external(&bounce_qiov, &iov, 1);
2969
79c053bd
SH
2970 ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2971 &bounce_qiov);
ab185921
SH
2972 if (ret < 0) {
2973 goto err;
2974 }
2975
79c053bd
SH
2976 if (drv->bdrv_co_write_zeroes &&
2977 buffer_is_zero(bounce_buffer, iov.iov_len)) {
621f0589 2978 ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
aa7bfbff 2979 cluster_nb_sectors, 0);
79c053bd 2980 } else {
f05fa4ad
PB
2981 /* This does not change the data on the disk, it is not necessary
2982 * to flush even in cache=writethrough mode.
2983 */
79c053bd 2984 ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
ab185921 2985 &bounce_qiov);
79c053bd
SH
2986 }
2987
ab185921
SH
2988 if (ret < 0) {
2989 /* It might be okay to ignore write errors for guest requests. If this
2990 * is a deliberate copy-on-read then we don't want to ignore the error.
2991 * Simply report it in all cases.
2992 */
2993 goto err;
2994 }
2995
2996 skip_bytes = (sector_num - cluster_sector_num) * BDRV_SECTOR_SIZE;
03396148
MT
2997 qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2998 nb_sectors * BDRV_SECTOR_SIZE);
ab185921
SH
2999
3000err:
3001 qemu_vfree(bounce_buffer);
3002 return ret;
3003}
3004
c5fbe571 3005/*
d0c7f642
KW
3006 * Forwards an already correctly aligned request to the BlockDriver. This
3007 * handles copy on read and zeroing after EOF; any other features must be
3008 * implemented by the caller.
c5fbe571 3009 */
d0c7f642 3010static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs,
65afd211 3011 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
ec746e10 3012 int64_t align, QEMUIOVector *qiov, int flags)
da1fa91d
KW
3013{
3014 BlockDriver *drv = bs->drv;
dbffbdcf 3015 int ret;
da1fa91d 3016
d0c7f642
KW
3017 int64_t sector_num = offset >> BDRV_SECTOR_BITS;
3018 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
da1fa91d 3019
d0c7f642
KW
3020 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
3021 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
3022
3023 /* Handle Copy on Read and associated serialisation */
470c0504 3024 if (flags & BDRV_REQ_COPY_ON_READ) {
7327145f
KW
3025 /* If we touch the same cluster it counts as an overlap. This
3026 * guarantees that allocating writes will be serialized and not race
3027 * with each other for the same cluster. For example, in copy-on-read
3028 * it ensures that the CoR read and write operations are atomic and
3029 * guest writes cannot interleave between them. */
3030 mark_request_serialising(req, bdrv_get_cluster_size(bs));
470c0504
SH
3031 }
3032
2dbafdc0 3033 wait_serialising_requests(req);
f4658285 3034
470c0504 3035 if (flags & BDRV_REQ_COPY_ON_READ) {
ab185921
SH
3036 int pnum;
3037
bdad13b9 3038 ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum);
ab185921
SH
3039 if (ret < 0) {
3040 goto out;
3041 }
3042
3043 if (!ret || pnum != nb_sectors) {
470c0504 3044 ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
ab185921
SH
3045 goto out;
3046 }
3047 }
3048
d0c7f642 3049 /* Forward the request to the BlockDriver */
893a8f62
MK
3050 if (!(bs->zero_beyond_eof && bs->growable)) {
3051 ret = drv->bdrv_co_readv(bs, sector_num, nb_sectors, qiov);
3052 } else {
3053 /* Read zeros after EOF of growable BDSes */
3054 int64_t len, total_sectors, max_nb_sectors;
3055
3056 len = bdrv_getlength(bs);
3057 if (len < 0) {
3058 ret = len;
3059 goto out;
3060 }
3061
d055a1fe 3062 total_sectors = DIV_ROUND_UP(len, BDRV_SECTOR_SIZE);
5f5bcd80
KW
3063 max_nb_sectors = ROUND_UP(MAX(0, total_sectors - sector_num),
3064 align >> BDRV_SECTOR_BITS);
893a8f62
MK
3065 if (max_nb_sectors > 0) {
3066 ret = drv->bdrv_co_readv(bs, sector_num,
3067 MIN(nb_sectors, max_nb_sectors), qiov);
3068 } else {
3069 ret = 0;
3070 }
3071
3072 /* Reading beyond end of file is supposed to produce zeroes */
3073 if (ret == 0 && total_sectors < sector_num + nb_sectors) {
3074 uint64_t offset = MAX(0, total_sectors - sector_num);
3075 uint64_t bytes = (sector_num + nb_sectors - offset) *
3076 BDRV_SECTOR_SIZE;
3077 qemu_iovec_memset(qiov, offset * BDRV_SECTOR_SIZE, 0, bytes);
3078 }
3079 }
ab185921
SH
3080
3081out:
dbffbdcf 3082 return ret;
da1fa91d
KW
3083}
3084
d0c7f642
KW
3085/*
3086 * Handle a read request in coroutine context
3087 */
1b0288ae
KW
3088static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
3089 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
d0c7f642
KW
3090 BdrvRequestFlags flags)
3091{
3092 BlockDriver *drv = bs->drv;
65afd211
KW
3093 BdrvTrackedRequest req;
3094
1b0288ae
KW
3095 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */
3096 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment);
3097 uint8_t *head_buf = NULL;
3098 uint8_t *tail_buf = NULL;
3099 QEMUIOVector local_qiov;
3100 bool use_local_qiov = false;
d0c7f642
KW
3101 int ret;
3102
3103 if (!drv) {
3104 return -ENOMEDIUM;
3105 }
1b0288ae 3106 if (bdrv_check_byte_request(bs, offset, bytes)) {
d0c7f642
KW
3107 return -EIO;
3108 }
3109
3110 if (bs->copy_on_read) {
3111 flags |= BDRV_REQ_COPY_ON_READ;
3112 }
3113
3114 /* throttling disk I/O */
3115 if (bs->io_limits_enabled) {
d5103588 3116 bdrv_io_limits_intercept(bs, bytes, false);
1b0288ae
KW
3117 }
3118
3119 /* Align read if necessary by padding qiov */
3120 if (offset & (align - 1)) {
3121 head_buf = qemu_blockalign(bs, align);
3122 qemu_iovec_init(&local_qiov, qiov->niov + 2);
3123 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
3124 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3125 use_local_qiov = true;
3126
3127 bytes += offset & (align - 1);
3128 offset = offset & ~(align - 1);
3129 }
3130
3131 if ((offset + bytes) & (align - 1)) {
3132 if (!use_local_qiov) {
3133 qemu_iovec_init(&local_qiov, qiov->niov + 1);
3134 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3135 use_local_qiov = true;
3136 }
3137 tail_buf = qemu_blockalign(bs, align);
3138 qemu_iovec_add(&local_qiov, tail_buf,
3139 align - ((offset + bytes) & (align - 1)));
3140
3141 bytes = ROUND_UP(bytes, align);
3142 }
3143
65afd211 3144 tracked_request_begin(&req, bs, offset, bytes, false);
ec746e10 3145 ret = bdrv_aligned_preadv(bs, &req, offset, bytes, align,
1b0288ae
KW
3146 use_local_qiov ? &local_qiov : qiov,
3147 flags);
65afd211 3148 tracked_request_end(&req);
1b0288ae
KW
3149
3150 if (use_local_qiov) {
3151 qemu_iovec_destroy(&local_qiov);
3152 qemu_vfree(head_buf);
3153 qemu_vfree(tail_buf);
d0c7f642
KW
3154 }
3155
d0c7f642
KW
3156 return ret;
3157}
3158
1b0288ae
KW
3159static int coroutine_fn bdrv_co_do_readv(BlockDriverState *bs,
3160 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
3161 BdrvRequestFlags flags)
3162{
3163 if (nb_sectors < 0 || nb_sectors > (UINT_MAX >> BDRV_SECTOR_BITS)) {
3164 return -EINVAL;
3165 }
3166
3167 return bdrv_co_do_preadv(bs, sector_num << BDRV_SECTOR_BITS,
3168 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
3169}
3170
c5fbe571 3171int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
da1fa91d
KW
3172 int nb_sectors, QEMUIOVector *qiov)
3173{
c5fbe571 3174 trace_bdrv_co_readv(bs, sector_num, nb_sectors);
da1fa91d 3175
470c0504
SH
3176 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
3177}
3178
3179int coroutine_fn bdrv_co_copy_on_readv(BlockDriverState *bs,
3180 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov)
3181{
3182 trace_bdrv_co_copy_on_readv(bs, sector_num, nb_sectors);
3183
3184 return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov,
3185 BDRV_REQ_COPY_ON_READ);
c5fbe571
SH
3186}
3187
c31cb707
PL
3188/* if no limit is specified in the BlockLimits use a default
3189 * of 32768 512-byte sectors (16 MiB) per request.
3190 */
3191#define MAX_WRITE_ZEROES_DEFAULT 32768
3192
f08f2dda 3193static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
aa7bfbff 3194 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
f08f2dda
SH
3195{
3196 BlockDriver *drv = bs->drv;
3197 QEMUIOVector qiov;
c31cb707
PL
3198 struct iovec iov = {0};
3199 int ret = 0;
f08f2dda 3200
c31cb707
PL
3201 int max_write_zeroes = bs->bl.max_write_zeroes ?
3202 bs->bl.max_write_zeroes : MAX_WRITE_ZEROES_DEFAULT;
621f0589 3203
c31cb707
PL
3204 while (nb_sectors > 0 && !ret) {
3205 int num = nb_sectors;
3206
b8d71c09
PB
3207 /* Align request. Block drivers can expect the "bulk" of the request
3208 * to be aligned.
3209 */
3210 if (bs->bl.write_zeroes_alignment
3211 && num > bs->bl.write_zeroes_alignment) {
3212 if (sector_num % bs->bl.write_zeroes_alignment != 0) {
3213 /* Make a small request up to the first aligned sector. */
c31cb707 3214 num = bs->bl.write_zeroes_alignment;
b8d71c09
PB
3215 num -= sector_num % bs->bl.write_zeroes_alignment;
3216 } else if ((sector_num + num) % bs->bl.write_zeroes_alignment != 0) {
3217 /* Shorten the request to the last aligned sector. num cannot
3218 * underflow because num > bs->bl.write_zeroes_alignment.
3219 */
3220 num -= (sector_num + num) % bs->bl.write_zeroes_alignment;
c31cb707 3221 }
621f0589 3222 }
f08f2dda 3223
c31cb707
PL
3224 /* limit request size */
3225 if (num > max_write_zeroes) {
3226 num = max_write_zeroes;
3227 }
3228
3229 ret = -ENOTSUP;
3230 /* First try the efficient write zeroes operation */
3231 if (drv->bdrv_co_write_zeroes) {
3232 ret = drv->bdrv_co_write_zeroes(bs, sector_num, num, flags);
3233 }
3234
3235 if (ret == -ENOTSUP) {
3236 /* Fall back to bounce buffer if write zeroes is unsupported */
3237 iov.iov_len = num * BDRV_SECTOR_SIZE;
3238 if (iov.iov_base == NULL) {
b8d71c09
PB
3239 iov.iov_base = qemu_blockalign(bs, num * BDRV_SECTOR_SIZE);
3240 memset(iov.iov_base, 0, num * BDRV_SECTOR_SIZE);
c31cb707
PL
3241 }
3242 qemu_iovec_init_external(&qiov, &iov, 1);
f08f2dda 3243
c31cb707 3244 ret = drv->bdrv_co_writev(bs, sector_num, num, &qiov);
b8d71c09
PB
3245
3246 /* Keep bounce buffer around if it is big enough for all
3247 * all future requests.
3248 */
3249 if (num < max_write_zeroes) {
3250 qemu_vfree(iov.iov_base);
3251 iov.iov_base = NULL;
3252 }
c31cb707
PL
3253 }
3254
3255 sector_num += num;
3256 nb_sectors -= num;
3257 }
f08f2dda
SH
3258
3259 qemu_vfree(iov.iov_base);
3260 return ret;
3261}
3262
c5fbe571 3263/*
b404f720 3264 * Forwards an already correctly aligned write request to the BlockDriver.
c5fbe571 3265 */
b404f720 3266static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs,
65afd211
KW
3267 BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
3268 QEMUIOVector *qiov, int flags)
c5fbe571
SH
3269{
3270 BlockDriver *drv = bs->drv;
28de2dcd 3271 bool waited;
6b7cb247 3272 int ret;
da1fa91d 3273
b404f720
KW
3274 int64_t sector_num = offset >> BDRV_SECTOR_BITS;
3275 unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
f4658285 3276
b404f720
KW
3277 assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
3278 assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
cc0681c4 3279
28de2dcd
KW
3280 waited = wait_serialising_requests(req);
3281 assert(!waited || !req->serialising);
af91f9a7
KW
3282 assert(req->overlap_offset <= offset);
3283 assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
244eadef 3284
65afd211 3285 ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);
d616b224 3286
465bee1d
PL
3287 if (!ret && bs->detect_zeroes != BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF &&
3288 !(flags & BDRV_REQ_ZERO_WRITE) && drv->bdrv_co_write_zeroes &&
3289 qemu_iovec_is_zero(qiov)) {
3290 flags |= BDRV_REQ_ZERO_WRITE;
3291 if (bs->detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP) {
3292 flags |= BDRV_REQ_MAY_UNMAP;
3293 }
3294 }
3295
d616b224
SH
3296 if (ret < 0) {
3297 /* Do nothing, write notifier decided to fail this request */
3298 } else if (flags & BDRV_REQ_ZERO_WRITE) {
9e1cb96d 3299 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_ZERO);
aa7bfbff 3300 ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors, flags);
f08f2dda 3301 } else {
9e1cb96d 3302 BLKDBG_EVENT(bs, BLKDBG_PWRITEV);
f08f2dda
SH
3303 ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
3304 }
9e1cb96d 3305 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_DONE);
6b7cb247 3306
f05fa4ad
PB
3307 if (ret == 0 && !bs->enable_write_cache) {
3308 ret = bdrv_co_flush(bs);
3309 }
3310
e4654d2d 3311 bdrv_set_dirty(bs, sector_num, nb_sectors);
da1fa91d
KW
3312
3313 if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
3314 bs->wr_highest_sector = sector_num + nb_sectors - 1;
3315 }
df2a6f29
PB
3316 if (bs->growable && ret >= 0) {
3317 bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors);
3318 }
da1fa91d 3319
6b7cb247 3320 return ret;
da1fa91d
KW
3321}
3322
b404f720
KW
3323/*
3324 * Handle a write request in coroutine context
3325 */
6601553e
KW
3326static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
3327 int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
b404f720
KW
3328 BdrvRequestFlags flags)
3329{
65afd211 3330 BdrvTrackedRequest req;
3b8242e0
KW
3331 /* TODO Lift BDRV_SECTOR_SIZE restriction in BlockDriver interface */
3332 uint64_t align = MAX(BDRV_SECTOR_SIZE, bs->request_alignment);
3333 uint8_t *head_buf = NULL;
3334 uint8_t *tail_buf = NULL;
3335 QEMUIOVector local_qiov;
3336 bool use_local_qiov = false;
b404f720
KW
3337 int ret;
3338
3339 if (!bs->drv) {
3340 return -ENOMEDIUM;
3341 }
3342 if (bs->read_only) {
3343 return -EACCES;
3344 }
6601553e 3345 if (bdrv_check_byte_request(bs, offset, bytes)) {
b404f720
KW
3346 return -EIO;
3347 }
3348
b404f720
KW
3349 /* throttling disk I/O */
3350 if (bs->io_limits_enabled) {
d5103588 3351 bdrv_io_limits_intercept(bs, bytes, true);
b404f720
KW
3352 }
3353
3b8242e0
KW
3354 /*
3355 * Align write if necessary by performing a read-modify-write cycle.
3356 * Pad qiov with the read parts and be sure to have a tracked request not
3357 * only for bdrv_aligned_pwritev, but also for the reads of the RMW cycle.
3358 */
65afd211 3359 tracked_request_begin(&req, bs, offset, bytes, true);
3b8242e0
KW
3360
3361 if (offset & (align - 1)) {
3362 QEMUIOVector head_qiov;
3363 struct iovec head_iov;
3364
3365 mark_request_serialising(&req, align);
3366 wait_serialising_requests(&req);
3367
3368 head_buf = qemu_blockalign(bs, align);
3369 head_iov = (struct iovec) {
3370 .iov_base = head_buf,
3371 .iov_len = align,
3372 };
3373 qemu_iovec_init_external(&head_qiov, &head_iov, 1);
3374
9e1cb96d 3375 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_HEAD);
3b8242e0
KW
3376 ret = bdrv_aligned_preadv(bs, &req, offset & ~(align - 1), align,
3377 align, &head_qiov, 0);
3378 if (ret < 0) {
3379 goto fail;
3380 }
9e1cb96d 3381 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
3b8242e0
KW
3382
3383 qemu_iovec_init(&local_qiov, qiov->niov + 2);
3384 qemu_iovec_add(&local_qiov, head_buf, offset & (align - 1));
3385 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3386 use_local_qiov = true;
3387
3388 bytes += offset & (align - 1);
3389 offset = offset & ~(align - 1);
3390 }
3391
3392 if ((offset + bytes) & (align - 1)) {
3393 QEMUIOVector tail_qiov;
3394 struct iovec tail_iov;
3395 size_t tail_bytes;
28de2dcd 3396 bool waited;
3b8242e0
KW
3397
3398 mark_request_serialising(&req, align);
28de2dcd
KW
3399 waited = wait_serialising_requests(&req);
3400 assert(!waited || !use_local_qiov);
3b8242e0
KW
3401
3402 tail_buf = qemu_blockalign(bs, align);
3403 tail_iov = (struct iovec) {
3404 .iov_base = tail_buf,
3405 .iov_len = align,
3406 };
3407 qemu_iovec_init_external(&tail_qiov, &tail_iov, 1);
3408
9e1cb96d 3409 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_TAIL);
3b8242e0
KW
3410 ret = bdrv_aligned_preadv(bs, &req, (offset + bytes) & ~(align - 1), align,
3411 align, &tail_qiov, 0);
3412 if (ret < 0) {
3413 goto fail;
3414 }
9e1cb96d 3415 BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
3b8242e0
KW
3416
3417 if (!use_local_qiov) {
3418 qemu_iovec_init(&local_qiov, qiov->niov + 1);
3419 qemu_iovec_concat(&local_qiov, qiov, 0, qiov->size);
3420 use_local_qiov = true;
3421 }
3422
3423 tail_bytes = (offset + bytes) & (align - 1);
3424 qemu_iovec_add(&local_qiov, tail_buf + tail_bytes, align - tail_bytes);
3425
3426 bytes = ROUND_UP(bytes, align);
3427 }
3428
3429 ret = bdrv_aligned_pwritev(bs, &req, offset, bytes,
3430 use_local_qiov ? &local_qiov : qiov,
3431 flags);
3432
3433fail:
65afd211 3434 tracked_request_end(&req);
b404f720 3435
3b8242e0
KW
3436 if (use_local_qiov) {
3437 qemu_iovec_destroy(&local_qiov);
3b8242e0 3438 }
99c4a85c
KW
3439 qemu_vfree(head_buf);
3440 qemu_vfree(tail_buf);
3b8242e0 3441
b404f720
KW
3442 return ret;
3443}
3444
6601553e
KW
3445static int coroutine_fn bdrv_co_do_writev(BlockDriverState *bs,
3446 int64_t sector_num, int nb_sectors, QEMUIOVector *qiov,
3447 BdrvRequestFlags flags)
3448{
3449 if (nb_sectors < 0 || nb_sectors > (INT_MAX >> BDRV_SECTOR_BITS)) {
3450 return -EINVAL;
3451 }
3452
3453 return bdrv_co_do_pwritev(bs, sector_num << BDRV_SECTOR_BITS,
3454 nb_sectors << BDRV_SECTOR_BITS, qiov, flags);
3455}
3456
c5fbe571
SH
3457int coroutine_fn bdrv_co_writev(BlockDriverState *bs, int64_t sector_num,
3458 int nb_sectors, QEMUIOVector *qiov)
3459{
3460 trace_bdrv_co_writev(bs, sector_num, nb_sectors);
3461
f08f2dda
SH
3462 return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
3463}
3464
3465int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
aa7bfbff
PL
3466 int64_t sector_num, int nb_sectors,
3467 BdrvRequestFlags flags)
f08f2dda 3468{
94d6ff21 3469 trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors, flags);
f08f2dda 3470
d32f35cb
PL
3471 if (!(bs->open_flags & BDRV_O_UNMAP)) {
3472 flags &= ~BDRV_REQ_MAY_UNMAP;
3473 }
3474
f08f2dda 3475 return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
aa7bfbff 3476 BDRV_REQ_ZERO_WRITE | flags);
c5fbe571
SH
3477}
3478
83f64091
FB
3479/**
3480 * Truncate file to 'offset' bytes (needed only for file protocols)
3481 */
3482int bdrv_truncate(BlockDriverState *bs, int64_t offset)
3483{
3484 BlockDriver *drv = bs->drv;
51762288 3485 int ret;
83f64091 3486 if (!drv)
19cb3738 3487 return -ENOMEDIUM;
83f64091
FB
3488 if (!drv->bdrv_truncate)
3489 return -ENOTSUP;
59f2689d
NS
3490 if (bs->read_only)
3491 return -EACCES;
3718d8ab 3492 if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) {
8591675f 3493 return -EBUSY;
3718d8ab 3494 }
51762288
SH
3495 ret = drv->bdrv_truncate(bs, offset);
3496 if (ret == 0) {
3497 ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
145feb17 3498 bdrv_dev_resize_cb(bs);
51762288
SH
3499 }
3500 return ret;
83f64091
FB
3501}
3502
4a1d5e1f
FZ
3503/**
3504 * Length of a allocated file in bytes. Sparse files are counted by actual
3505 * allocated space. Return < 0 if error or unknown.
3506 */
3507int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3508{
3509 BlockDriver *drv = bs->drv;
3510 if (!drv) {
3511 return -ENOMEDIUM;
3512 }
3513 if (drv->bdrv_get_allocated_file_size) {
3514 return drv->bdrv_get_allocated_file_size(bs);
3515 }
3516 if (bs->file) {
3517 return bdrv_get_allocated_file_size(bs->file);
3518 }
3519 return -ENOTSUP;
3520}
3521
83f64091
FB
3522/**
3523 * Length of a file in bytes. Return < 0 if error or unknown.
3524 */
3525int64_t bdrv_getlength(BlockDriverState *bs)
3526{
3527 BlockDriver *drv = bs->drv;
3528 if (!drv)
19cb3738 3529 return -ENOMEDIUM;
51762288 3530
b94a2610
KW
3531 if (drv->has_variable_length) {
3532 int ret = refresh_total_sectors(bs, bs->total_sectors);
3533 if (ret < 0) {
3534 return ret;
46a4e4e6 3535 }
83f64091 3536 }
46a4e4e6 3537 return bs->total_sectors * BDRV_SECTOR_SIZE;
fc01f7e7
FB
3538}
3539
19cb3738 3540/* return 0 as number of sectors if no device present or error */
96b8f136 3541void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
fc01f7e7 3542{
19cb3738
FB
3543 int64_t length;
3544 length = bdrv_getlength(bs);
3545 if (length < 0)
3546 length = 0;
3547 else
6ea44308 3548 length = length >> BDRV_SECTOR_BITS;
19cb3738 3549 *nb_sectors_ptr = length;
fc01f7e7 3550}
cf98951b 3551
ff06f5f3
PB
3552void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
3553 BlockdevOnError on_write_error)
abd7f68d
MA
3554{
3555 bs->on_read_error = on_read_error;
3556 bs->on_write_error = on_write_error;
3557}
3558
1ceee0d5 3559BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
abd7f68d
MA
3560{
3561 return is_read ? bs->on_read_error : bs->on_write_error;
3562}
3563
3e1caa5f
PB
3564BlockErrorAction bdrv_get_error_action(BlockDriverState *bs, bool is_read, int error)
3565{
3566 BlockdevOnError on_err = is_read ? bs->on_read_error : bs->on_write_error;
3567
3568 switch (on_err) {
3569 case BLOCKDEV_ON_ERROR_ENOSPC:
a589569f
WX
3570 return (error == ENOSPC) ?
3571 BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
3e1caa5f 3572 case BLOCKDEV_ON_ERROR_STOP:
a589569f 3573 return BLOCK_ERROR_ACTION_STOP;
3e1caa5f 3574 case BLOCKDEV_ON_ERROR_REPORT:
a589569f 3575 return BLOCK_ERROR_ACTION_REPORT;
3e1caa5f 3576 case BLOCKDEV_ON_ERROR_IGNORE:
a589569f 3577 return BLOCK_ERROR_ACTION_IGNORE;
3e1caa5f
PB
3578 default:
3579 abort();
3580 }
3581}
3582
3583/* This is done by device models because, while the block layer knows
3584 * about the error, it does not know whether an operation comes from
3585 * the device or the block layer (from a job, for example).
3586 */
3587void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
3588 bool is_read, int error)
3589{
3590 assert(error >= 0);
2bd3bce8 3591
a589569f 3592 if (action == BLOCK_ERROR_ACTION_STOP) {
2bd3bce8
PB
3593 /* First set the iostatus, so that "info block" returns an iostatus
3594 * that matches the events raised so far (an additional error iostatus
3595 * is fine, but not a lost one).
3596 */
3e1caa5f 3597 bdrv_iostatus_set_err(bs, error);
2bd3bce8
PB
3598
3599 /* Then raise the request to stop the VM and the event.
3600 * qemu_system_vmstop_request_prepare has two effects. First,
3601 * it ensures that the STOP event always comes after the
3602 * BLOCK_IO_ERROR event. Second, it ensures that even if management
3603 * can observe the STOP event and do a "cont" before the STOP
3604 * event is issued, the VM will not stop. In this case, vm_start()
3605 * also ensures that the STOP/RESUME pair of events is emitted.
3606 */
3607 qemu_system_vmstop_request_prepare();
5a2d2cbd
WX
3608 qapi_event_send_block_io_error(bdrv_get_device_name(bs),
3609 is_read ? IO_OPERATION_TYPE_READ :
3610 IO_OPERATION_TYPE_WRITE,
3611 action, &error_abort);
2bd3bce8
PB
3612 qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
3613 } else {
5a2d2cbd
WX
3614 qapi_event_send_block_io_error(bdrv_get_device_name(bs),
3615 is_read ? IO_OPERATION_TYPE_READ :
3616 IO_OPERATION_TYPE_WRITE,
3617 action, &error_abort);
3e1caa5f
PB
3618 }
3619}
3620
b338082b
FB
3621int bdrv_is_read_only(BlockDriverState *bs)
3622{
3623 return bs->read_only;
3624}
3625
985a03b0
TS
3626int bdrv_is_sg(BlockDriverState *bs)
3627{
3628 return bs->sg;
3629}
3630
e900a7b7
CH
3631int bdrv_enable_write_cache(BlockDriverState *bs)
3632{
3633 return bs->enable_write_cache;
3634}
3635
425b0148
PB
3636void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
3637{
3638 bs->enable_write_cache = wce;
55b110f2
JC
3639
3640 /* so a reopen() will preserve wce */
3641 if (wce) {
3642 bs->open_flags |= BDRV_O_CACHE_WB;
3643 } else {
3644 bs->open_flags &= ~BDRV_O_CACHE_WB;
3645 }
425b0148
PB
3646}
3647
ea2384d3
FB
3648int bdrv_is_encrypted(BlockDriverState *bs)
3649{
3650 if (bs->backing_hd && bs->backing_hd->encrypted)
3651 return 1;
3652 return bs->encrypted;
3653}
3654
c0f4ce77
AL
3655int bdrv_key_required(BlockDriverState *bs)
3656{
3657 BlockDriverState *backing_hd = bs->backing_hd;
3658
3659 if (backing_hd && backing_hd->encrypted && !backing_hd->valid_key)
3660 return 1;
3661 return (bs->encrypted && !bs->valid_key);
3662}
3663
ea2384d3
FB
3664int bdrv_set_key(BlockDriverState *bs, const char *key)
3665{
3666 int ret;
3667 if (bs->backing_hd && bs->backing_hd->encrypted) {
3668 ret = bdrv_set_key(bs->backing_hd, key);
3669 if (ret < 0)
3670 return ret;
3671 if (!bs->encrypted)
3672 return 0;
3673 }
fd04a2ae
SH
3674 if (!bs->encrypted) {
3675 return -EINVAL;
3676 } else if (!bs->drv || !bs->drv->bdrv_set_key) {
3677 return -ENOMEDIUM;
3678 }
c0f4ce77 3679 ret = bs->drv->bdrv_set_key(bs, key);
bb5fc20f
AL
3680 if (ret < 0) {
3681 bs->valid_key = 0;
3682 } else if (!bs->valid_key) {
3683 bs->valid_key = 1;
3684 /* call the change callback now, we skipped it on open */
7d4b4ba5 3685 bdrv_dev_change_media_cb(bs, true);
bb5fc20f 3686 }
c0f4ce77 3687 return ret;
ea2384d3
FB
3688}
3689
f8d6bba1 3690const char *bdrv_get_format_name(BlockDriverState *bs)
ea2384d3 3691{
f8d6bba1 3692 return bs->drv ? bs->drv->format_name : NULL;
ea2384d3
FB
3693}
3694
5fafdf24 3695void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
ea2384d3
FB
3696 void *opaque)
3697{
3698 BlockDriver *drv;
e855e4fb
JC
3699 int count = 0;
3700 const char **formats = NULL;
ea2384d3 3701
8a22f02a 3702 QLIST_FOREACH(drv, &bdrv_drivers, list) {
e855e4fb
JC
3703 if (drv->format_name) {
3704 bool found = false;
3705 int i = count;
3706 while (formats && i && !found) {
3707 found = !strcmp(formats[--i], drv->format_name);
3708 }
3709
3710 if (!found) {
3711 formats = g_realloc(formats, (count + 1) * sizeof(char *));
3712 formats[count++] = drv->format_name;
3713 it(opaque, drv->format_name);
3714 }
3715 }
ea2384d3 3716 }
e855e4fb 3717 g_free(formats);
ea2384d3
FB
3718}
3719
dc364f4c 3720/* This function is to find block backend bs */
b338082b
FB
3721BlockDriverState *bdrv_find(const char *name)
3722{
3723 BlockDriverState *bs;
3724
dc364f4c 3725 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
1b7bdbc1 3726 if (!strcmp(name, bs->device_name)) {
b338082b 3727 return bs;
1b7bdbc1 3728 }
b338082b
FB
3729 }
3730 return NULL;
3731}
3732
dc364f4c
BC
3733/* This function is to find a node in the bs graph */
3734BlockDriverState *bdrv_find_node(const char *node_name)
3735{
3736 BlockDriverState *bs;
3737
3738 assert(node_name);
3739
3740 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3741 if (!strcmp(node_name, bs->node_name)) {
3742 return bs;
3743 }
3744 }
3745 return NULL;
3746}
3747
c13163fb
BC
3748/* Put this QMP function here so it can access the static graph_bdrv_states. */
3749BlockDeviceInfoList *bdrv_named_nodes_list(void)
3750{
3751 BlockDeviceInfoList *list, *entry;
3752 BlockDriverState *bs;
3753
3754 list = NULL;
3755 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
3756 entry = g_malloc0(sizeof(*entry));
3757 entry->value = bdrv_block_device_info(bs);
3758 entry->next = list;
3759 list = entry;
3760 }
3761
3762 return list;
3763}
3764
12d3ba82
BC
3765BlockDriverState *bdrv_lookup_bs(const char *device,
3766 const char *node_name,
3767 Error **errp)
3768{
3769 BlockDriverState *bs = NULL;
3770
12d3ba82
BC
3771 if (device) {
3772 bs = bdrv_find(device);
3773
dd67fa50
BC
3774 if (bs) {
3775 return bs;
12d3ba82 3776 }
12d3ba82
BC
3777 }
3778
dd67fa50
BC
3779 if (node_name) {
3780 bs = bdrv_find_node(node_name);
12d3ba82 3781
dd67fa50
BC
3782 if (bs) {
3783 return bs;
3784 }
12d3ba82
BC
3785 }
3786
dd67fa50
BC
3787 error_setg(errp, "Cannot find device=%s nor node_name=%s",
3788 device ? device : "",
3789 node_name ? node_name : "");
3790 return NULL;
12d3ba82
BC
3791}
3792
2f399b0a
MA
3793BlockDriverState *bdrv_next(BlockDriverState *bs)
3794{
3795 if (!bs) {
3796 return QTAILQ_FIRST(&bdrv_states);
3797 }
dc364f4c 3798 return QTAILQ_NEXT(bs, device_list);
2f399b0a
MA
3799}
3800
51de9760 3801void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
81d0912d
FB
3802{
3803 BlockDriverState *bs;
3804
dc364f4c 3805 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
51de9760 3806 it(opaque, bs);
81d0912d
FB
3807 }
3808}
3809
ea2384d3
FB
3810const char *bdrv_get_device_name(BlockDriverState *bs)
3811{
3812 return bs->device_name;
3813}
3814
c8433287
MA
3815int bdrv_get_flags(BlockDriverState *bs)
3816{
3817 return bs->open_flags;
3818}
3819
f0f0fdfe 3820int bdrv_flush_all(void)
c6ca28d6
AL
3821{
3822 BlockDriverState *bs;
f0f0fdfe 3823 int result = 0;
c6ca28d6 3824
dc364f4c 3825 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
ed78cda3
SH
3826 AioContext *aio_context = bdrv_get_aio_context(bs);
3827 int ret;
3828
3829 aio_context_acquire(aio_context);
3830 ret = bdrv_flush(bs);
f0f0fdfe
KW
3831 if (ret < 0 && !result) {
3832 result = ret;
3833 }
ed78cda3 3834 aio_context_release(aio_context);
1b7bdbc1 3835 }
f0f0fdfe
KW
3836
3837 return result;
c6ca28d6
AL
3838}
3839
3ac21627
PL
3840int bdrv_has_zero_init_1(BlockDriverState *bs)
3841{
3842 return 1;
3843}
3844
f2feebbd
KW
3845int bdrv_has_zero_init(BlockDriverState *bs)
3846{
3847 assert(bs->drv);
3848
11212d8f
PB
3849 /* If BS is a copy on write image, it is initialized to
3850 the contents of the base image, which may not be zeroes. */
3851 if (bs->backing_hd) {
3852 return 0;
3853 }
336c1c12
KW
3854 if (bs->drv->bdrv_has_zero_init) {
3855 return bs->drv->bdrv_has_zero_init(bs);
f2feebbd
KW
3856 }
3857
3ac21627
PL
3858 /* safe default */
3859 return 0;
f2feebbd
KW
3860}
3861
4ce78691
PL
3862bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
3863{
3864 BlockDriverInfo bdi;
3865
3866 if (bs->backing_hd) {
3867 return false;
3868 }
3869
3870 if (bdrv_get_info(bs, &bdi) == 0) {
3871 return bdi.unallocated_blocks_are_zero;
3872 }
3873
3874 return false;
3875}
3876
3877bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
3878{
3879 BlockDriverInfo bdi;
3880
3881 if (bs->backing_hd || !(bs->open_flags & BDRV_O_UNMAP)) {
3882 return false;
3883 }
3884
3885 if (bdrv_get_info(bs, &bdi) == 0) {
3886 return bdi.can_write_zeroes_with_unmap;
3887 }
3888
3889 return false;
3890}
3891
b6b8a333 3892typedef struct BdrvCoGetBlockStatusData {
376ae3f1 3893 BlockDriverState *bs;
b35b2bba 3894 BlockDriverState *base;
376ae3f1
SH
3895 int64_t sector_num;
3896 int nb_sectors;
3897 int *pnum;
b6b8a333 3898 int64_t ret;
376ae3f1 3899 bool done;
b6b8a333 3900} BdrvCoGetBlockStatusData;
376ae3f1 3901
f58c7b35
TS
3902/*
3903 * Returns true iff the specified sector is present in the disk image. Drivers
3904 * not implementing the functionality are assumed to not support backing files,
3905 * hence all their sectors are reported as allocated.
3906 *
bd9533e3
SH
3907 * If 'sector_num' is beyond the end of the disk image the return value is 0
3908 * and 'pnum' is set to 0.
3909 *
f58c7b35
TS
3910 * 'pnum' is set to the number of sectors (including and immediately following
3911 * the specified sector) that are known to be in the same
3912 * allocated/unallocated state.
3913 *
bd9533e3
SH
3914 * 'nb_sectors' is the max value 'pnum' should be set to. If nb_sectors goes
3915 * beyond the end of the disk image it will be clamped.
f58c7b35 3916 */
b6b8a333
PB
3917static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
3918 int64_t sector_num,
3919 int nb_sectors, int *pnum)
f58c7b35 3920{
617ccb46 3921 int64_t length;
bd9533e3 3922 int64_t n;
5daa74a6 3923 int64_t ret, ret2;
bd9533e3 3924
617ccb46
PB
3925 length = bdrv_getlength(bs);
3926 if (length < 0) {
3927 return length;
3928 }
3929
3930 if (sector_num >= (length >> BDRV_SECTOR_BITS)) {
bd9533e3
SH
3931 *pnum = 0;
3932 return 0;
3933 }
3934
3935 n = bs->total_sectors - sector_num;
3936 if (n < nb_sectors) {
3937 nb_sectors = n;
3938 }
3939
b6b8a333 3940 if (!bs->drv->bdrv_co_get_block_status) {
bd9533e3 3941 *pnum = nb_sectors;
e88ae226 3942 ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
918e92d7
PB
3943 if (bs->drv->protocol_name) {
3944 ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
3945 }
3946 return ret;
f58c7b35 3947 }
6aebab14 3948
415b5b01
PB
3949 ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum);
3950 if (ret < 0) {
3e0a233d 3951 *pnum = 0;
415b5b01
PB
3952 return ret;
3953 }
3954
92bc50a5
PL
3955 if (ret & BDRV_BLOCK_RAW) {
3956 assert(ret & BDRV_BLOCK_OFFSET_VALID);
3957 return bdrv_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
3958 *pnum, pnum);
3959 }
3960
e88ae226
KW
3961 if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
3962 ret |= BDRV_BLOCK_ALLOCATED;
3963 }
3964
c3d86884
PL
3965 if (!(ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO)) {
3966 if (bdrv_unallocated_blocks_are_zero(bs)) {
f0ad5712 3967 ret |= BDRV_BLOCK_ZERO;
1f9db224 3968 } else if (bs->backing_hd) {
f0ad5712
PB
3969 BlockDriverState *bs2 = bs->backing_hd;
3970 int64_t length2 = bdrv_getlength(bs2);
3971 if (length2 >= 0 && sector_num >= (length2 >> BDRV_SECTOR_BITS)) {
3972 ret |= BDRV_BLOCK_ZERO;
3973 }
3974 }
415b5b01 3975 }
5daa74a6
PB
3976
3977 if (bs->file &&
3978 (ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO) &&
3979 (ret & BDRV_BLOCK_OFFSET_VALID)) {
3980 ret2 = bdrv_co_get_block_status(bs->file, ret >> BDRV_SECTOR_BITS,
3981 *pnum, pnum);
3982 if (ret2 >= 0) {
3983 /* Ignore errors. This is just providing extra information, it
3984 * is useful but not necessary.
3985 */
3986 ret |= (ret2 & BDRV_BLOCK_ZERO);
3987 }
3988 }
3989
415b5b01 3990 return ret;
060f51c9
SH
3991}
3992
b6b8a333
PB
3993/* Coroutine wrapper for bdrv_get_block_status() */
3994static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque)
060f51c9 3995{
b6b8a333 3996 BdrvCoGetBlockStatusData *data = opaque;
060f51c9
SH
3997 BlockDriverState *bs = data->bs;
3998
b6b8a333
PB
3999 data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors,
4000 data->pnum);
060f51c9
SH
4001 data->done = true;
4002}
4003
4004/*
b6b8a333 4005 * Synchronous wrapper around bdrv_co_get_block_status().
060f51c9 4006 *
b6b8a333 4007 * See bdrv_co_get_block_status() for details.
060f51c9 4008 */
b6b8a333
PB
4009int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num,
4010 int nb_sectors, int *pnum)
060f51c9 4011{
6aebab14 4012 Coroutine *co;
b6b8a333 4013 BdrvCoGetBlockStatusData data = {
6aebab14
SH
4014 .bs = bs,
4015 .sector_num = sector_num,
4016 .nb_sectors = nb_sectors,
4017 .pnum = pnum,
4018 .done = false,
4019 };
4020
bdad13b9
PB
4021 if (qemu_in_coroutine()) {
4022 /* Fast-path if already in coroutine context */
b6b8a333 4023 bdrv_get_block_status_co_entry(&data);
bdad13b9 4024 } else {
2572b37a
SH
4025 AioContext *aio_context = bdrv_get_aio_context(bs);
4026
b6b8a333 4027 co = qemu_coroutine_create(bdrv_get_block_status_co_entry);
bdad13b9
PB
4028 qemu_coroutine_enter(co, &data);
4029 while (!data.done) {
2572b37a 4030 aio_poll(aio_context, true);
bdad13b9 4031 }
6aebab14
SH
4032 }
4033 return data.ret;
f58c7b35
TS
4034}
4035
b6b8a333
PB
4036int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num,
4037 int nb_sectors, int *pnum)
4038{
4333bb71
PB
4039 int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum);
4040 if (ret < 0) {
4041 return ret;
4042 }
e88ae226 4043 return (ret & BDRV_BLOCK_ALLOCATED);
b6b8a333
PB
4044}
4045
188a7bbf
PB
4046/*
4047 * Given an image chain: ... -> [BASE] -> [INTER1] -> [INTER2] -> [TOP]
4048 *
4049 * Return true if the given sector is allocated in any image between
4050 * BASE and TOP (inclusive). BASE can be NULL to check if the given
4051 * sector is allocated in any image of the chain. Return false otherwise.
4052 *
4053 * 'pnum' is set to the number of sectors (including and immediately following
4054 * the specified sector) that are known to be in the same
4055 * allocated/unallocated state.
4056 *
4057 */
4f578637
PB
4058int bdrv_is_allocated_above(BlockDriverState *top,
4059 BlockDriverState *base,
4060 int64_t sector_num,
4061 int nb_sectors, int *pnum)
188a7bbf
PB
4062{
4063 BlockDriverState *intermediate;
4064 int ret, n = nb_sectors;
4065
4066 intermediate = top;
4067 while (intermediate && intermediate != base) {
4068 int pnum_inter;
bdad13b9
PB
4069 ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors,
4070 &pnum_inter);
188a7bbf
PB
4071 if (ret < 0) {
4072 return ret;
4073 } else if (ret) {
4074 *pnum = pnum_inter;
4075 return 1;
4076 }
4077
4078 /*
4079 * [sector_num, nb_sectors] is unallocated on top but intermediate
4080 * might have
4081 *
4082 * [sector_num+x, nr_sectors] allocated.
4083 */
63ba17d3
VI
4084 if (n > pnum_inter &&
4085 (intermediate == top ||
4086 sector_num + pnum_inter < intermediate->total_sectors)) {
188a7bbf
PB
4087 n = pnum_inter;
4088 }
4089
4090 intermediate = intermediate->backing_hd;
4091 }
4092
4093 *pnum = n;
4094 return 0;
4095}
4096
045df330
AL
4097const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4098{
4099 if (bs->backing_hd && bs->backing_hd->encrypted)
4100 return bs->backing_file;
4101 else if (bs->encrypted)
4102 return bs->filename;
4103 else
4104 return NULL;
4105}
4106
5fafdf24 4107void bdrv_get_backing_filename(BlockDriverState *bs,
83f64091
FB
4108 char *filename, int filename_size)
4109{
3574c608 4110 pstrcpy(filename, filename_size, bs->backing_file);
83f64091
FB
4111}
4112
5fafdf24 4113int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
faea38e7
FB
4114 const uint8_t *buf, int nb_sectors)
4115{
4116 BlockDriver *drv = bs->drv;
4117 if (!drv)
19cb3738 4118 return -ENOMEDIUM;
faea38e7
FB
4119 if (!drv->bdrv_write_compressed)
4120 return -ENOTSUP;
fbb7b4e0
KW
4121 if (bdrv_check_request(bs, sector_num, nb_sectors))
4122 return -EIO;
a55eb92c 4123
e4654d2d 4124 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
a55eb92c 4125
faea38e7
FB
4126 return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
4127}
3b46e624 4128
faea38e7
FB
4129int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4130{
4131 BlockDriver *drv = bs->drv;
4132 if (!drv)
19cb3738 4133 return -ENOMEDIUM;
faea38e7
FB
4134 if (!drv->bdrv_get_info)
4135 return -ENOTSUP;
4136 memset(bdi, 0, sizeof(*bdi));
4137 return drv->bdrv_get_info(bs, bdi);
4138}
4139
eae041fe
HR
4140ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4141{
4142 BlockDriver *drv = bs->drv;
4143 if (drv && drv->bdrv_get_specific_info) {
4144 return drv->bdrv_get_specific_info(bs);
4145 }
4146 return NULL;
4147}
4148
45566e9c
CH
4149int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
4150 int64_t pos, int size)
cf8074b3
KW
4151{
4152 QEMUIOVector qiov;
4153 struct iovec iov = {
4154 .iov_base = (void *) buf,
4155 .iov_len = size,
4156 };
4157
4158 qemu_iovec_init_external(&qiov, &iov, 1);
4159 return bdrv_writev_vmstate(bs, &qiov, pos);
4160}
4161
4162int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
178e08a5
AL
4163{
4164 BlockDriver *drv = bs->drv;
cf8074b3
KW
4165
4166 if (!drv) {
178e08a5 4167 return -ENOMEDIUM;
cf8074b3
KW
4168 } else if (drv->bdrv_save_vmstate) {
4169 return drv->bdrv_save_vmstate(bs, qiov, pos);
4170 } else if (bs->file) {
4171 return bdrv_writev_vmstate(bs->file, qiov, pos);
4172 }
4173
7cdb1f6d 4174 return -ENOTSUP;
178e08a5
AL
4175}
4176
45566e9c
CH
4177int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
4178 int64_t pos, int size)
178e08a5
AL
4179{
4180 BlockDriver *drv = bs->drv;
4181 if (!drv)
4182 return -ENOMEDIUM;
7cdb1f6d
MK
4183 if (drv->bdrv_load_vmstate)
4184 return drv->bdrv_load_vmstate(bs, buf, pos, size);
4185 if (bs->file)
4186 return bdrv_load_vmstate(bs->file, buf, pos, size);
4187 return -ENOTSUP;
178e08a5
AL
4188}
4189
8b9b0cc2
KW
4190void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
4191{
bf736fe3 4192 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
8b9b0cc2
KW
4193 return;
4194 }
4195
bf736fe3 4196 bs->drv->bdrv_debug_event(bs, event);
41c695c7
KW
4197}
4198
4199int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4200 const char *tag)
4201{
4202 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4203 bs = bs->file;
4204 }
4205
4206 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4207 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4208 }
4209
4210 return -ENOTSUP;
4211}
4212
4cc70e93
FZ
4213int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4214{
4215 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4216 bs = bs->file;
4217 }
4218
4219 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4220 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4221 }
4222
4223 return -ENOTSUP;
4224}
4225
41c695c7
KW
4226int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4227{
938789ea 4228 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
41c695c7
KW
4229 bs = bs->file;
4230 }
8b9b0cc2 4231
41c695c7
KW
4232 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4233 return bs->drv->bdrv_debug_resume(bs, tag);
4234 }
4235
4236 return -ENOTSUP;
4237}
4238
4239bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4240{
4241 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4242 bs = bs->file;
4243 }
4244
4245 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4246 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4247 }
4248
4249 return false;
8b9b0cc2
KW
4250}
4251
199630b6
BS
4252int bdrv_is_snapshot(BlockDriverState *bs)
4253{
4254 return !!(bs->open_flags & BDRV_O_SNAPSHOT);
4255}
4256
b1b1d783
JC
4257/* backing_file can either be relative, or absolute, or a protocol. If it is
4258 * relative, it must be relative to the chain. So, passing in bs->filename
4259 * from a BDS as backing_file should not be done, as that may be relative to
4260 * the CWD rather than the chain. */
e8a6bb9c
MT
4261BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4262 const char *backing_file)
4263{
b1b1d783
JC
4264 char *filename_full = NULL;
4265 char *backing_file_full = NULL;
4266 char *filename_tmp = NULL;
4267 int is_protocol = 0;
4268 BlockDriverState *curr_bs = NULL;
4269 BlockDriverState *retval = NULL;
4270
4271 if (!bs || !bs->drv || !backing_file) {
e8a6bb9c
MT
4272 return NULL;
4273 }
4274
b1b1d783
JC
4275 filename_full = g_malloc(PATH_MAX);
4276 backing_file_full = g_malloc(PATH_MAX);
4277 filename_tmp = g_malloc(PATH_MAX);
4278
4279 is_protocol = path_has_protocol(backing_file);
4280
4281 for (curr_bs = bs; curr_bs->backing_hd; curr_bs = curr_bs->backing_hd) {
4282
4283 /* If either of the filename paths is actually a protocol, then
4284 * compare unmodified paths; otherwise make paths relative */
4285 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4286 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4287 retval = curr_bs->backing_hd;
4288 break;
4289 }
e8a6bb9c 4290 } else {
b1b1d783
JC
4291 /* If not an absolute filename path, make it relative to the current
4292 * image's filename path */
4293 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4294 backing_file);
4295
4296 /* We are going to compare absolute pathnames */
4297 if (!realpath(filename_tmp, filename_full)) {
4298 continue;
4299 }
4300
4301 /* We need to make sure the backing filename we are comparing against
4302 * is relative to the current image filename (or absolute) */
4303 path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4304 curr_bs->backing_file);
4305
4306 if (!realpath(filename_tmp, backing_file_full)) {
4307 continue;
4308 }
4309
4310 if (strcmp(backing_file_full, filename_full) == 0) {
4311 retval = curr_bs->backing_hd;
4312 break;
4313 }
e8a6bb9c
MT
4314 }
4315 }
4316
b1b1d783
JC
4317 g_free(filename_full);
4318 g_free(backing_file_full);
4319 g_free(filename_tmp);
4320 return retval;
e8a6bb9c
MT
4321}
4322
f198fd1c
BC
4323int bdrv_get_backing_file_depth(BlockDriverState *bs)
4324{
4325 if (!bs->drv) {
4326 return 0;
4327 }
4328
4329 if (!bs->backing_hd) {
4330 return 0;
4331 }
4332
4333 return 1 + bdrv_get_backing_file_depth(bs->backing_hd);
4334}
4335
79fac568
JC
4336BlockDriverState *bdrv_find_base(BlockDriverState *bs)
4337{
4338 BlockDriverState *curr_bs = NULL;
4339
4340 if (!bs) {
4341 return NULL;
4342 }
4343
4344 curr_bs = bs;
4345
4346 while (curr_bs->backing_hd) {
4347 curr_bs = curr_bs->backing_hd;
4348 }
4349 return curr_bs;
4350}
4351
ea2384d3 4352/**************************************************************/
83f64091 4353/* async I/Os */
ea2384d3 4354
3b69e4b9 4355BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
f141eafe 4356 QEMUIOVector *qiov, int nb_sectors,
3b69e4b9 4357 BlockDriverCompletionFunc *cb, void *opaque)
83f64091 4358{
bbf0a440
SH
4359 trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
4360
d20d9b7c 4361 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
8c5873d6 4362 cb, opaque, false);
ea2384d3
FB
4363}
4364
f141eafe
AL
4365BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
4366 QEMUIOVector *qiov, int nb_sectors,
4367 BlockDriverCompletionFunc *cb, void *opaque)
ea2384d3 4368{
bbf0a440
SH
4369 trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
4370
d20d9b7c 4371 return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
8c5873d6 4372 cb, opaque, true);
83f64091
FB
4373}
4374
d5ef94d4
PB
4375BlockDriverAIOCB *bdrv_aio_write_zeroes(BlockDriverState *bs,
4376 int64_t sector_num, int nb_sectors, BdrvRequestFlags flags,
4377 BlockDriverCompletionFunc *cb, void *opaque)
4378{
4379 trace_bdrv_aio_write_zeroes(bs, sector_num, nb_sectors, flags, opaque);
4380
4381 return bdrv_co_aio_rw_vector(bs, sector_num, NULL, nb_sectors,
4382 BDRV_REQ_ZERO_WRITE | flags,
4383 cb, opaque, true);
4384}
4385
40b4f539
KW
4386
4387typedef struct MultiwriteCB {
4388 int error;
4389 int num_requests;
4390 int num_callbacks;
4391 struct {
4392 BlockDriverCompletionFunc *cb;
4393 void *opaque;
4394 QEMUIOVector *free_qiov;
40b4f539
KW
4395 } callbacks[];
4396} MultiwriteCB;
4397
4398static void multiwrite_user_cb(MultiwriteCB *mcb)
4399{
4400 int i;
4401
4402 for (i = 0; i < mcb->num_callbacks; i++) {
4403 mcb->callbacks[i].cb(mcb->callbacks[i].opaque, mcb->error);
1e1ea48d
SH
4404 if (mcb->callbacks[i].free_qiov) {
4405 qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
4406 }
7267c094 4407 g_free(mcb->callbacks[i].free_qiov);
40b4f539
KW
4408 }
4409}
4410
4411static void multiwrite_cb(void *opaque, int ret)
4412{
4413 MultiwriteCB *mcb = opaque;
4414
6d519a5f
SH
4415 trace_multiwrite_cb(mcb, ret);
4416
cb6d3ca0 4417 if (ret < 0 && !mcb->error) {
40b4f539 4418 mcb->error = ret;
40b4f539
KW
4419 }
4420
4421 mcb->num_requests--;
4422 if (mcb->num_requests == 0) {
de189a1b 4423 multiwrite_user_cb(mcb);
7267c094 4424 g_free(mcb);
40b4f539
KW
4425 }
4426}
4427
4428static int multiwrite_req_compare(const void *a, const void *b)
4429{
77be4366
CH
4430 const BlockRequest *req1 = a, *req2 = b;
4431
4432 /*
4433 * Note that we can't simply subtract req2->sector from req1->sector
4434 * here as that could overflow the return value.
4435 */
4436 if (req1->sector > req2->sector) {
4437 return 1;
4438 } else if (req1->sector < req2->sector) {
4439 return -1;
4440 } else {
4441 return 0;
4442 }
40b4f539
KW
4443}
4444
4445/*
4446 * Takes a bunch of requests and tries to merge them. Returns the number of
4447 * requests that remain after merging.
4448 */
4449static int multiwrite_merge(BlockDriverState *bs, BlockRequest *reqs,
4450 int num_reqs, MultiwriteCB *mcb)
4451{
4452 int i, outidx;
4453
4454 // Sort requests by start sector
4455 qsort(reqs, num_reqs, sizeof(*reqs), &multiwrite_req_compare);
4456
4457 // Check if adjacent requests touch the same clusters. If so, combine them,
4458 // filling up gaps with zero sectors.
4459 outidx = 0;
4460 for (i = 1; i < num_reqs; i++) {
4461 int merge = 0;
4462 int64_t oldreq_last = reqs[outidx].sector + reqs[outidx].nb_sectors;
4463
b6a127a1 4464 // Handle exactly sequential writes and overlapping writes.
40b4f539
KW
4465 if (reqs[i].sector <= oldreq_last) {
4466 merge = 1;
4467 }
4468
e2a305fb
CH
4469 if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
4470 merge = 0;
4471 }
4472
40b4f539
KW
4473 if (merge) {
4474 size_t size;
7267c094 4475 QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
40b4f539
KW
4476 qemu_iovec_init(qiov,
4477 reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1);
4478
4479 // Add the first request to the merged one. If the requests are
4480 // overlapping, drop the last sectors of the first request.
4481 size = (reqs[i].sector - reqs[outidx].sector) << 9;
1b093c48 4482 qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
40b4f539 4483
b6a127a1
PB
4484 // We should need to add any zeros between the two requests
4485 assert (reqs[i].sector <= oldreq_last);
40b4f539
KW
4486
4487 // Add the second request
1b093c48 4488 qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
40b4f539 4489
cbf1dff2 4490 reqs[outidx].nb_sectors = qiov->size >> 9;
40b4f539
KW
4491 reqs[outidx].qiov = qiov;
4492
4493 mcb->callbacks[i].free_qiov = reqs[outidx].qiov;
4494 } else {
4495 outidx++;
4496 reqs[outidx].sector = reqs[i].sector;
4497 reqs[outidx].nb_sectors = reqs[i].nb_sectors;
4498 reqs[outidx].qiov = reqs[i].qiov;
4499 }
4500 }
4501
4502 return outidx + 1;
4503}
4504
4505/*
4506 * Submit multiple AIO write requests at once.
4507 *
4508 * On success, the function returns 0 and all requests in the reqs array have
4509 * been submitted. In error case this function returns -1, and any of the
4510 * requests may or may not be submitted yet. In particular, this means that the
4511 * callback will be called for some of the requests, for others it won't. The
4512 * caller must check the error field of the BlockRequest to wait for the right
4513 * callbacks (if error != 0, no callback will be called).
4514 *
4515 * The implementation may modify the contents of the reqs array, e.g. to merge
4516 * requests. However, the fields opaque and error are left unmodified as they
4517 * are used to signal failure for a single request to the caller.
4518 */
4519int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
4520{
40b4f539
KW
4521 MultiwriteCB *mcb;
4522 int i;
4523
301db7c2
RH
4524 /* don't submit writes if we don't have a medium */
4525 if (bs->drv == NULL) {
4526 for (i = 0; i < num_reqs; i++) {
4527 reqs[i].error = -ENOMEDIUM;
4528 }
4529 return -1;
4530 }
4531
40b4f539
KW
4532 if (num_reqs == 0) {
4533 return 0;
4534 }
4535
4536 // Create MultiwriteCB structure
7267c094 4537 mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
40b4f539
KW
4538 mcb->num_requests = 0;
4539 mcb->num_callbacks = num_reqs;
4540
4541 for (i = 0; i < num_reqs; i++) {
4542 mcb->callbacks[i].cb = reqs[i].cb;
4543 mcb->callbacks[i].opaque = reqs[i].opaque;
4544 }
4545
4546 // Check for mergable requests
4547 num_reqs = multiwrite_merge(bs, reqs, num_reqs, mcb);
4548
6d519a5f
SH
4549 trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
4550
df9309fb
PB
4551 /* Run the aio requests. */
4552 mcb->num_requests = num_reqs;
40b4f539 4553 for (i = 0; i < num_reqs; i++) {
d20d9b7c
PB
4554 bdrv_co_aio_rw_vector(bs, reqs[i].sector, reqs[i].qiov,
4555 reqs[i].nb_sectors, reqs[i].flags,
4556 multiwrite_cb, mcb,
4557 true);
40b4f539
KW
4558 }
4559
4560 return 0;
40b4f539
KW
4561}
4562
83f64091 4563void bdrv_aio_cancel(BlockDriverAIOCB *acb)
83f64091 4564{
d7331bed 4565 acb->aiocb_info->cancel(acb);
83f64091
FB
4566}
4567
4568/**************************************************************/
4569/* async block device emulation */
4570
c16b5a2c
CH
4571typedef struct BlockDriverAIOCBSync {
4572 BlockDriverAIOCB common;
4573 QEMUBH *bh;
4574 int ret;
4575 /* vector translation state */
4576 QEMUIOVector *qiov;
4577 uint8_t *bounce;
4578 int is_write;
4579} BlockDriverAIOCBSync;
4580
4581static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
4582{
b666d239
KW
4583 BlockDriverAIOCBSync *acb =
4584 container_of(blockacb, BlockDriverAIOCBSync, common);
6a7ad299 4585 qemu_bh_delete(acb->bh);
36afc451 4586 acb->bh = NULL;
c16b5a2c
CH
4587 qemu_aio_release(acb);
4588}
4589
d7331bed 4590static const AIOCBInfo bdrv_em_aiocb_info = {
c16b5a2c
CH
4591 .aiocb_size = sizeof(BlockDriverAIOCBSync),
4592 .cancel = bdrv_aio_cancel_em,
4593};
4594
ce1a14dc 4595static void bdrv_aio_bh_cb(void *opaque)
83f64091 4596{
ce1a14dc 4597 BlockDriverAIOCBSync *acb = opaque;
f141eafe 4598
f141eafe 4599 if (!acb->is_write)
03396148 4600 qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
ceb42de8 4601 qemu_vfree(acb->bounce);
ce1a14dc 4602 acb->common.cb(acb->common.opaque, acb->ret);
6a7ad299 4603 qemu_bh_delete(acb->bh);
36afc451 4604 acb->bh = NULL;
ce1a14dc 4605 qemu_aio_release(acb);
83f64091 4606}
beac80cd 4607
f141eafe
AL
4608static BlockDriverAIOCB *bdrv_aio_rw_vector(BlockDriverState *bs,
4609 int64_t sector_num,
4610 QEMUIOVector *qiov,
4611 int nb_sectors,
4612 BlockDriverCompletionFunc *cb,
4613 void *opaque,
4614 int is_write)
4615
83f64091 4616{
ce1a14dc 4617 BlockDriverAIOCBSync *acb;
ce1a14dc 4618
d7331bed 4619 acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque);
f141eafe
AL
4620 acb->is_write = is_write;
4621 acb->qiov = qiov;
e268ca52 4622 acb->bounce = qemu_blockalign(bs, qiov->size);
2572b37a 4623 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_aio_bh_cb, acb);
f141eafe
AL
4624
4625 if (is_write) {
d5e6b161 4626 qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
1ed20acf 4627 acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
f141eafe 4628 } else {
1ed20acf 4629 acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
f141eafe
AL
4630 }
4631
ce1a14dc 4632 qemu_bh_schedule(acb->bh);
f141eafe 4633
ce1a14dc 4634 return &acb->common;
beac80cd
FB
4635}
4636
f141eafe
AL
4637static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
4638 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
ce1a14dc 4639 BlockDriverCompletionFunc *cb, void *opaque)
beac80cd 4640{
f141eafe
AL
4641 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
4642}
83f64091 4643
f141eafe
AL
4644static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
4645 int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
4646 BlockDriverCompletionFunc *cb, void *opaque)
4647{
4648 return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 1);
beac80cd 4649}
beac80cd 4650
68485420
KW
4651
4652typedef struct BlockDriverAIOCBCoroutine {
4653 BlockDriverAIOCB common;
4654 BlockRequest req;
4655 bool is_write;
d318aea9 4656 bool *done;
68485420
KW
4657 QEMUBH* bh;
4658} BlockDriverAIOCBCoroutine;
4659
4660static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
4661{
2572b37a 4662 AioContext *aio_context = bdrv_get_aio_context(blockacb->bs);
d318aea9
KW
4663 BlockDriverAIOCBCoroutine *acb =
4664 container_of(blockacb, BlockDriverAIOCBCoroutine, common);
4665 bool done = false;
4666
4667 acb->done = &done;
4668 while (!done) {
2572b37a 4669 aio_poll(aio_context, true);
d318aea9 4670 }
68485420
KW
4671}
4672
d7331bed 4673static const AIOCBInfo bdrv_em_co_aiocb_info = {
68485420
KW
4674 .aiocb_size = sizeof(BlockDriverAIOCBCoroutine),
4675 .cancel = bdrv_aio_co_cancel_em,
4676};
4677
35246a68 4678static void bdrv_co_em_bh(void *opaque)
68485420
KW
4679{
4680 BlockDriverAIOCBCoroutine *acb = opaque;
4681
4682 acb->common.cb(acb->common.opaque, acb->req.error);
d318aea9
KW
4683
4684 if (acb->done) {
4685 *acb->done = true;
4686 }
4687
68485420
KW
4688 qemu_bh_delete(acb->bh);
4689 qemu_aio_release(acb);
4690}
4691
b2a61371
SH
4692/* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
4693static void coroutine_fn bdrv_co_do_rw(void *opaque)
4694{
4695 BlockDriverAIOCBCoroutine *acb = opaque;
4696 BlockDriverState *bs = acb->common.bs;
4697
4698 if (!acb->is_write) {
4699 acb->req.error = bdrv_co_do_readv(bs, acb->req.sector,
d20d9b7c 4700 acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
b2a61371
SH
4701 } else {
4702 acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
d20d9b7c 4703 acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
b2a61371
SH
4704 }
4705
2572b37a 4706 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
b2a61371
SH
4707 qemu_bh_schedule(acb->bh);
4708}
4709
68485420
KW
4710static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
4711 int64_t sector_num,
4712 QEMUIOVector *qiov,
4713 int nb_sectors,
d20d9b7c 4714 BdrvRequestFlags flags,
68485420
KW
4715 BlockDriverCompletionFunc *cb,
4716 void *opaque,
8c5873d6 4717 bool is_write)
68485420
KW
4718{
4719 Coroutine *co;
4720 BlockDriverAIOCBCoroutine *acb;
4721
d7331bed 4722 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
68485420
KW
4723 acb->req.sector = sector_num;
4724 acb->req.nb_sectors = nb_sectors;
4725 acb->req.qiov = qiov;
d20d9b7c 4726 acb->req.flags = flags;
68485420 4727 acb->is_write = is_write;
d318aea9 4728 acb->done = NULL;
68485420 4729
8c5873d6 4730 co = qemu_coroutine_create(bdrv_co_do_rw);
68485420
KW
4731 qemu_coroutine_enter(co, acb);
4732
4733 return &acb->common;
4734}
4735
07f07615 4736static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
b2e12bc6 4737{
07f07615
PB
4738 BlockDriverAIOCBCoroutine *acb = opaque;
4739 BlockDriverState *bs = acb->common.bs;
b2e12bc6 4740
07f07615 4741 acb->req.error = bdrv_co_flush(bs);
2572b37a 4742 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
b2e12bc6 4743 qemu_bh_schedule(acb->bh);
b2e12bc6
CH
4744}
4745
07f07615 4746BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
016f5cf6
AG
4747 BlockDriverCompletionFunc *cb, void *opaque)
4748{
07f07615 4749 trace_bdrv_aio_flush(bs, opaque);
016f5cf6 4750
07f07615
PB
4751 Coroutine *co;
4752 BlockDriverAIOCBCoroutine *acb;
016f5cf6 4753
d7331bed 4754 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
d318aea9
KW
4755 acb->done = NULL;
4756
07f07615
PB
4757 co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
4758 qemu_coroutine_enter(co, acb);
016f5cf6 4759
016f5cf6
AG
4760 return &acb->common;
4761}
4762
4265d620
PB
4763static void coroutine_fn bdrv_aio_discard_co_entry(void *opaque)
4764{
4765 BlockDriverAIOCBCoroutine *acb = opaque;
4766 BlockDriverState *bs = acb->common.bs;
4767
4768 acb->req.error = bdrv_co_discard(bs, acb->req.sector, acb->req.nb_sectors);
2572b37a 4769 acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4265d620
PB
4770 qemu_bh_schedule(acb->bh);
4771}
4772
4773BlockDriverAIOCB *bdrv_aio_discard(BlockDriverState *bs,
4774 int64_t sector_num, int nb_sectors,
4775 BlockDriverCompletionFunc *cb, void *opaque)
4776{
4777 Coroutine *co;
4778 BlockDriverAIOCBCoroutine *acb;
4779
4780 trace_bdrv_aio_discard(bs, sector_num, nb_sectors, opaque);
4781
d7331bed 4782 acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4265d620
PB
4783 acb->req.sector = sector_num;
4784 acb->req.nb_sectors = nb_sectors;
d318aea9 4785 acb->done = NULL;
4265d620
PB
4786 co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
4787 qemu_coroutine_enter(co, acb);
4788
4789 return &acb->common;
4790}
4791
ea2384d3
FB
4792void bdrv_init(void)
4793{
5efa9d5a 4794 module_call_init(MODULE_INIT_BLOCK);
ea2384d3 4795}
ce1a14dc 4796
eb852011
MA
4797void bdrv_init_with_whitelist(void)
4798{
4799 use_bdrv_whitelist = 1;
4800 bdrv_init();
4801}
4802
d7331bed 4803void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
c16b5a2c 4804 BlockDriverCompletionFunc *cb, void *opaque)
ce1a14dc 4805{
ce1a14dc
PB
4806 BlockDriverAIOCB *acb;
4807
d7331bed
SH
4808 acb = g_slice_alloc(aiocb_info->aiocb_size);
4809 acb->aiocb_info = aiocb_info;
ce1a14dc
PB
4810 acb->bs = bs;
4811 acb->cb = cb;
4812 acb->opaque = opaque;
4813 return acb;
4814}
4815
4816void qemu_aio_release(void *p)
4817{
d37c975f 4818 BlockDriverAIOCB *acb = p;
d7331bed 4819 g_slice_free1(acb->aiocb_info->aiocb_size, acb);
ce1a14dc 4820}
19cb3738 4821
f9f05dc5
KW
4822/**************************************************************/
4823/* Coroutine block device emulation */
4824
4825typedef struct CoroutineIOCompletion {
4826 Coroutine *coroutine;
4827 int ret;
4828} CoroutineIOCompletion;
4829
4830static void bdrv_co_io_em_complete(void *opaque, int ret)
4831{
4832 CoroutineIOCompletion *co = opaque;
4833
4834 co->ret = ret;
4835 qemu_coroutine_enter(co->coroutine, NULL);
4836}
4837
4838static int coroutine_fn bdrv_co_io_em(BlockDriverState *bs, int64_t sector_num,
4839 int nb_sectors, QEMUIOVector *iov,
4840 bool is_write)
4841{
4842 CoroutineIOCompletion co = {
4843 .coroutine = qemu_coroutine_self(),
4844 };
4845 BlockDriverAIOCB *acb;
4846
4847 if (is_write) {
a652d160
SH
4848 acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
4849 bdrv_co_io_em_complete, &co);
f9f05dc5 4850 } else {
a652d160
SH
4851 acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
4852 bdrv_co_io_em_complete, &co);
f9f05dc5
KW
4853 }
4854
59370aaa 4855 trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
f9f05dc5
KW
4856 if (!acb) {
4857 return -EIO;
4858 }
4859 qemu_coroutine_yield();
4860
4861 return co.ret;
4862}
4863
4864static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
4865 int64_t sector_num, int nb_sectors,
4866 QEMUIOVector *iov)
4867{
4868 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, false);
4869}
4870
4871static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
4872 int64_t sector_num, int nb_sectors,
4873 QEMUIOVector *iov)
4874{
4875 return bdrv_co_io_em(bs, sector_num, nb_sectors, iov, true);
4876}
4877
07f07615 4878static void coroutine_fn bdrv_flush_co_entry(void *opaque)
e7a8a783 4879{
07f07615
PB
4880 RwCo *rwco = opaque;
4881
4882 rwco->ret = bdrv_co_flush(rwco->bs);
4883}
4884
4885int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
4886{
eb489bb1
KW
4887 int ret;
4888
29cdb251 4889 if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
07f07615 4890 return 0;
eb489bb1
KW
4891 }
4892
ca716364 4893 /* Write back cached data to the OS even with cache=unsafe */
bf736fe3 4894 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
eb489bb1
KW
4895 if (bs->drv->bdrv_co_flush_to_os) {
4896 ret = bs->drv->bdrv_co_flush_to_os(bs);
4897 if (ret < 0) {
4898 return ret;
4899 }
4900 }
4901
ca716364
KW
4902 /* But don't actually force it to the disk with cache=unsafe */
4903 if (bs->open_flags & BDRV_O_NO_FLUSH) {
d4c82329 4904 goto flush_parent;
ca716364
KW
4905 }
4906
bf736fe3 4907 BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
eb489bb1 4908 if (bs->drv->bdrv_co_flush_to_disk) {
29cdb251 4909 ret = bs->drv->bdrv_co_flush_to_disk(bs);
07f07615
PB
4910 } else if (bs->drv->bdrv_aio_flush) {
4911 BlockDriverAIOCB *acb;
4912 CoroutineIOCompletion co = {
4913 .coroutine = qemu_coroutine_self(),
4914 };
4915
4916 acb = bs->drv->bdrv_aio_flush(bs, bdrv_co_io_em_complete, &co);
4917 if (acb == NULL) {
29cdb251 4918 ret = -EIO;
07f07615
PB
4919 } else {
4920 qemu_coroutine_yield();
29cdb251 4921 ret = co.ret;
07f07615 4922 }
07f07615
PB
4923 } else {
4924 /*
4925 * Some block drivers always operate in either writethrough or unsafe
4926 * mode and don't support bdrv_flush therefore. Usually qemu doesn't
4927 * know how the server works (because the behaviour is hardcoded or
4928 * depends on server-side configuration), so we can't ensure that
4929 * everything is safe on disk. Returning an error doesn't work because
4930 * that would break guests even if the server operates in writethrough
4931 * mode.
4932 *
4933 * Let's hope the user knows what he's doing.
4934 */
29cdb251 4935 ret = 0;
07f07615 4936 }
29cdb251
PB
4937 if (ret < 0) {
4938 return ret;
4939 }
4940
4941 /* Now flush the underlying protocol. It will also have BDRV_O_NO_FLUSH
4942 * in the case of cache=unsafe, so there are no useless flushes.
4943 */
d4c82329 4944flush_parent:
29cdb251 4945 return bdrv_co_flush(bs->file);
07f07615
PB
4946}
4947
5a8a30db 4948void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
0f15423c 4949{
5a8a30db
KW
4950 Error *local_err = NULL;
4951 int ret;
4952
3456a8d1
KW
4953 if (!bs->drv) {
4954 return;
4955 }
4956
4957 if (bs->drv->bdrv_invalidate_cache) {
5a8a30db 4958 bs->drv->bdrv_invalidate_cache(bs, &local_err);
3456a8d1 4959 } else if (bs->file) {
5a8a30db
KW
4960 bdrv_invalidate_cache(bs->file, &local_err);
4961 }
4962 if (local_err) {
4963 error_propagate(errp, local_err);
4964 return;
0f15423c 4965 }
3456a8d1 4966
5a8a30db
KW
4967 ret = refresh_total_sectors(bs, bs->total_sectors);
4968 if (ret < 0) {
4969 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4970 return;
4971 }
0f15423c
AL
4972}
4973
5a8a30db 4974void bdrv_invalidate_cache_all(Error **errp)
0f15423c
AL
4975{
4976 BlockDriverState *bs;
5a8a30db 4977 Error *local_err = NULL;
0f15423c 4978
dc364f4c 4979 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
ed78cda3
SH
4980 AioContext *aio_context = bdrv_get_aio_context(bs);
4981
4982 aio_context_acquire(aio_context);
5a8a30db 4983 bdrv_invalidate_cache(bs, &local_err);
ed78cda3 4984 aio_context_release(aio_context);
5a8a30db
KW
4985 if (local_err) {
4986 error_propagate(errp, local_err);
4987 return;
4988 }
0f15423c
AL
4989 }
4990}
4991
07789269
BC
4992void bdrv_clear_incoming_migration_all(void)
4993{
4994 BlockDriverState *bs;
4995
dc364f4c 4996 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
ed78cda3
SH
4997 AioContext *aio_context = bdrv_get_aio_context(bs);
4998
4999 aio_context_acquire(aio_context);
07789269 5000 bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
ed78cda3 5001 aio_context_release(aio_context);
07789269
BC
5002 }
5003}
5004
07f07615
PB
5005int bdrv_flush(BlockDriverState *bs)
5006{
5007 Coroutine *co;
5008 RwCo rwco = {
5009 .bs = bs,
5010 .ret = NOT_DONE,
e7a8a783 5011 };
e7a8a783 5012
07f07615
PB
5013 if (qemu_in_coroutine()) {
5014 /* Fast-path if already in coroutine context */
5015 bdrv_flush_co_entry(&rwco);
5016 } else {
2572b37a
SH
5017 AioContext *aio_context = bdrv_get_aio_context(bs);
5018
07f07615
PB
5019 co = qemu_coroutine_create(bdrv_flush_co_entry);
5020 qemu_coroutine_enter(co, &rwco);
5021 while (rwco.ret == NOT_DONE) {
2572b37a 5022 aio_poll(aio_context, true);
07f07615 5023 }
e7a8a783 5024 }
07f07615
PB
5025
5026 return rwco.ret;
e7a8a783
KW
5027}
5028
775aa8b6
KW
5029typedef struct DiscardCo {
5030 BlockDriverState *bs;
5031 int64_t sector_num;
5032 int nb_sectors;
5033 int ret;
5034} DiscardCo;
4265d620
PB
5035static void coroutine_fn bdrv_discard_co_entry(void *opaque)
5036{
775aa8b6 5037 DiscardCo *rwco = opaque;
4265d620
PB
5038
5039 rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
5040}
5041
6f14da52
PL
5042/* if no limit is specified in the BlockLimits use a default
5043 * of 32768 512-byte sectors (16 MiB) per request.
5044 */
5045#define MAX_DISCARD_DEFAULT 32768
5046
4265d620
PB
5047int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
5048 int nb_sectors)
5049{
d51e9fe5
PB
5050 int max_discard;
5051
4265d620
PB
5052 if (!bs->drv) {
5053 return -ENOMEDIUM;
5054 } else if (bdrv_check_request(bs, sector_num, nb_sectors)) {
5055 return -EIO;
5056 } else if (bs->read_only) {
5057 return -EROFS;
df702c9b
PB
5058 }
5059
e4654d2d 5060 bdrv_reset_dirty(bs, sector_num, nb_sectors);
df702c9b 5061
9e8f1835
PB
5062 /* Do nothing if disabled. */
5063 if (!(bs->open_flags & BDRV_O_UNMAP)) {
5064 return 0;
5065 }
5066
d51e9fe5
PB
5067 if (!bs->drv->bdrv_co_discard && !bs->drv->bdrv_aio_discard) {
5068 return 0;
5069 }
6f14da52 5070
d51e9fe5
PB
5071 max_discard = bs->bl.max_discard ? bs->bl.max_discard : MAX_DISCARD_DEFAULT;
5072 while (nb_sectors > 0) {
5073 int ret;
5074 int num = nb_sectors;
6f14da52 5075
d51e9fe5
PB
5076 /* align request */
5077 if (bs->bl.discard_alignment &&
5078 num >= bs->bl.discard_alignment &&
5079 sector_num % bs->bl.discard_alignment) {
5080 if (num > bs->bl.discard_alignment) {
5081 num = bs->bl.discard_alignment;
6f14da52 5082 }
d51e9fe5
PB
5083 num -= sector_num % bs->bl.discard_alignment;
5084 }
6f14da52 5085
d51e9fe5
PB
5086 /* limit request size */
5087 if (num > max_discard) {
5088 num = max_discard;
5089 }
6f14da52 5090
d51e9fe5 5091 if (bs->drv->bdrv_co_discard) {
6f14da52 5092 ret = bs->drv->bdrv_co_discard(bs, sector_num, num);
d51e9fe5
PB
5093 } else {
5094 BlockDriverAIOCB *acb;
5095 CoroutineIOCompletion co = {
5096 .coroutine = qemu_coroutine_self(),
5097 };
5098
5099 acb = bs->drv->bdrv_aio_discard(bs, sector_num, nb_sectors,
5100 bdrv_co_io_em_complete, &co);
5101 if (acb == NULL) {
5102 return -EIO;
5103 } else {
5104 qemu_coroutine_yield();
5105 ret = co.ret;
6f14da52 5106 }
6f14da52 5107 }
7ce21016 5108 if (ret && ret != -ENOTSUP) {
d51e9fe5 5109 return ret;
4265d620 5110 }
d51e9fe5
PB
5111
5112 sector_num += num;
5113 nb_sectors -= num;
4265d620 5114 }
d51e9fe5 5115 return 0;
4265d620
PB
5116}
5117
5118int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
5119{
5120 Coroutine *co;
775aa8b6 5121 DiscardCo rwco = {
4265d620
PB
5122 .bs = bs,
5123 .sector_num = sector_num,
5124 .nb_sectors = nb_sectors,
5125 .ret = NOT_DONE,
5126 };
5127
5128 if (qemu_in_coroutine()) {
5129 /* Fast-path if already in coroutine context */
5130 bdrv_discard_co_entry(&rwco);
5131 } else {
2572b37a
SH
5132 AioContext *aio_context = bdrv_get_aio_context(bs);
5133
4265d620
PB
5134 co = qemu_coroutine_create(bdrv_discard_co_entry);
5135 qemu_coroutine_enter(co, &rwco);
5136 while (rwco.ret == NOT_DONE) {
2572b37a 5137 aio_poll(aio_context, true);
4265d620
PB
5138 }
5139 }
5140
5141 return rwco.ret;
5142}
5143
19cb3738
FB
5144/**************************************************************/
5145/* removable device support */
5146
5147/**
5148 * Return TRUE if the media is present
5149 */
5150int bdrv_is_inserted(BlockDriverState *bs)
5151{
5152 BlockDriver *drv = bs->drv;
a1aff5bf 5153
19cb3738
FB
5154 if (!drv)
5155 return 0;
5156 if (!drv->bdrv_is_inserted)
a1aff5bf
MA
5157 return 1;
5158 return drv->bdrv_is_inserted(bs);
19cb3738
FB
5159}
5160
5161/**
8e49ca46
MA
5162 * Return whether the media changed since the last call to this
5163 * function, or -ENOTSUP if we don't know. Most drivers don't know.
19cb3738
FB
5164 */
5165int bdrv_media_changed(BlockDriverState *bs)
5166{
5167 BlockDriver *drv = bs->drv;
19cb3738 5168
8e49ca46
MA
5169 if (drv && drv->bdrv_media_changed) {
5170 return drv->bdrv_media_changed(bs);
5171 }
5172 return -ENOTSUP;
19cb3738
FB
5173}
5174
5175/**
5176 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5177 */
f36f3949 5178void bdrv_eject(BlockDriverState *bs, bool eject_flag)
19cb3738
FB
5179{
5180 BlockDriver *drv = bs->drv;
19cb3738 5181
822e1cd1
MA
5182 if (drv && drv->bdrv_eject) {
5183 drv->bdrv_eject(bs, eject_flag);
19cb3738 5184 }
6f382ed2
LC
5185
5186 if (bs->device_name[0] != '\0') {
a5ee7bd4
WX
5187 qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
5188 eject_flag, &error_abort);
6f382ed2 5189 }
19cb3738
FB
5190}
5191
19cb3738
FB
5192/**
5193 * Lock or unlock the media (if it is locked, the user won't be able
5194 * to eject it manually).
5195 */
025e849a 5196void bdrv_lock_medium(BlockDriverState *bs, bool locked)
19cb3738
FB
5197{
5198 BlockDriver *drv = bs->drv;
5199
025e849a 5200 trace_bdrv_lock_medium(bs, locked);
b8c6d095 5201
025e849a
MA
5202 if (drv && drv->bdrv_lock_medium) {
5203 drv->bdrv_lock_medium(bs, locked);
19cb3738
FB
5204 }
5205}
985a03b0
TS
5206
5207/* needed for generic scsi interface */
5208
5209int bdrv_ioctl(BlockDriverState *bs, unsigned long int req, void *buf)
5210{
5211 BlockDriver *drv = bs->drv;
5212
5213 if (drv && drv->bdrv_ioctl)
5214 return drv->bdrv_ioctl(bs, req, buf);
5215 return -ENOTSUP;
5216}
7d780669 5217
221f715d
AL
5218BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
5219 unsigned long int req, void *buf,
5220 BlockDriverCompletionFunc *cb, void *opaque)
7d780669 5221{
221f715d 5222 BlockDriver *drv = bs->drv;
7d780669 5223
221f715d
AL
5224 if (drv && drv->bdrv_aio_ioctl)
5225 return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
5226 return NULL;
7d780669 5227}
e268ca52 5228
1b7fd729 5229void bdrv_set_guest_block_size(BlockDriverState *bs, int align)
7b6f9300 5230{
1b7fd729 5231 bs->guest_block_size = align;
7b6f9300 5232}
7cd1e32a 5233
e268ca52
AL
5234void *qemu_blockalign(BlockDriverState *bs, size_t size)
5235{
339064d5 5236 return qemu_memalign(bdrv_opt_mem_align(bs), size);
e268ca52 5237}
7cd1e32a 5238
c53b1c51
SH
5239/*
5240 * Check if all memory in this vector is sector aligned.
5241 */
5242bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
5243{
5244 int i;
339064d5 5245 size_t alignment = bdrv_opt_mem_align(bs);
c53b1c51
SH
5246
5247 for (i = 0; i < qiov->niov; i++) {
339064d5 5248 if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
c53b1c51 5249 return false;
1ff735bd 5250 }
339064d5 5251 if (qiov->iov[i].iov_len % alignment) {
1ff735bd 5252 return false;
c53b1c51
SH
5253 }
5254 }
5255
5256 return true;
5257}
5258
b8afb520
FZ
5259BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, int granularity,
5260 Error **errp)
7cd1e32a
LS
5261{
5262 int64_t bitmap_size;
e4654d2d 5263 BdrvDirtyBitmap *bitmap;
a55eb92c 5264
50717e94
PB
5265 assert((granularity & (granularity - 1)) == 0);
5266
e4654d2d
FZ
5267 granularity >>= BDRV_SECTOR_BITS;
5268 assert(granularity);
b8afb520
FZ
5269 bitmap_size = bdrv_getlength(bs);
5270 if (bitmap_size < 0) {
5271 error_setg_errno(errp, -bitmap_size, "could not get length of device");
5272 errno = -bitmap_size;
5273 return NULL;
5274 }
5275 bitmap_size >>= BDRV_SECTOR_BITS;
e4654d2d
FZ
5276 bitmap = g_malloc0(sizeof(BdrvDirtyBitmap));
5277 bitmap->bitmap = hbitmap_alloc(bitmap_size, ffs(granularity) - 1);
5278 QLIST_INSERT_HEAD(&bs->dirty_bitmaps, bitmap, list);
5279 return bitmap;
5280}
5281
5282void bdrv_release_dirty_bitmap(BlockDriverState *bs, BdrvDirtyBitmap *bitmap)
5283{
5284 BdrvDirtyBitmap *bm, *next;
5285 QLIST_FOREACH_SAFE(bm, &bs->dirty_bitmaps, list, next) {
5286 if (bm == bitmap) {
5287 QLIST_REMOVE(bitmap, list);
5288 hbitmap_free(bitmap->bitmap);
5289 g_free(bitmap);
5290 return;
a55eb92c 5291 }
7cd1e32a
LS
5292 }
5293}
5294
21b56835
FZ
5295BlockDirtyInfoList *bdrv_query_dirty_bitmaps(BlockDriverState *bs)
5296{
5297 BdrvDirtyBitmap *bm;
5298 BlockDirtyInfoList *list = NULL;
5299 BlockDirtyInfoList **plist = &list;
5300
5301 QLIST_FOREACH(bm, &bs->dirty_bitmaps, list) {
5302 BlockDirtyInfo *info = g_malloc0(sizeof(BlockDirtyInfo));
5303 BlockDirtyInfoList *entry = g_malloc0(sizeof(BlockDirtyInfoList));
5304 info->count = bdrv_get_dirty_count(bs, bm);
5305 info->granularity =
5306 ((int64_t) BDRV_SECTOR_SIZE << hbitmap_granularity(bm->bitmap));
5307 entry->value = info;
5308 *plist = entry;
5309 plist = &entry->next;
5310 }
5311
5312 return list;
5313}
5314
e4654d2d 5315int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector)
7cd1e32a 5316{
e4654d2d
FZ
5317 if (bitmap) {
5318 return hbitmap_get(bitmap->bitmap, sector);
7cd1e32a
LS
5319 } else {
5320 return 0;
5321 }
5322}
5323
e4654d2d
FZ
5324void bdrv_dirty_iter_init(BlockDriverState *bs,
5325 BdrvDirtyBitmap *bitmap, HBitmapIter *hbi)
1755da16 5326{
e4654d2d 5327 hbitmap_iter_init(hbi, bitmap->bitmap, 0);
1755da16
PB
5328}
5329
5330void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector,
5331 int nr_sectors)
5332{
e4654d2d
FZ
5333 BdrvDirtyBitmap *bitmap;
5334 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5335 hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors);
5336 }
1755da16
PB
5337}
5338
e4654d2d 5339void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors)
7cd1e32a 5340{
e4654d2d
FZ
5341 BdrvDirtyBitmap *bitmap;
5342 QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5343 hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors);
5344 }
7cd1e32a 5345}
aaa0eb75 5346
e4654d2d 5347int64_t bdrv_get_dirty_count(BlockDriverState *bs, BdrvDirtyBitmap *bitmap)
aaa0eb75 5348{
e4654d2d 5349 return hbitmap_count(bitmap->bitmap);
aaa0eb75 5350}
f88e1a42 5351
9fcb0251
FZ
5352/* Get a reference to bs */
5353void bdrv_ref(BlockDriverState *bs)
5354{
5355 bs->refcnt++;
5356}
5357
5358/* Release a previously grabbed reference to bs.
5359 * If after releasing, reference count is zero, the BlockDriverState is
5360 * deleted. */
5361void bdrv_unref(BlockDriverState *bs)
5362{
5363 assert(bs->refcnt > 0);
5364 if (--bs->refcnt == 0) {
5365 bdrv_delete(bs);
5366 }
5367}
5368
fbe40ff7
FZ
5369struct BdrvOpBlocker {
5370 Error *reason;
5371 QLIST_ENTRY(BdrvOpBlocker) list;
5372};
5373
5374bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5375{
5376 BdrvOpBlocker *blocker;
5377 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5378 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5379 blocker = QLIST_FIRST(&bs->op_blockers[op]);
5380 if (errp) {
5381 error_setg(errp, "Device '%s' is busy: %s",
5382 bs->device_name, error_get_pretty(blocker->reason));
5383 }
5384 return true;
5385 }
5386 return false;
5387}
5388
5389void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5390{
5391 BdrvOpBlocker *blocker;
5392 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5393
5394 blocker = g_malloc0(sizeof(BdrvOpBlocker));
5395 blocker->reason = reason;
5396 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5397}
5398
5399void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5400{
5401 BdrvOpBlocker *blocker, *next;
5402 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5403 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5404 if (blocker->reason == reason) {
5405 QLIST_REMOVE(blocker, list);
5406 g_free(blocker);
5407 }
5408 }
5409}
5410
5411void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5412{
5413 int i;
5414 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5415 bdrv_op_block(bs, i, reason);
5416 }
5417}
5418
5419void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5420{
5421 int i;
5422 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5423 bdrv_op_unblock(bs, i, reason);
5424 }
5425}
5426
5427bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5428{
5429 int i;
5430
5431 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5432 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5433 return false;
5434 }
5435 }
5436 return true;
5437}
5438
28a7282a
LC
5439void bdrv_iostatus_enable(BlockDriverState *bs)
5440{
d6bf279e 5441 bs->iostatus_enabled = true;
58e21ef5 5442 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
28a7282a
LC
5443}
5444
5445/* The I/O status is only enabled if the drive explicitly
5446 * enables it _and_ the VM is configured to stop on errors */
5447bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
5448{
d6bf279e 5449 return (bs->iostatus_enabled &&
92aa5c6d
PB
5450 (bs->on_write_error == BLOCKDEV_ON_ERROR_ENOSPC ||
5451 bs->on_write_error == BLOCKDEV_ON_ERROR_STOP ||
5452 bs->on_read_error == BLOCKDEV_ON_ERROR_STOP));
28a7282a
LC
5453}
5454
5455void bdrv_iostatus_disable(BlockDriverState *bs)
5456{
d6bf279e 5457 bs->iostatus_enabled = false;
28a7282a
LC
5458}
5459
5460void bdrv_iostatus_reset(BlockDriverState *bs)
5461{
5462 if (bdrv_iostatus_is_enabled(bs)) {
58e21ef5 5463 bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
3bd293c3
PB
5464 if (bs->job) {
5465 block_job_iostatus_reset(bs->job);
5466 }
28a7282a
LC
5467 }
5468}
5469
28a7282a
LC
5470void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
5471{
3e1caa5f
PB
5472 assert(bdrv_iostatus_is_enabled(bs));
5473 if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
58e21ef5
LC
5474 bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
5475 BLOCK_DEVICE_IO_STATUS_FAILED;
28a7282a
LC
5476 }
5477}
5478
a597e79c
CH
5479void
5480bdrv_acct_start(BlockDriverState *bs, BlockAcctCookie *cookie, int64_t bytes,
5481 enum BlockAcctType type)
5482{
5483 assert(type < BDRV_MAX_IOTYPE);
5484
5485 cookie->bytes = bytes;
c488c7f6 5486 cookie->start_time_ns = get_clock();
a597e79c
CH
5487 cookie->type = type;
5488}
5489
5490void
5491bdrv_acct_done(BlockDriverState *bs, BlockAcctCookie *cookie)
5492{
5493 assert(cookie->type < BDRV_MAX_IOTYPE);
5494
5495 bs->nr_bytes[cookie->type] += cookie->bytes;
5496 bs->nr_ops[cookie->type]++;
c488c7f6 5497 bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
a597e79c
CH
5498}
5499
d92ada22
LC
5500void bdrv_img_create(const char *filename, const char *fmt,
5501 const char *base_filename, const char *base_fmt,
f382d43a
MR
5502 char *options, uint64_t img_size, int flags,
5503 Error **errp, bool quiet)
f88e1a42 5504{
83d0521a
CL
5505 QemuOptsList *create_opts = NULL;
5506 QemuOpts *opts = NULL;
5507 const char *backing_fmt, *backing_file;
5508 int64_t size;
f88e1a42 5509 BlockDriver *drv, *proto_drv;
96df67d1 5510 BlockDriver *backing_drv = NULL;
cc84d90f 5511 Error *local_err = NULL;
f88e1a42
JS
5512 int ret = 0;
5513
5514 /* Find driver and parse its options */
5515 drv = bdrv_find_format(fmt);
5516 if (!drv) {
71c79813 5517 error_setg(errp, "Unknown file format '%s'", fmt);
d92ada22 5518 return;
f88e1a42
JS
5519 }
5520
98289620 5521 proto_drv = bdrv_find_protocol(filename, true);
f88e1a42 5522 if (!proto_drv) {
71c79813 5523 error_setg(errp, "Unknown protocol '%s'", filename);
d92ada22 5524 return;
f88e1a42
JS
5525 }
5526
c282e1fd
CL
5527 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5528 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
f88e1a42
JS
5529
5530 /* Create parameter list with default values */
83d0521a
CL
5531 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5532 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size);
f88e1a42
JS
5533
5534 /* Parse -o options */
5535 if (options) {
83d0521a
CL
5536 if (qemu_opts_do_parse(opts, options, NULL) != 0) {
5537 error_setg(errp, "Invalid options for file format '%s'", fmt);
f88e1a42
JS
5538 goto out;
5539 }
5540 }
5541
5542 if (base_filename) {
83d0521a 5543 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename)) {
71c79813
LC
5544 error_setg(errp, "Backing file not supported for file format '%s'",
5545 fmt);
f88e1a42
JS
5546 goto out;
5547 }
5548 }
5549
5550 if (base_fmt) {
83d0521a 5551 if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt)) {
71c79813
LC
5552 error_setg(errp, "Backing file format not supported for file "
5553 "format '%s'", fmt);
f88e1a42
JS
5554 goto out;
5555 }
5556 }
5557
83d0521a
CL
5558 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5559 if (backing_file) {
5560 if (!strcmp(filename, backing_file)) {
71c79813
LC
5561 error_setg(errp, "Error: Trying to create an image with the "
5562 "same filename as the backing file");
792da93a
JS
5563 goto out;
5564 }
5565 }
5566
83d0521a
CL
5567 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5568 if (backing_fmt) {
5569 backing_drv = bdrv_find_format(backing_fmt);
96df67d1 5570 if (!backing_drv) {
71c79813 5571 error_setg(errp, "Unknown backing file format '%s'",
83d0521a 5572 backing_fmt);
f88e1a42
JS
5573 goto out;
5574 }
5575 }
5576
5577 // The size for the image must always be specified, with one exception:
5578 // If we are using a backing file, we can obtain the size from there
83d0521a
CL
5579 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5580 if (size == -1) {
5581 if (backing_file) {
66f6b814 5582 BlockDriverState *bs;
f88e1a42 5583 uint64_t size;
63090dac
PB
5584 int back_flags;
5585
5586 /* backing files always opened read-only */
5587 back_flags =
5588 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
f88e1a42 5589
f67503e5 5590 bs = NULL;
83d0521a 5591 ret = bdrv_open(&bs, backing_file, NULL, NULL, back_flags,
cc84d90f 5592 backing_drv, &local_err);
f88e1a42 5593 if (ret < 0) {
cc84d90f 5594 error_setg_errno(errp, -ret, "Could not open '%s': %s",
83d0521a 5595 backing_file,
cc84d90f
HR
5596 error_get_pretty(local_err));
5597 error_free(local_err);
5598 local_err = NULL;
f88e1a42
JS
5599 goto out;
5600 }
5601 bdrv_get_geometry(bs, &size);
5602 size *= 512;
5603
83d0521a 5604 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size);
66f6b814
HR
5605
5606 bdrv_unref(bs);
f88e1a42 5607 } else {
71c79813 5608 error_setg(errp, "Image creation needs a size parameter");
f88e1a42
JS
5609 goto out;
5610 }
5611 }
5612
f382d43a
MR
5613 if (!quiet) {
5614 printf("Formatting '%s', fmt=%s ", filename, fmt);
83d0521a 5615 qemu_opts_print(opts);
f382d43a
MR
5616 puts("");
5617 }
83d0521a 5618
c282e1fd 5619 ret = bdrv_create(drv, filename, opts, &local_err);
83d0521a 5620
cc84d90f
HR
5621 if (ret == -EFBIG) {
5622 /* This is generally a better message than whatever the driver would
5623 * deliver (especially because of the cluster_size_hint), since that
5624 * is most probably not much different from "image too large". */
5625 const char *cluster_size_hint = "";
83d0521a 5626 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
cc84d90f 5627 cluster_size_hint = " (try using a larger cluster size)";
f88e1a42 5628 }
cc84d90f
HR
5629 error_setg(errp, "The image size is too large for file format '%s'"
5630 "%s", fmt, cluster_size_hint);
5631 error_free(local_err);
5632 local_err = NULL;
f88e1a42
JS
5633 }
5634
5635out:
83d0521a
CL
5636 qemu_opts_del(opts);
5637 qemu_opts_free(create_opts);
84d18f06 5638 if (local_err) {
cc84d90f
HR
5639 error_propagate(errp, local_err);
5640 }
f88e1a42 5641}
85d126f3
SH
5642
5643AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5644{
dcd04228
SH
5645 return bs->aio_context;
5646}
5647
5648void bdrv_detach_aio_context(BlockDriverState *bs)
5649{
5650 if (!bs->drv) {
5651 return;
5652 }
5653
13af91eb
SH
5654 if (bs->io_limits_enabled) {
5655 throttle_detach_aio_context(&bs->throttle_state);
5656 }
dcd04228
SH
5657 if (bs->drv->bdrv_detach_aio_context) {
5658 bs->drv->bdrv_detach_aio_context(bs);
5659 }
5660 if (bs->file) {
5661 bdrv_detach_aio_context(bs->file);
5662 }
5663 if (bs->backing_hd) {
5664 bdrv_detach_aio_context(bs->backing_hd);
5665 }
5666
5667 bs->aio_context = NULL;
5668}
5669
5670void bdrv_attach_aio_context(BlockDriverState *bs,
5671 AioContext *new_context)
5672{
5673 if (!bs->drv) {
5674 return;
5675 }
5676
5677 bs->aio_context = new_context;
5678
5679 if (bs->backing_hd) {
5680 bdrv_attach_aio_context(bs->backing_hd, new_context);
5681 }
5682 if (bs->file) {
5683 bdrv_attach_aio_context(bs->file, new_context);
5684 }
5685 if (bs->drv->bdrv_attach_aio_context) {
5686 bs->drv->bdrv_attach_aio_context(bs, new_context);
5687 }
13af91eb
SH
5688 if (bs->io_limits_enabled) {
5689 throttle_attach_aio_context(&bs->throttle_state, new_context);
5690 }
dcd04228
SH
5691}
5692
5693void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5694{
5695 bdrv_drain_all(); /* ensure there are no in-flight requests */
5696
5697 bdrv_detach_aio_context(bs);
5698
5699 /* This function executes in the old AioContext so acquire the new one in
5700 * case it runs in a different thread.
5701 */
5702 aio_context_acquire(new_context);
5703 bdrv_attach_aio_context(bs, new_context);
5704 aio_context_release(new_context);
85d126f3 5705}
d616b224
SH
5706
5707void bdrv_add_before_write_notifier(BlockDriverState *bs,
5708 NotifierWithReturn *notifier)
5709{
5710 notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
5711}
6f176b48 5712
c282e1fd 5713int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts)
6f176b48 5714{
c282e1fd 5715 if (!bs->drv->bdrv_amend_options) {
6f176b48
HR
5716 return -ENOTSUP;
5717 }
c282e1fd 5718 return bs->drv->bdrv_amend_options(bs, opts);
6f176b48 5719}
f6186f49 5720
b5042a36
BC
5721/* This function will be called by the bdrv_recurse_is_first_non_filter method
5722 * of block filter and by bdrv_is_first_non_filter.
5723 * It is used to test if the given bs is the candidate or recurse more in the
5724 * node graph.
212a5a8f 5725 */
b5042a36 5726bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
212a5a8f 5727 BlockDriverState *candidate)
f6186f49 5728{
b5042a36
BC
5729 /* return false if basic checks fails */
5730 if (!bs || !bs->drv) {
212a5a8f 5731 return false;
f6186f49
BC
5732 }
5733
b5042a36
BC
5734 /* the code reached a non block filter driver -> check if the bs is
5735 * the same as the candidate. It's the recursion termination condition.
5736 */
5737 if (!bs->drv->is_filter) {
5738 return bs == candidate;
212a5a8f 5739 }
b5042a36 5740 /* Down this path the driver is a block filter driver */
212a5a8f 5741
b5042a36
BC
5742 /* If the block filter recursion method is defined use it to recurse down
5743 * the node graph.
5744 */
5745 if (bs->drv->bdrv_recurse_is_first_non_filter) {
212a5a8f 5746 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
f6186f49
BC
5747 }
5748
b5042a36
BC
5749 /* the driver is a block filter but don't allow to recurse -> return false
5750 */
5751 return false;
f6186f49
BC
5752}
5753
212a5a8f
BC
5754/* This function checks if the candidate is the first non filter bs down it's
5755 * bs chain. Since we don't have pointers to parents it explore all bs chains
5756 * from the top. Some filters can choose not to pass down the recursion.
5757 */
5758bool bdrv_is_first_non_filter(BlockDriverState *candidate)
f6186f49 5759{
212a5a8f
BC
5760 BlockDriverState *bs;
5761
5762 /* walk down the bs forest recursively */
5763 QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
5764 bool perm;
5765
b5042a36 5766 /* try to recurse in this top level bs */
e6dc8a1f 5767 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
212a5a8f
BC
5768
5769 /* candidate is the first non filter */
5770 if (perm) {
5771 return true;
5772 }
5773 }
5774
5775 return false;
f6186f49 5776}