xref: /openbmc/qemu/block.c (revision 10358b6a)
1 /*
2  * QEMU System Emulator block driver
3  *
4  * Copyright (c) 2003 Fabrice Bellard
5  *
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  */
24 #include "config-host.h"
25 #include "qemu-common.h"
26 #include "trace.h"
27 #include "block/block_int.h"
28 #include "block/blockjob.h"
29 #include "qemu/module.h"
30 #include "qapi/qmp/qjson.h"
31 #include "sysemu/sysemu.h"
32 #include "qemu/notify.h"
33 #include "block/coroutine.h"
34 #include "block/qapi.h"
35 #include "qmp-commands.h"
36 #include "qemu/timer.h"
37 #include "qapi-event.h"
38 
39 #ifdef CONFIG_BSD
40 #include <sys/types.h>
41 #include <sys/stat.h>
42 #include <sys/ioctl.h>
43 #include <sys/queue.h>
44 #ifndef __DragonFly__
45 #include <sys/disk.h>
46 #endif
47 #endif
48 
49 #ifdef _WIN32
50 #include <windows.h>
51 #endif
52 
53 struct BdrvDirtyBitmap {
54     HBitmap *bitmap;
55     QLIST_ENTRY(BdrvDirtyBitmap) list;
56 };
57 
58 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
59 
60 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load);
61 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
62         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
63         BlockDriverCompletionFunc *cb, void *opaque);
64 static BlockDriverAIOCB *bdrv_aio_writev_em(BlockDriverState *bs,
65         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
66         BlockDriverCompletionFunc *cb, void *opaque);
67 static int coroutine_fn bdrv_co_readv_em(BlockDriverState *bs,
68                                          int64_t sector_num, int nb_sectors,
69                                          QEMUIOVector *iov);
70 static int coroutine_fn bdrv_co_writev_em(BlockDriverState *bs,
71                                          int64_t sector_num, int nb_sectors,
72                                          QEMUIOVector *iov);
73 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
74     int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
75     BdrvRequestFlags flags);
76 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
77     int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
78     BdrvRequestFlags flags);
79 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
80                                                int64_t sector_num,
81                                                QEMUIOVector *qiov,
82                                                int nb_sectors,
83                                                BdrvRequestFlags flags,
84                                                BlockDriverCompletionFunc *cb,
85                                                void *opaque,
86                                                bool is_write);
87 static void coroutine_fn bdrv_co_do_rw(void *opaque);
88 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
89     int64_t sector_num, int nb_sectors, BdrvRequestFlags flags);
90 
91 static QTAILQ_HEAD(, BlockDriverState) bdrv_states =
92     QTAILQ_HEAD_INITIALIZER(bdrv_states);
93 
94 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
95     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
96 
97 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
98     QLIST_HEAD_INITIALIZER(bdrv_drivers);
99 
100 /* If non-zero, use only whitelisted block drivers */
101 static int use_bdrv_whitelist;
102 
103 #ifdef _WIN32
104 static 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 
111 int 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 
123 /* throttling disk I/O limits */
124 void bdrv_set_io_limits(BlockDriverState *bs,
125                         ThrottleConfig *cfg)
126 {
127     int i;
128 
129     throttle_config(&bs->throttle_state, cfg);
130 
131     for (i = 0; i < 2; i++) {
132         qemu_co_enter_next(&bs->throttled_reqs[i]);
133     }
134 }
135 
136 /* this function drain all the throttled IOs */
137 static 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;
152 
153     return drained;
154 }
155 
156 void bdrv_io_limits_disable(BlockDriverState *bs)
157 {
158     bs->io_limits_enabled = false;
159 
160     bdrv_start_throttled_reqs(bs);
161 
162     throttle_destroy(&bs->throttle_state);
163 }
164 
165 static void bdrv_throttle_read_timer_cb(void *opaque)
166 {
167     BlockDriverState *bs = opaque;
168     qemu_co_enter_next(&bs->throttled_reqs[0]);
169 }
170 
171 static void bdrv_throttle_write_timer_cb(void *opaque)
172 {
173     BlockDriverState *bs = opaque;
174     qemu_co_enter_next(&bs->throttled_reqs[1]);
175 }
176 
177 /* should be called before bdrv_set_io_limits if a limit is set */
178 void bdrv_io_limits_enable(BlockDriverState *bs)
179 {
180     assert(!bs->io_limits_enabled);
181     throttle_init(&bs->throttle_state,
182                   bdrv_get_aio_context(bs),
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  */
195 static void bdrv_io_limits_intercept(BlockDriverState *bs,
196                                      unsigned int bytes,
197                                      bool is_write)
198 {
199     /* does this io must wait */
200     bool must_wait = throttle_schedule_timer(&bs->throttle_state, is_write);
201 
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]);
206     }
207 
208     /* the IO will be executed, do the accounting */
209     throttle_account(&bs->throttle_state, is_write, bytes);
210 
211 
212     /* if the next request must wait -> do nothing */
213     if (throttle_schedule_timer(&bs->throttle_state, is_write)) {
214         return;
215     }
216 
217     /* else queue next request for execution */
218     qemu_co_queue_next(&bs->throttled_reqs[is_write]);
219 }
220 
221 size_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 
231 /* check if the path starts with "<protocol>:" */
232 static int path_has_protocol(const char *path)
233 {
234     const char *p;
235 
236 #ifdef _WIN32
237     if (is_windows_drive(path) ||
238         is_windows_drive_prefix(path)) {
239         return 0;
240     }
241     p = path + strcspn(path, ":/\\");
242 #else
243     p = path + strcspn(path, ":/");
244 #endif
245 
246     return *p == ':';
247 }
248 
249 int path_is_absolute(const char *path)
250 {
251 #ifdef _WIN32
252     /* specific case for names like: "\\.\d:" */
253     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
254         return 1;
255     }
256     return (*path == '/' || *path == '\\');
257 #else
258     return (*path == '/');
259 #endif
260 }
261 
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. */
265 void path_combine(char *dest, int dest_size,
266                   const char *base_path,
267                   const char *filename)
268 {
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;
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
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);
303     }
304 }
305 
306 void 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 
315 void bdrv_register(BlockDriver *bdrv)
316 {
317     /* Block drivers without coroutine functions need emulation */
318     if (!bdrv->bdrv_co_readv) {
319         bdrv->bdrv_co_readv = bdrv_co_readv_em;
320         bdrv->bdrv_co_writev = bdrv_co_writev_em;
321 
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          */
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;
329         }
330     }
331 
332     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
333 }
334 
335 /* create a new block device (by default it is empty) */
336 BlockDriverState *bdrv_new(const char *device_name, Error **errp)
337 {
338     BlockDriverState *bs;
339     int i;
340 
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 
352     bs = g_malloc0(sizeof(BlockDriverState));
353     QLIST_INIT(&bs->dirty_bitmaps);
354     pstrcpy(bs->device_name, sizeof(bs->device_name), device_name);
355     if (device_name[0] != '\0') {
356         QTAILQ_INSERT_TAIL(&bdrv_states, bs, device_list);
357     }
358     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
359         QLIST_INIT(&bs->op_blockers[i]);
360     }
361     bdrv_iostatus_disable(bs);
362     notifier_list_init(&bs->close_notifiers);
363     notifier_with_return_list_init(&bs->before_write_notifiers);
364     qemu_co_queue_init(&bs->throttled_reqs[0]);
365     qemu_co_queue_init(&bs->throttled_reqs[1]);
366     bs->refcnt = 1;
367     bs->aio_context = qemu_get_aio_context();
368 
369     return bs;
370 }
371 
372 void bdrv_add_close_notifier(BlockDriverState *bs, Notifier *notify)
373 {
374     notifier_list_add(&bs->close_notifiers, notify);
375 }
376 
377 BlockDriver *bdrv_find_format(const char *format_name)
378 {
379     BlockDriver *drv1;
380     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
381         if (!strcmp(drv1->format_name, format_name)) {
382             return drv1;
383         }
384     }
385     return NULL;
386 }
387 
388 static int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
389 {
390     static const char *whitelist_rw[] = {
391         CONFIG_BDRV_RW_WHITELIST
392     };
393     static const char *whitelist_ro[] = {
394         CONFIG_BDRV_RO_WHITELIST
395     };
396     const char **p;
397 
398     if (!whitelist_rw[0] && !whitelist_ro[0]) {
399         return 1;               /* no whitelist, anything goes */
400     }
401 
402     for (p = whitelist_rw; *p; p++) {
403         if (!strcmp(drv->format_name, *p)) {
404             return 1;
405         }
406     }
407     if (read_only) {
408         for (p = whitelist_ro; *p; p++) {
409             if (!strcmp(drv->format_name, *p)) {
410                 return 1;
411             }
412         }
413     }
414     return 0;
415 }
416 
417 BlockDriver *bdrv_find_whitelisted_format(const char *format_name,
418                                           bool read_only)
419 {
420     BlockDriver *drv = bdrv_find_format(format_name);
421     return drv && bdrv_is_whitelisted(drv, read_only) ? drv : NULL;
422 }
423 
424 typedef struct CreateCo {
425     BlockDriver *drv;
426     char *filename;
427     QemuOpts *opts;
428     int ret;
429     Error *err;
430 } CreateCo;
431 
432 static void coroutine_fn bdrv_create_co_entry(void *opaque)
433 {
434     Error *local_err = NULL;
435     int ret;
436 
437     CreateCo *cco = opaque;
438     assert(cco->drv);
439 
440     ret = cco->drv->bdrv_create(cco->filename, cco->opts, &local_err);
441     if (local_err) {
442         error_propagate(&cco->err, local_err);
443     }
444     cco->ret = ret;
445 }
446 
447 int bdrv_create(BlockDriver *drv, const char* filename,
448                 QemuOpts *opts, Error **errp)
449 {
450     int ret;
451 
452     Coroutine *co;
453     CreateCo cco = {
454         .drv = drv,
455         .filename = g_strdup(filename),
456         .opts = opts,
457         .ret = NOT_DONE,
458         .err = NULL,
459     };
460 
461     if (!drv->bdrv_create) {
462         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
463         ret = -ENOTSUP;
464         goto out;
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;
479     if (ret < 0) {
480         if (cco.err) {
481             error_propagate(errp, cco.err);
482         } else {
483             error_setg_errno(errp, -ret, "Could not create image");
484         }
485     }
486 
487 out:
488     g_free(cco.filename);
489     return ret;
490 }
491 
492 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
493 {
494     BlockDriver *drv;
495     Error *local_err = NULL;
496     int ret;
497 
498     drv = bdrv_find_protocol(filename, true);
499     if (drv == NULL) {
500         error_setg(errp, "Could not find protocol for file '%s'", filename);
501         return -ENOENT;
502     }
503 
504     ret = bdrv_create(drv, filename, opts, &local_err);
505     if (local_err) {
506         error_propagate(errp, local_err);
507     }
508     return ret;
509 }
510 
511 int bdrv_refresh_limits(BlockDriverState *bs)
512 {
513     BlockDriver *drv = bs->drv;
514 
515     memset(&bs->bl, 0, sizeof(bs->bl));
516 
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;
525         bs->bl.opt_mem_alignment = bs->file->bl.opt_mem_alignment;
526     } else {
527         bs->bl.opt_mem_alignment = 512;
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);
535         bs->bl.opt_mem_alignment =
536             MAX(bs->bl.opt_mem_alignment,
537                 bs->backing_hd->bl.opt_mem_alignment);
538     }
539 
540     /* Then let the driver override it */
541     if (drv->bdrv_refresh_limits) {
542         return drv->bdrv_refresh_limits(bs);
543     }
544 
545     return 0;
546 }
547 
548 /*
549  * Create a uniquely-named empty temporary file.
550  * Return 0 upon success, otherwise a negative errno value.
551  */
552 int get_tmp_filename(char *filename, int size)
553 {
554 #ifdef _WIN32
555     char temp_dir[MAX_PATH];
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());
562 #else
563     int fd;
564     const char *tmpdir;
565     tmpdir = getenv("TMPDIR");
566     if (!tmpdir) {
567         tmpdir = "/var/tmp";
568     }
569     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
570         return -EOVERFLOW;
571     }
572     fd = mkstemp(filename);
573     if (fd < 0) {
574         return -errno;
575     }
576     if (close(fd) != 0) {
577         unlink(filename);
578         return -errno;
579     }
580     return 0;
581 #endif
582 }
583 
584 /*
585  * Detect host devices. By convention, /dev/cdrom[N] is always
586  * recognized as a host CDROM.
587  */
588 static 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 
606 BlockDriver *bdrv_find_protocol(const char *filename,
607                                 bool allow_protocol_prefix)
608 {
609     BlockDriver *drv1;
610     char protocol[128];
611     int len;
612     const char *p;
613 
614     /* TODO Drivers without bdrv_file_open must be specified explicitly */
615 
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 
628     if (!path_has_protocol(filename) || !allow_protocol_prefix) {
629         return bdrv_find_format("file");
630     }
631 
632     p = strchr(filename, ':');
633     assert(p != NULL);
634     len = p - filename;
635     if (len > sizeof(protocol) - 1)
636         len = sizeof(protocol) - 1;
637     memcpy(protocol, filename, len);
638     protocol[len] = '\0';
639     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
640         if (drv1->protocol_name &&
641             !strcmp(drv1->protocol_name, protocol)) {
642             return drv1;
643         }
644     }
645     return NULL;
646 }
647 
648 static int find_image_format(BlockDriverState *bs, const char *filename,
649                              BlockDriver **pdrv, Error **errp)
650 {
651     int score, score_max;
652     BlockDriver *drv1, *drv;
653     uint8_t buf[2048];
654     int ret = 0;
655 
656     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
657     if (bs->sg || !bdrv_is_inserted(bs) || bdrv_getlength(bs) == 0) {
658         drv = bdrv_find_format("raw");
659         if (!drv) {
660             error_setg(errp, "Could not find raw image format");
661             ret = -ENOENT;
662         }
663         *pdrv = drv;
664         return ret;
665     }
666 
667     ret = bdrv_pread(bs, 0, buf, sizeof(buf));
668     if (ret < 0) {
669         error_setg_errno(errp, -ret, "Could not read image for determining its "
670                          "format");
671         *pdrv = NULL;
672         return ret;
673     }
674 
675     score_max = 0;
676     drv = NULL;
677     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
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             }
684         }
685     }
686     if (!drv) {
687         error_setg(errp, "Could not determine image format: No compatible "
688                    "driver found");
689         ret = -ENOENT;
690     }
691     *pdrv = drv;
692     return ret;
693 }
694 
695 /**
696  * Set the current 'total_sectors' value
697  */
698 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
699 {
700     BlockDriver *drv = bs->drv;
701 
702     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
703     if (bs->sg)
704         return 0;
705 
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         }
712         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
713     }
714 
715     bs->total_sectors = hint;
716     return 0;
717 }
718 
719 /**
720  * Set open flags for a given discard mode
721  *
722  * Return 0 on success, -1 if the discard mode was invalid.
723  */
724 int 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 
739 /**
740  * Set open flags for a given cache mode
741  *
742  * Return 0 on success, -1 if the cache mode was invalid.
743  */
744 int 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;
750     } else if (!strcmp(mode, "directsync")) {
751         *flags |= BDRV_O_NOCACHE;
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 
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  */
771 void bdrv_enable_copy_on_read(BlockDriverState *bs)
772 {
773     bs->copy_on_read++;
774 }
775 
776 void bdrv_disable_copy_on_read(BlockDriverState *bs)
777 {
778     assert(bs->copy_on_read > 0);
779     bs->copy_on_read--;
780 }
781 
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  */
787 static int bdrv_temp_snapshot_flags(int flags)
788 {
789     return (flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
790 }
791 
792 /*
793  * Returns the flags that bs->file should get, based on the given flags for
794  * the parent BDS
795  */
796 static 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 
805     /* Clear flags that only apply to the top layer */
806     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
807 
808     return flags;
809 }
810 
811 /*
812  * Returns the flags that bs->backing_hd should get, based on the given flags
813  * for the parent BDS
814  */
815 static 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 */
821     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
822 
823     return flags;
824 }
825 
826 static 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      */
839     if (flags & BDRV_O_TEMPORARY) {
840         open_flags |= BDRV_O_RDWR;
841     }
842 
843     return open_flags;
844 }
845 
846 static void bdrv_assign_node_name(BlockDriverState *bs,
847                                   const char *node_name,
848                                   Error **errp)
849 {
850     if (!node_name) {
851         return;
852     }
853 
854     /* empty string node name is invalid */
855     if (node_name[0] == '\0') {
856         error_setg(errp, "Empty node name");
857         return;
858     }
859 
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);
864         return;
865     }
866 
867     /* takes care of avoiding duplicates node names */
868     if (bdrv_find_node(node_name)) {
869         error_setg(errp, "Duplicate node name");
870         return;
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);
876 }
877 
878 /*
879  * Common part for opening disk images and files
880  *
881  * Removes all processed options from *options.
882  */
883 static int bdrv_open_common(BlockDriverState *bs, BlockDriverState *file,
884     QDict *options, int flags, BlockDriver *drv, Error **errp)
885 {
886     int ret, open_flags;
887     const char *filename;
888     const char *node_name = NULL;
889     Error *local_err = NULL;
890 
891     assert(drv != NULL);
892     assert(bs->file == NULL);
893     assert(options != NULL && bs->options != options);
894 
895     if (file != NULL) {
896         filename = file->filename;
897     } else {
898         filename = qdict_get_try_str(options, "filename");
899     }
900 
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 
907     trace_bdrv_open_common(bs, filename ?: "", flags, drv->format_name);
908 
909     node_name = qdict_get_try_str(options, "node-name");
910     bdrv_assign_node_name(bs, node_name, &local_err);
911     if (local_err) {
912         error_propagate(errp, local_err);
913         return -EINVAL;
914     }
915     qdict_del(options, "node-name");
916 
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 
925     bs->open_flags = flags;
926     bs->guest_block_size = 512;
927     bs->request_alignment = 512;
928     bs->zero_beyond_eof = true;
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)) {
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);
938         return -ENOTSUP;
939     }
940 
941     assert(bs->copy_on_read == 0); /* bdrv_new() and bdrv_close() make it so */
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         }
949     }
950 
951     if (filename != NULL) {
952         pstrcpy(bs->filename, sizeof(bs->filename), filename);
953     } else {
954         bs->filename[0] = '\0';
955     }
956 
957     bs->drv = drv;
958     bs->opaque = g_malloc0(drv->instance_size);
959 
960     bs->enable_write_cache = !!(flags & BDRV_O_CACHE_WB);
961 
962     /* Open the image, either directly or using a protocol */
963     if (drv->bdrv_file_open) {
964         assert(file == NULL);
965         assert(!drv->bdrv_needs_filename || filename != NULL);
966         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
967     } else {
968         if (file == NULL) {
969             error_setg(errp, "Can't use '%s' as a block driver for the "
970                        "protocol level", drv->format_name);
971             ret = -EINVAL;
972             goto free_and_fail;
973         }
974         bs->file = file;
975         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
976     }
977 
978     if (ret < 0) {
979         if (local_err) {
980             error_propagate(errp, local_err);
981         } else if (bs->filename[0]) {
982             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
983         } else {
984             error_setg_errno(errp, -ret, "Could not open image");
985         }
986         goto free_and_fail;
987     }
988 
989     ret = refresh_total_sectors(bs, bs->total_sectors);
990     if (ret < 0) {
991         error_setg_errno(errp, -ret, "Could not refresh total sector count");
992         goto free_and_fail;
993     }
994 
995     bdrv_refresh_limits(bs);
996     assert(bdrv_opt_mem_align(bs) != 0);
997     assert((bs->request_alignment != 0) || bs->sg);
998     return 0;
999 
1000 free_and_fail:
1001     bs->file = NULL;
1002     g_free(bs->opaque);
1003     bs->opaque = NULL;
1004     bs->drv = NULL;
1005     return ret;
1006 }
1007 
1008 /*
1009  * Opens a file using a protocol (file, host_device, nbd, ...)
1010  *
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.
1017  */
1018 static int bdrv_file_open(BlockDriverState *bs, const char *filename,
1019                           QDict **options, int flags, Error **errp)
1020 {
1021     BlockDriver *drv;
1022     const char *drvname;
1023     bool parse_filename = false;
1024     Error *local_err = NULL;
1025     int ret;
1026 
1027     /* Fetch the file name from the options QDict if necessary */
1028     if (!filename) {
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));
1032         parse_filename = true;
1033     } else {
1034         error_setg(errp, "Can't specify 'file' and 'filename' options at the "
1035                    "same time");
1036         ret = -EINVAL;
1037         goto fail;
1038     }
1039 
1040     /* Find the right block driver */
1041     drvname = qdict_get_try_str(*options, "driver");
1042     if (drvname) {
1043         drv = bdrv_find_format(drvname);
1044         if (!drv) {
1045             error_setg(errp, "Unknown driver '%s'", drvname);
1046         }
1047         qdict_del(*options, "driver");
1048     } else if (filename) {
1049         drv = bdrv_find_protocol(filename, parse_filename);
1050         if (!drv) {
1051             error_setg(errp, "Unknown protocol");
1052         }
1053     } else {
1054         error_setg(errp, "Must specify either driver or file");
1055         drv = NULL;
1056     }
1057 
1058     if (!drv) {
1059         /* errp has been set already */
1060         ret = -ENOENT;
1061         goto fail;
1062     }
1063 
1064     /* Parse the filename and open it */
1065     if (drv->bdrv_parse_filename && parse_filename) {
1066         drv->bdrv_parse_filename(filename, *options, &local_err);
1067         if (local_err) {
1068             error_propagate(errp, local_err);
1069             ret = -EINVAL;
1070             goto fail;
1071         }
1072 
1073         if (!drv->bdrv_needs_filename) {
1074             qdict_del(*options, "filename");
1075         } else {
1076             filename = qdict_get_str(*options, "filename");
1077         }
1078     }
1079 
1080     if (!drv->bdrv_file_open) {
1081         ret = bdrv_open(&bs, filename, NULL, *options, flags, drv, &local_err);
1082         *options = NULL;
1083     } else {
1084         ret = bdrv_open_common(bs, NULL, *options, flags, drv, &local_err);
1085     }
1086     if (ret < 0) {
1087         error_propagate(errp, local_err);
1088         goto fail;
1089     }
1090 
1091     bs->growable = 1;
1092     return 0;
1093 
1094 fail:
1095     return ret;
1096 }
1097 
1098 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd)
1099 {
1100 
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 
1110     bs->backing_hd = backing_hd;
1111     if (!backing_hd) {
1112         error_free(bs->backing_blocker);
1113         bs->backing_blocker = NULL;
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 : "");
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);
1125 out:
1126     bdrv_refresh_limits(bs);
1127 }
1128 
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  */
1137 int bdrv_open_backing_file(BlockDriverState *bs, QDict *options, Error **errp)
1138 {
1139     char *backing_filename = g_malloc0(PATH_MAX);
1140     int ret = 0;
1141     BlockDriver *back_drv = NULL;
1142     BlockDriverState *backing_hd;
1143     Error *local_err = NULL;
1144 
1145     if (bs->backing_hd != NULL) {
1146         QDECREF(options);
1147         goto free_exit;
1148     }
1149 
1150     /* NULL means an empty set of options */
1151     if (options == NULL) {
1152         options = qdict_new();
1153     }
1154 
1155     bs->open_flags &= ~BDRV_O_NO_BACKING;
1156     if (qdict_haskey(options, "file.filename")) {
1157         backing_filename[0] = '\0';
1158     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
1159         QDECREF(options);
1160         goto free_exit;
1161     } else {
1162         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX);
1163     }
1164 
1165     backing_hd = bdrv_new("", errp);
1166 
1167     if (bs->backing_format[0] != '\0') {
1168         back_drv = bdrv_find_format(bs->backing_format);
1169     }
1170 
1171     assert(bs->backing_hd == NULL);
1172     ret = bdrv_open(&backing_hd,
1173                     *backing_filename ? backing_filename : NULL, NULL, options,
1174                     bdrv_backing_flags(bs->open_flags), back_drv, &local_err);
1175     if (ret < 0) {
1176         bdrv_unref(backing_hd);
1177         backing_hd = NULL;
1178         bs->open_flags |= BDRV_O_NO_BACKING;
1179         error_setg(errp, "Could not open backing file: %s",
1180                    error_get_pretty(local_err));
1181         error_free(local_err);
1182         goto free_exit;
1183     }
1184     bdrv_set_backing_hd(bs, backing_hd);
1185 
1186 free_exit:
1187     g_free(backing_filename);
1188     return ret;
1189 }
1190 
1191 /*
1192  * Opens a disk image whose options are given as BlockdevRef in another block
1193  * device's options.
1194  *
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.
1204  *
1205  * To conform with the behavior of bdrv_open(), *pbs has to be NULL.
1206  */
1207 int bdrv_open_image(BlockDriverState **pbs, const char *filename,
1208                     QDict *options, const char *bdref_key, int flags,
1209                     bool allow_none, Error **errp)
1210 {
1211     QDict *image_options;
1212     int ret;
1213     char *bdref_key_dot;
1214     const char *reference;
1215 
1216     assert(pbs);
1217     assert(*pbs == NULL);
1218 
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         }
1232         QDECREF(image_options);
1233         goto done;
1234     }
1235 
1236     ret = bdrv_open(pbs, filename, reference, image_options, flags, NULL, errp);
1237 
1238 done:
1239     qdict_del(options, bdref_key);
1240     return ret;
1241 }
1242 
1243 void bdrv_append_temp_snapshot(BlockDriverState *bs, int flags, Error **errp)
1244 {
1245     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
1246     char *tmp_filename = g_malloc0(PATH_MAX + 1);
1247     int64_t total_size;
1248     BlockDriver *bdrv_qcow2;
1249     QemuOpts *opts = NULL;
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 */
1259     total_size = bdrv_getlength(bs);
1260     if (total_size < 0) {
1261         error_setg_errno(errp, -total_size, "Could not get image size");
1262         goto out;
1263     }
1264     total_size &= BDRV_SECTOR_MASK;
1265 
1266     /* Create the temporary image */
1267     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
1268     if (ret < 0) {
1269         error_setg_errno(errp, -ret, "Could not get temporary filename");
1270         goto out;
1271     }
1272 
1273     bdrv_qcow2 = bdrv_find_format("qcow2");
1274     opts = qemu_opts_create(bdrv_qcow2->create_opts, NULL, 0,
1275                             &error_abort);
1276     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size);
1277     ret = bdrv_create(bdrv_qcow2, tmp_filename, opts, &local_err);
1278     qemu_opts_del(opts);
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);
1284         goto out;
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 
1294     bs_snapshot = bdrv_new("", &error_abort);
1295 
1296     ret = bdrv_open(&bs_snapshot, NULL, NULL, snapshot_options,
1297                     flags, bdrv_qcow2, &local_err);
1298     if (ret < 0) {
1299         error_propagate(errp, local_err);
1300         goto out;
1301     }
1302 
1303     bdrv_append(bs_snapshot, bs);
1304 
1305 out:
1306     g_free(tmp_filename);
1307 }
1308 
1309 static 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 
1336 /*
1337  * Opens a disk image (raw, qcow2, vmdk, ...)
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.
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.
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).
1350  */
1351 int bdrv_open(BlockDriverState **pbs, const char *filename,
1352               const char *reference, QDict *options, int flags,
1353               BlockDriver *drv, Error **errp)
1354 {
1355     int ret;
1356     BlockDriverState *file = NULL, *bs;
1357     const char *drvname;
1358     Error *local_err = NULL;
1359     int snapshot_flags = 0;
1360 
1361     assert(pbs);
1362 
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 
1388     if (*pbs) {
1389         bs = *pbs;
1390     } else {
1391         bs = bdrv_new("", &error_abort);
1392     }
1393 
1394     /* NULL means an empty set of options */
1395     if (options == NULL) {
1396         options = qdict_new();
1397     }
1398 
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 
1413     bs->options = options;
1414     options = qdict_clone_shallow(options);
1415 
1416     if (flags & BDRV_O_PROTOCOL) {
1417         assert(!drv);
1418         ret = bdrv_file_open(bs, filename, &options, flags & ~BDRV_O_PROTOCOL,
1419                              &local_err);
1420         if (!ret) {
1421             drv = bs->drv;
1422             goto done;
1423         } else if (bs->drv) {
1424             goto close_and_fail;
1425         } else {
1426             goto fail;
1427         }
1428     }
1429 
1430     /* Open image file without format layer */
1431     if (flags & BDRV_O_RDWR) {
1432         flags |= BDRV_O_ALLOW_RDWR;
1433     }
1434     if (flags & BDRV_O_SNAPSHOT) {
1435         snapshot_flags = bdrv_temp_snapshot_flags(flags);
1436         flags = bdrv_backing_flags(flags);
1437     }
1438 
1439     assert(file == NULL);
1440     ret = bdrv_open_image(&file, filename, options, "file",
1441                           bdrv_inherited_flags(flags),
1442                           true, &local_err);
1443     if (ret < 0) {
1444         goto fail;
1445     }
1446 
1447     /* Find the right image format driver */
1448     drvname = qdict_get_try_str(options, "driver");
1449     if (drvname) {
1450         drv = bdrv_find_format(drvname);
1451         qdict_del(options, "driver");
1452         if (!drv) {
1453             error_setg(errp, "Invalid driver: '%s'", drvname);
1454             ret = -EINVAL;
1455             goto fail;
1456         }
1457     }
1458 
1459     if (!drv) {
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;
1465             goto fail;
1466         }
1467     }
1468 
1469     if (!drv) {
1470         goto fail;
1471     }
1472 
1473     /* Open the image */
1474     ret = bdrv_open_common(bs, file, options, flags, drv, &local_err);
1475     if (ret < 0) {
1476         goto fail;
1477     }
1478 
1479     if (file && (bs->file != file)) {
1480         bdrv_unref(file);
1481         file = NULL;
1482     }
1483 
1484     /* If there is a backing file, use it */
1485     if ((flags & BDRV_O_NO_BACKING) == 0) {
1486         QDict *backing_options;
1487 
1488         qdict_extract_subqdict(options, &backing_options, "backing.");
1489         ret = bdrv_open_backing_file(bs, backing_options, &local_err);
1490         if (ret < 0) {
1491             goto close_and_fail;
1492         }
1493     }
1494 
1495     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
1496      * temporary snapshot afterwards. */
1497     if (snapshot_flags) {
1498         bdrv_append_temp_snapshot(bs, snapshot_flags, &local_err);
1499         if (local_err) {
1500             error_propagate(errp, local_err);
1501             goto close_and_fail;
1502         }
1503     }
1504 
1505 
1506 done:
1507     /* Check if any unknown options were used */
1508     if (options && (qdict_size(options) != 0)) {
1509         const QDictEntry *entry = qdict_first(options);
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         }
1518 
1519         ret = -EINVAL;
1520         goto close_and_fail;
1521     }
1522 
1523     if (!bdrv_key_required(bs)) {
1524         bdrv_dev_change_media_cb(bs, true);
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;
1532     }
1533 
1534     QDECREF(options);
1535     *pbs = bs;
1536     return 0;
1537 
1538 fail:
1539     if (file != NULL) {
1540         bdrv_unref(file);
1541     }
1542     QDECREF(bs->options);
1543     QDECREF(options);
1544     bs->options = NULL;
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     }
1551     if (local_err) {
1552         error_propagate(errp, local_err);
1553     }
1554     return ret;
1555 
1556 close_and_fail:
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     }
1563     QDECREF(options);
1564     if (local_err) {
1565         error_propagate(errp, local_err);
1566     }
1567     return ret;
1568 }
1569 
1570 typedef 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  */
1594 BlockReopenQueue *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 
1605     /* bdrv_open() masks this flag out */
1606     flags &= ~BDRV_O_PROTOCOL;
1607 
1608     if (bs->file) {
1609         bdrv_reopen_queue(bs_queue, bs->file, bdrv_inherited_flags(flags));
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  */
1636 int 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 
1663 cleanup:
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. */
1676 int 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  */
1707 int 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 {
1741                 error_setg(errp, "failed while preparing to reopen image '%s'",
1742                            reopen_state->bs->filename);
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 
1758 error:
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  */
1767 void 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);
1785 
1786     bdrv_refresh_limits(reopen_state->bs);
1787 }
1788 
1789 /*
1790  * Abort the reopen, and delete and free the staged changes in
1791  * reopen_state
1792  */
1793 void 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 
1807 void bdrv_close(BlockDriverState *bs)
1808 {
1809     if (bs->job) {
1810         block_job_cancel_sync(bs->job);
1811     }
1812     bdrv_drain_all(); /* complete I/O */
1813     bdrv_flush(bs);
1814     bdrv_drain_all(); /* in case flush left pending I/O */
1815     notifier_list_notify(&bs->close_notifiers, bs);
1816 
1817     if (bs->drv) {
1818         if (bs->backing_hd) {
1819             BlockDriverState *backing_hd = bs->backing_hd;
1820             bdrv_set_backing_hd(bs, NULL);
1821             bdrv_unref(backing_hd);
1822         }
1823         bs->drv->bdrv_close(bs);
1824         g_free(bs->opaque);
1825         bs->opaque = NULL;
1826         bs->drv = NULL;
1827         bs->copy_on_read = 0;
1828         bs->backing_file[0] = '\0';
1829         bs->backing_format[0] = '\0';
1830         bs->total_sectors = 0;
1831         bs->encrypted = 0;
1832         bs->valid_key = 0;
1833         bs->sg = 0;
1834         bs->growable = 0;
1835         bs->zero_beyond_eof = false;
1836         QDECREF(bs->options);
1837         bs->options = NULL;
1838 
1839         if (bs->file != NULL) {
1840             bdrv_unref(bs->file);
1841             bs->file = NULL;
1842         }
1843     }
1844 
1845     bdrv_dev_change_media_cb(bs, false);
1846 
1847     /*throttling disk I/O limits*/
1848     if (bs->io_limits_enabled) {
1849         bdrv_io_limits_disable(bs);
1850     }
1851 }
1852 
1853 void bdrv_close_all(void)
1854 {
1855     BlockDriverState *bs;
1856 
1857     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
1858         AioContext *aio_context = bdrv_get_aio_context(bs);
1859 
1860         aio_context_acquire(aio_context);
1861         bdrv_close(bs);
1862         aio_context_release(aio_context);
1863     }
1864 }
1865 
1866 /* Check if any requests are in-flight (including throttled requests) */
1867 static bool bdrv_requests_pending(BlockDriverState *bs)
1868 {
1869     if (!QLIST_EMPTY(&bs->tracked_requests)) {
1870         return true;
1871     }
1872     if (!qemu_co_queue_empty(&bs->throttled_reqs[0])) {
1873         return true;
1874     }
1875     if (!qemu_co_queue_empty(&bs->throttled_reqs[1])) {
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 
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.
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.
1898  */
1899 void bdrv_drain_all(void)
1900 {
1901     /* Always run first iteration so any pending completion BHs run */
1902     bool busy = true;
1903     BlockDriverState *bs;
1904 
1905     while (busy) {
1906         busy = false;
1907 
1908         QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
1909             AioContext *aio_context = bdrv_get_aio_context(bs);
1910             bool bs_busy;
1911 
1912             aio_context_acquire(aio_context);
1913             bdrv_start_throttled_reqs(bs);
1914             bs_busy = bdrv_requests_pending(bs);
1915             bs_busy |= aio_poll(aio_context, bs_busy);
1916             aio_context_release(aio_context);
1917 
1918             busy |= bs_busy;
1919         }
1920     }
1921 }
1922 
1923 /* make a BlockDriverState anonymous by removing from bdrv_state and
1924  * graph_bdrv_state list.
1925    Also, NULL terminate the device_name to prevent double remove */
1926 void bdrv_make_anon(BlockDriverState *bs)
1927 {
1928     if (bs->device_name[0] != '\0') {
1929         QTAILQ_REMOVE(&bdrv_states, bs, device_list);
1930     }
1931     bs->device_name[0] = '\0';
1932     if (bs->node_name[0] != '\0') {
1933         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
1934     }
1935     bs->node_name[0] = '\0';
1936 }
1937 
1938 static void bdrv_rebind(BlockDriverState *bs)
1939 {
1940     if (bs->drv && bs->drv->bdrv_rebind) {
1941         bs->drv->bdrv_rebind(bs);
1942     }
1943 }
1944 
1945 static void bdrv_move_feature_fields(BlockDriverState *bs_dest,
1946                                      BlockDriverState *bs_src)
1947 {
1948     /* move some fields that need to stay attached to the device */
1949 
1950     /* dev info */
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;
1954     bs_dest->guest_block_size   = bs_src->guest_block_size;
1955     bs_dest->copy_on_read       = bs_src->copy_on_read;
1956 
1957     bs_dest->enable_write_cache = bs_src->enable_write_cache;
1958 
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];
1965     bs_dest->io_limits_enabled  = bs_src->io_limits_enabled;
1966 
1967     /* r/w error */
1968     bs_dest->on_read_error      = bs_src->on_read_error;
1969     bs_dest->on_write_error     = bs_src->on_write_error;
1970 
1971     /* i/o status */
1972     bs_dest->iostatus_enabled   = bs_src->iostatus_enabled;
1973     bs_dest->iostatus           = bs_src->iostatus;
1974 
1975     /* dirty bitmap */
1976     bs_dest->dirty_bitmaps      = bs_src->dirty_bitmaps;
1977 
1978     /* reference count */
1979     bs_dest->refcnt             = bs_src->refcnt;
1980 
1981     /* job */
1982     bs_dest->job                = bs_src->job;
1983 
1984     /* keep the same entry in bdrv_states */
1985     pstrcpy(bs_dest->device_name, sizeof(bs_dest->device_name),
1986             bs_src->device_name);
1987     bs_dest->device_list = bs_src->device_list;
1988     memcpy(bs_dest->op_blockers, bs_src->op_blockers,
1989            sizeof(bs_dest->op_blockers));
1990 }
1991 
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  */
2004 void bdrv_swap(BlockDriverState *bs_new, BlockDriverState *bs_old)
2005 {
2006     BlockDriverState tmp;
2007 
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 
2019     /* bs_new must be anonymous and shouldn't have anything fancy enabled */
2020     assert(bs_new->device_name[0] == '\0');
2021     assert(QLIST_EMPTY(&bs_new->dirty_bitmaps));
2022     assert(bs_new->job == NULL);
2023     assert(bs_new->dev == NULL);
2024     assert(bs_new->io_limits_enabled == false);
2025     assert(!throttle_have_timer(&bs_new->throttle_state));
2026 
2027     tmp = *bs_new;
2028     *bs_new = *bs_old;
2029     *bs_old = tmp;
2030 
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);
2035 
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);
2042     assert(bs_new->io_limits_enabled == false);
2043     assert(!throttle_have_timer(&bs_new->throttle_state));
2044 
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 
2053     bdrv_rebind(bs_new);
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  */
2068 void 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. */
2074     bdrv_set_backing_hd(bs_top, bs_new);
2075 }
2076 
2077 static void bdrv_delete(BlockDriverState *bs)
2078 {
2079     assert(!bs->dev);
2080     assert(!bs->job);
2081     assert(bdrv_op_blocker_is_empty(bs));
2082     assert(!bs->refcnt);
2083     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
2084 
2085     bdrv_close(bs);
2086 
2087     /* remove from list, if necessary */
2088     bdrv_make_anon(bs);
2089 
2090     g_free(bs);
2091 }
2092 
2093 int bdrv_attach_dev(BlockDriverState *bs, void *dev)
2094 /* TODO change to DeviceState *dev when all users are qdevified */
2095 {
2096     if (bs->dev) {
2097         return -EBUSY;
2098     }
2099     bs->dev = dev;
2100     bdrv_iostatus_reset(bs);
2101     return 0;
2102 }
2103 
2104 /* TODO qdevified devices don't use this, remove when devices are qdevified */
2105 void bdrv_attach_dev_nofail(BlockDriverState *bs, void *dev)
2106 {
2107     if (bdrv_attach_dev(bs, dev) < 0) {
2108         abort();
2109     }
2110 }
2111 
2112 void 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;
2117     bs->dev_ops = NULL;
2118     bs->dev_opaque = NULL;
2119     bs->guest_block_size = 512;
2120 }
2121 
2122 /* TODO change to return DeviceState * when all users are qdevified */
2123 void *bdrv_get_attached_dev(BlockDriverState *bs)
2124 {
2125     return bs->dev;
2126 }
2127 
2128 void 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 
2135 static void bdrv_dev_change_media_cb(BlockDriverState *bs, bool load)
2136 {
2137     if (bs->dev_ops && bs->dev_ops->change_media_cb) {
2138         bool tray_was_closed = !bdrv_dev_is_tray_open(bs);
2139         bs->dev_ops->change_media_cb(bs->dev_opaque, load);
2140         if (tray_was_closed) {
2141             /* tray open */
2142             qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
2143                                               true, &error_abort);
2144         }
2145         if (load) {
2146             /* tray close */
2147             qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
2148                                               false, &error_abort);
2149         }
2150     }
2151 }
2152 
2153 bool bdrv_dev_has_removable_media(BlockDriverState *bs)
2154 {
2155     return !bs->dev || (bs->dev_ops && bs->dev_ops->change_media_cb);
2156 }
2157 
2158 void 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 
2165 bool 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 
2173 static 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);
2177     }
2178 }
2179 
2180 bool 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 
2188 /*
2189  * Run consistency checks on an image
2190  *
2191  * Returns 0 if the check could be completed (it doesn't mean that the image is
2192  * free of errors) or -errno when an internal error occurred. The results of the
2193  * check are stored in res.
2194  */
2195 int bdrv_check(BlockDriverState *bs, BdrvCheckResult *res, BdrvCheckMode fix)
2196 {
2197     if (bs->drv->bdrv_check == NULL) {
2198         return -ENOTSUP;
2199     }
2200 
2201     memset(res, 0, sizeof(*res));
2202     return bs->drv->bdrv_check(bs, res, fix);
2203 }
2204 
2205 #define COMMIT_BUF_SECTORS 2048
2206 
2207 /* commit COW file into the raw image */
2208 int bdrv_commit(BlockDriverState *bs)
2209 {
2210     BlockDriver *drv = bs->drv;
2211     int64_t sector, total_sectors, length, backing_length;
2212     int n, ro, open_flags;
2213     int ret = 0;
2214     uint8_t *buf = NULL;
2215     char filename[PATH_MAX];
2216 
2217     if (!drv)
2218         return -ENOMEDIUM;
2219 
2220     if (!bs->backing_hd) {
2221         return -ENOTSUP;
2222     }
2223 
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)) {
2226         return -EBUSY;
2227     }
2228 
2229     ro = bs->backing_hd->read_only;
2230     /* Use pstrcpy (not strncpy): filename must be NUL-terminated. */
2231     pstrcpy(filename, sizeof(filename), bs->backing_hd->filename);
2232     open_flags =  bs->backing_hd->open_flags;
2233 
2234     if (ro) {
2235         if (bdrv_reopen(bs->backing_hd, open_flags | BDRV_O_RDWR, NULL)) {
2236             return -EACCES;
2237         }
2238     }
2239 
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;
2263     buf = g_malloc(COMMIT_BUF_SECTORS * BDRV_SECTOR_SIZE);
2264 
2265     for (sector = 0; sector < total_sectors; sector += n) {
2266         ret = bdrv_is_allocated(bs, sector, COMMIT_BUF_SECTORS, &n);
2267         if (ret < 0) {
2268             goto ro_cleanup;
2269         }
2270         if (ret) {
2271             ret = bdrv_read(bs, sector, buf, n);
2272             if (ret < 0) {
2273                 goto ro_cleanup;
2274             }
2275 
2276             ret = bdrv_write(bs->backing_hd, sector, buf, n);
2277             if (ret < 0) {
2278                 goto ro_cleanup;
2279             }
2280         }
2281     }
2282 
2283     if (drv->bdrv_make_empty) {
2284         ret = drv->bdrv_make_empty(bs);
2285         if (ret < 0) {
2286             goto ro_cleanup;
2287         }
2288         bdrv_flush(bs);
2289     }
2290 
2291     /*
2292      * Make sure all data we wrote to the backing device is actually
2293      * stable on disk.
2294      */
2295     if (bs->backing_hd) {
2296         bdrv_flush(bs->backing_hd);
2297     }
2298 
2299     ret = 0;
2300 ro_cleanup:
2301     g_free(buf);
2302 
2303     if (ro) {
2304         /* ignoring error return here */
2305         bdrv_reopen(bs->backing_hd, open_flags & ~BDRV_O_RDWR, NULL);
2306     }
2307 
2308     return ret;
2309 }
2310 
2311 int bdrv_commit_all(void)
2312 {
2313     BlockDriverState *bs;
2314 
2315     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
2316         AioContext *aio_context = bdrv_get_aio_context(bs);
2317 
2318         aio_context_acquire(aio_context);
2319         if (bs->drv && bs->backing_hd) {
2320             int ret = bdrv_commit(bs);
2321             if (ret < 0) {
2322                 aio_context_release(aio_context);
2323                 return ret;
2324             }
2325         }
2326         aio_context_release(aio_context);
2327     }
2328     return 0;
2329 }
2330 
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  */
2336 static void tracked_request_end(BdrvTrackedRequest *req)
2337 {
2338     if (req->serialising) {
2339         req->bs->serialising_in_flight--;
2340     }
2341 
2342     QLIST_REMOVE(req, list);
2343     qemu_co_queue_restart_all(&req->wait_queue);
2344 }
2345 
2346 /**
2347  * Add an active request to the tracked requests list
2348  */
2349 static void tracked_request_begin(BdrvTrackedRequest *req,
2350                                   BlockDriverState *bs,
2351                                   int64_t offset,
2352                                   unsigned int bytes, bool is_write)
2353 {
2354     *req = (BdrvTrackedRequest){
2355         .bs = bs,
2356         .offset         = offset,
2357         .bytes          = bytes,
2358         .is_write       = is_write,
2359         .co             = qemu_coroutine_self(),
2360         .serialising    = false,
2361         .overlap_offset = offset,
2362         .overlap_bytes  = bytes,
2363     };
2364 
2365     qemu_co_queue_init(&req->wait_queue);
2366 
2367     QLIST_INSERT_HEAD(&bs->tracked_requests, req, list);
2368 }
2369 
2370 static void mark_request_serialising(BdrvTrackedRequest *req, uint64_t align)
2371 {
2372     int64_t overlap_offset = req->offset & ~(align - 1);
2373     unsigned int overlap_bytes = ROUND_UP(req->offset + req->bytes, align)
2374                                - overlap_offset;
2375 
2376     if (!req->serialising) {
2377         req->bs->serialising_in_flight++;
2378         req->serialising = true;
2379     }
2380 
2381     req->overlap_offset = MIN(req->overlap_offset, overlap_offset);
2382     req->overlap_bytes = MAX(req->overlap_bytes, overlap_bytes);
2383 }
2384 
2385 /**
2386  * Round a region to cluster boundaries
2387  */
2388 void 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)
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 
2406 static int bdrv_get_cluster_size(BlockDriverState *bs)
2407 {
2408     BlockDriverInfo bdi;
2409     int ret;
2410 
2411     ret = bdrv_get_info(bs, &bdi);
2412     if (ret < 0 || bdi.cluster_size == 0) {
2413         return bs->request_alignment;
2414     } else {
2415         return bdi.cluster_size;
2416     }
2417 }
2418 
2419 static bool tracked_request_overlaps(BdrvTrackedRequest *req,
2420                                      int64_t offset, unsigned int bytes)
2421 {
2422     /*        aaaa   bbbb */
2423     if (offset >= req->overlap_offset + req->overlap_bytes) {
2424         return false;
2425     }
2426     /* bbbb   aaaa        */
2427     if (req->overlap_offset >= offset + bytes) {
2428         return false;
2429     }
2430     return true;
2431 }
2432 
2433 static bool coroutine_fn wait_serialising_requests(BdrvTrackedRequest *self)
2434 {
2435     BlockDriverState *bs = self->bs;
2436     BdrvTrackedRequest *req;
2437     bool retry;
2438     bool waited = false;
2439 
2440     if (!bs->serialising_in_flight) {
2441         return false;
2442     }
2443 
2444     do {
2445         retry = false;
2446         QLIST_FOREACH(req, &bs->tracked_requests, list) {
2447             if (req == self || (!req->serialising && !self->serialising)) {
2448                 continue;
2449             }
2450             if (tracked_request_overlaps(req, self->overlap_offset,
2451                                          self->overlap_bytes))
2452             {
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 
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;
2467                     waited = true;
2468                     break;
2469                 }
2470             }
2471         }
2472     } while (retry);
2473 
2474     return waited;
2475 }
2476 
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  */
2485 int bdrv_change_backing_file(BlockDriverState *bs,
2486     const char *backing_file, const char *backing_fmt)
2487 {
2488     BlockDriver *drv = bs->drv;
2489     int ret;
2490 
2491     /* Backing file format doesn't make sense without a backing file */
2492     if (backing_fmt && !backing_file) {
2493         return -EINVAL;
2494     }
2495 
2496     if (drv->bdrv_change_backing_file != NULL) {
2497         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
2498     } else {
2499         ret = -ENOTSUP;
2500     }
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;
2507 }
2508 
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  */
2517 BlockDriverState *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 
2544 typedef 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  */
2576 int 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     }
2634     bdrv_set_backing_hd(new_top_bs, base_bs);
2635 
2636     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2637         /* so that bdrv_close() does not recursively close the chain */
2638         bdrv_set_backing_hd(intermediate_state->bs, NULL);
2639         bdrv_unref(intermediate_state->bs);
2640     }
2641     ret = 0;
2642 
2643 exit:
2644     QSIMPLEQ_FOREACH_SAFE(intermediate_state, &states_to_delete, entry, next) {
2645         g_free(intermediate_state);
2646     }
2647     return ret;
2648 }
2649 
2650 
2651 static int bdrv_check_byte_request(BlockDriverState *bs, int64_t offset,
2652                                    size_t size)
2653 {
2654     int64_t len;
2655 
2656     if (size > INT_MAX) {
2657         return -EIO;
2658     }
2659 
2660     if (!bdrv_is_inserted(bs))
2661         return -ENOMEDIUM;
2662 
2663     if (bs->growable)
2664         return 0;
2665 
2666     len = bdrv_getlength(bs);
2667 
2668     if (offset < 0)
2669         return -EIO;
2670 
2671     if ((offset > len) || (len - offset < size))
2672         return -EIO;
2673 
2674     return 0;
2675 }
2676 
2677 static int bdrv_check_request(BlockDriverState *bs, int64_t sector_num,
2678                               int nb_sectors)
2679 {
2680     if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2681         return -EIO;
2682     }
2683 
2684     return bdrv_check_byte_request(bs, sector_num * BDRV_SECTOR_SIZE,
2685                                    nb_sectors * BDRV_SECTOR_SIZE);
2686 }
2687 
2688 typedef struct RwCo {
2689     BlockDriverState *bs;
2690     int64_t offset;
2691     QEMUIOVector *qiov;
2692     bool is_write;
2693     int ret;
2694     BdrvRequestFlags flags;
2695 } RwCo;
2696 
2697 static void coroutine_fn bdrv_rw_co_entry(void *opaque)
2698 {
2699     RwCo *rwco = opaque;
2700 
2701     if (!rwco->is_write) {
2702         rwco->ret = bdrv_co_do_preadv(rwco->bs, rwco->offset,
2703                                       rwco->qiov->size, rwco->qiov,
2704                                       rwco->flags);
2705     } else {
2706         rwco->ret = bdrv_co_do_pwritev(rwco->bs, rwco->offset,
2707                                        rwco->qiov->size, rwco->qiov,
2708                                        rwco->flags);
2709     }
2710 }
2711 
2712 /*
2713  * Process a vectored synchronous request using coroutines
2714  */
2715 static int bdrv_prwv_co(BlockDriverState *bs, int64_t offset,
2716                         QEMUIOVector *qiov, bool is_write,
2717                         BdrvRequestFlags flags)
2718 {
2719     Coroutine *co;
2720     RwCo rwco = {
2721         .bs = bs,
2722         .offset = offset,
2723         .qiov = qiov,
2724         .is_write = is_write,
2725         .ret = NOT_DONE,
2726         .flags = flags,
2727     };
2728 
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 
2740     if (qemu_in_coroutine()) {
2741         /* Fast-path if already in coroutine context */
2742         bdrv_rw_co_entry(&rwco);
2743     } else {
2744         AioContext *aio_context = bdrv_get_aio_context(bs);
2745 
2746         co = qemu_coroutine_create(bdrv_rw_co_entry);
2747         qemu_coroutine_enter(co, &rwco);
2748         while (rwco.ret == NOT_DONE) {
2749             aio_poll(aio_context, true);
2750         }
2751     }
2752     return rwco.ret;
2753 }
2754 
2755 /*
2756  * Process a synchronous request using coroutines
2757  */
2758 static int bdrv_rw_co(BlockDriverState *bs, int64_t sector_num, uint8_t *buf,
2759                       int nb_sectors, bool is_write, BdrvRequestFlags flags)
2760 {
2761     QEMUIOVector qiov;
2762     struct iovec iov = {
2763         .iov_base = (void *)buf,
2764         .iov_len = nb_sectors * BDRV_SECTOR_SIZE,
2765     };
2766 
2767     if (nb_sectors < 0 || nb_sectors > INT_MAX / BDRV_SECTOR_SIZE) {
2768         return -EINVAL;
2769     }
2770 
2771     qemu_iovec_init_external(&qiov, &iov, 1);
2772     return bdrv_prwv_co(bs, sector_num << BDRV_SECTOR_BITS,
2773                         &qiov, is_write, flags);
2774 }
2775 
2776 /* return < 0 if error. See bdrv_write() for the return codes */
2777 int bdrv_read(BlockDriverState *bs, int64_t sector_num,
2778               uint8_t *buf, int nb_sectors)
2779 {
2780     return bdrv_rw_co(bs, sector_num, buf, nb_sectors, false, 0);
2781 }
2782 
2783 /* Just like bdrv_read(), but with I/O throttling temporarily disabled */
2784 int 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;
2792     ret = bdrv_read(bs, sector_num, buf, nb_sectors);
2793     bs->io_limits_enabled = enabled;
2794     return ret;
2795 }
2796 
2797 /* Return < 0 if error. Important errors are:
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 */
2803 int bdrv_write(BlockDriverState *bs, int64_t sector_num,
2804                const uint8_t *buf, int nb_sectors)
2805 {
2806     return bdrv_rw_co(bs, sector_num, (uint8_t *)buf, nb_sectors, true, 0);
2807 }
2808 
2809 int bdrv_write_zeroes(BlockDriverState *bs, int64_t sector_num,
2810                       int nb_sectors, BdrvRequestFlags flags)
2811 {
2812     return bdrv_rw_co(bs, sector_num, NULL, nb_sectors, true,
2813                       BDRV_REQ_ZERO_WRITE | flags);
2814 }
2815 
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  */
2824 int bdrv_make_zero(BlockDriverState *bs, BdrvRequestFlags flags)
2825 {
2826     int64_t target_size;
2827     int64_t ret, nb_sectors, sector_num = 0;
2828     int n;
2829 
2830     target_size = bdrv_getlength(bs);
2831     if (target_size < 0) {
2832         return target_size;
2833     }
2834     target_size /= BDRV_SECTOR_SIZE;
2835 
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);
2845         if (ret < 0) {
2846             error_report("error getting block status at sector %" PRId64 ": %s",
2847                          sector_num, strerror(-ret));
2848             return ret;
2849         }
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 
2864 int bdrv_pread(BlockDriverState *bs, int64_t offset, void *buf, int bytes)
2865 {
2866     QEMUIOVector qiov;
2867     struct iovec iov = {
2868         .iov_base = (void *)buf,
2869         .iov_len = bytes,
2870     };
2871     int ret;
2872 
2873     if (bytes < 0) {
2874         return -EINVAL;
2875     }
2876 
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;
2881     }
2882 
2883     return bytes;
2884 }
2885 
2886 int bdrv_pwritev(BlockDriverState *bs, int64_t offset, QEMUIOVector *qiov)
2887 {
2888     int ret;
2889 
2890     ret = bdrv_prwv_co(bs, offset, qiov, true, 0);
2891     if (ret < 0) {
2892         return ret;
2893     }
2894 
2895     return qiov->size;
2896 }
2897 
2898 int bdrv_pwrite(BlockDriverState *bs, int64_t offset,
2899                 const void *buf, int bytes)
2900 {
2901     QEMUIOVector qiov;
2902     struct iovec iov = {
2903         .iov_base   = (void *) buf,
2904         .iov_len    = bytes,
2905     };
2906 
2907     if (bytes < 0) {
2908         return -EINVAL;
2909     }
2910 
2911     qemu_iovec_init_external(&qiov, &iov, 1);
2912     return bdrv_pwritev(bs, offset, &qiov);
2913 }
2914 
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  */
2921 int 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 
2931     /* No flush needed for cache modes that already do it */
2932     if (bs->enable_write_cache) {
2933         bdrv_flush(bs);
2934     }
2935 
2936     return 0;
2937 }
2938 
2939 static int coroutine_fn bdrv_co_do_copy_on_readv(BlockDriverState *bs,
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 
2949     BlockDriver *drv = bs->drv;
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      */
2960     bdrv_round_to_clusters(bs, sector_num, nb_sectors,
2961                            &cluster_sector_num, &cluster_nb_sectors);
2962 
2963     trace_bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors,
2964                                    cluster_sector_num, cluster_nb_sectors);
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 
2970     ret = drv->bdrv_co_readv(bs, cluster_sector_num, cluster_nb_sectors,
2971                              &bounce_qiov);
2972     if (ret < 0) {
2973         goto err;
2974     }
2975 
2976     if (drv->bdrv_co_write_zeroes &&
2977         buffer_is_zero(bounce_buffer, iov.iov_len)) {
2978         ret = bdrv_co_do_write_zeroes(bs, cluster_sector_num,
2979                                       cluster_nb_sectors, 0);
2980     } else {
2981         /* This does not change the data on the disk, it is not necessary
2982          * to flush even in cache=writethrough mode.
2983          */
2984         ret = drv->bdrv_co_writev(bs, cluster_sector_num, cluster_nb_sectors,
2985                                   &bounce_qiov);
2986     }
2987 
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;
2997     qemu_iovec_from_buf(qiov, 0, bounce_buffer + skip_bytes,
2998                         nb_sectors * BDRV_SECTOR_SIZE);
2999 
3000 err:
3001     qemu_vfree(bounce_buffer);
3002     return ret;
3003 }
3004 
3005 /*
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.
3009  */
3010 static int coroutine_fn bdrv_aligned_preadv(BlockDriverState *bs,
3011     BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
3012     int64_t align, QEMUIOVector *qiov, int flags)
3013 {
3014     BlockDriver *drv = bs->drv;
3015     int ret;
3016 
3017     int64_t sector_num = offset >> BDRV_SECTOR_BITS;
3018     unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
3019 
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 */
3024     if (flags & BDRV_REQ_COPY_ON_READ) {
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));
3031     }
3032 
3033     wait_serialising_requests(req);
3034 
3035     if (flags & BDRV_REQ_COPY_ON_READ) {
3036         int pnum;
3037 
3038         ret = bdrv_is_allocated(bs, sector_num, nb_sectors, &pnum);
3039         if (ret < 0) {
3040             goto out;
3041         }
3042 
3043         if (!ret || pnum != nb_sectors) {
3044             ret = bdrv_co_do_copy_on_readv(bs, sector_num, nb_sectors, qiov);
3045             goto out;
3046         }
3047     }
3048 
3049     /* Forward the request to the BlockDriver */
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 
3062         total_sectors = DIV_ROUND_UP(len, BDRV_SECTOR_SIZE);
3063         max_nb_sectors = ROUND_UP(MAX(0, total_sectors - sector_num),
3064                                   align >> BDRV_SECTOR_BITS);
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     }
3080 
3081 out:
3082     return ret;
3083 }
3084 
3085 /*
3086  * Handle a read request in coroutine context
3087  */
3088 static int coroutine_fn bdrv_co_do_preadv(BlockDriverState *bs,
3089     int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
3090     BdrvRequestFlags flags)
3091 {
3092     BlockDriver *drv = bs->drv;
3093     BdrvTrackedRequest req;
3094 
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;
3101     int ret;
3102 
3103     if (!drv) {
3104         return -ENOMEDIUM;
3105     }
3106     if (bdrv_check_byte_request(bs, offset, bytes)) {
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) {
3116         bdrv_io_limits_intercept(bs, bytes, false);
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 
3144     tracked_request_begin(&req, bs, offset, bytes, false);
3145     ret = bdrv_aligned_preadv(bs, &req, offset, bytes, align,
3146                               use_local_qiov ? &local_qiov : qiov,
3147                               flags);
3148     tracked_request_end(&req);
3149 
3150     if (use_local_qiov) {
3151         qemu_iovec_destroy(&local_qiov);
3152         qemu_vfree(head_buf);
3153         qemu_vfree(tail_buf);
3154     }
3155 
3156     return ret;
3157 }
3158 
3159 static 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 
3171 int coroutine_fn bdrv_co_readv(BlockDriverState *bs, int64_t sector_num,
3172     int nb_sectors, QEMUIOVector *qiov)
3173 {
3174     trace_bdrv_co_readv(bs, sector_num, nb_sectors);
3175 
3176     return bdrv_co_do_readv(bs, sector_num, nb_sectors, qiov, 0);
3177 }
3178 
3179 int 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);
3186 }
3187 
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 
3193 static int coroutine_fn bdrv_co_do_write_zeroes(BlockDriverState *bs,
3194     int64_t sector_num, int nb_sectors, BdrvRequestFlags flags)
3195 {
3196     BlockDriver *drv = bs->drv;
3197     QEMUIOVector qiov;
3198     struct iovec iov = {0};
3199     int ret = 0;
3200 
3201     int max_write_zeroes = bs->bl.max_write_zeroes ?
3202                            bs->bl.max_write_zeroes : MAX_WRITE_ZEROES_DEFAULT;
3203 
3204     while (nb_sectors > 0 && !ret) {
3205         int num = nb_sectors;
3206 
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.  */
3214                 num = bs->bl.write_zeroes_alignment;
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;
3221             }
3222         }
3223 
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) {
3239                 iov.iov_base = qemu_blockalign(bs, num * BDRV_SECTOR_SIZE);
3240                 memset(iov.iov_base, 0, num * BDRV_SECTOR_SIZE);
3241             }
3242             qemu_iovec_init_external(&qiov, &iov, 1);
3243 
3244             ret = drv->bdrv_co_writev(bs, sector_num, num, &qiov);
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             }
3253         }
3254 
3255         sector_num += num;
3256         nb_sectors -= num;
3257     }
3258 
3259     qemu_vfree(iov.iov_base);
3260     return ret;
3261 }
3262 
3263 /*
3264  * Forwards an already correctly aligned write request to the BlockDriver.
3265  */
3266 static int coroutine_fn bdrv_aligned_pwritev(BlockDriverState *bs,
3267     BdrvTrackedRequest *req, int64_t offset, unsigned int bytes,
3268     QEMUIOVector *qiov, int flags)
3269 {
3270     BlockDriver *drv = bs->drv;
3271     bool waited;
3272     int ret;
3273 
3274     int64_t sector_num = offset >> BDRV_SECTOR_BITS;
3275     unsigned int nb_sectors = bytes >> BDRV_SECTOR_BITS;
3276 
3277     assert((offset & (BDRV_SECTOR_SIZE - 1)) == 0);
3278     assert((bytes & (BDRV_SECTOR_SIZE - 1)) == 0);
3279 
3280     waited = wait_serialising_requests(req);
3281     assert(!waited || !req->serialising);
3282     assert(req->overlap_offset <= offset);
3283     assert(offset + bytes <= req->overlap_offset + req->overlap_bytes);
3284 
3285     ret = notifier_with_return_list_notify(&bs->before_write_notifiers, req);
3286 
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 
3296     if (ret < 0) {
3297         /* Do nothing, write notifier decided to fail this request */
3298     } else if (flags & BDRV_REQ_ZERO_WRITE) {
3299         BLKDBG_EVENT(bs, BLKDBG_PWRITEV_ZERO);
3300         ret = bdrv_co_do_write_zeroes(bs, sector_num, nb_sectors, flags);
3301     } else {
3302         BLKDBG_EVENT(bs, BLKDBG_PWRITEV);
3303         ret = drv->bdrv_co_writev(bs, sector_num, nb_sectors, qiov);
3304     }
3305     BLKDBG_EVENT(bs, BLKDBG_PWRITEV_DONE);
3306 
3307     if (ret == 0 && !bs->enable_write_cache) {
3308         ret = bdrv_co_flush(bs);
3309     }
3310 
3311     bdrv_set_dirty(bs, sector_num, nb_sectors);
3312 
3313     if (bs->wr_highest_sector < sector_num + nb_sectors - 1) {
3314         bs->wr_highest_sector = sector_num + nb_sectors - 1;
3315     }
3316     if (bs->growable && ret >= 0) {
3317         bs->total_sectors = MAX(bs->total_sectors, sector_num + nb_sectors);
3318     }
3319 
3320     return ret;
3321 }
3322 
3323 /*
3324  * Handle a write request in coroutine context
3325  */
3326 static int coroutine_fn bdrv_co_do_pwritev(BlockDriverState *bs,
3327     int64_t offset, unsigned int bytes, QEMUIOVector *qiov,
3328     BdrvRequestFlags flags)
3329 {
3330     BdrvTrackedRequest req;
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;
3337     int ret;
3338 
3339     if (!bs->drv) {
3340         return -ENOMEDIUM;
3341     }
3342     if (bs->read_only) {
3343         return -EACCES;
3344     }
3345     if (bdrv_check_byte_request(bs, offset, bytes)) {
3346         return -EIO;
3347     }
3348 
3349     /* throttling disk I/O */
3350     if (bs->io_limits_enabled) {
3351         bdrv_io_limits_intercept(bs, bytes, true);
3352     }
3353 
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      */
3359     tracked_request_begin(&req, bs, offset, bytes, true);
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 
3375         BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_HEAD);
3376         ret = bdrv_aligned_preadv(bs, &req, offset & ~(align - 1), align,
3377                                   align, &head_qiov, 0);
3378         if (ret < 0) {
3379             goto fail;
3380         }
3381         BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_HEAD);
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;
3396         bool waited;
3397 
3398         mark_request_serialising(&req, align);
3399         waited = wait_serialising_requests(&req);
3400         assert(!waited || !use_local_qiov);
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 
3409         BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_TAIL);
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         }
3415         BLKDBG_EVENT(bs, BLKDBG_PWRITEV_RMW_AFTER_TAIL);
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 
3433 fail:
3434     tracked_request_end(&req);
3435 
3436     if (use_local_qiov) {
3437         qemu_iovec_destroy(&local_qiov);
3438     }
3439     qemu_vfree(head_buf);
3440     qemu_vfree(tail_buf);
3441 
3442     return ret;
3443 }
3444 
3445 static 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 
3457 int 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 
3462     return bdrv_co_do_writev(bs, sector_num, nb_sectors, qiov, 0);
3463 }
3464 
3465 int coroutine_fn bdrv_co_write_zeroes(BlockDriverState *bs,
3466                                       int64_t sector_num, int nb_sectors,
3467                                       BdrvRequestFlags flags)
3468 {
3469     trace_bdrv_co_write_zeroes(bs, sector_num, nb_sectors, flags);
3470 
3471     if (!(bs->open_flags & BDRV_O_UNMAP)) {
3472         flags &= ~BDRV_REQ_MAY_UNMAP;
3473     }
3474 
3475     return bdrv_co_do_writev(bs, sector_num, nb_sectors, NULL,
3476                              BDRV_REQ_ZERO_WRITE | flags);
3477 }
3478 
3479 /**
3480  * Truncate file to 'offset' bytes (needed only for file protocols)
3481  */
3482 int bdrv_truncate(BlockDriverState *bs, int64_t offset)
3483 {
3484     BlockDriver *drv = bs->drv;
3485     int ret;
3486     if (!drv)
3487         return -ENOMEDIUM;
3488     if (!drv->bdrv_truncate)
3489         return -ENOTSUP;
3490     if (bs->read_only)
3491         return -EACCES;
3492     if (bdrv_op_is_blocked(bs, BLOCK_OP_TYPE_RESIZE, NULL)) {
3493         return -EBUSY;
3494     }
3495     ret = drv->bdrv_truncate(bs, offset);
3496     if (ret == 0) {
3497         ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3498         bdrv_dev_resize_cb(bs);
3499     }
3500     return ret;
3501 }
3502 
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  */
3507 int64_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 
3522 /**
3523  * Length of a file in bytes. Return < 0 if error or unknown.
3524  */
3525 int64_t bdrv_getlength(BlockDriverState *bs)
3526 {
3527     BlockDriver *drv = bs->drv;
3528     if (!drv)
3529         return -ENOMEDIUM;
3530 
3531     if (drv->has_variable_length) {
3532         int ret = refresh_total_sectors(bs, bs->total_sectors);
3533         if (ret < 0) {
3534             return ret;
3535         }
3536     }
3537     return bs->total_sectors * BDRV_SECTOR_SIZE;
3538 }
3539 
3540 /* return 0 as number of sectors if no device present or error */
3541 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3542 {
3543     int64_t length;
3544     length = bdrv_getlength(bs);
3545     if (length < 0)
3546         length = 0;
3547     else
3548         length = length >> BDRV_SECTOR_BITS;
3549     *nb_sectors_ptr = length;
3550 }
3551 
3552 void bdrv_set_on_error(BlockDriverState *bs, BlockdevOnError on_read_error,
3553                        BlockdevOnError on_write_error)
3554 {
3555     bs->on_read_error = on_read_error;
3556     bs->on_write_error = on_write_error;
3557 }
3558 
3559 BlockdevOnError bdrv_get_on_error(BlockDriverState *bs, bool is_read)
3560 {
3561     return is_read ? bs->on_read_error : bs->on_write_error;
3562 }
3563 
3564 BlockErrorAction 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:
3570         return (error == ENOSPC) ?
3571                BLOCK_ERROR_ACTION_STOP : BLOCK_ERROR_ACTION_REPORT;
3572     case BLOCKDEV_ON_ERROR_STOP:
3573         return BLOCK_ERROR_ACTION_STOP;
3574     case BLOCKDEV_ON_ERROR_REPORT:
3575         return BLOCK_ERROR_ACTION_REPORT;
3576     case BLOCKDEV_ON_ERROR_IGNORE:
3577         return BLOCK_ERROR_ACTION_IGNORE;
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  */
3587 void bdrv_error_action(BlockDriverState *bs, BlockErrorAction action,
3588                        bool is_read, int error)
3589 {
3590     assert(error >= 0);
3591 
3592     if (action == BLOCK_ERROR_ACTION_STOP) {
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          */
3597         bdrv_iostatus_set_err(bs, error);
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();
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);
3612         qemu_system_vmstop_request(RUN_STATE_IO_ERROR);
3613     } else {
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);
3618     }
3619 }
3620 
3621 int bdrv_is_read_only(BlockDriverState *bs)
3622 {
3623     return bs->read_only;
3624 }
3625 
3626 int bdrv_is_sg(BlockDriverState *bs)
3627 {
3628     return bs->sg;
3629 }
3630 
3631 int bdrv_enable_write_cache(BlockDriverState *bs)
3632 {
3633     return bs->enable_write_cache;
3634 }
3635 
3636 void bdrv_set_enable_write_cache(BlockDriverState *bs, bool wce)
3637 {
3638     bs->enable_write_cache = wce;
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     }
3646 }
3647 
3648 int bdrv_is_encrypted(BlockDriverState *bs)
3649 {
3650     if (bs->backing_hd && bs->backing_hd->encrypted)
3651         return 1;
3652     return bs->encrypted;
3653 }
3654 
3655 int 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 
3664 int 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     }
3674     if (!bs->encrypted) {
3675         return -EINVAL;
3676     } else if (!bs->drv || !bs->drv->bdrv_set_key) {
3677         return -ENOMEDIUM;
3678     }
3679     ret = bs->drv->bdrv_set_key(bs, key);
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 */
3685         bdrv_dev_change_media_cb(bs, true);
3686     }
3687     return ret;
3688 }
3689 
3690 const char *bdrv_get_format_name(BlockDriverState *bs)
3691 {
3692     return bs->drv ? bs->drv->format_name : NULL;
3693 }
3694 
3695 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
3696                          void *opaque)
3697 {
3698     BlockDriver *drv;
3699     int count = 0;
3700     const char **formats = NULL;
3701 
3702     QLIST_FOREACH(drv, &bdrv_drivers, list) {
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         }
3716     }
3717     g_free(formats);
3718 }
3719 
3720 /* This function is to find block backend bs */
3721 BlockDriverState *bdrv_find(const char *name)
3722 {
3723     BlockDriverState *bs;
3724 
3725     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
3726         if (!strcmp(name, bs->device_name)) {
3727             return bs;
3728         }
3729     }
3730     return NULL;
3731 }
3732 
3733 /* This function is to find a node in the bs graph */
3734 BlockDriverState *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 
3748 /* Put this QMP function here so it can access the static graph_bdrv_states. */
3749 BlockDeviceInfoList *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 
3765 BlockDriverState *bdrv_lookup_bs(const char *device,
3766                                  const char *node_name,
3767                                  Error **errp)
3768 {
3769     BlockDriverState *bs = NULL;
3770 
3771     if (device) {
3772         bs = bdrv_find(device);
3773 
3774         if (bs) {
3775             return bs;
3776         }
3777     }
3778 
3779     if (node_name) {
3780         bs = bdrv_find_node(node_name);
3781 
3782         if (bs) {
3783             return bs;
3784         }
3785     }
3786 
3787     error_setg(errp, "Cannot find device=%s nor node_name=%s",
3788                      device ? device : "",
3789                      node_name ? node_name : "");
3790     return NULL;
3791 }
3792 
3793 BlockDriverState *bdrv_next(BlockDriverState *bs)
3794 {
3795     if (!bs) {
3796         return QTAILQ_FIRST(&bdrv_states);
3797     }
3798     return QTAILQ_NEXT(bs, device_list);
3799 }
3800 
3801 void bdrv_iterate(void (*it)(void *opaque, BlockDriverState *bs), void *opaque)
3802 {
3803     BlockDriverState *bs;
3804 
3805     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
3806         it(opaque, bs);
3807     }
3808 }
3809 
3810 const char *bdrv_get_device_name(BlockDriverState *bs)
3811 {
3812     return bs->device_name;
3813 }
3814 
3815 int bdrv_get_flags(BlockDriverState *bs)
3816 {
3817     return bs->open_flags;
3818 }
3819 
3820 int bdrv_flush_all(void)
3821 {
3822     BlockDriverState *bs;
3823     int result = 0;
3824 
3825     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
3826         AioContext *aio_context = bdrv_get_aio_context(bs);
3827         int ret;
3828 
3829         aio_context_acquire(aio_context);
3830         ret = bdrv_flush(bs);
3831         if (ret < 0 && !result) {
3832             result = ret;
3833         }
3834         aio_context_release(aio_context);
3835     }
3836 
3837     return result;
3838 }
3839 
3840 int bdrv_has_zero_init_1(BlockDriverState *bs)
3841 {
3842     return 1;
3843 }
3844 
3845 int bdrv_has_zero_init(BlockDriverState *bs)
3846 {
3847     assert(bs->drv);
3848 
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     }
3854     if (bs->drv->bdrv_has_zero_init) {
3855         return bs->drv->bdrv_has_zero_init(bs);
3856     }
3857 
3858     /* safe default */
3859     return 0;
3860 }
3861 
3862 bool 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 
3877 bool 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 
3892 typedef struct BdrvCoGetBlockStatusData {
3893     BlockDriverState *bs;
3894     BlockDriverState *base;
3895     int64_t sector_num;
3896     int nb_sectors;
3897     int *pnum;
3898     int64_t ret;
3899     bool done;
3900 } BdrvCoGetBlockStatusData;
3901 
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  *
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  *
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  *
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.
3916  */
3917 static int64_t coroutine_fn bdrv_co_get_block_status(BlockDriverState *bs,
3918                                                      int64_t sector_num,
3919                                                      int nb_sectors, int *pnum)
3920 {
3921     int64_t length;
3922     int64_t n;
3923     int64_t ret, ret2;
3924 
3925     length = bdrv_getlength(bs);
3926     if (length < 0) {
3927         return length;
3928     }
3929 
3930     if (sector_num >= (length >> BDRV_SECTOR_BITS)) {
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 
3940     if (!bs->drv->bdrv_co_get_block_status) {
3941         *pnum = nb_sectors;
3942         ret = BDRV_BLOCK_DATA | BDRV_BLOCK_ALLOCATED;
3943         if (bs->drv->protocol_name) {
3944             ret |= BDRV_BLOCK_OFFSET_VALID | (sector_num * BDRV_SECTOR_SIZE);
3945         }
3946         return ret;
3947     }
3948 
3949     ret = bs->drv->bdrv_co_get_block_status(bs, sector_num, nb_sectors, pnum);
3950     if (ret < 0) {
3951         *pnum = 0;
3952         return ret;
3953     }
3954 
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 
3961     if (ret & (BDRV_BLOCK_DATA | BDRV_BLOCK_ZERO)) {
3962         ret |= BDRV_BLOCK_ALLOCATED;
3963     }
3964 
3965     if (!(ret & BDRV_BLOCK_DATA) && !(ret & BDRV_BLOCK_ZERO)) {
3966         if (bdrv_unallocated_blocks_are_zero(bs)) {
3967             ret |= BDRV_BLOCK_ZERO;
3968         } else if (bs->backing_hd) {
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         }
3975     }
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 
3990     return ret;
3991 }
3992 
3993 /* Coroutine wrapper for bdrv_get_block_status() */
3994 static void coroutine_fn bdrv_get_block_status_co_entry(void *opaque)
3995 {
3996     BdrvCoGetBlockStatusData *data = opaque;
3997     BlockDriverState *bs = data->bs;
3998 
3999     data->ret = bdrv_co_get_block_status(bs, data->sector_num, data->nb_sectors,
4000                                          data->pnum);
4001     data->done = true;
4002 }
4003 
4004 /*
4005  * Synchronous wrapper around bdrv_co_get_block_status().
4006  *
4007  * See bdrv_co_get_block_status() for details.
4008  */
4009 int64_t bdrv_get_block_status(BlockDriverState *bs, int64_t sector_num,
4010                               int nb_sectors, int *pnum)
4011 {
4012     Coroutine *co;
4013     BdrvCoGetBlockStatusData data = {
4014         .bs = bs,
4015         .sector_num = sector_num,
4016         .nb_sectors = nb_sectors,
4017         .pnum = pnum,
4018         .done = false,
4019     };
4020 
4021     if (qemu_in_coroutine()) {
4022         /* Fast-path if already in coroutine context */
4023         bdrv_get_block_status_co_entry(&data);
4024     } else {
4025         AioContext *aio_context = bdrv_get_aio_context(bs);
4026 
4027         co = qemu_coroutine_create(bdrv_get_block_status_co_entry);
4028         qemu_coroutine_enter(co, &data);
4029         while (!data.done) {
4030             aio_poll(aio_context, true);
4031         }
4032     }
4033     return data.ret;
4034 }
4035 
4036 int coroutine_fn bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num,
4037                                    int nb_sectors, int *pnum)
4038 {
4039     int64_t ret = bdrv_get_block_status(bs, sector_num, nb_sectors, pnum);
4040     if (ret < 0) {
4041         return ret;
4042     }
4043     return (ret & BDRV_BLOCK_ALLOCATED);
4044 }
4045 
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  */
4058 int bdrv_is_allocated_above(BlockDriverState *top,
4059                             BlockDriverState *base,
4060                             int64_t sector_num,
4061                             int nb_sectors, int *pnum)
4062 {
4063     BlockDriverState *intermediate;
4064     int ret, n = nb_sectors;
4065 
4066     intermediate = top;
4067     while (intermediate && intermediate != base) {
4068         int pnum_inter;
4069         ret = bdrv_is_allocated(intermediate, sector_num, nb_sectors,
4070                                 &pnum_inter);
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          */
4084         if (n > pnum_inter &&
4085             (intermediate == top ||
4086              sector_num + pnum_inter < intermediate->total_sectors)) {
4087             n = pnum_inter;
4088         }
4089 
4090         intermediate = intermediate->backing_hd;
4091     }
4092 
4093     *pnum = n;
4094     return 0;
4095 }
4096 
4097 const 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 
4107 void bdrv_get_backing_filename(BlockDriverState *bs,
4108                                char *filename, int filename_size)
4109 {
4110     pstrcpy(filename, filename_size, bs->backing_file);
4111 }
4112 
4113 int bdrv_write_compressed(BlockDriverState *bs, int64_t sector_num,
4114                           const uint8_t *buf, int nb_sectors)
4115 {
4116     BlockDriver *drv = bs->drv;
4117     if (!drv)
4118         return -ENOMEDIUM;
4119     if (!drv->bdrv_write_compressed)
4120         return -ENOTSUP;
4121     if (bdrv_check_request(bs, sector_num, nb_sectors))
4122         return -EIO;
4123 
4124     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4125 
4126     return drv->bdrv_write_compressed(bs, sector_num, buf, nb_sectors);
4127 }
4128 
4129 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4130 {
4131     BlockDriver *drv = bs->drv;
4132     if (!drv)
4133         return -ENOMEDIUM;
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 
4140 ImageInfoSpecific *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 
4149 int bdrv_save_vmstate(BlockDriverState *bs, const uint8_t *buf,
4150                       int64_t pos, int size)
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 
4162 int bdrv_writev_vmstate(BlockDriverState *bs, QEMUIOVector *qiov, int64_t pos)
4163 {
4164     BlockDriver *drv = bs->drv;
4165 
4166     if (!drv) {
4167         return -ENOMEDIUM;
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 
4174     return -ENOTSUP;
4175 }
4176 
4177 int bdrv_load_vmstate(BlockDriverState *bs, uint8_t *buf,
4178                       int64_t pos, int size)
4179 {
4180     BlockDriver *drv = bs->drv;
4181     if (!drv)
4182         return -ENOMEDIUM;
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;
4188 }
4189 
4190 void bdrv_debug_event(BlockDriverState *bs, BlkDebugEvent event)
4191 {
4192     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4193         return;
4194     }
4195 
4196     bs->drv->bdrv_debug_event(bs, event);
4197 }
4198 
4199 int 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 
4213 int 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 
4226 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4227 {
4228     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4229         bs = bs->file;
4230     }
4231 
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 
4239 bool 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;
4250 }
4251 
4252 int bdrv_is_snapshot(BlockDriverState *bs)
4253 {
4254     return !!(bs->open_flags & BDRV_O_SNAPSHOT);
4255 }
4256 
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. */
4261 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4262         const char *backing_file)
4263 {
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) {
4272         return NULL;
4273     }
4274 
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             }
4290         } else {
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             }
4314         }
4315     }
4316 
4317     g_free(filename_full);
4318     g_free(backing_file_full);
4319     g_free(filename_tmp);
4320     return retval;
4321 }
4322 
4323 int 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 
4336 BlockDriverState *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 
4352 /**************************************************************/
4353 /* async I/Os */
4354 
4355 BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num,
4356                                  QEMUIOVector *qiov, int nb_sectors,
4357                                  BlockDriverCompletionFunc *cb, void *opaque)
4358 {
4359     trace_bdrv_aio_readv(bs, sector_num, nb_sectors, opaque);
4360 
4361     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
4362                                  cb, opaque, false);
4363 }
4364 
4365 BlockDriverAIOCB *bdrv_aio_writev(BlockDriverState *bs, int64_t sector_num,
4366                                   QEMUIOVector *qiov, int nb_sectors,
4367                                   BlockDriverCompletionFunc *cb, void *opaque)
4368 {
4369     trace_bdrv_aio_writev(bs, sector_num, nb_sectors, opaque);
4370 
4371     return bdrv_co_aio_rw_vector(bs, sector_num, qiov, nb_sectors, 0,
4372                                  cb, opaque, true);
4373 }
4374 
4375 BlockDriverAIOCB *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 
4386 
4387 typedef 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;
4395     } callbacks[];
4396 } MultiwriteCB;
4397 
4398 static 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);
4404         if (mcb->callbacks[i].free_qiov) {
4405             qemu_iovec_destroy(mcb->callbacks[i].free_qiov);
4406         }
4407         g_free(mcb->callbacks[i].free_qiov);
4408     }
4409 }
4410 
4411 static void multiwrite_cb(void *opaque, int ret)
4412 {
4413     MultiwriteCB *mcb = opaque;
4414 
4415     trace_multiwrite_cb(mcb, ret);
4416 
4417     if (ret < 0 && !mcb->error) {
4418         mcb->error = ret;
4419     }
4420 
4421     mcb->num_requests--;
4422     if (mcb->num_requests == 0) {
4423         multiwrite_user_cb(mcb);
4424         g_free(mcb);
4425     }
4426 }
4427 
4428 static int multiwrite_req_compare(const void *a, const void *b)
4429 {
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     }
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  */
4449 static 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 
4464         // Handle exactly sequential writes and overlapping writes.
4465         if (reqs[i].sector <= oldreq_last) {
4466             merge = 1;
4467         }
4468 
4469         if (reqs[outidx].qiov->niov + reqs[i].qiov->niov + 1 > IOV_MAX) {
4470             merge = 0;
4471         }
4472 
4473         if (merge) {
4474             size_t size;
4475             QEMUIOVector *qiov = g_malloc0(sizeof(*qiov));
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;
4482             qemu_iovec_concat(qiov, reqs[outidx].qiov, 0, size);
4483 
4484             // We should need to add any zeros between the two requests
4485             assert (reqs[i].sector <= oldreq_last);
4486 
4487             // Add the second request
4488             qemu_iovec_concat(qiov, reqs[i].qiov, 0, reqs[i].qiov->size);
4489 
4490             reqs[outidx].nb_sectors = qiov->size >> 9;
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  */
4519 int bdrv_aio_multiwrite(BlockDriverState *bs, BlockRequest *reqs, int num_reqs)
4520 {
4521     MultiwriteCB *mcb;
4522     int i;
4523 
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 
4532     if (num_reqs == 0) {
4533         return 0;
4534     }
4535 
4536     // Create MultiwriteCB structure
4537     mcb = g_malloc0(sizeof(*mcb) + num_reqs * sizeof(*mcb->callbacks));
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 
4549     trace_bdrv_aio_multiwrite(mcb, mcb->num_callbacks, num_reqs);
4550 
4551     /* Run the aio requests. */
4552     mcb->num_requests = num_reqs;
4553     for (i = 0; i < num_reqs; i++) {
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);
4558     }
4559 
4560     return 0;
4561 }
4562 
4563 void bdrv_aio_cancel(BlockDriverAIOCB *acb)
4564 {
4565     acb->aiocb_info->cancel(acb);
4566 }
4567 
4568 /**************************************************************/
4569 /* async block device emulation */
4570 
4571 typedef 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 
4581 static void bdrv_aio_cancel_em(BlockDriverAIOCB *blockacb)
4582 {
4583     BlockDriverAIOCBSync *acb =
4584         container_of(blockacb, BlockDriverAIOCBSync, common);
4585     qemu_bh_delete(acb->bh);
4586     acb->bh = NULL;
4587     qemu_aio_release(acb);
4588 }
4589 
4590 static const AIOCBInfo bdrv_em_aiocb_info = {
4591     .aiocb_size         = sizeof(BlockDriverAIOCBSync),
4592     .cancel             = bdrv_aio_cancel_em,
4593 };
4594 
4595 static void bdrv_aio_bh_cb(void *opaque)
4596 {
4597     BlockDriverAIOCBSync *acb = opaque;
4598 
4599     if (!acb->is_write)
4600         qemu_iovec_from_buf(acb->qiov, 0, acb->bounce, acb->qiov->size);
4601     qemu_vfree(acb->bounce);
4602     acb->common.cb(acb->common.opaque, acb->ret);
4603     qemu_bh_delete(acb->bh);
4604     acb->bh = NULL;
4605     qemu_aio_release(acb);
4606 }
4607 
4608 static 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 
4616 {
4617     BlockDriverAIOCBSync *acb;
4618 
4619     acb = qemu_aio_get(&bdrv_em_aiocb_info, bs, cb, opaque);
4620     acb->is_write = is_write;
4621     acb->qiov = qiov;
4622     acb->bounce = qemu_blockalign(bs, qiov->size);
4623     acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_aio_bh_cb, acb);
4624 
4625     if (is_write) {
4626         qemu_iovec_to_buf(acb->qiov, 0, acb->bounce, qiov->size);
4627         acb->ret = bs->drv->bdrv_write(bs, sector_num, acb->bounce, nb_sectors);
4628     } else {
4629         acb->ret = bs->drv->bdrv_read(bs, sector_num, acb->bounce, nb_sectors);
4630     }
4631 
4632     qemu_bh_schedule(acb->bh);
4633 
4634     return &acb->common;
4635 }
4636 
4637 static BlockDriverAIOCB *bdrv_aio_readv_em(BlockDriverState *bs,
4638         int64_t sector_num, QEMUIOVector *qiov, int nb_sectors,
4639         BlockDriverCompletionFunc *cb, void *opaque)
4640 {
4641     return bdrv_aio_rw_vector(bs, sector_num, qiov, nb_sectors, cb, opaque, 0);
4642 }
4643 
4644 static 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);
4649 }
4650 
4651 
4652 typedef struct BlockDriverAIOCBCoroutine {
4653     BlockDriverAIOCB common;
4654     BlockRequest req;
4655     bool is_write;
4656     bool *done;
4657     QEMUBH* bh;
4658 } BlockDriverAIOCBCoroutine;
4659 
4660 static void bdrv_aio_co_cancel_em(BlockDriverAIOCB *blockacb)
4661 {
4662     AioContext *aio_context = bdrv_get_aio_context(blockacb->bs);
4663     BlockDriverAIOCBCoroutine *acb =
4664         container_of(blockacb, BlockDriverAIOCBCoroutine, common);
4665     bool done = false;
4666 
4667     acb->done = &done;
4668     while (!done) {
4669         aio_poll(aio_context, true);
4670     }
4671 }
4672 
4673 static const AIOCBInfo bdrv_em_co_aiocb_info = {
4674     .aiocb_size         = sizeof(BlockDriverAIOCBCoroutine),
4675     .cancel             = bdrv_aio_co_cancel_em,
4676 };
4677 
4678 static void bdrv_co_em_bh(void *opaque)
4679 {
4680     BlockDriverAIOCBCoroutine *acb = opaque;
4681 
4682     acb->common.cb(acb->common.opaque, acb->req.error);
4683 
4684     if (acb->done) {
4685         *acb->done = true;
4686     }
4687 
4688     qemu_bh_delete(acb->bh);
4689     qemu_aio_release(acb);
4690 }
4691 
4692 /* Invoke bdrv_co_do_readv/bdrv_co_do_writev */
4693 static 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,
4700             acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
4701     } else {
4702         acb->req.error = bdrv_co_do_writev(bs, acb->req.sector,
4703             acb->req.nb_sectors, acb->req.qiov, acb->req.flags);
4704     }
4705 
4706     acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4707     qemu_bh_schedule(acb->bh);
4708 }
4709 
4710 static BlockDriverAIOCB *bdrv_co_aio_rw_vector(BlockDriverState *bs,
4711                                                int64_t sector_num,
4712                                                QEMUIOVector *qiov,
4713                                                int nb_sectors,
4714                                                BdrvRequestFlags flags,
4715                                                BlockDriverCompletionFunc *cb,
4716                                                void *opaque,
4717                                                bool is_write)
4718 {
4719     Coroutine *co;
4720     BlockDriverAIOCBCoroutine *acb;
4721 
4722     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4723     acb->req.sector = sector_num;
4724     acb->req.nb_sectors = nb_sectors;
4725     acb->req.qiov = qiov;
4726     acb->req.flags = flags;
4727     acb->is_write = is_write;
4728     acb->done = NULL;
4729 
4730     co = qemu_coroutine_create(bdrv_co_do_rw);
4731     qemu_coroutine_enter(co, acb);
4732 
4733     return &acb->common;
4734 }
4735 
4736 static void coroutine_fn bdrv_aio_flush_co_entry(void *opaque)
4737 {
4738     BlockDriverAIOCBCoroutine *acb = opaque;
4739     BlockDriverState *bs = acb->common.bs;
4740 
4741     acb->req.error = bdrv_co_flush(bs);
4742     acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4743     qemu_bh_schedule(acb->bh);
4744 }
4745 
4746 BlockDriverAIOCB *bdrv_aio_flush(BlockDriverState *bs,
4747         BlockDriverCompletionFunc *cb, void *opaque)
4748 {
4749     trace_bdrv_aio_flush(bs, opaque);
4750 
4751     Coroutine *co;
4752     BlockDriverAIOCBCoroutine *acb;
4753 
4754     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4755     acb->done = NULL;
4756 
4757     co = qemu_coroutine_create(bdrv_aio_flush_co_entry);
4758     qemu_coroutine_enter(co, acb);
4759 
4760     return &acb->common;
4761 }
4762 
4763 static 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);
4769     acb->bh = aio_bh_new(bdrv_get_aio_context(bs), bdrv_co_em_bh, acb);
4770     qemu_bh_schedule(acb->bh);
4771 }
4772 
4773 BlockDriverAIOCB *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 
4782     acb = qemu_aio_get(&bdrv_em_co_aiocb_info, bs, cb, opaque);
4783     acb->req.sector = sector_num;
4784     acb->req.nb_sectors = nb_sectors;
4785     acb->done = NULL;
4786     co = qemu_coroutine_create(bdrv_aio_discard_co_entry);
4787     qemu_coroutine_enter(co, acb);
4788 
4789     return &acb->common;
4790 }
4791 
4792 void bdrv_init(void)
4793 {
4794     module_call_init(MODULE_INIT_BLOCK);
4795 }
4796 
4797 void bdrv_init_with_whitelist(void)
4798 {
4799     use_bdrv_whitelist = 1;
4800     bdrv_init();
4801 }
4802 
4803 void *qemu_aio_get(const AIOCBInfo *aiocb_info, BlockDriverState *bs,
4804                    BlockDriverCompletionFunc *cb, void *opaque)
4805 {
4806     BlockDriverAIOCB *acb;
4807 
4808     acb = g_slice_alloc(aiocb_info->aiocb_size);
4809     acb->aiocb_info = aiocb_info;
4810     acb->bs = bs;
4811     acb->cb = cb;
4812     acb->opaque = opaque;
4813     return acb;
4814 }
4815 
4816 void qemu_aio_release(void *p)
4817 {
4818     BlockDriverAIOCB *acb = p;
4819     g_slice_free1(acb->aiocb_info->aiocb_size, acb);
4820 }
4821 
4822 /**************************************************************/
4823 /* Coroutine block device emulation */
4824 
4825 typedef struct CoroutineIOCompletion {
4826     Coroutine *coroutine;
4827     int ret;
4828 } CoroutineIOCompletion;
4829 
4830 static 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 
4838 static 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) {
4848         acb = bs->drv->bdrv_aio_writev(bs, sector_num, iov, nb_sectors,
4849                                        bdrv_co_io_em_complete, &co);
4850     } else {
4851         acb = bs->drv->bdrv_aio_readv(bs, sector_num, iov, nb_sectors,
4852                                       bdrv_co_io_em_complete, &co);
4853     }
4854 
4855     trace_bdrv_co_io_em(bs, sector_num, nb_sectors, is_write, acb);
4856     if (!acb) {
4857         return -EIO;
4858     }
4859     qemu_coroutine_yield();
4860 
4861     return co.ret;
4862 }
4863 
4864 static 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 
4871 static 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 
4878 static void coroutine_fn bdrv_flush_co_entry(void *opaque)
4879 {
4880     RwCo *rwco = opaque;
4881 
4882     rwco->ret = bdrv_co_flush(rwco->bs);
4883 }
4884 
4885 int coroutine_fn bdrv_co_flush(BlockDriverState *bs)
4886 {
4887     int ret;
4888 
4889     if (!bs || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
4890         return 0;
4891     }
4892 
4893     /* Write back cached data to the OS even with cache=unsafe */
4894     BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_OS);
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 
4902     /* But don't actually force it to the disk with cache=unsafe */
4903     if (bs->open_flags & BDRV_O_NO_FLUSH) {
4904         goto flush_parent;
4905     }
4906 
4907     BLKDBG_EVENT(bs->file, BLKDBG_FLUSH_TO_DISK);
4908     if (bs->drv->bdrv_co_flush_to_disk) {
4909         ret = bs->drv->bdrv_co_flush_to_disk(bs);
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) {
4918             ret = -EIO;
4919         } else {
4920             qemu_coroutine_yield();
4921             ret = co.ret;
4922         }
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          */
4935         ret = 0;
4936     }
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      */
4944 flush_parent:
4945     return bdrv_co_flush(bs->file);
4946 }
4947 
4948 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4949 {
4950     Error *local_err = NULL;
4951     int ret;
4952 
4953     if (!bs->drv)  {
4954         return;
4955     }
4956 
4957     if (bs->drv->bdrv_invalidate_cache) {
4958         bs->drv->bdrv_invalidate_cache(bs, &local_err);
4959     } else if (bs->file) {
4960         bdrv_invalidate_cache(bs->file, &local_err);
4961     }
4962     if (local_err) {
4963         error_propagate(errp, local_err);
4964         return;
4965     }
4966 
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     }
4972 }
4973 
4974 void bdrv_invalidate_cache_all(Error **errp)
4975 {
4976     BlockDriverState *bs;
4977     Error *local_err = NULL;
4978 
4979     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
4980         AioContext *aio_context = bdrv_get_aio_context(bs);
4981 
4982         aio_context_acquire(aio_context);
4983         bdrv_invalidate_cache(bs, &local_err);
4984         aio_context_release(aio_context);
4985         if (local_err) {
4986             error_propagate(errp, local_err);
4987             return;
4988         }
4989     }
4990 }
4991 
4992 void bdrv_clear_incoming_migration_all(void)
4993 {
4994     BlockDriverState *bs;
4995 
4996     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
4997         AioContext *aio_context = bdrv_get_aio_context(bs);
4998 
4999         aio_context_acquire(aio_context);
5000         bs->open_flags = bs->open_flags & ~(BDRV_O_INCOMING);
5001         aio_context_release(aio_context);
5002     }
5003 }
5004 
5005 int bdrv_flush(BlockDriverState *bs)
5006 {
5007     Coroutine *co;
5008     RwCo rwco = {
5009         .bs = bs,
5010         .ret = NOT_DONE,
5011     };
5012 
5013     if (qemu_in_coroutine()) {
5014         /* Fast-path if already in coroutine context */
5015         bdrv_flush_co_entry(&rwco);
5016     } else {
5017         AioContext *aio_context = bdrv_get_aio_context(bs);
5018 
5019         co = qemu_coroutine_create(bdrv_flush_co_entry);
5020         qemu_coroutine_enter(co, &rwco);
5021         while (rwco.ret == NOT_DONE) {
5022             aio_poll(aio_context, true);
5023         }
5024     }
5025 
5026     return rwco.ret;
5027 }
5028 
5029 typedef struct DiscardCo {
5030     BlockDriverState *bs;
5031     int64_t sector_num;
5032     int nb_sectors;
5033     int ret;
5034 } DiscardCo;
5035 static void coroutine_fn bdrv_discard_co_entry(void *opaque)
5036 {
5037     DiscardCo *rwco = opaque;
5038 
5039     rwco->ret = bdrv_co_discard(rwco->bs, rwco->sector_num, rwco->nb_sectors);
5040 }
5041 
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 
5047 int coroutine_fn bdrv_co_discard(BlockDriverState *bs, int64_t sector_num,
5048                                  int nb_sectors)
5049 {
5050     int max_discard;
5051 
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;
5058     }
5059 
5060     bdrv_reset_dirty(bs, sector_num, nb_sectors);
5061 
5062     /* Do nothing if disabled.  */
5063     if (!(bs->open_flags & BDRV_O_UNMAP)) {
5064         return 0;
5065     }
5066 
5067     if (!bs->drv->bdrv_co_discard && !bs->drv->bdrv_aio_discard) {
5068         return 0;
5069     }
5070 
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;
5075 
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;
5082             }
5083             num -= sector_num % bs->bl.discard_alignment;
5084         }
5085 
5086         /* limit request size */
5087         if (num > max_discard) {
5088             num = max_discard;
5089         }
5090 
5091         if (bs->drv->bdrv_co_discard) {
5092             ret = bs->drv->bdrv_co_discard(bs, sector_num, num);
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;
5106             }
5107         }
5108         if (ret && ret != -ENOTSUP) {
5109             return ret;
5110         }
5111 
5112         sector_num += num;
5113         nb_sectors -= num;
5114     }
5115     return 0;
5116 }
5117 
5118 int bdrv_discard(BlockDriverState *bs, int64_t sector_num, int nb_sectors)
5119 {
5120     Coroutine *co;
5121     DiscardCo rwco = {
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 {
5132         AioContext *aio_context = bdrv_get_aio_context(bs);
5133 
5134         co = qemu_coroutine_create(bdrv_discard_co_entry);
5135         qemu_coroutine_enter(co, &rwco);
5136         while (rwco.ret == NOT_DONE) {
5137             aio_poll(aio_context, true);
5138         }
5139     }
5140 
5141     return rwco.ret;
5142 }
5143 
5144 /**************************************************************/
5145 /* removable device support */
5146 
5147 /**
5148  * Return TRUE if the media is present
5149  */
5150 int bdrv_is_inserted(BlockDriverState *bs)
5151 {
5152     BlockDriver *drv = bs->drv;
5153 
5154     if (!drv)
5155         return 0;
5156     if (!drv->bdrv_is_inserted)
5157         return 1;
5158     return drv->bdrv_is_inserted(bs);
5159 }
5160 
5161 /**
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.
5164  */
5165 int bdrv_media_changed(BlockDriverState *bs)
5166 {
5167     BlockDriver *drv = bs->drv;
5168 
5169     if (drv && drv->bdrv_media_changed) {
5170         return drv->bdrv_media_changed(bs);
5171     }
5172     return -ENOTSUP;
5173 }
5174 
5175 /**
5176  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
5177  */
5178 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
5179 {
5180     BlockDriver *drv = bs->drv;
5181 
5182     if (drv && drv->bdrv_eject) {
5183         drv->bdrv_eject(bs, eject_flag);
5184     }
5185 
5186     if (bs->device_name[0] != '\0') {
5187         qapi_event_send_device_tray_moved(bdrv_get_device_name(bs),
5188                                           eject_flag, &error_abort);
5189     }
5190 }
5191 
5192 /**
5193  * Lock or unlock the media (if it is locked, the user won't be able
5194  * to eject it manually).
5195  */
5196 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
5197 {
5198     BlockDriver *drv = bs->drv;
5199 
5200     trace_bdrv_lock_medium(bs, locked);
5201 
5202     if (drv && drv->bdrv_lock_medium) {
5203         drv->bdrv_lock_medium(bs, locked);
5204     }
5205 }
5206 
5207 /* needed for generic scsi interface */
5208 
5209 int 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 }
5217 
5218 BlockDriverAIOCB *bdrv_aio_ioctl(BlockDriverState *bs,
5219         unsigned long int req, void *buf,
5220         BlockDriverCompletionFunc *cb, void *opaque)
5221 {
5222     BlockDriver *drv = bs->drv;
5223 
5224     if (drv && drv->bdrv_aio_ioctl)
5225         return drv->bdrv_aio_ioctl(bs, req, buf, cb, opaque);
5226     return NULL;
5227 }
5228 
5229 void bdrv_set_guest_block_size(BlockDriverState *bs, int align)
5230 {
5231     bs->guest_block_size = align;
5232 }
5233 
5234 void *qemu_blockalign(BlockDriverState *bs, size_t size)
5235 {
5236     return qemu_memalign(bdrv_opt_mem_align(bs), size);
5237 }
5238 
5239 /*
5240  * Check if all memory in this vector is sector aligned.
5241  */
5242 bool bdrv_qiov_is_aligned(BlockDriverState *bs, QEMUIOVector *qiov)
5243 {
5244     int i;
5245     size_t alignment = bdrv_opt_mem_align(bs);
5246 
5247     for (i = 0; i < qiov->niov; i++) {
5248         if ((uintptr_t) qiov->iov[i].iov_base % alignment) {
5249             return false;
5250         }
5251         if (qiov->iov[i].iov_len % alignment) {
5252             return false;
5253         }
5254     }
5255 
5256     return true;
5257 }
5258 
5259 BdrvDirtyBitmap *bdrv_create_dirty_bitmap(BlockDriverState *bs, int granularity,
5260                                           Error **errp)
5261 {
5262     int64_t bitmap_size;
5263     BdrvDirtyBitmap *bitmap;
5264 
5265     assert((granularity & (granularity - 1)) == 0);
5266 
5267     granularity >>= BDRV_SECTOR_BITS;
5268     assert(granularity);
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;
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 
5282 void 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;
5291         }
5292     }
5293 }
5294 
5295 BlockDirtyInfoList *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 
5315 int bdrv_get_dirty(BlockDriverState *bs, BdrvDirtyBitmap *bitmap, int64_t sector)
5316 {
5317     if (bitmap) {
5318         return hbitmap_get(bitmap->bitmap, sector);
5319     } else {
5320         return 0;
5321     }
5322 }
5323 
5324 void bdrv_dirty_iter_init(BlockDriverState *bs,
5325                           BdrvDirtyBitmap *bitmap, HBitmapIter *hbi)
5326 {
5327     hbitmap_iter_init(hbi, bitmap->bitmap, 0);
5328 }
5329 
5330 void bdrv_set_dirty(BlockDriverState *bs, int64_t cur_sector,
5331                     int nr_sectors)
5332 {
5333     BdrvDirtyBitmap *bitmap;
5334     QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5335         hbitmap_set(bitmap->bitmap, cur_sector, nr_sectors);
5336     }
5337 }
5338 
5339 void bdrv_reset_dirty(BlockDriverState *bs, int64_t cur_sector, int nr_sectors)
5340 {
5341     BdrvDirtyBitmap *bitmap;
5342     QLIST_FOREACH(bitmap, &bs->dirty_bitmaps, list) {
5343         hbitmap_reset(bitmap->bitmap, cur_sector, nr_sectors);
5344     }
5345 }
5346 
5347 int64_t bdrv_get_dirty_count(BlockDriverState *bs, BdrvDirtyBitmap *bitmap)
5348 {
5349     return hbitmap_count(bitmap->bitmap);
5350 }
5351 
5352 /* Get a reference to bs */
5353 void 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. */
5361 void bdrv_unref(BlockDriverState *bs)
5362 {
5363     assert(bs->refcnt > 0);
5364     if (--bs->refcnt == 0) {
5365         bdrv_delete(bs);
5366     }
5367 }
5368 
5369 struct BdrvOpBlocker {
5370     Error *reason;
5371     QLIST_ENTRY(BdrvOpBlocker) list;
5372 };
5373 
5374 bool 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 
5389 void 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 
5399 void 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 
5411 void 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 
5419 void 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 
5427 bool 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 
5439 void bdrv_iostatus_enable(BlockDriverState *bs)
5440 {
5441     bs->iostatus_enabled = true;
5442     bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
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 */
5447 bool bdrv_iostatus_is_enabled(const BlockDriverState *bs)
5448 {
5449     return (bs->iostatus_enabled &&
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));
5453 }
5454 
5455 void bdrv_iostatus_disable(BlockDriverState *bs)
5456 {
5457     bs->iostatus_enabled = false;
5458 }
5459 
5460 void bdrv_iostatus_reset(BlockDriverState *bs)
5461 {
5462     if (bdrv_iostatus_is_enabled(bs)) {
5463         bs->iostatus = BLOCK_DEVICE_IO_STATUS_OK;
5464         if (bs->job) {
5465             block_job_iostatus_reset(bs->job);
5466         }
5467     }
5468 }
5469 
5470 void bdrv_iostatus_set_err(BlockDriverState *bs, int error)
5471 {
5472     assert(bdrv_iostatus_is_enabled(bs));
5473     if (bs->iostatus == BLOCK_DEVICE_IO_STATUS_OK) {
5474         bs->iostatus = error == ENOSPC ? BLOCK_DEVICE_IO_STATUS_NOSPACE :
5475                                          BLOCK_DEVICE_IO_STATUS_FAILED;
5476     }
5477 }
5478 
5479 void
5480 bdrv_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;
5486     cookie->start_time_ns = get_clock();
5487     cookie->type = type;
5488 }
5489 
5490 void
5491 bdrv_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]++;
5497     bs->total_time_ns[cookie->type] += get_clock() - cookie->start_time_ns;
5498 }
5499 
5500 void bdrv_img_create(const char *filename, const char *fmt,
5501                      const char *base_filename, const char *base_fmt,
5502                      char *options, uint64_t img_size, int flags,
5503                      Error **errp, bool quiet)
5504 {
5505     QemuOptsList *create_opts = NULL;
5506     QemuOpts *opts = NULL;
5507     const char *backing_fmt, *backing_file;
5508     int64_t size;
5509     BlockDriver *drv, *proto_drv;
5510     BlockDriver *backing_drv = NULL;
5511     Error *local_err = NULL;
5512     int ret = 0;
5513 
5514     /* Find driver and parse its options */
5515     drv = bdrv_find_format(fmt);
5516     if (!drv) {
5517         error_setg(errp, "Unknown file format '%s'", fmt);
5518         return;
5519     }
5520 
5521     proto_drv = bdrv_find_protocol(filename, true);
5522     if (!proto_drv) {
5523         error_setg(errp, "Unknown protocol '%s'", filename);
5524         return;
5525     }
5526 
5527     create_opts = qemu_opts_append(create_opts, drv->create_opts);
5528     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
5529 
5530     /* Create parameter list with default values */
5531     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
5532     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size);
5533 
5534     /* Parse -o options */
5535     if (options) {
5536         if (qemu_opts_do_parse(opts, options, NULL) != 0) {
5537             error_setg(errp, "Invalid options for file format '%s'", fmt);
5538             goto out;
5539         }
5540     }
5541 
5542     if (base_filename) {
5543         if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename)) {
5544             error_setg(errp, "Backing file not supported for file format '%s'",
5545                        fmt);
5546             goto out;
5547         }
5548     }
5549 
5550     if (base_fmt) {
5551         if (qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt)) {
5552             error_setg(errp, "Backing file format not supported for file "
5553                              "format '%s'", fmt);
5554             goto out;
5555         }
5556     }
5557 
5558     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5559     if (backing_file) {
5560         if (!strcmp(filename, backing_file)) {
5561             error_setg(errp, "Error: Trying to create an image with the "
5562                              "same filename as the backing file");
5563             goto out;
5564         }
5565     }
5566 
5567     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
5568     if (backing_fmt) {
5569         backing_drv = bdrv_find_format(backing_fmt);
5570         if (!backing_drv) {
5571             error_setg(errp, "Unknown backing file format '%s'",
5572                        backing_fmt);
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
5579     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, 0);
5580     if (size == -1) {
5581         if (backing_file) {
5582             BlockDriverState *bs;
5583             uint64_t size;
5584             char buf[32];
5585             int back_flags;
5586 
5587             /* backing files always opened read-only */
5588             back_flags =
5589                 flags & ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
5590 
5591             bs = NULL;
5592             ret = bdrv_open(&bs, backing_file, NULL, NULL, back_flags,
5593                             backing_drv, &local_err);
5594             if (ret < 0) {
5595                 error_setg_errno(errp, -ret, "Could not open '%s': %s",
5596                                  backing_file,
5597                                  error_get_pretty(local_err));
5598                 error_free(local_err);
5599                 local_err = NULL;
5600                 goto out;
5601             }
5602             bdrv_get_geometry(bs, &size);
5603             size *= 512;
5604 
5605             snprintf(buf, sizeof(buf), "%" PRId64, size);
5606             qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size);
5607 
5608             bdrv_unref(bs);
5609         } else {
5610             error_setg(errp, "Image creation needs a size parameter");
5611             goto out;
5612         }
5613     }
5614 
5615     if (!quiet) {
5616         printf("Formatting '%s', fmt=%s ", filename, fmt);
5617         qemu_opts_print(opts);
5618         puts("");
5619     }
5620 
5621     ret = bdrv_create(drv, filename, opts, &local_err);
5622 
5623     if (ret == -EFBIG) {
5624         /* This is generally a better message than whatever the driver would
5625          * deliver (especially because of the cluster_size_hint), since that
5626          * is most probably not much different from "image too large". */
5627         const char *cluster_size_hint = "";
5628         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
5629             cluster_size_hint = " (try using a larger cluster size)";
5630         }
5631         error_setg(errp, "The image size is too large for file format '%s'"
5632                    "%s", fmt, cluster_size_hint);
5633         error_free(local_err);
5634         local_err = NULL;
5635     }
5636 
5637 out:
5638     qemu_opts_del(opts);
5639     qemu_opts_free(create_opts);
5640     if (local_err) {
5641         error_propagate(errp, local_err);
5642     }
5643 }
5644 
5645 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5646 {
5647     return bs->aio_context;
5648 }
5649 
5650 void bdrv_detach_aio_context(BlockDriverState *bs)
5651 {
5652     if (!bs->drv) {
5653         return;
5654     }
5655 
5656     if (bs->io_limits_enabled) {
5657         throttle_detach_aio_context(&bs->throttle_state);
5658     }
5659     if (bs->drv->bdrv_detach_aio_context) {
5660         bs->drv->bdrv_detach_aio_context(bs);
5661     }
5662     if (bs->file) {
5663         bdrv_detach_aio_context(bs->file);
5664     }
5665     if (bs->backing_hd) {
5666         bdrv_detach_aio_context(bs->backing_hd);
5667     }
5668 
5669     bs->aio_context = NULL;
5670 }
5671 
5672 void bdrv_attach_aio_context(BlockDriverState *bs,
5673                              AioContext *new_context)
5674 {
5675     if (!bs->drv) {
5676         return;
5677     }
5678 
5679     bs->aio_context = new_context;
5680 
5681     if (bs->backing_hd) {
5682         bdrv_attach_aio_context(bs->backing_hd, new_context);
5683     }
5684     if (bs->file) {
5685         bdrv_attach_aio_context(bs->file, new_context);
5686     }
5687     if (bs->drv->bdrv_attach_aio_context) {
5688         bs->drv->bdrv_attach_aio_context(bs, new_context);
5689     }
5690     if (bs->io_limits_enabled) {
5691         throttle_attach_aio_context(&bs->throttle_state, new_context);
5692     }
5693 }
5694 
5695 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5696 {
5697     bdrv_drain_all(); /* ensure there are no in-flight requests */
5698 
5699     bdrv_detach_aio_context(bs);
5700 
5701     /* This function executes in the old AioContext so acquire the new one in
5702      * case it runs in a different thread.
5703      */
5704     aio_context_acquire(new_context);
5705     bdrv_attach_aio_context(bs, new_context);
5706     aio_context_release(new_context);
5707 }
5708 
5709 void bdrv_add_before_write_notifier(BlockDriverState *bs,
5710                                     NotifierWithReturn *notifier)
5711 {
5712     notifier_with_return_list_add(&bs->before_write_notifiers, notifier);
5713 }
5714 
5715 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts)
5716 {
5717     if (!bs->drv->bdrv_amend_options) {
5718         return -ENOTSUP;
5719     }
5720     return bs->drv->bdrv_amend_options(bs, opts);
5721 }
5722 
5723 /* This function will be called by the bdrv_recurse_is_first_non_filter method
5724  * of block filter and by bdrv_is_first_non_filter.
5725  * It is used to test if the given bs is the candidate or recurse more in the
5726  * node graph.
5727  */
5728 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5729                                       BlockDriverState *candidate)
5730 {
5731     /* return false if basic checks fails */
5732     if (!bs || !bs->drv) {
5733         return false;
5734     }
5735 
5736     /* the code reached a non block filter driver -> check if the bs is
5737      * the same as the candidate. It's the recursion termination condition.
5738      */
5739     if (!bs->drv->is_filter) {
5740         return bs == candidate;
5741     }
5742     /* Down this path the driver is a block filter driver */
5743 
5744     /* If the block filter recursion method is defined use it to recurse down
5745      * the node graph.
5746      */
5747     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5748         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5749     }
5750 
5751     /* the driver is a block filter but don't allow to recurse -> return false
5752      */
5753     return false;
5754 }
5755 
5756 /* This function checks if the candidate is the first non filter bs down it's
5757  * bs chain. Since we don't have pointers to parents it explore all bs chains
5758  * from the top. Some filters can choose not to pass down the recursion.
5759  */
5760 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5761 {
5762     BlockDriverState *bs;
5763 
5764     /* walk down the bs forest recursively */
5765     QTAILQ_FOREACH(bs, &bdrv_states, device_list) {
5766         bool perm;
5767 
5768         /* try to recurse in this top level bs */
5769         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5770 
5771         /* candidate is the first non filter */
5772         if (perm) {
5773             return true;
5774         }
5775     }
5776 
5777     return false;
5778 }
5779