]> Git Repo - qemu.git/blob - block.c
block: Convert .bdrv_truncate callback to coroutine_fn
[qemu.git] / block.c
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
25 #include "qemu/osdep.h"
26 #include "block/trace.h"
27 #include "block/block_int.h"
28 #include "block/blockjob.h"
29 #include "block/nbd.h"
30 #include "block/qdict.h"
31 #include "qemu/error-report.h"
32 #include "module_block.h"
33 #include "qemu/module.h"
34 #include "qapi/error.h"
35 #include "qapi/qmp/qdict.h"
36 #include "qapi/qmp/qjson.h"
37 #include "qapi/qmp/qnull.h"
38 #include "qapi/qmp/qstring.h"
39 #include "qapi/qobject-output-visitor.h"
40 #include "qapi/qapi-visit-block-core.h"
41 #include "sysemu/block-backend.h"
42 #include "sysemu/sysemu.h"
43 #include "qemu/notify.h"
44 #include "qemu/option.h"
45 #include "qemu/coroutine.h"
46 #include "block/qapi.h"
47 #include "qemu/timer.h"
48 #include "qemu/cutils.h"
49 #include "qemu/id.h"
50
51 #ifdef CONFIG_BSD
52 #include <sys/ioctl.h>
53 #include <sys/queue.h>
54 #ifndef __DragonFly__
55 #include <sys/disk.h>
56 #endif
57 #endif
58
59 #ifdef _WIN32
60 #include <windows.h>
61 #endif
62
63 #define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
64
65 static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66     QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67
68 static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69     QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
70
71 static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72     QLIST_HEAD_INITIALIZER(bdrv_drivers);
73
74 static BlockDriverState *bdrv_open_inherit(const char *filename,
75                                            const char *reference,
76                                            QDict *options, int flags,
77                                            BlockDriverState *parent,
78                                            const BdrvChildRole *child_role,
79                                            Error **errp);
80
81 /* If non-zero, use only whitelisted block drivers */
82 static int use_bdrv_whitelist;
83
84 #ifdef _WIN32
85 static int is_windows_drive_prefix(const char *filename)
86 {
87     return (((filename[0] >= 'a' && filename[0] <= 'z') ||
88              (filename[0] >= 'A' && filename[0] <= 'Z')) &&
89             filename[1] == ':');
90 }
91
92 int is_windows_drive(const char *filename)
93 {
94     if (is_windows_drive_prefix(filename) &&
95         filename[2] == '\0')
96         return 1;
97     if (strstart(filename, "\\\\.\\", NULL) ||
98         strstart(filename, "//./", NULL))
99         return 1;
100     return 0;
101 }
102 #endif
103
104 size_t bdrv_opt_mem_align(BlockDriverState *bs)
105 {
106     if (!bs || !bs->drv) {
107         /* page size or 4k (hdd sector size) should be on the safe side */
108         return MAX(4096, getpagesize());
109     }
110
111     return bs->bl.opt_mem_alignment;
112 }
113
114 size_t bdrv_min_mem_align(BlockDriverState *bs)
115 {
116     if (!bs || !bs->drv) {
117         /* page size or 4k (hdd sector size) should be on the safe side */
118         return MAX(4096, getpagesize());
119     }
120
121     return bs->bl.min_mem_alignment;
122 }
123
124 /* check if the path starts with "<protocol>:" */
125 int path_has_protocol(const char *path)
126 {
127     const char *p;
128
129 #ifdef _WIN32
130     if (is_windows_drive(path) ||
131         is_windows_drive_prefix(path)) {
132         return 0;
133     }
134     p = path + strcspn(path, ":/\\");
135 #else
136     p = path + strcspn(path, ":/");
137 #endif
138
139     return *p == ':';
140 }
141
142 int path_is_absolute(const char *path)
143 {
144 #ifdef _WIN32
145     /* specific case for names like: "\\.\d:" */
146     if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
147         return 1;
148     }
149     return (*path == '/' || *path == '\\');
150 #else
151     return (*path == '/');
152 #endif
153 }
154
155 /* if filename is absolute, just copy it to dest. Otherwise, build a
156    path to it by considering it is relative to base_path. URL are
157    supported. */
158 void path_combine(char *dest, int dest_size,
159                   const char *base_path,
160                   const char *filename)
161 {
162     const char *p, *p1;
163     int len;
164
165     if (dest_size <= 0)
166         return;
167     if (path_is_absolute(filename)) {
168         pstrcpy(dest, dest_size, filename);
169     } else {
170         const char *protocol_stripped = NULL;
171
172         if (path_has_protocol(base_path)) {
173             protocol_stripped = strchr(base_path, ':');
174             if (protocol_stripped) {
175                 protocol_stripped++;
176             }
177         }
178         p = protocol_stripped ?: base_path;
179
180         p1 = strrchr(base_path, '/');
181 #ifdef _WIN32
182         {
183             const char *p2;
184             p2 = strrchr(base_path, '\\');
185             if (!p1 || p2 > p1)
186                 p1 = p2;
187         }
188 #endif
189         if (p1)
190             p1++;
191         else
192             p1 = base_path;
193         if (p1 > p)
194             p = p1;
195         len = p - base_path;
196         if (len > dest_size - 1)
197             len = dest_size - 1;
198         memcpy(dest, base_path, len);
199         dest[len] = '\0';
200         pstrcat(dest, dest_size, filename);
201     }
202 }
203
204 /*
205  * Helper function for bdrv_parse_filename() implementations to remove optional
206  * protocol prefixes (especially "file:") from a filename and for putting the
207  * stripped filename into the options QDict if there is such a prefix.
208  */
209 void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
210                                       QDict *options)
211 {
212     if (strstart(filename, prefix, &filename)) {
213         /* Stripping the explicit protocol prefix may result in a protocol
214          * prefix being (wrongly) detected (if the filename contains a colon) */
215         if (path_has_protocol(filename)) {
216             QString *fat_filename;
217
218             /* This means there is some colon before the first slash; therefore,
219              * this cannot be an absolute path */
220             assert(!path_is_absolute(filename));
221
222             /* And we can thus fix the protocol detection issue by prefixing it
223              * by "./" */
224             fat_filename = qstring_from_str("./");
225             qstring_append(fat_filename, filename);
226
227             assert(!path_has_protocol(qstring_get_str(fat_filename)));
228
229             qdict_put(options, "filename", fat_filename);
230         } else {
231             /* If no protocol prefix was detected, we can use the shortened
232              * filename as-is */
233             qdict_put_str(options, "filename", filename);
234         }
235     }
236 }
237
238
239 /* Returns whether the image file is opened as read-only. Note that this can
240  * return false and writing to the image file is still not possible because the
241  * image is inactivated. */
242 bool bdrv_is_read_only(BlockDriverState *bs)
243 {
244     return bs->read_only;
245 }
246
247 int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
248                            bool ignore_allow_rdw, Error **errp)
249 {
250     /* Do not set read_only if copy_on_read is enabled */
251     if (bs->copy_on_read && read_only) {
252         error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
253                    bdrv_get_device_or_node_name(bs));
254         return -EINVAL;
255     }
256
257     /* Do not clear read_only if it is prohibited */
258     if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
259         !ignore_allow_rdw)
260     {
261         error_setg(errp, "Node '%s' is read only",
262                    bdrv_get_device_or_node_name(bs));
263         return -EPERM;
264     }
265
266     return 0;
267 }
268
269 /* TODO Remove (deprecated since 2.11)
270  * Block drivers are not supposed to automatically change bs->read_only.
271  * Instead, they should just check whether they can provide what the user
272  * explicitly requested and error out if read-write is requested, but they can
273  * only provide read-only access. */
274 int bdrv_set_read_only(BlockDriverState *bs, bool read_only, Error **errp)
275 {
276     int ret = 0;
277
278     ret = bdrv_can_set_read_only(bs, read_only, false, errp);
279     if (ret < 0) {
280         return ret;
281     }
282
283     bs->read_only = read_only;
284     return 0;
285 }
286
287 void bdrv_get_full_backing_filename_from_filename(const char *backed,
288                                                   const char *backing,
289                                                   char *dest, size_t sz,
290                                                   Error **errp)
291 {
292     if (backing[0] == '\0' || path_has_protocol(backing) ||
293         path_is_absolute(backing))
294     {
295         pstrcpy(dest, sz, backing);
296     } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
297         error_setg(errp, "Cannot use relative backing file names for '%s'",
298                    backed);
299     } else {
300         path_combine(dest, sz, backed, backing);
301     }
302 }
303
304 void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
305                                     Error **errp)
306 {
307     char *backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
308
309     bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
310                                                  dest, sz, errp);
311 }
312
313 void bdrv_register(BlockDriver *bdrv)
314 {
315     QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
316 }
317
318 BlockDriverState *bdrv_new(void)
319 {
320     BlockDriverState *bs;
321     int i;
322
323     bs = g_new0(BlockDriverState, 1);
324     QLIST_INIT(&bs->dirty_bitmaps);
325     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
326         QLIST_INIT(&bs->op_blockers[i]);
327     }
328     notifier_with_return_list_init(&bs->before_write_notifiers);
329     qemu_co_mutex_init(&bs->reqs_lock);
330     qemu_mutex_init(&bs->dirty_bitmap_mutex);
331     bs->refcnt = 1;
332     bs->aio_context = qemu_get_aio_context();
333
334     qemu_co_queue_init(&bs->flush_queue);
335
336     for (i = 0; i < bdrv_drain_all_count; i++) {
337         bdrv_drained_begin(bs);
338     }
339
340     QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
341
342     return bs;
343 }
344
345 static BlockDriver *bdrv_do_find_format(const char *format_name)
346 {
347     BlockDriver *drv1;
348
349     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
350         if (!strcmp(drv1->format_name, format_name)) {
351             return drv1;
352         }
353     }
354
355     return NULL;
356 }
357
358 BlockDriver *bdrv_find_format(const char *format_name)
359 {
360     BlockDriver *drv1;
361     int i;
362
363     drv1 = bdrv_do_find_format(format_name);
364     if (drv1) {
365         return drv1;
366     }
367
368     /* The driver isn't registered, maybe we need to load a module */
369     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
370         if (!strcmp(block_driver_modules[i].format_name, format_name)) {
371             block_module_load_one(block_driver_modules[i].library_name);
372             break;
373         }
374     }
375
376     return bdrv_do_find_format(format_name);
377 }
378
379 int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
380 {
381     static const char *whitelist_rw[] = {
382         CONFIG_BDRV_RW_WHITELIST
383     };
384     static const char *whitelist_ro[] = {
385         CONFIG_BDRV_RO_WHITELIST
386     };
387     const char **p;
388
389     if (!whitelist_rw[0] && !whitelist_ro[0]) {
390         return 1;               /* no whitelist, anything goes */
391     }
392
393     for (p = whitelist_rw; *p; p++) {
394         if (!strcmp(drv->format_name, *p)) {
395             return 1;
396         }
397     }
398     if (read_only) {
399         for (p = whitelist_ro; *p; p++) {
400             if (!strcmp(drv->format_name, *p)) {
401                 return 1;
402             }
403         }
404     }
405     return 0;
406 }
407
408 bool bdrv_uses_whitelist(void)
409 {
410     return use_bdrv_whitelist;
411 }
412
413 typedef struct CreateCo {
414     BlockDriver *drv;
415     char *filename;
416     QemuOpts *opts;
417     int ret;
418     Error *err;
419 } CreateCo;
420
421 static void coroutine_fn bdrv_create_co_entry(void *opaque)
422 {
423     Error *local_err = NULL;
424     int ret;
425
426     CreateCo *cco = opaque;
427     assert(cco->drv);
428
429     ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
430     error_propagate(&cco->err, local_err);
431     cco->ret = ret;
432 }
433
434 int bdrv_create(BlockDriver *drv, const char* filename,
435                 QemuOpts *opts, Error **errp)
436 {
437     int ret;
438
439     Coroutine *co;
440     CreateCo cco = {
441         .drv = drv,
442         .filename = g_strdup(filename),
443         .opts = opts,
444         .ret = NOT_DONE,
445         .err = NULL,
446     };
447
448     if (!drv->bdrv_co_create_opts) {
449         error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
450         ret = -ENOTSUP;
451         goto out;
452     }
453
454     if (qemu_in_coroutine()) {
455         /* Fast-path if already in coroutine context */
456         bdrv_create_co_entry(&cco);
457     } else {
458         co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
459         qemu_coroutine_enter(co);
460         while (cco.ret == NOT_DONE) {
461             aio_poll(qemu_get_aio_context(), true);
462         }
463     }
464
465     ret = cco.ret;
466     if (ret < 0) {
467         if (cco.err) {
468             error_propagate(errp, cco.err);
469         } else {
470             error_setg_errno(errp, -ret, "Could not create image");
471         }
472     }
473
474 out:
475     g_free(cco.filename);
476     return ret;
477 }
478
479 int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
480 {
481     BlockDriver *drv;
482     Error *local_err = NULL;
483     int ret;
484
485     drv = bdrv_find_protocol(filename, true, errp);
486     if (drv == NULL) {
487         return -ENOENT;
488     }
489
490     ret = bdrv_create(drv, filename, opts, &local_err);
491     error_propagate(errp, local_err);
492     return ret;
493 }
494
495 /**
496  * Try to get @bs's logical and physical block size.
497  * On success, store them in @bsz struct and return 0.
498  * On failure return -errno.
499  * @bs must not be empty.
500  */
501 int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
502 {
503     BlockDriver *drv = bs->drv;
504
505     if (drv && drv->bdrv_probe_blocksizes) {
506         return drv->bdrv_probe_blocksizes(bs, bsz);
507     } else if (drv && drv->is_filter && bs->file) {
508         return bdrv_probe_blocksizes(bs->file->bs, bsz);
509     }
510
511     return -ENOTSUP;
512 }
513
514 /**
515  * Try to get @bs's geometry (cyls, heads, sectors).
516  * On success, store them in @geo struct and return 0.
517  * On failure return -errno.
518  * @bs must not be empty.
519  */
520 int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
521 {
522     BlockDriver *drv = bs->drv;
523
524     if (drv && drv->bdrv_probe_geometry) {
525         return drv->bdrv_probe_geometry(bs, geo);
526     } else if (drv && drv->is_filter && bs->file) {
527         return bdrv_probe_geometry(bs->file->bs, geo);
528     }
529
530     return -ENOTSUP;
531 }
532
533 /*
534  * Create a uniquely-named empty temporary file.
535  * Return 0 upon success, otherwise a negative errno value.
536  */
537 int get_tmp_filename(char *filename, int size)
538 {
539 #ifdef _WIN32
540     char temp_dir[MAX_PATH];
541     /* GetTempFileName requires that its output buffer (4th param)
542        have length MAX_PATH or greater.  */
543     assert(size >= MAX_PATH);
544     return (GetTempPath(MAX_PATH, temp_dir)
545             && GetTempFileName(temp_dir, "qem", 0, filename)
546             ? 0 : -GetLastError());
547 #else
548     int fd;
549     const char *tmpdir;
550     tmpdir = getenv("TMPDIR");
551     if (!tmpdir) {
552         tmpdir = "/var/tmp";
553     }
554     if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
555         return -EOVERFLOW;
556     }
557     fd = mkstemp(filename);
558     if (fd < 0) {
559         return -errno;
560     }
561     if (close(fd) != 0) {
562         unlink(filename);
563         return -errno;
564     }
565     return 0;
566 #endif
567 }
568
569 /*
570  * Detect host devices. By convention, /dev/cdrom[N] is always
571  * recognized as a host CDROM.
572  */
573 static BlockDriver *find_hdev_driver(const char *filename)
574 {
575     int score_max = 0, score;
576     BlockDriver *drv = NULL, *d;
577
578     QLIST_FOREACH(d, &bdrv_drivers, list) {
579         if (d->bdrv_probe_device) {
580             score = d->bdrv_probe_device(filename);
581             if (score > score_max) {
582                 score_max = score;
583                 drv = d;
584             }
585         }
586     }
587
588     return drv;
589 }
590
591 static BlockDriver *bdrv_do_find_protocol(const char *protocol)
592 {
593     BlockDriver *drv1;
594
595     QLIST_FOREACH(drv1, &bdrv_drivers, list) {
596         if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
597             return drv1;
598         }
599     }
600
601     return NULL;
602 }
603
604 BlockDriver *bdrv_find_protocol(const char *filename,
605                                 bool allow_protocol_prefix,
606                                 Error **errp)
607 {
608     BlockDriver *drv1;
609     char protocol[128];
610     int len;
611     const char *p;
612     int i;
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_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
640     drv1 = bdrv_do_find_protocol(protocol);
641     if (drv1) {
642         return drv1;
643     }
644
645     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
646         if (block_driver_modules[i].protocol_name &&
647             !strcmp(block_driver_modules[i].protocol_name, protocol)) {
648             block_module_load_one(block_driver_modules[i].library_name);
649             break;
650         }
651     }
652
653     drv1 = bdrv_do_find_protocol(protocol);
654     if (!drv1) {
655         error_setg(errp, "Unknown protocol '%s'", protocol);
656     }
657     return drv1;
658 }
659
660 /*
661  * Guess image format by probing its contents.
662  * This is not a good idea when your image is raw (CVE-2008-2004), but
663  * we do it anyway for backward compatibility.
664  *
665  * @buf         contains the image's first @buf_size bytes.
666  * @buf_size    is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
667  *              but can be smaller if the image file is smaller)
668  * @filename    is its filename.
669  *
670  * For all block drivers, call the bdrv_probe() method to get its
671  * probing score.
672  * Return the first block driver with the highest probing score.
673  */
674 BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
675                             const char *filename)
676 {
677     int score_max = 0, score;
678     BlockDriver *drv = NULL, *d;
679
680     QLIST_FOREACH(d, &bdrv_drivers, list) {
681         if (d->bdrv_probe) {
682             score = d->bdrv_probe(buf, buf_size, filename);
683             if (score > score_max) {
684                 score_max = score;
685                 drv = d;
686             }
687         }
688     }
689
690     return drv;
691 }
692
693 static int find_image_format(BlockBackend *file, const char *filename,
694                              BlockDriver **pdrv, Error **errp)
695 {
696     BlockDriver *drv;
697     uint8_t buf[BLOCK_PROBE_BUF_SIZE];
698     int ret = 0;
699
700     /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
701     if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
702         *pdrv = &bdrv_raw;
703         return ret;
704     }
705
706     ret = blk_pread(file, 0, buf, sizeof(buf));
707     if (ret < 0) {
708         error_setg_errno(errp, -ret, "Could not read image for determining its "
709                          "format");
710         *pdrv = NULL;
711         return ret;
712     }
713
714     drv = bdrv_probe_all(buf, ret, filename);
715     if (!drv) {
716         error_setg(errp, "Could not determine image format: No compatible "
717                    "driver found");
718         ret = -ENOENT;
719     }
720     *pdrv = drv;
721     return ret;
722 }
723
724 /**
725  * Set the current 'total_sectors' value
726  * Return 0 on success, -errno on error.
727  */
728 static int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
729 {
730     BlockDriver *drv = bs->drv;
731
732     if (!drv) {
733         return -ENOMEDIUM;
734     }
735
736     /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
737     if (bdrv_is_sg(bs))
738         return 0;
739
740     /* query actual device if possible, otherwise just trust the hint */
741     if (drv->bdrv_getlength) {
742         int64_t length = drv->bdrv_getlength(bs);
743         if (length < 0) {
744             return length;
745         }
746         hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
747     }
748
749     bs->total_sectors = hint;
750     return 0;
751 }
752
753 /**
754  * Combines a QDict of new block driver @options with any missing options taken
755  * from @old_options, so that leaving out an option defaults to its old value.
756  */
757 static void bdrv_join_options(BlockDriverState *bs, QDict *options,
758                               QDict *old_options)
759 {
760     if (bs->drv && bs->drv->bdrv_join_options) {
761         bs->drv->bdrv_join_options(options, old_options);
762     } else {
763         qdict_join(options, old_options, false);
764     }
765 }
766
767 /**
768  * Set open flags for a given discard mode
769  *
770  * Return 0 on success, -1 if the discard mode was invalid.
771  */
772 int bdrv_parse_discard_flags(const char *mode, int *flags)
773 {
774     *flags &= ~BDRV_O_UNMAP;
775
776     if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
777         /* do nothing */
778     } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
779         *flags |= BDRV_O_UNMAP;
780     } else {
781         return -1;
782     }
783
784     return 0;
785 }
786
787 /**
788  * Set open flags for a given cache mode
789  *
790  * Return 0 on success, -1 if the cache mode was invalid.
791  */
792 int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
793 {
794     *flags &= ~BDRV_O_CACHE_MASK;
795
796     if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
797         *writethrough = false;
798         *flags |= BDRV_O_NOCACHE;
799     } else if (!strcmp(mode, "directsync")) {
800         *writethrough = true;
801         *flags |= BDRV_O_NOCACHE;
802     } else if (!strcmp(mode, "writeback")) {
803         *writethrough = false;
804     } else if (!strcmp(mode, "unsafe")) {
805         *writethrough = false;
806         *flags |= BDRV_O_NO_FLUSH;
807     } else if (!strcmp(mode, "writethrough")) {
808         *writethrough = true;
809     } else {
810         return -1;
811     }
812
813     return 0;
814 }
815
816 static char *bdrv_child_get_parent_desc(BdrvChild *c)
817 {
818     BlockDriverState *parent = c->opaque;
819     return g_strdup(bdrv_get_device_or_node_name(parent));
820 }
821
822 static void bdrv_child_cb_drained_begin(BdrvChild *child)
823 {
824     BlockDriverState *bs = child->opaque;
825     bdrv_do_drained_begin_quiesce(bs, NULL, false);
826 }
827
828 static bool bdrv_child_cb_drained_poll(BdrvChild *child)
829 {
830     BlockDriverState *bs = child->opaque;
831     return bdrv_drain_poll(bs, false, NULL, false);
832 }
833
834 static void bdrv_child_cb_drained_end(BdrvChild *child)
835 {
836     BlockDriverState *bs = child->opaque;
837     bdrv_drained_end(bs);
838 }
839
840 static void bdrv_child_cb_attach(BdrvChild *child)
841 {
842     BlockDriverState *bs = child->opaque;
843     bdrv_apply_subtree_drain(child, bs);
844 }
845
846 static void bdrv_child_cb_detach(BdrvChild *child)
847 {
848     BlockDriverState *bs = child->opaque;
849     bdrv_unapply_subtree_drain(child, bs);
850 }
851
852 static int bdrv_child_cb_inactivate(BdrvChild *child)
853 {
854     BlockDriverState *bs = child->opaque;
855     assert(bs->open_flags & BDRV_O_INACTIVE);
856     return 0;
857 }
858
859 /*
860  * Returns the options and flags that a temporary snapshot should get, based on
861  * the originally requested flags (the originally requested image will have
862  * flags like a backing file)
863  */
864 static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
865                                        int parent_flags, QDict *parent_options)
866 {
867     *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
868
869     /* For temporary files, unconditional cache=unsafe is fine */
870     qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
871     qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
872
873     /* Copy the read-only option from the parent */
874     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
875
876     /* aio=native doesn't work for cache.direct=off, so disable it for the
877      * temporary snapshot */
878     *child_flags &= ~BDRV_O_NATIVE_AIO;
879 }
880
881 /*
882  * Returns the options and flags that bs->file should get if a protocol driver
883  * is expected, based on the given options and flags for the parent BDS
884  */
885 static void bdrv_inherited_options(int *child_flags, QDict *child_options,
886                                    int parent_flags, QDict *parent_options)
887 {
888     int flags = parent_flags;
889
890     /* Enable protocol handling, disable format probing for bs->file */
891     flags |= BDRV_O_PROTOCOL;
892
893     /* If the cache mode isn't explicitly set, inherit direct and no-flush from
894      * the parent. */
895     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
896     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
897     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
898
899     /* Inherit the read-only option from the parent if it's not set */
900     qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
901
902     /* Our block drivers take care to send flushes and respect unmap policy,
903      * so we can default to enable both on lower layers regardless of the
904      * corresponding parent options. */
905     qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
906
907     /* Clear flags that only apply to the top layer */
908     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
909                BDRV_O_NO_IO);
910
911     *child_flags = flags;
912 }
913
914 const BdrvChildRole child_file = {
915     .parent_is_bds   = true,
916     .get_parent_desc = bdrv_child_get_parent_desc,
917     .inherit_options = bdrv_inherited_options,
918     .drained_begin   = bdrv_child_cb_drained_begin,
919     .drained_poll    = bdrv_child_cb_drained_poll,
920     .drained_end     = bdrv_child_cb_drained_end,
921     .attach          = bdrv_child_cb_attach,
922     .detach          = bdrv_child_cb_detach,
923     .inactivate      = bdrv_child_cb_inactivate,
924 };
925
926 /*
927  * Returns the options and flags that bs->file should get if the use of formats
928  * (and not only protocols) is permitted for it, based on the given options and
929  * flags for the parent BDS
930  */
931 static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
932                                        int parent_flags, QDict *parent_options)
933 {
934     child_file.inherit_options(child_flags, child_options,
935                                parent_flags, parent_options);
936
937     *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
938 }
939
940 const BdrvChildRole child_format = {
941     .parent_is_bds   = true,
942     .get_parent_desc = bdrv_child_get_parent_desc,
943     .inherit_options = bdrv_inherited_fmt_options,
944     .drained_begin   = bdrv_child_cb_drained_begin,
945     .drained_poll    = bdrv_child_cb_drained_poll,
946     .drained_end     = bdrv_child_cb_drained_end,
947     .attach          = bdrv_child_cb_attach,
948     .detach          = bdrv_child_cb_detach,
949     .inactivate      = bdrv_child_cb_inactivate,
950 };
951
952 static void bdrv_backing_attach(BdrvChild *c)
953 {
954     BlockDriverState *parent = c->opaque;
955     BlockDriverState *backing_hd = c->bs;
956
957     assert(!parent->backing_blocker);
958     error_setg(&parent->backing_blocker,
959                "node is used as backing hd of '%s'",
960                bdrv_get_device_or_node_name(parent));
961
962     parent->open_flags &= ~BDRV_O_NO_BACKING;
963     pstrcpy(parent->backing_file, sizeof(parent->backing_file),
964             backing_hd->filename);
965     pstrcpy(parent->backing_format, sizeof(parent->backing_format),
966             backing_hd->drv ? backing_hd->drv->format_name : "");
967
968     bdrv_op_block_all(backing_hd, parent->backing_blocker);
969     /* Otherwise we won't be able to commit or stream */
970     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
971                     parent->backing_blocker);
972     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
973                     parent->backing_blocker);
974     /*
975      * We do backup in 3 ways:
976      * 1. drive backup
977      *    The target bs is new opened, and the source is top BDS
978      * 2. blockdev backup
979      *    Both the source and the target are top BDSes.
980      * 3. internal backup(used for block replication)
981      *    Both the source and the target are backing file
982      *
983      * In case 1 and 2, neither the source nor the target is the backing file.
984      * In case 3, we will block the top BDS, so there is only one block job
985      * for the top BDS and its backing chain.
986      */
987     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
988                     parent->backing_blocker);
989     bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
990                     parent->backing_blocker);
991
992     bdrv_child_cb_attach(c);
993 }
994
995 static void bdrv_backing_detach(BdrvChild *c)
996 {
997     BlockDriverState *parent = c->opaque;
998
999     assert(parent->backing_blocker);
1000     bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1001     error_free(parent->backing_blocker);
1002     parent->backing_blocker = NULL;
1003
1004     bdrv_child_cb_detach(c);
1005 }
1006
1007 /*
1008  * Returns the options and flags that bs->backing should get, based on the
1009  * given options and flags for the parent BDS
1010  */
1011 static void bdrv_backing_options(int *child_flags, QDict *child_options,
1012                                  int parent_flags, QDict *parent_options)
1013 {
1014     int flags = parent_flags;
1015
1016     /* The cache mode is inherited unmodified for backing files; except WCE,
1017      * which is only applied on the top level (BlockBackend) */
1018     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1019     qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1020     qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1021
1022     /* backing files always opened read-only */
1023     qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1024     flags &= ~BDRV_O_COPY_ON_READ;
1025
1026     /* snapshot=on is handled on the top layer */
1027     flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
1028
1029     *child_flags = flags;
1030 }
1031
1032 static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1033                                         const char *filename, Error **errp)
1034 {
1035     BlockDriverState *parent = c->opaque;
1036     int orig_flags = bdrv_get_flags(parent);
1037     int ret;
1038
1039     if (!(orig_flags & BDRV_O_RDWR)) {
1040         ret = bdrv_reopen(parent, orig_flags | BDRV_O_RDWR, errp);
1041         if (ret < 0) {
1042             return ret;
1043         }
1044     }
1045
1046     ret = bdrv_change_backing_file(parent, filename,
1047                                    base->drv ? base->drv->format_name : "");
1048     if (ret < 0) {
1049         error_setg_errno(errp, -ret, "Could not update backing file link");
1050     }
1051
1052     if (!(orig_flags & BDRV_O_RDWR)) {
1053         bdrv_reopen(parent, orig_flags, NULL);
1054     }
1055
1056     return ret;
1057 }
1058
1059 const BdrvChildRole child_backing = {
1060     .parent_is_bds   = true,
1061     .get_parent_desc = bdrv_child_get_parent_desc,
1062     .attach          = bdrv_backing_attach,
1063     .detach          = bdrv_backing_detach,
1064     .inherit_options = bdrv_backing_options,
1065     .drained_begin   = bdrv_child_cb_drained_begin,
1066     .drained_poll    = bdrv_child_cb_drained_poll,
1067     .drained_end     = bdrv_child_cb_drained_end,
1068     .inactivate      = bdrv_child_cb_inactivate,
1069     .update_filename = bdrv_backing_update_filename,
1070 };
1071
1072 static int bdrv_open_flags(BlockDriverState *bs, int flags)
1073 {
1074     int open_flags = flags;
1075
1076     /*
1077      * Clear flags that are internal to the block layer before opening the
1078      * image.
1079      */
1080     open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
1081
1082     /*
1083      * Snapshots should be writable.
1084      */
1085     if (flags & BDRV_O_TEMPORARY) {
1086         open_flags |= BDRV_O_RDWR;
1087     }
1088
1089     return open_flags;
1090 }
1091
1092 static void update_flags_from_options(int *flags, QemuOpts *opts)
1093 {
1094     *flags &= ~BDRV_O_CACHE_MASK;
1095
1096     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_NO_FLUSH));
1097     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
1098         *flags |= BDRV_O_NO_FLUSH;
1099     }
1100
1101     assert(qemu_opt_find(opts, BDRV_OPT_CACHE_DIRECT));
1102     if (qemu_opt_get_bool(opts, BDRV_OPT_CACHE_DIRECT, false)) {
1103         *flags |= BDRV_O_NOCACHE;
1104     }
1105
1106     *flags &= ~BDRV_O_RDWR;
1107
1108     assert(qemu_opt_find(opts, BDRV_OPT_READ_ONLY));
1109     if (!qemu_opt_get_bool(opts, BDRV_OPT_READ_ONLY, false)) {
1110         *flags |= BDRV_O_RDWR;
1111     }
1112
1113 }
1114
1115 static void update_options_from_flags(QDict *options, int flags)
1116 {
1117     if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
1118         qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
1119     }
1120     if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
1121         qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1122                        flags & BDRV_O_NO_FLUSH);
1123     }
1124     if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
1125         qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
1126     }
1127 }
1128
1129 static void bdrv_assign_node_name(BlockDriverState *bs,
1130                                   const char *node_name,
1131                                   Error **errp)
1132 {
1133     char *gen_node_name = NULL;
1134
1135     if (!node_name) {
1136         node_name = gen_node_name = id_generate(ID_BLOCK);
1137     } else if (!id_wellformed(node_name)) {
1138         /*
1139          * Check for empty string or invalid characters, but not if it is
1140          * generated (generated names use characters not available to the user)
1141          */
1142         error_setg(errp, "Invalid node name");
1143         return;
1144     }
1145
1146     /* takes care of avoiding namespaces collisions */
1147     if (blk_by_name(node_name)) {
1148         error_setg(errp, "node-name=%s is conflicting with a device id",
1149                    node_name);
1150         goto out;
1151     }
1152
1153     /* takes care of avoiding duplicates node names */
1154     if (bdrv_find_node(node_name)) {
1155         error_setg(errp, "Duplicate node name");
1156         goto out;
1157     }
1158
1159     /* copy node name into the bs and insert it into the graph list */
1160     pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1161     QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
1162 out:
1163     g_free(gen_node_name);
1164 }
1165
1166 static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1167                             const char *node_name, QDict *options,
1168                             int open_flags, Error **errp)
1169 {
1170     Error *local_err = NULL;
1171     int i, ret;
1172
1173     bdrv_assign_node_name(bs, node_name, &local_err);
1174     if (local_err) {
1175         error_propagate(errp, local_err);
1176         return -EINVAL;
1177     }
1178
1179     bs->drv = drv;
1180     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1181     bs->opaque = g_malloc0(drv->instance_size);
1182
1183     if (drv->bdrv_file_open) {
1184         assert(!drv->bdrv_needs_filename || bs->filename[0]);
1185         ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
1186     } else if (drv->bdrv_open) {
1187         ret = drv->bdrv_open(bs, options, open_flags, &local_err);
1188     } else {
1189         ret = 0;
1190     }
1191
1192     if (ret < 0) {
1193         if (local_err) {
1194             error_propagate(errp, local_err);
1195         } else if (bs->filename[0]) {
1196             error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1197         } else {
1198             error_setg_errno(errp, -ret, "Could not open image");
1199         }
1200         goto open_failed;
1201     }
1202
1203     ret = refresh_total_sectors(bs, bs->total_sectors);
1204     if (ret < 0) {
1205         error_setg_errno(errp, -ret, "Could not refresh total sector count");
1206         return ret;
1207     }
1208
1209     bdrv_refresh_limits(bs, &local_err);
1210     if (local_err) {
1211         error_propagate(errp, local_err);
1212         return -EINVAL;
1213     }
1214
1215     assert(bdrv_opt_mem_align(bs) != 0);
1216     assert(bdrv_min_mem_align(bs) != 0);
1217     assert(is_power_of_2(bs->bl.request_alignment));
1218
1219     for (i = 0; i < bs->quiesce_counter; i++) {
1220         if (drv->bdrv_co_drain_begin) {
1221             drv->bdrv_co_drain_begin(bs);
1222         }
1223     }
1224
1225     return 0;
1226 open_failed:
1227     bs->drv = NULL;
1228     if (bs->file != NULL) {
1229         bdrv_unref_child(bs, bs->file);
1230         bs->file = NULL;
1231     }
1232     g_free(bs->opaque);
1233     bs->opaque = NULL;
1234     return ret;
1235 }
1236
1237 BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1238                                        int flags, Error **errp)
1239 {
1240     BlockDriverState *bs;
1241     int ret;
1242
1243     bs = bdrv_new();
1244     bs->open_flags = flags;
1245     bs->explicit_options = qdict_new();
1246     bs->options = qdict_new();
1247     bs->opaque = NULL;
1248
1249     update_options_from_flags(bs->options, flags);
1250
1251     ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1252     if (ret < 0) {
1253         qobject_unref(bs->explicit_options);
1254         bs->explicit_options = NULL;
1255         qobject_unref(bs->options);
1256         bs->options = NULL;
1257         bdrv_unref(bs);
1258         return NULL;
1259     }
1260
1261     return bs;
1262 }
1263
1264 QemuOptsList bdrv_runtime_opts = {
1265     .name = "bdrv_common",
1266     .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1267     .desc = {
1268         {
1269             .name = "node-name",
1270             .type = QEMU_OPT_STRING,
1271             .help = "Node name of the block device node",
1272         },
1273         {
1274             .name = "driver",
1275             .type = QEMU_OPT_STRING,
1276             .help = "Block driver to use for the node",
1277         },
1278         {
1279             .name = BDRV_OPT_CACHE_DIRECT,
1280             .type = QEMU_OPT_BOOL,
1281             .help = "Bypass software writeback cache on the host",
1282         },
1283         {
1284             .name = BDRV_OPT_CACHE_NO_FLUSH,
1285             .type = QEMU_OPT_BOOL,
1286             .help = "Ignore flush requests",
1287         },
1288         {
1289             .name = BDRV_OPT_READ_ONLY,
1290             .type = QEMU_OPT_BOOL,
1291             .help = "Node is opened in read-only mode",
1292         },
1293         {
1294             .name = "detect-zeroes",
1295             .type = QEMU_OPT_STRING,
1296             .help = "try to optimize zero writes (off, on, unmap)",
1297         },
1298         {
1299             .name = "discard",
1300             .type = QEMU_OPT_STRING,
1301             .help = "discard operation (ignore/off, unmap/on)",
1302         },
1303         {
1304             .name = BDRV_OPT_FORCE_SHARE,
1305             .type = QEMU_OPT_BOOL,
1306             .help = "always accept other writers (default: off)",
1307         },
1308         { /* end of list */ }
1309     },
1310 };
1311
1312 /*
1313  * Common part for opening disk images and files
1314  *
1315  * Removes all processed options from *options.
1316  */
1317 static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
1318                             QDict *options, Error **errp)
1319 {
1320     int ret, open_flags;
1321     const char *filename;
1322     const char *driver_name = NULL;
1323     const char *node_name = NULL;
1324     const char *discard;
1325     const char *detect_zeroes;
1326     QemuOpts *opts;
1327     BlockDriver *drv;
1328     Error *local_err = NULL;
1329
1330     assert(bs->file == NULL);
1331     assert(options != NULL && bs->options != options);
1332
1333     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1334     qemu_opts_absorb_qdict(opts, options, &local_err);
1335     if (local_err) {
1336         error_propagate(errp, local_err);
1337         ret = -EINVAL;
1338         goto fail_opts;
1339     }
1340
1341     update_flags_from_options(&bs->open_flags, opts);
1342
1343     driver_name = qemu_opt_get(opts, "driver");
1344     drv = bdrv_find_format(driver_name);
1345     assert(drv != NULL);
1346
1347     bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1348
1349     if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1350         error_setg(errp,
1351                    BDRV_OPT_FORCE_SHARE
1352                    "=on can only be used with read-only images");
1353         ret = -EINVAL;
1354         goto fail_opts;
1355     }
1356
1357     if (file != NULL) {
1358         filename = blk_bs(file)->filename;
1359     } else {
1360         /*
1361          * Caution: while qdict_get_try_str() is fine, getting
1362          * non-string types would require more care.  When @options
1363          * come from -blockdev or blockdev_add, its members are typed
1364          * according to the QAPI schema, but when they come from
1365          * -drive, they're all QString.
1366          */
1367         filename = qdict_get_try_str(options, "filename");
1368     }
1369
1370     if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
1371         error_setg(errp, "The '%s' block driver requires a file name",
1372                    drv->format_name);
1373         ret = -EINVAL;
1374         goto fail_opts;
1375     }
1376
1377     trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1378                            drv->format_name);
1379
1380     bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
1381
1382     if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
1383         error_setg(errp,
1384                    !bs->read_only && bdrv_is_whitelisted(drv, true)
1385                         ? "Driver '%s' can only be used for read-only devices"
1386                         : "Driver '%s' is not whitelisted",
1387                    drv->format_name);
1388         ret = -ENOTSUP;
1389         goto fail_opts;
1390     }
1391
1392     /* bdrv_new() and bdrv_close() make it so */
1393     assert(atomic_read(&bs->copy_on_read) == 0);
1394
1395     if (bs->open_flags & BDRV_O_COPY_ON_READ) {
1396         if (!bs->read_only) {
1397             bdrv_enable_copy_on_read(bs);
1398         } else {
1399             error_setg(errp, "Can't use copy-on-read on read-only device");
1400             ret = -EINVAL;
1401             goto fail_opts;
1402         }
1403     }
1404
1405     discard = qemu_opt_get(opts, "discard");
1406     if (discard != NULL) {
1407         if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1408             error_setg(errp, "Invalid discard option");
1409             ret = -EINVAL;
1410             goto fail_opts;
1411         }
1412     }
1413
1414     detect_zeroes = qemu_opt_get(opts, "detect-zeroes");
1415     if (detect_zeroes) {
1416         BlockdevDetectZeroesOptions value =
1417             qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup,
1418                             detect_zeroes,
1419                             BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF,
1420                             &local_err);
1421         if (local_err) {
1422             error_propagate(errp, local_err);
1423             ret = -EINVAL;
1424             goto fail_opts;
1425         }
1426
1427         if (value == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1428             !(bs->open_flags & BDRV_O_UNMAP))
1429         {
1430             error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1431                              "without setting discard operation to unmap");
1432             ret = -EINVAL;
1433             goto fail_opts;
1434         }
1435
1436         bs->detect_zeroes = value;
1437     }
1438
1439     if (filename != NULL) {
1440         pstrcpy(bs->filename, sizeof(bs->filename), filename);
1441     } else {
1442         bs->filename[0] = '\0';
1443     }
1444     pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
1445
1446     /* Open the image, either directly or using a protocol */
1447     open_flags = bdrv_open_flags(bs, bs->open_flags);
1448     node_name = qemu_opt_get(opts, "node-name");
1449
1450     assert(!drv->bdrv_file_open || file == NULL);
1451     ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
1452     if (ret < 0) {
1453         goto fail_opts;
1454     }
1455
1456     qemu_opts_del(opts);
1457     return 0;
1458
1459 fail_opts:
1460     qemu_opts_del(opts);
1461     return ret;
1462 }
1463
1464 static QDict *parse_json_filename(const char *filename, Error **errp)
1465 {
1466     QObject *options_obj;
1467     QDict *options;
1468     int ret;
1469
1470     ret = strstart(filename, "json:", &filename);
1471     assert(ret);
1472
1473     options_obj = qobject_from_json(filename, errp);
1474     if (!options_obj) {
1475         /* Work around qobject_from_json() lossage TODO fix that */
1476         if (errp && !*errp) {
1477             error_setg(errp, "Could not parse the JSON options");
1478             return NULL;
1479         }
1480         error_prepend(errp, "Could not parse the JSON options: ");
1481         return NULL;
1482     }
1483
1484     options = qobject_to(QDict, options_obj);
1485     if (!options) {
1486         qobject_unref(options_obj);
1487         error_setg(errp, "Invalid JSON object given");
1488         return NULL;
1489     }
1490
1491     qdict_flatten(options);
1492
1493     return options;
1494 }
1495
1496 static void parse_json_protocol(QDict *options, const char **pfilename,
1497                                 Error **errp)
1498 {
1499     QDict *json_options;
1500     Error *local_err = NULL;
1501
1502     /* Parse json: pseudo-protocol */
1503     if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1504         return;
1505     }
1506
1507     json_options = parse_json_filename(*pfilename, &local_err);
1508     if (local_err) {
1509         error_propagate(errp, local_err);
1510         return;
1511     }
1512
1513     /* Options given in the filename have lower priority than options
1514      * specified directly */
1515     qdict_join(options, json_options, false);
1516     qobject_unref(json_options);
1517     *pfilename = NULL;
1518 }
1519
1520 /*
1521  * Fills in default options for opening images and converts the legacy
1522  * filename/flags pair to option QDict entries.
1523  * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1524  * block driver has been specified explicitly.
1525  */
1526 static int bdrv_fill_options(QDict **options, const char *filename,
1527                              int *flags, Error **errp)
1528 {
1529     const char *drvname;
1530     bool protocol = *flags & BDRV_O_PROTOCOL;
1531     bool parse_filename = false;
1532     BlockDriver *drv = NULL;
1533     Error *local_err = NULL;
1534
1535     /*
1536      * Caution: while qdict_get_try_str() is fine, getting non-string
1537      * types would require more care.  When @options come from
1538      * -blockdev or blockdev_add, its members are typed according to
1539      * the QAPI schema, but when they come from -drive, they're all
1540      * QString.
1541      */
1542     drvname = qdict_get_try_str(*options, "driver");
1543     if (drvname) {
1544         drv = bdrv_find_format(drvname);
1545         if (!drv) {
1546             error_setg(errp, "Unknown driver '%s'", drvname);
1547             return -ENOENT;
1548         }
1549         /* If the user has explicitly specified the driver, this choice should
1550          * override the BDRV_O_PROTOCOL flag */
1551         protocol = drv->bdrv_file_open;
1552     }
1553
1554     if (protocol) {
1555         *flags |= BDRV_O_PROTOCOL;
1556     } else {
1557         *flags &= ~BDRV_O_PROTOCOL;
1558     }
1559
1560     /* Translate cache options from flags into options */
1561     update_options_from_flags(*options, *flags);
1562
1563     /* Fetch the file name from the options QDict if necessary */
1564     if (protocol && filename) {
1565         if (!qdict_haskey(*options, "filename")) {
1566             qdict_put_str(*options, "filename", filename);
1567             parse_filename = true;
1568         } else {
1569             error_setg(errp, "Can't specify 'file' and 'filename' options at "
1570                              "the same time");
1571             return -EINVAL;
1572         }
1573     }
1574
1575     /* Find the right block driver */
1576     /* See cautionary note on accessing @options above */
1577     filename = qdict_get_try_str(*options, "filename");
1578
1579     if (!drvname && protocol) {
1580         if (filename) {
1581             drv = bdrv_find_protocol(filename, parse_filename, errp);
1582             if (!drv) {
1583                 return -EINVAL;
1584             }
1585
1586             drvname = drv->format_name;
1587             qdict_put_str(*options, "driver", drvname);
1588         } else {
1589             error_setg(errp, "Must specify either driver or file");
1590             return -EINVAL;
1591         }
1592     }
1593
1594     assert(drv || !protocol);
1595
1596     /* Driver-specific filename parsing */
1597     if (drv && drv->bdrv_parse_filename && parse_filename) {
1598         drv->bdrv_parse_filename(filename, *options, &local_err);
1599         if (local_err) {
1600             error_propagate(errp, local_err);
1601             return -EINVAL;
1602         }
1603
1604         if (!drv->bdrv_needs_filename) {
1605             qdict_del(*options, "filename");
1606         }
1607     }
1608
1609     return 0;
1610 }
1611
1612 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1613                                  uint64_t perm, uint64_t shared,
1614                                  GSList *ignore_children, Error **errp);
1615 static void bdrv_child_abort_perm_update(BdrvChild *c);
1616 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1617
1618 typedef struct BlockReopenQueueEntry {
1619      bool prepared;
1620      BDRVReopenState state;
1621      QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1622 } BlockReopenQueueEntry;
1623
1624 /*
1625  * Return the flags that @bs will have after the reopens in @q have
1626  * successfully completed. If @q is NULL (or @bs is not contained in @q),
1627  * return the current flags.
1628  */
1629 static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1630 {
1631     BlockReopenQueueEntry *entry;
1632
1633     if (q != NULL) {
1634         QSIMPLEQ_FOREACH(entry, q, entry) {
1635             if (entry->state.bs == bs) {
1636                 return entry->state.flags;
1637             }
1638         }
1639     }
1640
1641     return bs->open_flags;
1642 }
1643
1644 /* Returns whether the image file can be written to after the reopen queue @q
1645  * has been successfully applied, or right now if @q is NULL. */
1646 static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1647                                           BlockReopenQueue *q)
1648 {
1649     int flags = bdrv_reopen_get_flags(q, bs);
1650
1651     return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1652 }
1653
1654 /*
1655  * Return whether the BDS can be written to.  This is not necessarily
1656  * the same as !bdrv_is_read_only(bs), as inactivated images may not
1657  * be written to but do not count as read-only images.
1658  */
1659 bool bdrv_is_writable(BlockDriverState *bs)
1660 {
1661     return bdrv_is_writable_after_reopen(bs, NULL);
1662 }
1663
1664 static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
1665                             BdrvChild *c, const BdrvChildRole *role,
1666                             BlockReopenQueue *reopen_queue,
1667                             uint64_t parent_perm, uint64_t parent_shared,
1668                             uint64_t *nperm, uint64_t *nshared)
1669 {
1670     if (bs->drv && bs->drv->bdrv_child_perm) {
1671         bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
1672                                  parent_perm, parent_shared,
1673                                  nperm, nshared);
1674     }
1675     /* TODO Take force_share from reopen_queue */
1676     if (child_bs && child_bs->force_share) {
1677         *nshared = BLK_PERM_ALL;
1678     }
1679 }
1680
1681 /*
1682  * Check whether permissions on this node can be changed in a way that
1683  * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1684  * permissions of all its parents. This involves checking whether all necessary
1685  * permission changes to child nodes can be performed.
1686  *
1687  * A call to this function must always be followed by a call to bdrv_set_perm()
1688  * or bdrv_abort_perm_update().
1689  */
1690 static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1691                            uint64_t cumulative_perms,
1692                            uint64_t cumulative_shared_perms,
1693                            GSList *ignore_children, Error **errp)
1694 {
1695     BlockDriver *drv = bs->drv;
1696     BdrvChild *c;
1697     int ret;
1698
1699     /* Write permissions never work with read-only images */
1700     if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
1701         !bdrv_is_writable_after_reopen(bs, q))
1702     {
1703         error_setg(errp, "Block node is read-only");
1704         return -EPERM;
1705     }
1706
1707     /* Check this node */
1708     if (!drv) {
1709         return 0;
1710     }
1711
1712     if (drv->bdrv_check_perm) {
1713         return drv->bdrv_check_perm(bs, cumulative_perms,
1714                                     cumulative_shared_perms, errp);
1715     }
1716
1717     /* Drivers that never have children can omit .bdrv_child_perm() */
1718     if (!drv->bdrv_child_perm) {
1719         assert(QLIST_EMPTY(&bs->children));
1720         return 0;
1721     }
1722
1723     /* Check all children */
1724     QLIST_FOREACH(c, &bs->children, next) {
1725         uint64_t cur_perm, cur_shared;
1726         bdrv_child_perm(bs, c->bs, c, c->role, q,
1727                         cumulative_perms, cumulative_shared_perms,
1728                         &cur_perm, &cur_shared);
1729         ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1730                                     ignore_children, errp);
1731         if (ret < 0) {
1732             return ret;
1733         }
1734     }
1735
1736     return 0;
1737 }
1738
1739 /*
1740  * Notifies drivers that after a previous bdrv_check_perm() call, the
1741  * permission update is not performed and any preparations made for it (e.g.
1742  * taken file locks) need to be undone.
1743  *
1744  * This function recursively notifies all child nodes.
1745  */
1746 static void bdrv_abort_perm_update(BlockDriverState *bs)
1747 {
1748     BlockDriver *drv = bs->drv;
1749     BdrvChild *c;
1750
1751     if (!drv) {
1752         return;
1753     }
1754
1755     if (drv->bdrv_abort_perm_update) {
1756         drv->bdrv_abort_perm_update(bs);
1757     }
1758
1759     QLIST_FOREACH(c, &bs->children, next) {
1760         bdrv_child_abort_perm_update(c);
1761     }
1762 }
1763
1764 static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1765                           uint64_t cumulative_shared_perms)
1766 {
1767     BlockDriver *drv = bs->drv;
1768     BdrvChild *c;
1769
1770     if (!drv) {
1771         return;
1772     }
1773
1774     /* Update this node */
1775     if (drv->bdrv_set_perm) {
1776         drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1777     }
1778
1779     /* Drivers that never have children can omit .bdrv_child_perm() */
1780     if (!drv->bdrv_child_perm) {
1781         assert(QLIST_EMPTY(&bs->children));
1782         return;
1783     }
1784
1785     /* Update all children */
1786     QLIST_FOREACH(c, &bs->children, next) {
1787         uint64_t cur_perm, cur_shared;
1788         bdrv_child_perm(bs, c->bs, c, c->role, NULL,
1789                         cumulative_perms, cumulative_shared_perms,
1790                         &cur_perm, &cur_shared);
1791         bdrv_child_set_perm(c, cur_perm, cur_shared);
1792     }
1793 }
1794
1795 static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1796                                      uint64_t *shared_perm)
1797 {
1798     BdrvChild *c;
1799     uint64_t cumulative_perms = 0;
1800     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1801
1802     QLIST_FOREACH(c, &bs->parents, next_parent) {
1803         cumulative_perms |= c->perm;
1804         cumulative_shared_perms &= c->shared_perm;
1805     }
1806
1807     *perm = cumulative_perms;
1808     *shared_perm = cumulative_shared_perms;
1809 }
1810
1811 static char *bdrv_child_user_desc(BdrvChild *c)
1812 {
1813     if (c->role->get_parent_desc) {
1814         return c->role->get_parent_desc(c);
1815     }
1816
1817     return g_strdup("another user");
1818 }
1819
1820 char *bdrv_perm_names(uint64_t perm)
1821 {
1822     struct perm_name {
1823         uint64_t perm;
1824         const char *name;
1825     } permissions[] = {
1826         { BLK_PERM_CONSISTENT_READ, "consistent read" },
1827         { BLK_PERM_WRITE,           "write" },
1828         { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1829         { BLK_PERM_RESIZE,          "resize" },
1830         { BLK_PERM_GRAPH_MOD,       "change children" },
1831         { 0, NULL }
1832     };
1833
1834     char *result = g_strdup("");
1835     struct perm_name *p;
1836
1837     for (p = permissions; p->name; p++) {
1838         if (perm & p->perm) {
1839             char *old = result;
1840             result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1841             g_free(old);
1842         }
1843     }
1844
1845     return result;
1846 }
1847
1848 /*
1849  * Checks whether a new reference to @bs can be added if the new user requires
1850  * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1851  * set, the BdrvChild objects in this list are ignored in the calculations;
1852  * this allows checking permission updates for an existing reference.
1853  *
1854  * Needs to be followed by a call to either bdrv_set_perm() or
1855  * bdrv_abort_perm_update(). */
1856 static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1857                                   uint64_t new_used_perm,
1858                                   uint64_t new_shared_perm,
1859                                   GSList *ignore_children, Error **errp)
1860 {
1861     BdrvChild *c;
1862     uint64_t cumulative_perms = new_used_perm;
1863     uint64_t cumulative_shared_perms = new_shared_perm;
1864
1865     /* There is no reason why anyone couldn't tolerate write_unchanged */
1866     assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1867
1868     QLIST_FOREACH(c, &bs->parents, next_parent) {
1869         if (g_slist_find(ignore_children, c)) {
1870             continue;
1871         }
1872
1873         if ((new_used_perm & c->shared_perm) != new_used_perm) {
1874             char *user = bdrv_child_user_desc(c);
1875             char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1876             error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1877                              "allow '%s' on %s",
1878                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1879             g_free(user);
1880             g_free(perm_names);
1881             return -EPERM;
1882         }
1883
1884         if ((c->perm & new_shared_perm) != c->perm) {
1885             char *user = bdrv_child_user_desc(c);
1886             char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1887             error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1888                              "'%s' on %s",
1889                        user, c->name, perm_names, bdrv_get_node_name(c->bs));
1890             g_free(user);
1891             g_free(perm_names);
1892             return -EPERM;
1893         }
1894
1895         cumulative_perms |= c->perm;
1896         cumulative_shared_perms &= c->shared_perm;
1897     }
1898
1899     return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
1900                            ignore_children, errp);
1901 }
1902
1903 /* Needs to be followed by a call to either bdrv_child_set_perm() or
1904  * bdrv_child_abort_perm_update(). */
1905 static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1906                                  uint64_t perm, uint64_t shared,
1907                                  GSList *ignore_children, Error **errp)
1908 {
1909     int ret;
1910
1911     ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
1912     ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
1913     g_slist_free(ignore_children);
1914
1915     return ret;
1916 }
1917
1918 static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
1919 {
1920     uint64_t cumulative_perms, cumulative_shared_perms;
1921
1922     c->perm = perm;
1923     c->shared_perm = shared;
1924
1925     bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
1926                              &cumulative_shared_perms);
1927     bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
1928 }
1929
1930 static void bdrv_child_abort_perm_update(BdrvChild *c)
1931 {
1932     bdrv_abort_perm_update(c->bs);
1933 }
1934
1935 int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
1936                             Error **errp)
1937 {
1938     int ret;
1939
1940     ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
1941     if (ret < 0) {
1942         bdrv_child_abort_perm_update(c);
1943         return ret;
1944     }
1945
1946     bdrv_child_set_perm(c, perm, shared);
1947
1948     return 0;
1949 }
1950
1951 #define DEFAULT_PERM_PASSTHROUGH (BLK_PERM_CONSISTENT_READ \
1952                                  | BLK_PERM_WRITE \
1953                                  | BLK_PERM_WRITE_UNCHANGED \
1954                                  | BLK_PERM_RESIZE)
1955 #define DEFAULT_PERM_UNCHANGED (BLK_PERM_ALL & ~DEFAULT_PERM_PASSTHROUGH)
1956
1957 void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
1958                                const BdrvChildRole *role,
1959                                BlockReopenQueue *reopen_queue,
1960                                uint64_t perm, uint64_t shared,
1961                                uint64_t *nperm, uint64_t *nshared)
1962 {
1963     if (c == NULL) {
1964         *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
1965         *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
1966         return;
1967     }
1968
1969     *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
1970              (c->perm & DEFAULT_PERM_UNCHANGED);
1971     *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
1972                (c->shared_perm & DEFAULT_PERM_UNCHANGED);
1973 }
1974
1975 void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
1976                                const BdrvChildRole *role,
1977                                BlockReopenQueue *reopen_queue,
1978                                uint64_t perm, uint64_t shared,
1979                                uint64_t *nperm, uint64_t *nshared)
1980 {
1981     bool backing = (role == &child_backing);
1982     assert(role == &child_backing || role == &child_file);
1983
1984     if (!backing) {
1985         int flags = bdrv_reopen_get_flags(reopen_queue, bs);
1986
1987         /* Apart from the modifications below, the same permissions are
1988          * forwarded and left alone as for filters */
1989         bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
1990                                   &perm, &shared);
1991
1992         /* Format drivers may touch metadata even if the guest doesn't write */
1993         if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
1994             perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
1995         }
1996
1997         /* bs->file always needs to be consistent because of the metadata. We
1998          * can never allow other users to resize or write to it. */
1999         if (!(flags & BDRV_O_NO_IO)) {
2000             perm |= BLK_PERM_CONSISTENT_READ;
2001         }
2002         shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2003     } else {
2004         /* We want consistent read from backing files if the parent needs it.
2005          * No other operations are performed on backing files. */
2006         perm &= BLK_PERM_CONSISTENT_READ;
2007
2008         /* If the parent can deal with changing data, we're okay with a
2009          * writable and resizable backing file. */
2010         /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2011         if (shared & BLK_PERM_WRITE) {
2012             shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2013         } else {
2014             shared = 0;
2015         }
2016
2017         shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2018                   BLK_PERM_WRITE_UNCHANGED;
2019     }
2020
2021     if (bs->open_flags & BDRV_O_INACTIVE) {
2022         shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2023     }
2024
2025     *nperm = perm;
2026     *nshared = shared;
2027 }
2028
2029 static void bdrv_replace_child_noperm(BdrvChild *child,
2030                                       BlockDriverState *new_bs)
2031 {
2032     BlockDriverState *old_bs = child->bs;
2033     int i;
2034
2035     if (old_bs && new_bs) {
2036         assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2037     }
2038     if (old_bs) {
2039         /* Detach first so that the recursive drain sections coming from @child
2040          * are already gone and we only end the drain sections that came from
2041          * elsewhere. */
2042         if (child->role->detach) {
2043             child->role->detach(child);
2044         }
2045         if (old_bs->quiesce_counter && child->role->drained_end) {
2046             int num = old_bs->quiesce_counter;
2047             if (child->role->parent_is_bds) {
2048                 num -= bdrv_drain_all_count;
2049             }
2050             assert(num >= 0);
2051             for (i = 0; i < num; i++) {
2052                 child->role->drained_end(child);
2053             }
2054         }
2055         QLIST_REMOVE(child, next_parent);
2056     }
2057
2058     child->bs = new_bs;
2059
2060     if (new_bs) {
2061         QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2062         if (new_bs->quiesce_counter && child->role->drained_begin) {
2063             int num = new_bs->quiesce_counter;
2064             if (child->role->parent_is_bds) {
2065                 num -= bdrv_drain_all_count;
2066             }
2067             assert(num >= 0);
2068             for (i = 0; i < num; i++) {
2069                 child->role->drained_begin(child);
2070             }
2071         }
2072
2073         /* Attach only after starting new drained sections, so that recursive
2074          * drain sections coming from @child don't get an extra .drained_begin
2075          * callback. */
2076         if (child->role->attach) {
2077             child->role->attach(child);
2078         }
2079     }
2080 }
2081
2082 /*
2083  * Updates @child to change its reference to point to @new_bs, including
2084  * checking and applying the necessary permisson updates both to the old node
2085  * and to @new_bs.
2086  *
2087  * NULL is passed as @new_bs for removing the reference before freeing @child.
2088  *
2089  * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2090  * function uses bdrv_set_perm() to update the permissions according to the new
2091  * reference that @new_bs gets.
2092  */
2093 static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
2094 {
2095     BlockDriverState *old_bs = child->bs;
2096     uint64_t perm, shared_perm;
2097
2098     bdrv_replace_child_noperm(child, new_bs);
2099
2100     if (old_bs) {
2101         /* Update permissions for old node. This is guaranteed to succeed
2102          * because we're just taking a parent away, so we're loosening
2103          * restrictions. */
2104         bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
2105         bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
2106         bdrv_set_perm(old_bs, perm, shared_perm);
2107     }
2108
2109     if (new_bs) {
2110         bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
2111         bdrv_set_perm(new_bs, perm, shared_perm);
2112     }
2113 }
2114
2115 BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2116                                   const char *child_name,
2117                                   const BdrvChildRole *child_role,
2118                                   uint64_t perm, uint64_t shared_perm,
2119                                   void *opaque, Error **errp)
2120 {
2121     BdrvChild *child;
2122     int ret;
2123
2124     ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
2125     if (ret < 0) {
2126         bdrv_abort_perm_update(child_bs);
2127         return NULL;
2128     }
2129
2130     child = g_new(BdrvChild, 1);
2131     *child = (BdrvChild) {
2132         .bs             = NULL,
2133         .name           = g_strdup(child_name),
2134         .role           = child_role,
2135         .perm           = perm,
2136         .shared_perm    = shared_perm,
2137         .opaque         = opaque,
2138     };
2139
2140     /* This performs the matching bdrv_set_perm() for the above check. */
2141     bdrv_replace_child(child, child_bs);
2142
2143     return child;
2144 }
2145
2146 BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2147                              BlockDriverState *child_bs,
2148                              const char *child_name,
2149                              const BdrvChildRole *child_role,
2150                              Error **errp)
2151 {
2152     BdrvChild *child;
2153     uint64_t perm, shared_perm;
2154
2155     bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2156
2157     assert(parent_bs->drv);
2158     assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
2159     bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2160                     perm, shared_perm, &perm, &shared_perm);
2161
2162     child = bdrv_root_attach_child(child_bs, child_name, child_role,
2163                                    perm, shared_perm, parent_bs, errp);
2164     if (child == NULL) {
2165         return NULL;
2166     }
2167
2168     QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2169     return child;
2170 }
2171
2172 static void bdrv_detach_child(BdrvChild *child)
2173 {
2174     if (child->next.le_prev) {
2175         QLIST_REMOVE(child, next);
2176         child->next.le_prev = NULL;
2177     }
2178
2179     bdrv_replace_child(child, NULL);
2180
2181     g_free(child->name);
2182     g_free(child);
2183 }
2184
2185 void bdrv_root_unref_child(BdrvChild *child)
2186 {
2187     BlockDriverState *child_bs;
2188
2189     child_bs = child->bs;
2190     bdrv_detach_child(child);
2191     bdrv_unref(child_bs);
2192 }
2193
2194 void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2195 {
2196     if (child == NULL) {
2197         return;
2198     }
2199
2200     if (child->bs->inherits_from == parent) {
2201         BdrvChild *c;
2202
2203         /* Remove inherits_from only when the last reference between parent and
2204          * child->bs goes away. */
2205         QLIST_FOREACH(c, &parent->children, next) {
2206             if (c != child && c->bs == child->bs) {
2207                 break;
2208             }
2209         }
2210         if (c == NULL) {
2211             child->bs->inherits_from = NULL;
2212         }
2213     }
2214
2215     bdrv_root_unref_child(child);
2216 }
2217
2218
2219 static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2220 {
2221     BdrvChild *c;
2222     QLIST_FOREACH(c, &bs->parents, next_parent) {
2223         if (c->role->change_media) {
2224             c->role->change_media(c, load);
2225         }
2226     }
2227 }
2228
2229 static void bdrv_parent_cb_resize(BlockDriverState *bs)
2230 {
2231     BdrvChild *c;
2232     QLIST_FOREACH(c, &bs->parents, next_parent) {
2233         if (c->role->resize) {
2234             c->role->resize(c);
2235         }
2236     }
2237 }
2238
2239 /*
2240  * Sets the backing file link of a BDS. A new reference is created; callers
2241  * which don't need their own reference any more must call bdrv_unref().
2242  */
2243 void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2244                          Error **errp)
2245 {
2246     if (backing_hd) {
2247         bdrv_ref(backing_hd);
2248     }
2249
2250     if (bs->backing) {
2251         bdrv_unref_child(bs, bs->backing);
2252     }
2253
2254     if (!backing_hd) {
2255         bs->backing = NULL;
2256         goto out;
2257     }
2258
2259     bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
2260                                     errp);
2261     if (!bs->backing) {
2262         bdrv_unref(backing_hd);
2263     }
2264
2265     bdrv_refresh_filename(bs);
2266
2267 out:
2268     bdrv_refresh_limits(bs, NULL);
2269 }
2270
2271 /*
2272  * Opens the backing file for a BlockDriverState if not yet open
2273  *
2274  * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2275  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2276  * itself, all options starting with "${bdref_key}." are considered part of the
2277  * BlockdevRef.
2278  *
2279  * TODO Can this be unified with bdrv_open_image()?
2280  */
2281 int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2282                            const char *bdref_key, Error **errp)
2283 {
2284     char *backing_filename = g_malloc0(PATH_MAX);
2285     char *bdref_key_dot;
2286     const char *reference = NULL;
2287     int ret = 0;
2288     BlockDriverState *backing_hd;
2289     QDict *options;
2290     QDict *tmp_parent_options = NULL;
2291     Error *local_err = NULL;
2292
2293     if (bs->backing != NULL) {
2294         goto free_exit;
2295     }
2296
2297     /* NULL means an empty set of options */
2298     if (parent_options == NULL) {
2299         tmp_parent_options = qdict_new();
2300         parent_options = tmp_parent_options;
2301     }
2302
2303     bs->open_flags &= ~BDRV_O_NO_BACKING;
2304
2305     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2306     qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2307     g_free(bdref_key_dot);
2308
2309     /*
2310      * Caution: while qdict_get_try_str() is fine, getting non-string
2311      * types would require more care.  When @parent_options come from
2312      * -blockdev or blockdev_add, its members are typed according to
2313      * the QAPI schema, but when they come from -drive, they're all
2314      * QString.
2315      */
2316     reference = qdict_get_try_str(parent_options, bdref_key);
2317     if (reference || qdict_haskey(options, "file.filename")) {
2318         backing_filename[0] = '\0';
2319     } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
2320         qobject_unref(options);
2321         goto free_exit;
2322     } else {
2323         bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2324                                        &local_err);
2325         if (local_err) {
2326             ret = -EINVAL;
2327             error_propagate(errp, local_err);
2328             qobject_unref(options);
2329             goto free_exit;
2330         }
2331     }
2332
2333     if (!bs->drv || !bs->drv->supports_backing) {
2334         ret = -EINVAL;
2335         error_setg(errp, "Driver doesn't support backing files");
2336         qobject_unref(options);
2337         goto free_exit;
2338     }
2339
2340     if (!reference &&
2341         bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
2342         qdict_put_str(options, "driver", bs->backing_format);
2343     }
2344
2345     backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2346                                    reference, options, 0, bs, &child_backing,
2347                                    errp);
2348     if (!backing_hd) {
2349         bs->open_flags |= BDRV_O_NO_BACKING;
2350         error_prepend(errp, "Could not open backing file: ");
2351         ret = -EINVAL;
2352         goto free_exit;
2353     }
2354     bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
2355
2356     /* Hook up the backing file link; drop our reference, bs owns the
2357      * backing_hd reference now */
2358     bdrv_set_backing_hd(bs, backing_hd, &local_err);
2359     bdrv_unref(backing_hd);
2360     if (local_err) {
2361         error_propagate(errp, local_err);
2362         ret = -EINVAL;
2363         goto free_exit;
2364     }
2365
2366     qdict_del(parent_options, bdref_key);
2367
2368 free_exit:
2369     g_free(backing_filename);
2370     qobject_unref(tmp_parent_options);
2371     return ret;
2372 }
2373
2374 static BlockDriverState *
2375 bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2376                    BlockDriverState *parent, const BdrvChildRole *child_role,
2377                    bool allow_none, Error **errp)
2378 {
2379     BlockDriverState *bs = NULL;
2380     QDict *image_options;
2381     char *bdref_key_dot;
2382     const char *reference;
2383
2384     assert(child_role != NULL);
2385
2386     bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2387     qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2388     g_free(bdref_key_dot);
2389
2390     /*
2391      * Caution: while qdict_get_try_str() is fine, getting non-string
2392      * types would require more care.  When @options come from
2393      * -blockdev or blockdev_add, its members are typed according to
2394      * the QAPI schema, but when they come from -drive, they're all
2395      * QString.
2396      */
2397     reference = qdict_get_try_str(options, bdref_key);
2398     if (!filename && !reference && !qdict_size(image_options)) {
2399         if (!allow_none) {
2400             error_setg(errp, "A block device must be specified for \"%s\"",
2401                        bdref_key);
2402         }
2403         qobject_unref(image_options);
2404         goto done;
2405     }
2406
2407     bs = bdrv_open_inherit(filename, reference, image_options, 0,
2408                            parent, child_role, errp);
2409     if (!bs) {
2410         goto done;
2411     }
2412
2413 done:
2414     qdict_del(options, bdref_key);
2415     return bs;
2416 }
2417
2418 /*
2419  * Opens a disk image whose options are given as BlockdevRef in another block
2420  * device's options.
2421  *
2422  * If allow_none is true, no image will be opened if filename is false and no
2423  * BlockdevRef is given. NULL will be returned, but errp remains unset.
2424  *
2425  * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2426  * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2427  * itself, all options starting with "${bdref_key}." are considered part of the
2428  * BlockdevRef.
2429  *
2430  * The BlockdevRef will be removed from the options QDict.
2431  */
2432 BdrvChild *bdrv_open_child(const char *filename,
2433                            QDict *options, const char *bdref_key,
2434                            BlockDriverState *parent,
2435                            const BdrvChildRole *child_role,
2436                            bool allow_none, Error **errp)
2437 {
2438     BdrvChild *c;
2439     BlockDriverState *bs;
2440
2441     bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2442                             allow_none, errp);
2443     if (bs == NULL) {
2444         return NULL;
2445     }
2446
2447     c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2448     if (!c) {
2449         bdrv_unref(bs);
2450         return NULL;
2451     }
2452
2453     return c;
2454 }
2455
2456 /* TODO Future callers may need to specify parent/child_role in order for
2457  * option inheritance to work. Existing callers use it for the root node. */
2458 BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2459 {
2460     BlockDriverState *bs = NULL;
2461     Error *local_err = NULL;
2462     QObject *obj = NULL;
2463     QDict *qdict = NULL;
2464     const char *reference = NULL;
2465     Visitor *v = NULL;
2466
2467     if (ref->type == QTYPE_QSTRING) {
2468         reference = ref->u.reference;
2469     } else {
2470         BlockdevOptions *options = &ref->u.definition;
2471         assert(ref->type == QTYPE_QDICT);
2472
2473         v = qobject_output_visitor_new(&obj);
2474         visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2475         if (local_err) {
2476             error_propagate(errp, local_err);
2477             goto fail;
2478         }
2479         visit_complete(v, &obj);
2480
2481         qdict = qobject_to(QDict, obj);
2482         qdict_flatten(qdict);
2483
2484         /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2485          * compatibility with other callers) rather than what we want as the
2486          * real defaults. Apply the defaults here instead. */
2487         qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2488         qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2489         qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
2490     }
2491
2492     bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2493     obj = NULL;
2494
2495 fail:
2496     qobject_unref(obj);
2497     visit_free(v);
2498     return bs;
2499 }
2500
2501 static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2502                                                    int flags,
2503                                                    QDict *snapshot_options,
2504                                                    Error **errp)
2505 {
2506     /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
2507     char *tmp_filename = g_malloc0(PATH_MAX + 1);
2508     int64_t total_size;
2509     QemuOpts *opts = NULL;
2510     BlockDriverState *bs_snapshot = NULL;
2511     Error *local_err = NULL;
2512     int ret;
2513
2514     /* if snapshot, we create a temporary backing file and open it
2515        instead of opening 'filename' directly */
2516
2517     /* Get the required size from the image */
2518     total_size = bdrv_getlength(bs);
2519     if (total_size < 0) {
2520         error_setg_errno(errp, -total_size, "Could not get image size");
2521         goto out;
2522     }
2523
2524     /* Create the temporary image */
2525     ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
2526     if (ret < 0) {
2527         error_setg_errno(errp, -ret, "Could not get temporary filename");
2528         goto out;
2529     }
2530
2531     opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
2532                             &error_abort);
2533     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
2534     ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
2535     qemu_opts_del(opts);
2536     if (ret < 0) {
2537         error_prepend(errp, "Could not create temporary overlay '%s': ",
2538                       tmp_filename);
2539         goto out;
2540     }
2541
2542     /* Prepare options QDict for the temporary file */
2543     qdict_put_str(snapshot_options, "file.driver", "file");
2544     qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2545     qdict_put_str(snapshot_options, "driver", "qcow2");
2546
2547     bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
2548     snapshot_options = NULL;
2549     if (!bs_snapshot) {
2550         goto out;
2551     }
2552
2553     /* bdrv_append() consumes a strong reference to bs_snapshot
2554      * (i.e. it will call bdrv_unref() on it) even on error, so in
2555      * order to be able to return one, we have to increase
2556      * bs_snapshot's refcount here */
2557     bdrv_ref(bs_snapshot);
2558     bdrv_append(bs_snapshot, bs, &local_err);
2559     if (local_err) {
2560         error_propagate(errp, local_err);
2561         bs_snapshot = NULL;
2562         goto out;
2563     }
2564
2565 out:
2566     qobject_unref(snapshot_options);
2567     g_free(tmp_filename);
2568     return bs_snapshot;
2569 }
2570
2571 /*
2572  * Opens a disk image (raw, qcow2, vmdk, ...)
2573  *
2574  * options is a QDict of options to pass to the block drivers, or NULL for an
2575  * empty set of options. The reference to the QDict belongs to the block layer
2576  * after the call (even on failure), so if the caller intends to reuse the
2577  * dictionary, it needs to use qobject_ref() before calling bdrv_open.
2578  *
2579  * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2580  * If it is not NULL, the referenced BDS will be reused.
2581  *
2582  * The reference parameter may be used to specify an existing block device which
2583  * should be opened. If specified, neither options nor a filename may be given,
2584  * nor can an existing BDS be reused (that is, *pbs has to be NULL).
2585  */
2586 static BlockDriverState *bdrv_open_inherit(const char *filename,
2587                                            const char *reference,
2588                                            QDict *options, int flags,
2589                                            BlockDriverState *parent,
2590                                            const BdrvChildRole *child_role,
2591                                            Error **errp)
2592 {
2593     int ret;
2594     BlockBackend *file = NULL;
2595     BlockDriverState *bs;
2596     BlockDriver *drv = NULL;
2597     const char *drvname;
2598     const char *backing;
2599     Error *local_err = NULL;
2600     QDict *snapshot_options = NULL;
2601     int snapshot_flags = 0;
2602
2603     assert(!child_role || !flags);
2604     assert(!child_role == !parent);
2605
2606     if (reference) {
2607         bool options_non_empty = options ? qdict_size(options) : false;
2608         qobject_unref(options);
2609
2610         if (filename || options_non_empty) {
2611             error_setg(errp, "Cannot reference an existing block device with "
2612                        "additional options or a new filename");
2613             return NULL;
2614         }
2615
2616         bs = bdrv_lookup_bs(reference, reference, errp);
2617         if (!bs) {
2618             return NULL;
2619         }
2620
2621         bdrv_ref(bs);
2622         return bs;
2623     }
2624
2625     bs = bdrv_new();
2626
2627     /* NULL means an empty set of options */
2628     if (options == NULL) {
2629         options = qdict_new();
2630     }
2631
2632     /* json: syntax counts as explicit options, as if in the QDict */
2633     parse_json_protocol(options, &filename, &local_err);
2634     if (local_err) {
2635         goto fail;
2636     }
2637
2638     bs->explicit_options = qdict_clone_shallow(options);
2639
2640     if (child_role) {
2641         bs->inherits_from = parent;
2642         child_role->inherit_options(&flags, options,
2643                                     parent->open_flags, parent->options);
2644     }
2645
2646     ret = bdrv_fill_options(&options, filename, &flags, &local_err);
2647     if (local_err) {
2648         goto fail;
2649     }
2650
2651     /*
2652      * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2653      * Caution: getting a boolean member of @options requires care.
2654      * When @options come from -blockdev or blockdev_add, members are
2655      * typed according to the QAPI schema, but when they come from
2656      * -drive, they're all QString.
2657      */
2658     if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2659         !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2660         flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2661     } else {
2662         flags &= ~BDRV_O_RDWR;
2663     }
2664
2665     if (flags & BDRV_O_SNAPSHOT) {
2666         snapshot_options = qdict_new();
2667         bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2668                                    flags, options);
2669         /* Let bdrv_backing_options() override "read-only" */
2670         qdict_del(options, BDRV_OPT_READ_ONLY);
2671         bdrv_backing_options(&flags, options, flags, options);
2672     }
2673
2674     bs->open_flags = flags;
2675     bs->options = options;
2676     options = qdict_clone_shallow(options);
2677
2678     /* Find the right image format driver */
2679     /* See cautionary note on accessing @options above */
2680     drvname = qdict_get_try_str(options, "driver");
2681     if (drvname) {
2682         drv = bdrv_find_format(drvname);
2683         if (!drv) {
2684             error_setg(errp, "Unknown driver: '%s'", drvname);
2685             goto fail;
2686         }
2687     }
2688
2689     assert(drvname || !(flags & BDRV_O_PROTOCOL));
2690
2691     /* See cautionary note on accessing @options above */
2692     backing = qdict_get_try_str(options, "backing");
2693     if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2694         (backing && *backing == '\0'))
2695     {
2696         if (backing) {
2697             warn_report("Use of \"backing\": \"\" is deprecated; "
2698                         "use \"backing\": null instead");
2699         }
2700         flags |= BDRV_O_NO_BACKING;
2701         qdict_del(options, "backing");
2702     }
2703
2704     /* Open image file without format layer. This BlockBackend is only used for
2705      * probing, the block drivers will do their own bdrv_open_child() for the
2706      * same BDS, which is why we put the node name back into options. */
2707     if ((flags & BDRV_O_PROTOCOL) == 0) {
2708         BlockDriverState *file_bs;
2709
2710         file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2711                                      &child_file, true, &local_err);
2712         if (local_err) {
2713             goto fail;
2714         }
2715         if (file_bs != NULL) {
2716             /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2717              * looking at the header to guess the image format. This works even
2718              * in cases where a guest would not see a consistent state. */
2719             file = blk_new(0, BLK_PERM_ALL);
2720             blk_insert_bs(file, file_bs, &local_err);
2721             bdrv_unref(file_bs);
2722             if (local_err) {
2723                 goto fail;
2724             }
2725
2726             qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
2727         }
2728     }
2729
2730     /* Image format probing */
2731     bs->probed = !drv;
2732     if (!drv && file) {
2733         ret = find_image_format(file, filename, &drv, &local_err);
2734         if (ret < 0) {
2735             goto fail;
2736         }
2737         /*
2738          * This option update would logically belong in bdrv_fill_options(),
2739          * but we first need to open bs->file for the probing to work, while
2740          * opening bs->file already requires the (mostly) final set of options
2741          * so that cache mode etc. can be inherited.
2742          *
2743          * Adding the driver later is somewhat ugly, but it's not an option
2744          * that would ever be inherited, so it's correct. We just need to make
2745          * sure to update both bs->options (which has the full effective
2746          * options for bs) and options (which has file.* already removed).
2747          */
2748         qdict_put_str(bs->options, "driver", drv->format_name);
2749         qdict_put_str(options, "driver", drv->format_name);
2750     } else if (!drv) {
2751         error_setg(errp, "Must specify either driver or file");
2752         goto fail;
2753     }
2754
2755     /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2756     assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2757     /* file must be NULL if a protocol BDS is about to be created
2758      * (the inverse results in an error message from bdrv_open_common()) */
2759     assert(!(flags & BDRV_O_PROTOCOL) || !file);
2760
2761     /* Open the image */
2762     ret = bdrv_open_common(bs, file, options, &local_err);
2763     if (ret < 0) {
2764         goto fail;
2765     }
2766
2767     if (file) {
2768         blk_unref(file);
2769         file = NULL;
2770     }
2771
2772     /* If there is a backing file, use it */
2773     if ((flags & BDRV_O_NO_BACKING) == 0) {
2774         ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
2775         if (ret < 0) {
2776             goto close_and_fail;
2777         }
2778     }
2779
2780     bdrv_refresh_filename(bs);
2781
2782     /* Check if any unknown options were used */
2783     if (qdict_size(options) != 0) {
2784         const QDictEntry *entry = qdict_first(options);
2785         if (flags & BDRV_O_PROTOCOL) {
2786             error_setg(errp, "Block protocol '%s' doesn't support the option "
2787                        "'%s'", drv->format_name, entry->key);
2788         } else {
2789             error_setg(errp,
2790                        "Block format '%s' does not support the option '%s'",
2791                        drv->format_name, entry->key);
2792         }
2793
2794         goto close_and_fail;
2795     }
2796
2797     bdrv_parent_cb_change_media(bs, true);
2798
2799     qobject_unref(options);
2800
2801     /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2802      * temporary snapshot afterwards. */
2803     if (snapshot_flags) {
2804         BlockDriverState *snapshot_bs;
2805         snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2806                                                 snapshot_options, &local_err);
2807         snapshot_options = NULL;
2808         if (local_err) {
2809             goto close_and_fail;
2810         }
2811         /* We are not going to return bs but the overlay on top of it
2812          * (snapshot_bs); thus, we have to drop the strong reference to bs
2813          * (which we obtained by calling bdrv_new()). bs will not be deleted,
2814          * though, because the overlay still has a reference to it. */
2815         bdrv_unref(bs);
2816         bs = snapshot_bs;
2817     }
2818
2819     return bs;
2820
2821 fail:
2822     blk_unref(file);
2823     qobject_unref(snapshot_options);
2824     qobject_unref(bs->explicit_options);
2825     qobject_unref(bs->options);
2826     qobject_unref(options);
2827     bs->options = NULL;
2828     bs->explicit_options = NULL;
2829     bdrv_unref(bs);
2830     error_propagate(errp, local_err);
2831     return NULL;
2832
2833 close_and_fail:
2834     bdrv_unref(bs);
2835     qobject_unref(snapshot_options);
2836     qobject_unref(options);
2837     error_propagate(errp, local_err);
2838     return NULL;
2839 }
2840
2841 BlockDriverState *bdrv_open(const char *filename, const char *reference,
2842                             QDict *options, int flags, Error **errp)
2843 {
2844     return bdrv_open_inherit(filename, reference, options, flags, NULL,
2845                              NULL, errp);
2846 }
2847
2848 /*
2849  * Adds a BlockDriverState to a simple queue for an atomic, transactional
2850  * reopen of multiple devices.
2851  *
2852  * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2853  * already performed, or alternatively may be NULL a new BlockReopenQueue will
2854  * be created and initialized. This newly created BlockReopenQueue should be
2855  * passed back in for subsequent calls that are intended to be of the same
2856  * atomic 'set'.
2857  *
2858  * bs is the BlockDriverState to add to the reopen queue.
2859  *
2860  * options contains the changed options for the associated bs
2861  * (the BlockReopenQueue takes ownership)
2862  *
2863  * flags contains the open flags for the associated bs
2864  *
2865  * returns a pointer to bs_queue, which is either the newly allocated
2866  * bs_queue, or the existing bs_queue being used.
2867  *
2868  * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
2869  */
2870 static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2871                                                  BlockDriverState *bs,
2872                                                  QDict *options,
2873                                                  int flags,
2874                                                  const BdrvChildRole *role,
2875                                                  QDict *parent_options,
2876                                                  int parent_flags)
2877 {
2878     assert(bs != NULL);
2879
2880     BlockReopenQueueEntry *bs_entry;
2881     BdrvChild *child;
2882     QDict *old_options, *explicit_options;
2883
2884     /* Make sure that the caller remembered to use a drained section. This is
2885      * important to avoid graph changes between the recursive queuing here and
2886      * bdrv_reopen_multiple(). */
2887     assert(bs->quiesce_counter > 0);
2888
2889     if (bs_queue == NULL) {
2890         bs_queue = g_new0(BlockReopenQueue, 1);
2891         QSIMPLEQ_INIT(bs_queue);
2892     }
2893
2894     if (!options) {
2895         options = qdict_new();
2896     }
2897
2898     /* Check if this BlockDriverState is already in the queue */
2899     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
2900         if (bs == bs_entry->state.bs) {
2901             break;
2902         }
2903     }
2904
2905     /*
2906      * Precedence of options:
2907      * 1. Explicitly passed in options (highest)
2908      * 2. Set in flags (only for top level)
2909      * 3. Retained from explicitly set options of bs
2910      * 4. Inherited from parent node
2911      * 5. Retained from effective options of bs
2912      */
2913
2914     if (!parent_options) {
2915         /*
2916          * Any setting represented by flags is always updated. If the
2917          * corresponding QDict option is set, it takes precedence. Otherwise
2918          * the flag is translated into a QDict option. The old setting of bs is
2919          * not considered.
2920          */
2921         update_options_from_flags(options, flags);
2922     }
2923
2924     /* Old explicitly set values (don't overwrite by inherited value) */
2925     if (bs_entry) {
2926         old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
2927     } else {
2928         old_options = qdict_clone_shallow(bs->explicit_options);
2929     }
2930     bdrv_join_options(bs, options, old_options);
2931     qobject_unref(old_options);
2932
2933     explicit_options = qdict_clone_shallow(options);
2934
2935     /* Inherit from parent node */
2936     if (parent_options) {
2937         QemuOpts *opts;
2938         QDict *options_copy;
2939         assert(!flags);
2940         role->inherit_options(&flags, options, parent_flags, parent_options);
2941         options_copy = qdict_clone_shallow(options);
2942         opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
2943         qemu_opts_absorb_qdict(opts, options_copy, NULL);
2944         update_flags_from_options(&flags, opts);
2945         qemu_opts_del(opts);
2946         qobject_unref(options_copy);
2947     }
2948
2949     /* Old values are used for options that aren't set yet */
2950     old_options = qdict_clone_shallow(bs->options);
2951     bdrv_join_options(bs, options, old_options);
2952     qobject_unref(old_options);
2953
2954     /* bdrv_open_inherit() sets and clears some additional flags internally */
2955     flags &= ~BDRV_O_PROTOCOL;
2956     if (flags & BDRV_O_RDWR) {
2957         flags |= BDRV_O_ALLOW_RDWR;
2958     }
2959
2960     if (!bs_entry) {
2961         bs_entry = g_new0(BlockReopenQueueEntry, 1);
2962         QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
2963     } else {
2964         qobject_unref(bs_entry->state.options);
2965         qobject_unref(bs_entry->state.explicit_options);
2966     }
2967
2968     bs_entry->state.bs = bs;
2969     bs_entry->state.options = options;
2970     bs_entry->state.explicit_options = explicit_options;
2971     bs_entry->state.flags = flags;
2972
2973     /* This needs to be overwritten in bdrv_reopen_prepare() */
2974     bs_entry->state.perm = UINT64_MAX;
2975     bs_entry->state.shared_perm = 0;
2976
2977     QLIST_FOREACH(child, &bs->children, next) {
2978         QDict *new_child_options;
2979         char *child_key_dot;
2980
2981         /* reopen can only change the options of block devices that were
2982          * implicitly created and inherited options. For other (referenced)
2983          * block devices, a syntax like "backing.foo" results in an error. */
2984         if (child->bs->inherits_from != bs) {
2985             continue;
2986         }
2987
2988         child_key_dot = g_strdup_printf("%s.", child->name);
2989         qdict_extract_subqdict(options, &new_child_options, child_key_dot);
2990         g_free(child_key_dot);
2991
2992         bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options, 0,
2993                                 child->role, options, flags);
2994     }
2995
2996     return bs_queue;
2997 }
2998
2999 BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3000                                     BlockDriverState *bs,
3001                                     QDict *options, int flags)
3002 {
3003     return bdrv_reopen_queue_child(bs_queue, bs, options, flags,
3004                                    NULL, NULL, 0);
3005 }
3006
3007 /*
3008  * Reopen multiple BlockDriverStates atomically & transactionally.
3009  *
3010  * The queue passed in (bs_queue) must have been built up previous
3011  * via bdrv_reopen_queue().
3012  *
3013  * Reopens all BDS specified in the queue, with the appropriate
3014  * flags.  All devices are prepared for reopen, and failure of any
3015  * device will cause all device changes to be abandonded, and intermediate
3016  * data cleaned up.
3017  *
3018  * If all devices prepare successfully, then the changes are committed
3019  * to all devices.
3020  *
3021  * All affected nodes must be drained between bdrv_reopen_queue() and
3022  * bdrv_reopen_multiple().
3023  */
3024 int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
3025 {
3026     int ret = -1;
3027     BlockReopenQueueEntry *bs_entry, *next;
3028     Error *local_err = NULL;
3029
3030     assert(bs_queue != NULL);
3031
3032     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3033         assert(bs_entry->state.bs->quiesce_counter > 0);
3034         if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3035             error_propagate(errp, local_err);
3036             goto cleanup;
3037         }
3038         bs_entry->prepared = true;
3039     }
3040
3041     /* If we reach this point, we have success and just need to apply the
3042      * changes
3043      */
3044     QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3045         bdrv_reopen_commit(&bs_entry->state);
3046     }
3047
3048     ret = 0;
3049
3050 cleanup:
3051     QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
3052         if (ret && bs_entry->prepared) {
3053             bdrv_reopen_abort(&bs_entry->state);
3054         } else if (ret) {
3055             qobject_unref(bs_entry->state.explicit_options);
3056         }
3057         qobject_unref(bs_entry->state.options);
3058         g_free(bs_entry);
3059     }
3060     g_free(bs_queue);
3061
3062     return ret;
3063 }
3064
3065
3066 /* Reopen a single BlockDriverState with the specified flags. */
3067 int bdrv_reopen(BlockDriverState *bs, int bdrv_flags, Error **errp)
3068 {
3069     int ret = -1;
3070     Error *local_err = NULL;
3071     BlockReopenQueue *queue;
3072
3073     bdrv_subtree_drained_begin(bs);
3074
3075     queue = bdrv_reopen_queue(NULL, bs, NULL, bdrv_flags);
3076     ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, &local_err);
3077     if (local_err != NULL) {
3078         error_propagate(errp, local_err);
3079     }
3080
3081     bdrv_subtree_drained_end(bs);
3082
3083     return ret;
3084 }
3085
3086 static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3087                                                           BdrvChild *c)
3088 {
3089     BlockReopenQueueEntry *entry;
3090
3091     QSIMPLEQ_FOREACH(entry, q, entry) {
3092         BlockDriverState *bs = entry->state.bs;
3093         BdrvChild *child;
3094
3095         QLIST_FOREACH(child, &bs->children, next) {
3096             if (child == c) {
3097                 return entry;
3098             }
3099         }
3100     }
3101
3102     return NULL;
3103 }
3104
3105 static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3106                              uint64_t *perm, uint64_t *shared)
3107 {
3108     BdrvChild *c;
3109     BlockReopenQueueEntry *parent;
3110     uint64_t cumulative_perms = 0;
3111     uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3112
3113     QLIST_FOREACH(c, &bs->parents, next_parent) {
3114         parent = find_parent_in_reopen_queue(q, c);
3115         if (!parent) {
3116             cumulative_perms |= c->perm;
3117             cumulative_shared_perms &= c->shared_perm;
3118         } else {
3119             uint64_t nperm, nshared;
3120
3121             bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3122                             parent->state.perm, parent->state.shared_perm,
3123                             &nperm, &nshared);
3124
3125             cumulative_perms |= nperm;
3126             cumulative_shared_perms &= nshared;
3127         }
3128     }
3129     *perm = cumulative_perms;
3130     *shared = cumulative_shared_perms;
3131 }
3132
3133 /*
3134  * Prepares a BlockDriverState for reopen. All changes are staged in the
3135  * 'opaque' field of the BDRVReopenState, which is used and allocated by
3136  * the block driver layer .bdrv_reopen_prepare()
3137  *
3138  * bs is the BlockDriverState to reopen
3139  * flags are the new open flags
3140  * queue is the reopen queue
3141  *
3142  * Returns 0 on success, non-zero on error.  On error errp will be set
3143  * as well.
3144  *
3145  * On failure, bdrv_reopen_abort() will be called to clean up any data.
3146  * It is the responsibility of the caller to then call the abort() or
3147  * commit() for any other BDS that have been left in a prepare() state
3148  *
3149  */
3150 int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3151                         Error **errp)
3152 {
3153     int ret = -1;
3154     Error *local_err = NULL;
3155     BlockDriver *drv;
3156     QemuOpts *opts;
3157     const char *value;
3158     bool read_only;
3159
3160     assert(reopen_state != NULL);
3161     assert(reopen_state->bs->drv != NULL);
3162     drv = reopen_state->bs->drv;
3163
3164     /* Process generic block layer options */
3165     opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3166     qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3167     if (local_err) {
3168         error_propagate(errp, local_err);
3169         ret = -EINVAL;
3170         goto error;
3171     }
3172
3173     update_flags_from_options(&reopen_state->flags, opts);
3174
3175     /* node-name and driver must be unchanged. Put them back into the QDict, so
3176      * that they are checked at the end of this function. */
3177     value = qemu_opt_get(opts, "node-name");
3178     if (value) {
3179         qdict_put_str(reopen_state->options, "node-name", value);
3180     }
3181
3182     value = qemu_opt_get(opts, "driver");
3183     if (value) {
3184         qdict_put_str(reopen_state->options, "driver", value);
3185     }
3186
3187     /* If we are to stay read-only, do not allow permission change
3188      * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3189      * not set, or if the BDS still has copy_on_read enabled */
3190     read_only = !(reopen_state->flags & BDRV_O_RDWR);
3191     ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
3192     if (local_err) {
3193         error_propagate(errp, local_err);
3194         goto error;
3195     }
3196
3197     /* Calculate required permissions after reopening */
3198     bdrv_reopen_perm(queue, reopen_state->bs,
3199                      &reopen_state->perm, &reopen_state->shared_perm);
3200
3201     ret = bdrv_flush(reopen_state->bs);
3202     if (ret) {
3203         error_setg_errno(errp, -ret, "Error flushing drive");
3204         goto error;
3205     }
3206
3207     if (drv->bdrv_reopen_prepare) {
3208         ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3209         if (ret) {
3210             if (local_err != NULL) {
3211                 error_propagate(errp, local_err);
3212             } else {
3213                 error_setg(errp, "failed while preparing to reopen image '%s'",
3214                            reopen_state->bs->filename);
3215             }
3216             goto error;
3217         }
3218     } else {
3219         /* It is currently mandatory to have a bdrv_reopen_prepare()
3220          * handler for each supported drv. */
3221         error_setg(errp, "Block format '%s' used by node '%s' "
3222                    "does not support reopening files", drv->format_name,
3223                    bdrv_get_device_or_node_name(reopen_state->bs));
3224         ret = -1;
3225         goto error;
3226     }
3227
3228     /* Options that are not handled are only okay if they are unchanged
3229      * compared to the old state. It is expected that some options are only
3230      * used for the initial open, but not reopen (e.g. filename) */
3231     if (qdict_size(reopen_state->options)) {
3232         const QDictEntry *entry = qdict_first(reopen_state->options);
3233
3234         do {
3235             QObject *new = entry->value;
3236             QObject *old = qdict_get(reopen_state->bs->options, entry->key);
3237
3238             /*
3239              * TODO: When using -drive to specify blockdev options, all values
3240              * will be strings; however, when using -blockdev, blockdev-add or
3241              * filenames using the json:{} pseudo-protocol, they will be
3242              * correctly typed.
3243              * In contrast, reopening options are (currently) always strings
3244              * (because you can only specify them through qemu-io; all other
3245              * callers do not specify any options).
3246              * Therefore, when using anything other than -drive to create a BDS,
3247              * this cannot detect non-string options as unchanged, because
3248              * qobject_is_equal() always returns false for objects of different
3249              * type.  In the future, this should be remedied by correctly typing
3250              * all options.  For now, this is not too big of an issue because
3251              * the user can simply omit options which cannot be changed anyway,
3252              * so they will stay unchanged.
3253              */
3254             if (!qobject_is_equal(new, old)) {
3255                 error_setg(errp, "Cannot change the option '%s'", entry->key);
3256                 ret = -EINVAL;
3257                 goto error;
3258             }
3259         } while ((entry = qdict_next(reopen_state->options, entry)));
3260     }
3261
3262     ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3263                           reopen_state->shared_perm, NULL, errp);
3264     if (ret < 0) {
3265         goto error;
3266     }
3267
3268     ret = 0;
3269
3270 error:
3271     qemu_opts_del(opts);
3272     return ret;
3273 }
3274
3275 /*
3276  * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3277  * makes them final by swapping the staging BlockDriverState contents into
3278  * the active BlockDriverState contents.
3279  */
3280 void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3281 {
3282     BlockDriver *drv;
3283     BlockDriverState *bs;
3284     bool old_can_write, new_can_write;
3285
3286     assert(reopen_state != NULL);
3287     bs = reopen_state->bs;
3288     drv = bs->drv;
3289     assert(drv != NULL);
3290
3291     old_can_write =
3292         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3293
3294     /* If there are any driver level actions to take */
3295     if (drv->bdrv_reopen_commit) {
3296         drv->bdrv_reopen_commit(reopen_state);
3297     }
3298
3299     /* set BDS specific flags now */
3300     qobject_unref(bs->explicit_options);
3301
3302     bs->explicit_options   = reopen_state->explicit_options;
3303     bs->open_flags         = reopen_state->flags;
3304     bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
3305
3306     bdrv_refresh_limits(bs, NULL);
3307
3308     bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3309                   reopen_state->shared_perm);
3310
3311     new_can_write =
3312         !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3313     if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3314         Error *local_err = NULL;
3315         if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3316             /* This is not fatal, bitmaps just left read-only, so all following
3317              * writes will fail. User can remove read-only bitmaps to unblock
3318              * writes.
3319              */
3320             error_reportf_err(local_err,
3321                               "%s: Failed to make dirty bitmaps writable: ",
3322                               bdrv_get_node_name(bs));
3323         }
3324     }
3325 }
3326
3327 /*
3328  * Abort the reopen, and delete and free the staged changes in
3329  * reopen_state
3330  */
3331 void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3332 {
3333     BlockDriver *drv;
3334
3335     assert(reopen_state != NULL);
3336     drv = reopen_state->bs->drv;
3337     assert(drv != NULL);
3338
3339     if (drv->bdrv_reopen_abort) {
3340         drv->bdrv_reopen_abort(reopen_state);
3341     }
3342
3343     qobject_unref(reopen_state->explicit_options);
3344
3345     bdrv_abort_perm_update(reopen_state->bs);
3346 }
3347
3348
3349 static void bdrv_close(BlockDriverState *bs)
3350 {
3351     BdrvAioNotifier *ban, *ban_next;
3352     BdrvChild *child, *next;
3353
3354     assert(!bs->job);
3355     assert(!bs->refcnt);
3356
3357     bdrv_drained_begin(bs); /* complete I/O */
3358     bdrv_flush(bs);
3359     bdrv_drain(bs); /* in case flush left pending I/O */
3360
3361     if (bs->drv) {
3362         bs->drv->bdrv_close(bs);
3363         bs->drv = NULL;
3364     }
3365
3366     bdrv_set_backing_hd(bs, NULL, &error_abort);
3367
3368     if (bs->file != NULL) {
3369         bdrv_unref_child(bs, bs->file);
3370         bs->file = NULL;
3371     }
3372
3373     QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3374         /* TODO Remove bdrv_unref() from drivers' close function and use
3375          * bdrv_unref_child() here */
3376         if (child->bs->inherits_from == bs) {
3377             child->bs->inherits_from = NULL;
3378         }
3379         bdrv_detach_child(child);
3380     }
3381
3382     g_free(bs->opaque);
3383     bs->opaque = NULL;
3384     atomic_set(&bs->copy_on_read, 0);
3385     bs->backing_file[0] = '\0';
3386     bs->backing_format[0] = '\0';
3387     bs->total_sectors = 0;
3388     bs->encrypted = false;
3389     bs->sg = false;
3390     qobject_unref(bs->options);
3391     qobject_unref(bs->explicit_options);
3392     bs->options = NULL;
3393     bs->explicit_options = NULL;
3394     qobject_unref(bs->full_open_options);
3395     bs->full_open_options = NULL;
3396
3397     bdrv_release_named_dirty_bitmaps(bs);
3398     assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3399
3400     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3401         g_free(ban);
3402     }
3403     QLIST_INIT(&bs->aio_notifiers);
3404     bdrv_drained_end(bs);
3405 }
3406
3407 void bdrv_close_all(void)
3408 {
3409     assert(job_next(NULL) == NULL);
3410     nbd_export_close_all();
3411
3412     /* Drop references from requests still in flight, such as canceled block
3413      * jobs whose AIO context has not been polled yet */
3414     bdrv_drain_all();
3415
3416     blk_remove_all_bs();
3417     blockdev_close_all_bdrv_states();
3418
3419     assert(QTAILQ_EMPTY(&all_bdrv_states));
3420 }
3421
3422 static bool should_update_child(BdrvChild *c, BlockDriverState *to)
3423 {
3424     BdrvChild *to_c;
3425
3426     if (c->role->stay_at_node) {
3427         return false;
3428     }
3429
3430     /* If the child @c belongs to the BDS @to, replacing the current
3431      * c->bs by @to would mean to create a loop.
3432      *
3433      * Such a case occurs when appending a BDS to a backing chain.
3434      * For instance, imagine the following chain:
3435      *
3436      *   guest device -> node A -> further backing chain...
3437      *
3438      * Now we create a new BDS B which we want to put on top of this
3439      * chain, so we first attach A as its backing node:
3440      *
3441      *                   node B
3442      *                     |
3443      *                     v
3444      *   guest device -> node A -> further backing chain...
3445      *
3446      * Finally we want to replace A by B.  When doing that, we want to
3447      * replace all pointers to A by pointers to B -- except for the
3448      * pointer from B because (1) that would create a loop, and (2)
3449      * that pointer should simply stay intact:
3450      *
3451      *   guest device -> node B
3452      *                     |
3453      *                     v
3454      *                   node A -> further backing chain...
3455      *
3456      * In general, when replacing a node A (c->bs) by a node B (@to),
3457      * if A is a child of B, that means we cannot replace A by B there
3458      * because that would create a loop.  Silently detaching A from B
3459      * is also not really an option.  So overall just leaving A in
3460      * place there is the most sensible choice. */
3461     QLIST_FOREACH(to_c, &to->children, next) {
3462         if (to_c == c) {
3463             return false;
3464         }
3465     }
3466
3467     return true;
3468 }
3469
3470 void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3471                        Error **errp)
3472 {
3473     BdrvChild *c, *next;
3474     GSList *list = NULL, *p;
3475     uint64_t old_perm, old_shared;
3476     uint64_t perm = 0, shared = BLK_PERM_ALL;
3477     int ret;
3478
3479     assert(!atomic_read(&from->in_flight));
3480     assert(!atomic_read(&to->in_flight));
3481
3482     /* Make sure that @from doesn't go away until we have successfully attached
3483      * all of its parents to @to. */
3484     bdrv_ref(from);
3485
3486     /* Put all parents into @list and calculate their cumulative permissions */
3487     QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
3488         assert(c->bs == from);
3489         if (!should_update_child(c, to)) {
3490             continue;
3491         }
3492         list = g_slist_prepend(list, c);
3493         perm |= c->perm;
3494         shared &= c->shared_perm;
3495     }
3496
3497     /* Check whether the required permissions can be granted on @to, ignoring
3498      * all BdrvChild in @list so that they can't block themselves. */
3499     ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
3500     if (ret < 0) {
3501         bdrv_abort_perm_update(to);
3502         goto out;
3503     }
3504
3505     /* Now actually perform the change. We performed the permission check for
3506      * all elements of @list at once, so set the permissions all at once at the
3507      * very end. */
3508     for (p = list; p != NULL; p = p->next) {
3509         c = p->data;
3510
3511         bdrv_ref(to);
3512         bdrv_replace_child_noperm(c, to);
3513         bdrv_unref(from);
3514     }
3515
3516     bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3517     bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3518
3519 out:
3520     g_slist_free(list);
3521     bdrv_unref(from);
3522 }
3523
3524 /*
3525  * Add new bs contents at the top of an image chain while the chain is
3526  * live, while keeping required fields on the top layer.
3527  *
3528  * This will modify the BlockDriverState fields, and swap contents
3529  * between bs_new and bs_top. Both bs_new and bs_top are modified.
3530  *
3531  * bs_new must not be attached to a BlockBackend.
3532  *
3533  * This function does not create any image files.
3534  *
3535  * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3536  * that's what the callers commonly need. bs_new will be referenced by the old
3537  * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3538  * reference of its own, it must call bdrv_ref().
3539  */
3540 void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3541                  Error **errp)
3542 {
3543     Error *local_err = NULL;
3544
3545     bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3546     if (local_err) {
3547         error_propagate(errp, local_err);
3548         goto out;
3549     }
3550
3551     bdrv_replace_node(bs_top, bs_new, &local_err);
3552     if (local_err) {
3553         error_propagate(errp, local_err);
3554         bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3555         goto out;
3556     }
3557
3558     /* bs_new is now referenced by its new parents, we don't need the
3559      * additional reference any more. */
3560 out:
3561     bdrv_unref(bs_new);
3562 }
3563
3564 static void bdrv_delete(BlockDriverState *bs)
3565 {
3566     assert(!bs->job);
3567     assert(bdrv_op_blocker_is_empty(bs));
3568     assert(!bs->refcnt);
3569
3570     bdrv_close(bs);
3571
3572     /* remove from list, if necessary */
3573     if (bs->node_name[0] != '\0') {
3574         QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3575     }
3576     QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3577
3578     g_free(bs);
3579 }
3580
3581 /*
3582  * Run consistency checks on an image
3583  *
3584  * Returns 0 if the check could be completed (it doesn't mean that the image is
3585  * free of errors) or -errno when an internal error occurred. The results of the
3586  * check are stored in res.
3587  */
3588 static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3589                                       BdrvCheckResult *res, BdrvCheckMode fix)
3590 {
3591     if (bs->drv == NULL) {
3592         return -ENOMEDIUM;
3593     }
3594     if (bs->drv->bdrv_co_check == NULL) {
3595         return -ENOTSUP;
3596     }
3597
3598     memset(res, 0, sizeof(*res));
3599     return bs->drv->bdrv_co_check(bs, res, fix);
3600 }
3601
3602 typedef struct CheckCo {
3603     BlockDriverState *bs;
3604     BdrvCheckResult *res;
3605     BdrvCheckMode fix;
3606     int ret;
3607 } CheckCo;
3608
3609 static void bdrv_check_co_entry(void *opaque)
3610 {
3611     CheckCo *cco = opaque;
3612     cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
3613 }
3614
3615 int bdrv_check(BlockDriverState *bs,
3616                BdrvCheckResult *res, BdrvCheckMode fix)
3617 {
3618     Coroutine *co;
3619     CheckCo cco = {
3620         .bs = bs,
3621         .res = res,
3622         .ret = -EINPROGRESS,
3623         .fix = fix,
3624     };
3625
3626     if (qemu_in_coroutine()) {
3627         /* Fast-path if already in coroutine context */
3628         bdrv_check_co_entry(&cco);
3629     } else {
3630         co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
3631         qemu_coroutine_enter(co);
3632         BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3633     }
3634
3635     return cco.ret;
3636 }
3637
3638 /*
3639  * Return values:
3640  * 0        - success
3641  * -EINVAL  - backing format specified, but no file
3642  * -ENOSPC  - can't update the backing file because no space is left in the
3643  *            image file header
3644  * -ENOTSUP - format driver doesn't support changing the backing file
3645  */
3646 int bdrv_change_backing_file(BlockDriverState *bs,
3647     const char *backing_file, const char *backing_fmt)
3648 {
3649     BlockDriver *drv = bs->drv;
3650     int ret;
3651
3652     if (!drv) {
3653         return -ENOMEDIUM;
3654     }
3655
3656     /* Backing file format doesn't make sense without a backing file */
3657     if (backing_fmt && !backing_file) {
3658         return -EINVAL;
3659     }
3660
3661     if (drv->bdrv_change_backing_file != NULL) {
3662         ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
3663     } else {
3664         ret = -ENOTSUP;
3665     }
3666
3667     if (ret == 0) {
3668         pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3669         pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
3670     }
3671     return ret;
3672 }
3673
3674 /*
3675  * Finds the image layer in the chain that has 'bs' as its backing file.
3676  *
3677  * active is the current topmost image.
3678  *
3679  * Returns NULL if bs is not found in active's image chain,
3680  * or if active == bs.
3681  *
3682  * Returns the bottommost base image if bs == NULL.
3683  */
3684 BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3685                                     BlockDriverState *bs)
3686 {
3687     while (active && bs != backing_bs(active)) {
3688         active = backing_bs(active);
3689     }
3690
3691     return active;
3692 }
3693
3694 /* Given a BDS, searches for the base layer. */
3695 BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3696 {
3697     return bdrv_find_overlay(bs, NULL);
3698 }
3699
3700 /*
3701  * Drops images above 'base' up to and including 'top', and sets the image
3702  * above 'top' to have base as its backing file.
3703  *
3704  * Requires that the overlay to 'top' is opened r/w, so that the backing file
3705  * information in 'bs' can be properly updated.
3706  *
3707  * E.g., this will convert the following chain:
3708  * bottom <- base <- intermediate <- top <- active
3709  *
3710  * to
3711  *
3712  * bottom <- base <- active
3713  *
3714  * It is allowed for bottom==base, in which case it converts:
3715  *
3716  * base <- intermediate <- top <- active
3717  *
3718  * to
3719  *
3720  * base <- active
3721  *
3722  * If backing_file_str is non-NULL, it will be used when modifying top's
3723  * overlay image metadata.
3724  *
3725  * Error conditions:
3726  *  if active == top, that is considered an error
3727  *
3728  */
3729 int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3730                            const char *backing_file_str)
3731 {
3732     BdrvChild *c, *next;
3733     Error *local_err = NULL;
3734     int ret = -EIO;
3735
3736     bdrv_ref(top);
3737
3738     if (!top->drv || !base->drv) {
3739         goto exit;
3740     }
3741
3742     /* Make sure that base is in the backing chain of top */
3743     if (!bdrv_chain_contains(top, base)) {
3744         goto exit;
3745     }
3746
3747     /* success - we can delete the intermediate states, and link top->base */
3748     /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3749      * we've figured out how they should work. */
3750     backing_file_str = backing_file_str ? backing_file_str : base->filename;
3751
3752     QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3753         /* Check whether we are allowed to switch c from top to base */
3754         GSList *ignore_children = g_slist_prepend(NULL, c);
3755         bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3756                                ignore_children, &local_err);
3757         g_slist_free(ignore_children);
3758         if (local_err) {
3759             ret = -EPERM;
3760             error_report_err(local_err);
3761             goto exit;
3762         }
3763
3764         /* If so, update the backing file path in the image file */
3765         if (c->role->update_filename) {
3766             ret = c->role->update_filename(c, base, backing_file_str,
3767                                            &local_err);
3768             if (ret < 0) {
3769                 bdrv_abort_perm_update(base);
3770                 error_report_err(local_err);
3771                 goto exit;
3772             }
3773         }
3774
3775         /* Do the actual switch in the in-memory graph.
3776          * Completes bdrv_check_update_perm() transaction internally. */
3777         bdrv_ref(base);
3778         bdrv_replace_child(c, base);
3779         bdrv_unref(top);
3780     }
3781
3782     ret = 0;
3783 exit:
3784     bdrv_unref(top);
3785     return ret;
3786 }
3787
3788 /**
3789  * Truncate file to 'offset' bytes (needed only for file protocols)
3790  */
3791 int coroutine_fn bdrv_co_truncate(BdrvChild *child, int64_t offset,
3792                                   PreallocMode prealloc, Error **errp)
3793 {
3794     BlockDriverState *bs = child->bs;
3795     BlockDriver *drv = bs->drv;
3796     int ret;
3797
3798     assert(child->perm & BLK_PERM_RESIZE);
3799
3800     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
3801     if (!drv) {
3802         error_setg(errp, "No medium inserted");
3803         return -ENOMEDIUM;
3804     }
3805     if (offset < 0) {
3806         error_setg(errp, "Image size cannot be negative");
3807         return -EINVAL;
3808     }
3809
3810     bdrv_inc_in_flight(bs);
3811
3812     if (!drv->bdrv_co_truncate) {
3813         if (bs->file && drv->is_filter) {
3814             ret = bdrv_co_truncate(bs->file, offset, prealloc, errp);
3815             goto out;
3816         }
3817         error_setg(errp, "Image format driver does not support resize");
3818         ret = -ENOTSUP;
3819         goto out;
3820     }
3821     if (bs->read_only) {
3822         error_setg(errp, "Image is read-only");
3823         ret = -EACCES;
3824         goto out;
3825     }
3826
3827     assert(!(bs->open_flags & BDRV_O_INACTIVE));
3828
3829     ret = drv->bdrv_co_truncate(bs, offset, prealloc, errp);
3830     if (ret < 0) {
3831         goto out;
3832     }
3833     ret = refresh_total_sectors(bs, offset >> BDRV_SECTOR_BITS);
3834     if (ret < 0) {
3835         error_setg_errno(errp, -ret, "Could not refresh total sector count");
3836     } else {
3837         offset = bs->total_sectors * BDRV_SECTOR_SIZE;
3838     }
3839     bdrv_dirty_bitmap_truncate(bs, offset);
3840     bdrv_parent_cb_resize(bs);
3841     atomic_inc(&bs->write_gen);
3842
3843 out:
3844     bdrv_dec_in_flight(bs);
3845     return ret;
3846 }
3847
3848 typedef struct TruncateCo {
3849     BdrvChild *child;
3850     int64_t offset;
3851     PreallocMode prealloc;
3852     Error **errp;
3853     int ret;
3854 } TruncateCo;
3855
3856 static void coroutine_fn bdrv_truncate_co_entry(void *opaque)
3857 {
3858     TruncateCo *tco = opaque;
3859     tco->ret = bdrv_co_truncate(tco->child, tco->offset, tco->prealloc,
3860                                 tco->errp);
3861 }
3862
3863 int bdrv_truncate(BdrvChild *child, int64_t offset, PreallocMode prealloc,
3864                   Error **errp)
3865 {
3866     Coroutine *co;
3867     TruncateCo tco = {
3868         .child      = child,
3869         .offset     = offset,
3870         .prealloc   = prealloc,
3871         .errp       = errp,
3872         .ret        = NOT_DONE,
3873     };
3874
3875     if (qemu_in_coroutine()) {
3876         /* Fast-path if already in coroutine context */
3877         bdrv_truncate_co_entry(&tco);
3878     } else {
3879         co = qemu_coroutine_create(bdrv_truncate_co_entry, &tco);
3880         qemu_coroutine_enter(co);
3881         BDRV_POLL_WHILE(child->bs, tco.ret == NOT_DONE);
3882     }
3883
3884     return tco.ret;
3885 }
3886
3887 /**
3888  * Length of a allocated file in bytes. Sparse files are counted by actual
3889  * allocated space. Return < 0 if error or unknown.
3890  */
3891 int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
3892 {
3893     BlockDriver *drv = bs->drv;
3894     if (!drv) {
3895         return -ENOMEDIUM;
3896     }
3897     if (drv->bdrv_get_allocated_file_size) {
3898         return drv->bdrv_get_allocated_file_size(bs);
3899     }
3900     if (bs->file) {
3901         return bdrv_get_allocated_file_size(bs->file->bs);
3902     }
3903     return -ENOTSUP;
3904 }
3905
3906 /*
3907  * bdrv_measure:
3908  * @drv: Format driver
3909  * @opts: Creation options for new image
3910  * @in_bs: Existing image containing data for new image (may be NULL)
3911  * @errp: Error object
3912  * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
3913  *          or NULL on error
3914  *
3915  * Calculate file size required to create a new image.
3916  *
3917  * If @in_bs is given then space for allocated clusters and zero clusters
3918  * from that image are included in the calculation.  If @opts contains a
3919  * backing file that is shared by @in_bs then backing clusters may be omitted
3920  * from the calculation.
3921  *
3922  * If @in_bs is NULL then the calculation includes no allocated clusters
3923  * unless a preallocation option is given in @opts.
3924  *
3925  * Note that @in_bs may use a different BlockDriver from @drv.
3926  *
3927  * If an error occurs the @errp pointer is set.
3928  */
3929 BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
3930                                BlockDriverState *in_bs, Error **errp)
3931 {
3932     if (!drv->bdrv_measure) {
3933         error_setg(errp, "Block driver '%s' does not support size measurement",
3934                    drv->format_name);
3935         return NULL;
3936     }
3937
3938     return drv->bdrv_measure(opts, in_bs, errp);
3939 }
3940
3941 /**
3942  * Return number of sectors on success, -errno on error.
3943  */
3944 int64_t bdrv_nb_sectors(BlockDriverState *bs)
3945 {
3946     BlockDriver *drv = bs->drv;
3947
3948     if (!drv)
3949         return -ENOMEDIUM;
3950
3951     if (drv->has_variable_length) {
3952         int ret = refresh_total_sectors(bs, bs->total_sectors);
3953         if (ret < 0) {
3954             return ret;
3955         }
3956     }
3957     return bs->total_sectors;
3958 }
3959
3960 /**
3961  * Return length in bytes on success, -errno on error.
3962  * The length is always a multiple of BDRV_SECTOR_SIZE.
3963  */
3964 int64_t bdrv_getlength(BlockDriverState *bs)
3965 {
3966     int64_t ret = bdrv_nb_sectors(bs);
3967
3968     ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
3969     return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
3970 }
3971
3972 /* return 0 as number of sectors if no device present or error */
3973 void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
3974 {
3975     int64_t nb_sectors = bdrv_nb_sectors(bs);
3976
3977     *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
3978 }
3979
3980 bool bdrv_is_sg(BlockDriverState *bs)
3981 {
3982     return bs->sg;
3983 }
3984
3985 bool bdrv_is_encrypted(BlockDriverState *bs)
3986 {
3987     if (bs->backing && bs->backing->bs->encrypted) {
3988         return true;
3989     }
3990     return bs->encrypted;
3991 }
3992
3993 const char *bdrv_get_format_name(BlockDriverState *bs)
3994 {
3995     return bs->drv ? bs->drv->format_name : NULL;
3996 }
3997
3998 static int qsort_strcmp(const void *a, const void *b)
3999 {
4000     return strcmp(*(char *const *)a, *(char *const *)b);
4001 }
4002
4003 void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
4004                          void *opaque)
4005 {
4006     BlockDriver *drv;
4007     int count = 0;
4008     int i;
4009     const char **formats = NULL;
4010
4011     QLIST_FOREACH(drv, &bdrv_drivers, list) {
4012         if (drv->format_name) {
4013             bool found = false;
4014             int i = count;
4015             while (formats && i && !found) {
4016                 found = !strcmp(formats[--i], drv->format_name);
4017             }
4018
4019             if (!found) {
4020                 formats = g_renew(const char *, formats, count + 1);
4021                 formats[count++] = drv->format_name;
4022             }
4023         }
4024     }
4025
4026     for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4027         const char *format_name = block_driver_modules[i].format_name;
4028
4029         if (format_name) {
4030             bool found = false;
4031             int j = count;
4032
4033             while (formats && j && !found) {
4034                 found = !strcmp(formats[--j], format_name);
4035             }
4036
4037             if (!found) {
4038                 formats = g_renew(const char *, formats, count + 1);
4039                 formats[count++] = format_name;
4040             }
4041         }
4042     }
4043
4044     qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4045
4046     for (i = 0; i < count; i++) {
4047         it(opaque, formats[i]);
4048     }
4049
4050     g_free(formats);
4051 }
4052
4053 /* This function is to find a node in the bs graph */
4054 BlockDriverState *bdrv_find_node(const char *node_name)
4055 {
4056     BlockDriverState *bs;
4057
4058     assert(node_name);
4059
4060     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4061         if (!strcmp(node_name, bs->node_name)) {
4062             return bs;
4063         }
4064     }
4065     return NULL;
4066 }
4067
4068 /* Put this QMP function here so it can access the static graph_bdrv_states. */
4069 BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
4070 {
4071     BlockDeviceInfoList *list, *entry;
4072     BlockDriverState *bs;
4073
4074     list = NULL;
4075     QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4076         BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
4077         if (!info) {
4078             qapi_free_BlockDeviceInfoList(list);
4079             return NULL;
4080         }
4081         entry = g_malloc0(sizeof(*entry));
4082         entry->value = info;
4083         entry->next = list;
4084         list = entry;
4085     }
4086
4087     return list;
4088 }
4089
4090 BlockDriverState *bdrv_lookup_bs(const char *device,
4091                                  const char *node_name,
4092                                  Error **errp)
4093 {
4094     BlockBackend *blk;
4095     BlockDriverState *bs;
4096
4097     if (device) {
4098         blk = blk_by_name(device);
4099
4100         if (blk) {
4101             bs = blk_bs(blk);
4102             if (!bs) {
4103                 error_setg(errp, "Device '%s' has no medium", device);
4104             }
4105
4106             return bs;
4107         }
4108     }
4109
4110     if (node_name) {
4111         bs = bdrv_find_node(node_name);
4112
4113         if (bs) {
4114             return bs;
4115         }
4116     }
4117
4118     error_setg(errp, "Cannot find device=%s nor node_name=%s",
4119                      device ? device : "",
4120                      node_name ? node_name : "");
4121     return NULL;
4122 }
4123
4124 /* If 'base' is in the same chain as 'top', return true. Otherwise,
4125  * return false.  If either argument is NULL, return false. */
4126 bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4127 {
4128     while (top && top != base) {
4129         top = backing_bs(top);
4130     }
4131
4132     return top != NULL;
4133 }
4134
4135 BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4136 {
4137     if (!bs) {
4138         return QTAILQ_FIRST(&graph_bdrv_states);
4139     }
4140     return QTAILQ_NEXT(bs, node_list);
4141 }
4142
4143 BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4144 {
4145     if (!bs) {
4146         return QTAILQ_FIRST(&all_bdrv_states);
4147     }
4148     return QTAILQ_NEXT(bs, bs_list);
4149 }
4150
4151 const char *bdrv_get_node_name(const BlockDriverState *bs)
4152 {
4153     return bs->node_name;
4154 }
4155
4156 const char *bdrv_get_parent_name(const BlockDriverState *bs)
4157 {
4158     BdrvChild *c;
4159     const char *name;
4160
4161     /* If multiple parents have a name, just pick the first one. */
4162     QLIST_FOREACH(c, &bs->parents, next_parent) {
4163         if (c->role->get_name) {
4164             name = c->role->get_name(c);
4165             if (name && *name) {
4166                 return name;
4167             }
4168         }
4169     }
4170
4171     return NULL;
4172 }
4173
4174 /* TODO check what callers really want: bs->node_name or blk_name() */
4175 const char *bdrv_get_device_name(const BlockDriverState *bs)
4176 {
4177     return bdrv_get_parent_name(bs) ?: "";
4178 }
4179
4180 /* This can be used to identify nodes that might not have a device
4181  * name associated. Since node and device names live in the same
4182  * namespace, the result is unambiguous. The exception is if both are
4183  * absent, then this returns an empty (non-null) string. */
4184 const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4185 {
4186     return bdrv_get_parent_name(bs) ?: bs->node_name;
4187 }
4188
4189 int bdrv_get_flags(BlockDriverState *bs)
4190 {
4191     return bs->open_flags;
4192 }
4193
4194 int bdrv_has_zero_init_1(BlockDriverState *bs)
4195 {
4196     return 1;
4197 }
4198
4199 int bdrv_has_zero_init(BlockDriverState *bs)
4200 {
4201     if (!bs->drv) {
4202         return 0;
4203     }
4204
4205     /* If BS is a copy on write image, it is initialized to
4206        the contents of the base image, which may not be zeroes.  */
4207     if (bs->backing) {
4208         return 0;
4209     }
4210     if (bs->drv->bdrv_has_zero_init) {
4211         return bs->drv->bdrv_has_zero_init(bs);
4212     }
4213     if (bs->file && bs->drv->is_filter) {
4214         return bdrv_has_zero_init(bs->file->bs);
4215     }
4216
4217     /* safe default */
4218     return 0;
4219 }
4220
4221 bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4222 {
4223     BlockDriverInfo bdi;
4224
4225     if (bs->backing) {
4226         return false;
4227     }
4228
4229     if (bdrv_get_info(bs, &bdi) == 0) {
4230         return bdi.unallocated_blocks_are_zero;
4231     }
4232
4233     return false;
4234 }
4235
4236 bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4237 {
4238     if (!(bs->open_flags & BDRV_O_UNMAP)) {
4239         return false;
4240     }
4241
4242     return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
4243 }
4244
4245 const char *bdrv_get_encrypted_filename(BlockDriverState *bs)
4246 {
4247     if (bs->backing && bs->backing->bs->encrypted)
4248         return bs->backing_file;
4249     else if (bs->encrypted)
4250         return bs->filename;
4251     else
4252         return NULL;
4253 }
4254
4255 void bdrv_get_backing_filename(BlockDriverState *bs,
4256                                char *filename, int filename_size)
4257 {
4258     pstrcpy(filename, filename_size, bs->backing_file);
4259 }
4260
4261 int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4262 {
4263     BlockDriver *drv = bs->drv;
4264     /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4265     if (!drv) {
4266         return -ENOMEDIUM;
4267     }
4268     if (!drv->bdrv_get_info) {
4269         if (bs->file && drv->is_filter) {
4270             return bdrv_get_info(bs->file->bs, bdi);
4271         }
4272         return -ENOTSUP;
4273     }
4274     memset(bdi, 0, sizeof(*bdi));
4275     return drv->bdrv_get_info(bs, bdi);
4276 }
4277
4278 ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs)
4279 {
4280     BlockDriver *drv = bs->drv;
4281     if (drv && drv->bdrv_get_specific_info) {
4282         return drv->bdrv_get_specific_info(bs);
4283     }
4284     return NULL;
4285 }
4286
4287 void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
4288 {
4289     if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
4290         return;
4291     }
4292
4293     bs->drv->bdrv_debug_event(bs, event);
4294 }
4295
4296 int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4297                           const char *tag)
4298 {
4299     while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
4300         bs = bs->file ? bs->file->bs : NULL;
4301     }
4302
4303     if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4304         return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4305     }
4306
4307     return -ENOTSUP;
4308 }
4309
4310 int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4311 {
4312     while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
4313         bs = bs->file ? bs->file->bs : NULL;
4314     }
4315
4316     if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4317         return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4318     }
4319
4320     return -ENOTSUP;
4321 }
4322
4323 int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4324 {
4325     while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
4326         bs = bs->file ? bs->file->bs : NULL;
4327     }
4328
4329     if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4330         return bs->drv->bdrv_debug_resume(bs, tag);
4331     }
4332
4333     return -ENOTSUP;
4334 }
4335
4336 bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4337 {
4338     while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
4339         bs = bs->file ? bs->file->bs : NULL;
4340     }
4341
4342     if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4343         return bs->drv->bdrv_debug_is_suspended(bs, tag);
4344     }
4345
4346     return false;
4347 }
4348
4349 /* backing_file can either be relative, or absolute, or a protocol.  If it is
4350  * relative, it must be relative to the chain.  So, passing in bs->filename
4351  * from a BDS as backing_file should not be done, as that may be relative to
4352  * the CWD rather than the chain. */
4353 BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4354         const char *backing_file)
4355 {
4356     char *filename_full = NULL;
4357     char *backing_file_full = NULL;
4358     char *filename_tmp = NULL;
4359     int is_protocol = 0;
4360     BlockDriverState *curr_bs = NULL;
4361     BlockDriverState *retval = NULL;
4362     Error *local_error = NULL;
4363
4364     if (!bs || !bs->drv || !backing_file) {
4365         return NULL;
4366     }
4367
4368     filename_full     = g_malloc(PATH_MAX);
4369     backing_file_full = g_malloc(PATH_MAX);
4370     filename_tmp      = g_malloc(PATH_MAX);
4371
4372     is_protocol = path_has_protocol(backing_file);
4373
4374     for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
4375
4376         /* If either of the filename paths is actually a protocol, then
4377          * compare unmodified paths; otherwise make paths relative */
4378         if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4379             if (strcmp(backing_file, curr_bs->backing_file) == 0) {
4380                 retval = curr_bs->backing->bs;
4381                 break;
4382             }
4383             /* Also check against the full backing filename for the image */
4384             bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4385                                            &local_error);
4386             if (local_error == NULL) {
4387                 if (strcmp(backing_file, backing_file_full) == 0) {
4388                     retval = curr_bs->backing->bs;
4389                     break;
4390                 }
4391             } else {
4392                 error_free(local_error);
4393                 local_error = NULL;
4394             }
4395         } else {
4396             /* If not an absolute filename path, make it relative to the current
4397              * image's filename path */
4398             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4399                          backing_file);
4400
4401             /* We are going to compare absolute pathnames */
4402             if (!realpath(filename_tmp, filename_full)) {
4403                 continue;
4404             }
4405
4406             /* We need to make sure the backing filename we are comparing against
4407              * is relative to the current image filename (or absolute) */
4408             path_combine(filename_tmp, PATH_MAX, curr_bs->filename,
4409                          curr_bs->backing_file);
4410
4411             if (!realpath(filename_tmp, backing_file_full)) {
4412                 continue;
4413             }
4414
4415             if (strcmp(backing_file_full, filename_full) == 0) {
4416                 retval = curr_bs->backing->bs;
4417                 break;
4418             }
4419         }
4420     }
4421
4422     g_free(filename_full);
4423     g_free(backing_file_full);
4424     g_free(filename_tmp);
4425     return retval;
4426 }
4427
4428 void bdrv_init(void)
4429 {
4430     module_call_init(MODULE_INIT_BLOCK);
4431 }
4432
4433 void bdrv_init_with_whitelist(void)
4434 {
4435     use_bdrv_whitelist = 1;
4436     bdrv_init();
4437 }
4438
4439 static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4440                                                   Error **errp)
4441 {
4442     BdrvChild *child, *parent;
4443     uint64_t perm, shared_perm;
4444     Error *local_err = NULL;
4445     int ret;
4446
4447     if (!bs->drv)  {
4448         return;
4449     }
4450
4451     if (!(bs->open_flags & BDRV_O_INACTIVE)) {
4452         return;
4453     }
4454
4455     QLIST_FOREACH(child, &bs->children, next) {
4456         bdrv_co_invalidate_cache(child->bs, &local_err);
4457         if (local_err) {
4458             error_propagate(errp, local_err);
4459             return;
4460         }
4461     }
4462
4463     /*
4464      * Update permissions, they may differ for inactive nodes.
4465      *
4466      * Note that the required permissions of inactive images are always a
4467      * subset of the permissions required after activating the image. This
4468      * allows us to just get the permissions upfront without restricting
4469      * drv->bdrv_invalidate_cache().
4470      *
4471      * It also means that in error cases, we don't have to try and revert to
4472      * the old permissions (which is an operation that could fail, too). We can
4473      * just keep the extended permissions for the next time that an activation
4474      * of the image is tried.
4475      */
4476     bs->open_flags &= ~BDRV_O_INACTIVE;
4477     bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4478     ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4479     if (ret < 0) {
4480         bs->open_flags |= BDRV_O_INACTIVE;
4481         error_propagate(errp, local_err);
4482         return;
4483     }
4484     bdrv_set_perm(bs, perm, shared_perm);
4485
4486     if (bs->drv->bdrv_co_invalidate_cache) {
4487         bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
4488         if (local_err) {
4489             bs->open_flags |= BDRV_O_INACTIVE;
4490             error_propagate(errp, local_err);
4491             return;
4492         }
4493     }
4494
4495     ret = refresh_total_sectors(bs, bs->total_sectors);
4496     if (ret < 0) {
4497         bs->open_flags |= BDRV_O_INACTIVE;
4498         error_setg_errno(errp, -ret, "Could not refresh total sector count");
4499         return;
4500     }
4501
4502     QLIST_FOREACH(parent, &bs->parents, next_parent) {
4503         if (parent->role->activate) {
4504             parent->role->activate(parent, &local_err);
4505             if (local_err) {
4506                 error_propagate(errp, local_err);
4507                 return;
4508             }
4509         }
4510     }
4511 }
4512
4513 typedef struct InvalidateCacheCo {
4514     BlockDriverState *bs;
4515     Error **errp;
4516     bool done;
4517 } InvalidateCacheCo;
4518
4519 static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4520 {
4521     InvalidateCacheCo *ico = opaque;
4522     bdrv_co_invalidate_cache(ico->bs, ico->errp);
4523     ico->done = true;
4524 }
4525
4526 void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4527 {
4528     Coroutine *co;
4529     InvalidateCacheCo ico = {
4530         .bs = bs,
4531         .done = false,
4532         .errp = errp
4533     };
4534
4535     if (qemu_in_coroutine()) {
4536         /* Fast-path if already in coroutine context */
4537         bdrv_invalidate_cache_co_entry(&ico);
4538     } else {
4539         co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
4540         qemu_coroutine_enter(co);
4541         BDRV_POLL_WHILE(bs, !ico.done);
4542     }
4543 }
4544
4545 void bdrv_invalidate_cache_all(Error **errp)
4546 {
4547     BlockDriverState *bs;
4548     Error *local_err = NULL;
4549     BdrvNextIterator it;
4550
4551     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4552         AioContext *aio_context = bdrv_get_aio_context(bs);
4553
4554         aio_context_acquire(aio_context);
4555         bdrv_invalidate_cache(bs, &local_err);
4556         aio_context_release(aio_context);
4557         if (local_err) {
4558             error_propagate(errp, local_err);
4559             bdrv_next_cleanup(&it);
4560             return;
4561         }
4562     }
4563 }
4564
4565 static int bdrv_inactivate_recurse(BlockDriverState *bs,
4566                                    bool setting_flag)
4567 {
4568     BdrvChild *child, *parent;
4569     int ret;
4570
4571     if (!bs->drv) {
4572         return -ENOMEDIUM;
4573     }
4574
4575     if (!setting_flag && bs->drv->bdrv_inactivate) {
4576         ret = bs->drv->bdrv_inactivate(bs);
4577         if (ret < 0) {
4578             return ret;
4579         }
4580     }
4581
4582     if (setting_flag && !(bs->open_flags & BDRV_O_INACTIVE)) {
4583         uint64_t perm, shared_perm;
4584
4585         QLIST_FOREACH(parent, &bs->parents, next_parent) {
4586             if (parent->role->inactivate) {
4587                 ret = parent->role->inactivate(parent);
4588                 if (ret < 0) {
4589                     return ret;
4590                 }
4591             }
4592         }
4593
4594         bs->open_flags |= BDRV_O_INACTIVE;
4595
4596         /* Update permissions, they may differ for inactive nodes */
4597         bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4598         bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
4599         bdrv_set_perm(bs, perm, shared_perm);
4600     }
4601
4602     QLIST_FOREACH(child, &bs->children, next) {
4603         ret = bdrv_inactivate_recurse(child->bs, setting_flag);
4604         if (ret < 0) {
4605             return ret;
4606         }
4607     }
4608
4609     /* At this point persistent bitmaps should be already stored by the format
4610      * driver */
4611     bdrv_release_persistent_dirty_bitmaps(bs);
4612
4613     return 0;
4614 }
4615
4616 int bdrv_inactivate_all(void)
4617 {
4618     BlockDriverState *bs = NULL;
4619     BdrvNextIterator it;
4620     int ret = 0;
4621     int pass;
4622     GSList *aio_ctxs = NULL, *ctx;
4623
4624     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4625         AioContext *aio_context = bdrv_get_aio_context(bs);
4626
4627         if (!g_slist_find(aio_ctxs, aio_context)) {
4628             aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4629             aio_context_acquire(aio_context);
4630         }
4631     }
4632
4633     /* We do two passes of inactivation. The first pass calls to drivers'
4634      * .bdrv_inactivate callbacks recursively so all cache is flushed to disk;
4635      * the second pass sets the BDRV_O_INACTIVE flag so that no further write
4636      * is allowed. */
4637     for (pass = 0; pass < 2; pass++) {
4638         for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4639             ret = bdrv_inactivate_recurse(bs, pass);
4640             if (ret < 0) {
4641                 bdrv_next_cleanup(&it);
4642                 goto out;
4643             }
4644         }
4645     }
4646
4647 out:
4648     for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4649         AioContext *aio_context = ctx->data;
4650         aio_context_release(aio_context);
4651     }
4652     g_slist_free(aio_ctxs);
4653
4654     return ret;
4655 }
4656
4657 /**************************************************************/
4658 /* removable device support */
4659
4660 /**
4661  * Return TRUE if the media is present
4662  */
4663 bool bdrv_is_inserted(BlockDriverState *bs)
4664 {
4665     BlockDriver *drv = bs->drv;
4666     BdrvChild *child;
4667
4668     if (!drv) {
4669         return false;
4670     }
4671     if (drv->bdrv_is_inserted) {
4672         return drv->bdrv_is_inserted(bs);
4673     }
4674     QLIST_FOREACH(child, &bs->children, next) {
4675         if (!bdrv_is_inserted(child->bs)) {
4676             return false;
4677         }
4678     }
4679     return true;
4680 }
4681
4682 /**
4683  * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4684  */
4685 void bdrv_eject(BlockDriverState *bs, bool eject_flag)
4686 {
4687     BlockDriver *drv = bs->drv;
4688
4689     if (drv && drv->bdrv_eject) {
4690         drv->bdrv_eject(bs, eject_flag);
4691     }
4692 }
4693
4694 /**
4695  * Lock or unlock the media (if it is locked, the user won't be able
4696  * to eject it manually).
4697  */
4698 void bdrv_lock_medium(BlockDriverState *bs, bool locked)
4699 {
4700     BlockDriver *drv = bs->drv;
4701
4702     trace_bdrv_lock_medium(bs, locked);
4703
4704     if (drv && drv->bdrv_lock_medium) {
4705         drv->bdrv_lock_medium(bs, locked);
4706     }
4707 }
4708
4709 /* Get a reference to bs */
4710 void bdrv_ref(BlockDriverState *bs)
4711 {
4712     bs->refcnt++;
4713 }
4714
4715 /* Release a previously grabbed reference to bs.
4716  * If after releasing, reference count is zero, the BlockDriverState is
4717  * deleted. */
4718 void bdrv_unref(BlockDriverState *bs)
4719 {
4720     if (!bs) {
4721         return;
4722     }
4723     assert(bs->refcnt > 0);
4724     if (--bs->refcnt == 0) {
4725         bdrv_delete(bs);
4726     }
4727 }
4728
4729 struct BdrvOpBlocker {
4730     Error *reason;
4731     QLIST_ENTRY(BdrvOpBlocker) list;
4732 };
4733
4734 bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
4735 {
4736     BdrvOpBlocker *blocker;
4737     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4738     if (!QLIST_EMPTY(&bs->op_blockers[op])) {
4739         blocker = QLIST_FIRST(&bs->op_blockers[op]);
4740         error_propagate(errp, error_copy(blocker->reason));
4741         error_prepend(errp, "Node '%s' is busy: ",
4742                       bdrv_get_device_or_node_name(bs));
4743         return true;
4744     }
4745     return false;
4746 }
4747
4748 void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
4749 {
4750     BdrvOpBlocker *blocker;
4751     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4752
4753     blocker = g_new0(BdrvOpBlocker, 1);
4754     blocker->reason = reason;
4755     QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
4756 }
4757
4758 void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
4759 {
4760     BdrvOpBlocker *blocker, *next;
4761     assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
4762     QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
4763         if (blocker->reason == reason) {
4764             QLIST_REMOVE(blocker, list);
4765             g_free(blocker);
4766         }
4767     }
4768 }
4769
4770 void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
4771 {
4772     int i;
4773     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4774         bdrv_op_block(bs, i, reason);
4775     }
4776 }
4777
4778 void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
4779 {
4780     int i;
4781     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4782         bdrv_op_unblock(bs, i, reason);
4783     }
4784 }
4785
4786 bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
4787 {
4788     int i;
4789
4790     for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
4791         if (!QLIST_EMPTY(&bs->op_blockers[i])) {
4792             return false;
4793         }
4794     }
4795     return true;
4796 }
4797
4798 void bdrv_img_create(const char *filename, const char *fmt,
4799                      const char *base_filename, const char *base_fmt,
4800                      char *options, uint64_t img_size, int flags, bool quiet,
4801                      Error **errp)
4802 {
4803     QemuOptsList *create_opts = NULL;
4804     QemuOpts *opts = NULL;
4805     const char *backing_fmt, *backing_file;
4806     int64_t size;
4807     BlockDriver *drv, *proto_drv;
4808     Error *local_err = NULL;
4809     int ret = 0;
4810
4811     /* Find driver and parse its options */
4812     drv = bdrv_find_format(fmt);
4813     if (!drv) {
4814         error_setg(errp, "Unknown file format '%s'", fmt);
4815         return;
4816     }
4817
4818     proto_drv = bdrv_find_protocol(filename, true, errp);
4819     if (!proto_drv) {
4820         return;
4821     }
4822
4823     if (!drv->create_opts) {
4824         error_setg(errp, "Format driver '%s' does not support image creation",
4825                    drv->format_name);
4826         return;
4827     }
4828
4829     if (!proto_drv->create_opts) {
4830         error_setg(errp, "Protocol driver '%s' does not support image creation",
4831                    proto_drv->format_name);
4832         return;
4833     }
4834
4835     create_opts = qemu_opts_append(create_opts, drv->create_opts);
4836     create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
4837
4838     /* Create parameter list with default values */
4839     opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
4840     qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
4841
4842     /* Parse -o options */
4843     if (options) {
4844         qemu_opts_do_parse(opts, options, NULL, &local_err);
4845         if (local_err) {
4846             error_report_err(local_err);
4847             local_err = NULL;
4848             error_setg(errp, "Invalid options for file format '%s'", fmt);
4849             goto out;
4850         }
4851     }
4852
4853     if (base_filename) {
4854         qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
4855         if (local_err) {
4856             error_setg(errp, "Backing file not supported for file format '%s'",
4857                        fmt);
4858             goto out;
4859         }
4860     }
4861
4862     if (base_fmt) {
4863         qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
4864         if (local_err) {
4865             error_setg(errp, "Backing file format not supported for file "
4866                              "format '%s'", fmt);
4867             goto out;
4868         }
4869     }
4870
4871     backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
4872     if (backing_file) {
4873         if (!strcmp(filename, backing_file)) {
4874             error_setg(errp, "Error: Trying to create an image with the "
4875                              "same filename as the backing file");
4876             goto out;
4877         }
4878     }
4879
4880     backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
4881
4882     /* The size for the image must always be specified, unless we have a backing
4883      * file and we have not been forbidden from opening it. */
4884     size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
4885     if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
4886         BlockDriverState *bs;
4887         char *full_backing = g_new0(char, PATH_MAX);
4888         int back_flags;
4889         QDict *backing_options = NULL;
4890
4891         bdrv_get_full_backing_filename_from_filename(filename, backing_file,
4892                                                      full_backing, PATH_MAX,
4893                                                      &local_err);
4894         if (local_err) {
4895             g_free(full_backing);
4896             goto out;
4897         }
4898
4899         /* backing files always opened read-only */
4900         back_flags = flags;
4901         back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
4902
4903         backing_options = qdict_new();
4904         if (backing_fmt) {
4905             qdict_put_str(backing_options, "driver", backing_fmt);
4906         }
4907         qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
4908
4909         bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
4910                        &local_err);
4911         g_free(full_backing);
4912         if (!bs && size != -1) {
4913             /* Couldn't open BS, but we have a size, so it's nonfatal */
4914             warn_reportf_err(local_err,
4915                             "Could not verify backing image. "
4916                             "This may become an error in future versions.\n");
4917             local_err = NULL;
4918         } else if (!bs) {
4919             /* Couldn't open bs, do not have size */
4920             error_append_hint(&local_err,
4921                               "Could not open backing image to determine size.\n");
4922             goto out;
4923         } else {
4924             if (size == -1) {
4925                 /* Opened BS, have no size */
4926                 size = bdrv_getlength(bs);
4927                 if (size < 0) {
4928                     error_setg_errno(errp, -size, "Could not get size of '%s'",
4929                                      backing_file);
4930                     bdrv_unref(bs);
4931                     goto out;
4932                 }
4933                 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
4934             }
4935             bdrv_unref(bs);
4936         }
4937     } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
4938
4939     if (size == -1) {
4940         error_setg(errp, "Image creation needs a size parameter");
4941         goto out;
4942     }
4943
4944     if (!quiet) {
4945         printf("Formatting '%s', fmt=%s ", filename, fmt);
4946         qemu_opts_print(opts, " ");
4947         puts("");
4948     }
4949
4950     ret = bdrv_create(drv, filename, opts, &local_err);
4951
4952     if (ret == -EFBIG) {
4953         /* This is generally a better message than whatever the driver would
4954          * deliver (especially because of the cluster_size_hint), since that
4955          * is most probably not much different from "image too large". */
4956         const char *cluster_size_hint = "";
4957         if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
4958             cluster_size_hint = " (try using a larger cluster size)";
4959         }
4960         error_setg(errp, "The image size is too large for file format '%s'"
4961                    "%s", fmt, cluster_size_hint);
4962         error_free(local_err);
4963         local_err = NULL;
4964     }
4965
4966 out:
4967     qemu_opts_del(opts);
4968     qemu_opts_free(create_opts);
4969     error_propagate(errp, local_err);
4970 }
4971
4972 AioContext *bdrv_get_aio_context(BlockDriverState *bs)
4973 {
4974     return bs ? bs->aio_context : qemu_get_aio_context();
4975 }
4976
4977 AioWait *bdrv_get_aio_wait(BlockDriverState *bs)
4978 {
4979     return bs ? &bs->wait : NULL;
4980 }
4981
4982 void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
4983 {
4984     aio_co_enter(bdrv_get_aio_context(bs), co);
4985 }
4986
4987 static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
4988 {
4989     QLIST_REMOVE(ban, list);
4990     g_free(ban);
4991 }
4992
4993 void bdrv_detach_aio_context(BlockDriverState *bs)
4994 {
4995     BdrvAioNotifier *baf, *baf_tmp;
4996     BdrvChild *child;
4997
4998     if (!bs->drv) {
4999         return;
5000     }
5001
5002     assert(!bs->walking_aio_notifiers);
5003     bs->walking_aio_notifiers = true;
5004     QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
5005         if (baf->deleted) {
5006             bdrv_do_remove_aio_context_notifier(baf);
5007         } else {
5008             baf->detach_aio_context(baf->opaque);
5009         }
5010     }
5011     /* Never mind iterating again to check for ->deleted.  bdrv_close() will
5012      * remove remaining aio notifiers if we aren't called again.
5013      */
5014     bs->walking_aio_notifiers = false;
5015
5016     if (bs->drv->bdrv_detach_aio_context) {
5017         bs->drv->bdrv_detach_aio_context(bs);
5018     }
5019     QLIST_FOREACH(child, &bs->children, next) {
5020         bdrv_detach_aio_context(child->bs);
5021     }
5022
5023     bs->aio_context = NULL;
5024 }
5025
5026 void bdrv_attach_aio_context(BlockDriverState *bs,
5027                              AioContext *new_context)
5028 {
5029     BdrvAioNotifier *ban, *ban_tmp;
5030     BdrvChild *child;
5031
5032     if (!bs->drv) {
5033         return;
5034     }
5035
5036     bs->aio_context = new_context;
5037
5038     QLIST_FOREACH(child, &bs->children, next) {
5039         bdrv_attach_aio_context(child->bs, new_context);
5040     }
5041     if (bs->drv->bdrv_attach_aio_context) {
5042         bs->drv->bdrv_attach_aio_context(bs, new_context);
5043     }
5044
5045     assert(!bs->walking_aio_notifiers);
5046     bs->walking_aio_notifiers = true;
5047     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
5048         if (ban->deleted) {
5049             bdrv_do_remove_aio_context_notifier(ban);
5050         } else {
5051             ban->attached_aio_context(new_context, ban->opaque);
5052         }
5053     }
5054     bs->walking_aio_notifiers = false;
5055 }
5056
5057 void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5058 {
5059     AioContext *ctx = bdrv_get_aio_context(bs);
5060
5061     aio_disable_external(ctx);
5062     bdrv_parent_drained_begin(bs, NULL, false);
5063     bdrv_drain(bs); /* ensure there are no in-flight requests */
5064
5065     while (aio_poll(ctx, false)) {
5066         /* wait for all bottom halves to execute */
5067     }
5068
5069     bdrv_detach_aio_context(bs);
5070
5071     /* This function executes in the old AioContext so acquire the new one in
5072      * case it runs in a different thread.
5073      */
5074     aio_context_acquire(new_context);
5075     bdrv_attach_aio_context(bs, new_context);
5076     bdrv_parent_drained_end(bs, NULL, false);
5077     aio_enable_external(ctx);
5078     aio_context_release(new_context);
5079 }
5080
5081 void bdrv_add_aio_context_notifier(BlockDriverState *bs,
5082         void (*attached_aio_context)(AioContext *new_context, void *opaque),
5083         void (*detach_aio_context)(void *opaque), void *opaque)
5084 {
5085     BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
5086     *ban = (BdrvAioNotifier){
5087         .attached_aio_context = attached_aio_context,
5088         .detach_aio_context   = detach_aio_context,
5089         .opaque               = opaque
5090     };
5091
5092     QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5093 }
5094
5095 void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5096                                       void (*attached_aio_context)(AioContext *,
5097                                                                    void *),
5098                                       void (*detach_aio_context)(void *),
5099                                       void *opaque)
5100 {
5101     BdrvAioNotifier *ban, *ban_next;
5102
5103     QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5104         if (ban->attached_aio_context == attached_aio_context &&
5105             ban->detach_aio_context   == detach_aio_context   &&
5106             ban->opaque               == opaque               &&
5107             ban->deleted              == false)
5108         {
5109             if (bs->walking_aio_notifiers) {
5110                 ban->deleted = true;
5111             } else {
5112                 bdrv_do_remove_aio_context_notifier(ban);
5113             }
5114             return;
5115         }
5116     }
5117
5118     abort();
5119 }
5120
5121 int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
5122                        BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5123                        Error **errp)
5124 {
5125     if (!bs->drv) {
5126         error_setg(errp, "Node is ejected");
5127         return -ENOMEDIUM;
5128     }
5129     if (!bs->drv->bdrv_amend_options) {
5130         error_setg(errp, "Block driver '%s' does not support option amendment",
5131                    bs->drv->format_name);
5132         return -ENOTSUP;
5133     }
5134     return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
5135 }
5136
5137 /* This function will be called by the bdrv_recurse_is_first_non_filter method
5138  * of block filter and by bdrv_is_first_non_filter.
5139  * It is used to test if the given bs is the candidate or recurse more in the
5140  * node graph.
5141  */
5142 bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5143                                       BlockDriverState *candidate)
5144 {
5145     /* return false if basic checks fails */
5146     if (!bs || !bs->drv) {
5147         return false;
5148     }
5149
5150     /* the code reached a non block filter driver -> check if the bs is
5151      * the same as the candidate. It's the recursion termination condition.
5152      */
5153     if (!bs->drv->is_filter) {
5154         return bs == candidate;
5155     }
5156     /* Down this path the driver is a block filter driver */
5157
5158     /* If the block filter recursion method is defined use it to recurse down
5159      * the node graph.
5160      */
5161     if (bs->drv->bdrv_recurse_is_first_non_filter) {
5162         return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5163     }
5164
5165     /* the driver is a block filter but don't allow to recurse -> return false
5166      */
5167     return false;
5168 }
5169
5170 /* This function checks if the candidate is the first non filter bs down it's
5171  * bs chain. Since we don't have pointers to parents it explore all bs chains
5172  * from the top. Some filters can choose not to pass down the recursion.
5173  */
5174 bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5175 {
5176     BlockDriverState *bs;
5177     BdrvNextIterator it;
5178
5179     /* walk down the bs forest recursively */
5180     for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
5181         bool perm;
5182
5183         /* try to recurse in this top level bs */
5184         perm = bdrv_recurse_is_first_non_filter(bs, candidate);
5185
5186         /* candidate is the first non filter */
5187         if (perm) {
5188             bdrv_next_cleanup(&it);
5189             return true;
5190         }
5191     }
5192
5193     return false;
5194 }
5195
5196 BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5197                                         const char *node_name, Error **errp)
5198 {
5199     BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
5200     AioContext *aio_context;
5201
5202     if (!to_replace_bs) {
5203         error_setg(errp, "Node name '%s' not found", node_name);
5204         return NULL;
5205     }
5206
5207     aio_context = bdrv_get_aio_context(to_replace_bs);
5208     aio_context_acquire(aio_context);
5209
5210     if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
5211         to_replace_bs = NULL;
5212         goto out;
5213     }
5214
5215     /* We don't want arbitrary node of the BDS chain to be replaced only the top
5216      * most non filter in order to prevent data corruption.
5217      * Another benefit is that this tests exclude backing files which are
5218      * blocked by the backing blockers.
5219      */
5220     if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
5221         error_setg(errp, "Only top most non filter can be replaced");
5222         to_replace_bs = NULL;
5223         goto out;
5224     }
5225
5226 out:
5227     aio_context_release(aio_context);
5228     return to_replace_bs;
5229 }
5230
5231 static bool append_open_options(QDict *d, BlockDriverState *bs)
5232 {
5233     const QDictEntry *entry;
5234     QemuOptDesc *desc;
5235     BdrvChild *child;
5236     bool found_any = false;
5237     const char *p;
5238
5239     for (entry = qdict_first(bs->options); entry;
5240          entry = qdict_next(bs->options, entry))
5241     {
5242         /* Exclude options for children */
5243         QLIST_FOREACH(child, &bs->children, next) {
5244             if (strstart(qdict_entry_key(entry), child->name, &p)
5245                 && (!*p || *p == '.'))
5246             {
5247                 break;
5248             }
5249         }
5250         if (child) {
5251             continue;
5252         }
5253
5254         /* And exclude all non-driver-specific options */
5255         for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5256             if (!strcmp(qdict_entry_key(entry), desc->name)) {
5257                 break;
5258             }
5259         }
5260         if (desc->name) {
5261             continue;
5262         }
5263
5264         qdict_put_obj(d, qdict_entry_key(entry),
5265                       qobject_ref(qdict_entry_value(entry)));
5266         found_any = true;
5267     }
5268
5269     return found_any;
5270 }
5271
5272 /* Updates the following BDS fields:
5273  *  - exact_filename: A filename which may be used for opening a block device
5274  *                    which (mostly) equals the given BDS (even without any
5275  *                    other options; so reading and writing must return the same
5276  *                    results, but caching etc. may be different)
5277  *  - full_open_options: Options which, when given when opening a block device
5278  *                       (without a filename), result in a BDS (mostly)
5279  *                       equalling the given one
5280  *  - filename: If exact_filename is set, it is copied here. Otherwise,
5281  *              full_open_options is converted to a JSON object, prefixed with
5282  *              "json:" (for use through the JSON pseudo protocol) and put here.
5283  */
5284 void bdrv_refresh_filename(BlockDriverState *bs)
5285 {
5286     BlockDriver *drv = bs->drv;
5287     QDict *opts;
5288
5289     if (!drv) {
5290         return;
5291     }
5292
5293     /* This BDS's file name will most probably depend on its file's name, so
5294      * refresh that first */
5295     if (bs->file) {
5296         bdrv_refresh_filename(bs->file->bs);
5297     }
5298
5299     if (drv->bdrv_refresh_filename) {
5300         /* Obsolete information is of no use here, so drop the old file name
5301          * information before refreshing it */
5302         bs->exact_filename[0] = '\0';
5303         if (bs->full_open_options) {
5304             qobject_unref(bs->full_open_options);
5305             bs->full_open_options = NULL;
5306         }
5307
5308         opts = qdict_new();
5309         append_open_options(opts, bs);
5310         drv->bdrv_refresh_filename(bs, opts);
5311         qobject_unref(opts);
5312     } else if (bs->file) {
5313         /* Try to reconstruct valid information from the underlying file */
5314         bool has_open_options;
5315
5316         bs->exact_filename[0] = '\0';
5317         if (bs->full_open_options) {
5318             qobject_unref(bs->full_open_options);
5319             bs->full_open_options = NULL;
5320         }
5321
5322         opts = qdict_new();
5323         has_open_options = append_open_options(opts, bs);
5324
5325         /* If no specific options have been given for this BDS, the filename of
5326          * the underlying file should suffice for this one as well */
5327         if (bs->file->bs->exact_filename[0] && !has_open_options) {
5328             strcpy(bs->exact_filename, bs->file->bs->exact_filename);
5329         }
5330         /* Reconstructing the full options QDict is simple for most format block
5331          * drivers, as long as the full options are known for the underlying
5332          * file BDS. The full options QDict of that file BDS should somehow
5333          * contain a representation of the filename, therefore the following
5334          * suffices without querying the (exact_)filename of this BDS. */
5335         if (bs->file->bs->full_open_options) {
5336             qdict_put_str(opts, "driver", drv->format_name);
5337             qdict_put(opts, "file",
5338                       qobject_ref(bs->file->bs->full_open_options));
5339
5340             bs->full_open_options = opts;
5341         } else {
5342             qobject_unref(opts);
5343         }
5344     } else if (!bs->full_open_options && qdict_size(bs->options)) {
5345         /* There is no underlying file BDS (at least referenced by BDS.file),
5346          * so the full options QDict should be equal to the options given
5347          * specifically for this block device when it was opened (plus the
5348          * driver specification).
5349          * Because those options don't change, there is no need to update
5350          * full_open_options when it's already set. */
5351
5352         opts = qdict_new();
5353         append_open_options(opts, bs);
5354         qdict_put_str(opts, "driver", drv->format_name);
5355
5356         if (bs->exact_filename[0]) {
5357             /* This may not work for all block protocol drivers (some may
5358              * require this filename to be parsed), but we have to find some
5359              * default solution here, so just include it. If some block driver
5360              * does not support pure options without any filename at all or
5361              * needs some special format of the options QDict, it needs to
5362              * implement the driver-specific bdrv_refresh_filename() function.
5363              */
5364             qdict_put_str(opts, "filename", bs->exact_filename);
5365         }
5366
5367         bs->full_open_options = opts;
5368     }
5369
5370     if (bs->exact_filename[0]) {
5371         pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5372     } else if (bs->full_open_options) {
5373         QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5374         snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5375                  qstring_get_str(json));
5376         qobject_unref(json);
5377     }
5378 }
5379
5380 /*
5381  * Hot add/remove a BDS's child. So the user can take a child offline when
5382  * it is broken and take a new child online
5383  */
5384 void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5385                     Error **errp)
5386 {
5387
5388     if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5389         error_setg(errp, "The node %s does not support adding a child",
5390                    bdrv_get_device_or_node_name(parent_bs));
5391         return;
5392     }
5393
5394     if (!QLIST_EMPTY(&child_bs->parents)) {
5395         error_setg(errp, "The node %s already has a parent",
5396                    child_bs->node_name);
5397         return;
5398     }
5399
5400     parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5401 }
5402
5403 void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5404 {
5405     BdrvChild *tmp;
5406
5407     if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5408         error_setg(errp, "The node %s does not support removing a child",
5409                    bdrv_get_device_or_node_name(parent_bs));
5410         return;
5411     }
5412
5413     QLIST_FOREACH(tmp, &parent_bs->children, next) {
5414         if (tmp == child) {
5415             break;
5416         }
5417     }
5418
5419     if (!tmp) {
5420         error_setg(errp, "The node %s does not have a child named %s",
5421                    bdrv_get_device_or_node_name(parent_bs),
5422                    bdrv_get_device_or_node_name(child->bs));
5423         return;
5424     }
5425
5426     parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5427 }
5428
5429 bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5430                                      uint32_t granularity, Error **errp)
5431 {
5432     BlockDriver *drv = bs->drv;
5433
5434     if (!drv) {
5435         error_setg_errno(errp, ENOMEDIUM,
5436                          "Can't store persistent bitmaps to %s",
5437                          bdrv_get_device_or_node_name(bs));
5438         return false;
5439     }
5440
5441     if (!drv->bdrv_can_store_new_dirty_bitmap) {
5442         error_setg_errno(errp, ENOTSUP,
5443                          "Can't store persistent bitmaps to %s",
5444                          bdrv_get_device_or_node_name(bs));
5445         return false;
5446     }
5447
5448     return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5449 }
This page took 0.326026 seconds and 4 git commands to generate.