blob: 91859a928d4663fd7fc2eb0f3ae8801be80ce752 [file] [log] [blame]
bellardfc01f7e2003-06-30 10:03:06 +00001/*
2 * QEMU System Emulator block driver
ths5fafdf22007-09-16 21:08:06 +00003 *
bellardfc01f7e2003-06-30 10:03:06 +00004 * Copyright (c) 2003 Fabrice Bellard
ths5fafdf22007-09-16 21:08:06 +00005 *
bellardfc01f7e2003-06-30 10:03:06 +00006 * 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 */
Markus Armbrustere688df62018-02-01 12:18:31 +010024
Peter Maydelld38ea872016-01-29 17:50:05 +000025#include "qemu/osdep.h"
Daniel P. Berrange0ab8ed12017-01-25 16:14:15 +000026#include "block/trace.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010027#include "block/block_int.h"
28#include "block/blockjob.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020029#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020030#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010031#include "qemu/error-report.h"
Marc Mari88d88792016-08-12 09:27:03 -040032#include "module_block.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010033#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010034#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010035#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010036#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010037#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010038#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010039#include "qapi/qobject-output-visitor.h"
40#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020041#include "sysemu/block-backend.h"
Paolo Bonzini9c17d612012-12-17 18:20:04 +010042#include "sysemu/sysemu.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010043#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010044#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010045#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010046#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010047#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020048#include "qemu/cutils.h"
49#include "qemu/id.h"
bellardfc01f7e2003-06-30 10:03:06 +000050
Juan Quintela71e72a12009-07-27 16:12:56 +020051#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000052#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000053#include <sys/queue.h>
blueswir1c5e97232009-03-07 20:06:23 +000054#ifndef __DragonFly__
bellard7674e7b2005-04-26 21:59:26 +000055#include <sys/disk.h>
56#endif
blueswir1c5e97232009-03-07 20:06:23 +000057#endif
bellard7674e7b2005-04-26 21:59:26 +000058
aliguori49dc7682009-03-08 16:26:59 +000059#ifdef _WIN32
60#include <windows.h>
61#endif
62
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010063#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
64
Benoît Canetdc364f42014-01-23 21:31:32 +010065static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
66 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
67
Max Reitz2c1d04e2016-01-29 16:36:11 +010068static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
70
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010071static QLIST_HEAD(, BlockDriver) bdrv_drivers =
72 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000073
Max Reitz5b363932016-05-17 16:41:31 +020074static 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);
Kevin Wolff3930ed2015-04-08 13:43:47 +020080
Markus Armbrustereb852012009-10-27 18:41:44 +010081/* If non-zero, use only whitelisted block drivers */
82static int use_bdrv_whitelist;
83
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +000084#ifdef _WIN32
85static 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
92int 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
Kevin Wolf339064d2013-11-28 10:23:32 +0100104size_t bdrv_opt_mem_align(BlockDriverState *bs)
105{
106 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300107 /* page size or 4k (hdd sector size) should be on the safe side */
108 return MAX(4096, getpagesize());
Kevin Wolf339064d2013-11-28 10:23:32 +0100109 }
110
111 return bs->bl.opt_mem_alignment;
112}
113
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300114size_t bdrv_min_mem_align(BlockDriverState *bs)
115{
116 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300117 /* page size or 4k (hdd sector size) should be on the safe side */
118 return MAX(4096, getpagesize());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300119 }
120
121 return bs->bl.min_mem_alignment;
122}
123
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000124/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100125int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000126{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200127 const char *p;
128
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000129#ifdef _WIN32
130 if (is_windows_drive(path) ||
131 is_windows_drive_prefix(path)) {
132 return 0;
133 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200134 p = path + strcspn(path, ":/\\");
135#else
136 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000137#endif
138
Paolo Bonzini947995c2012-05-08 16:51:48 +0200139 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000140}
141
bellard83f64092006-08-01 16:21:11 +0000142int path_is_absolute(const char *path)
143{
bellard21664422007-01-07 18:22:37 +0000144#ifdef _WIN32
145 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200146 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000147 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200148 }
149 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000150#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200151 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000152#endif
bellard83f64092006-08-01 16:21:11 +0000153}
154
Max Reitz009b03a2019-02-01 20:29:13 +0100155/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000156 path to it by considering it is relative to base_path. URL are
157 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100158char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000159{
Max Reitz009b03a2019-02-01 20:29:13 +0100160 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000161 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100162 char *result;
bellard83f64092006-08-01 16:21:11 +0000163 int len;
164
bellard83f64092006-08-01 16:21:11 +0000165 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100166 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000167 }
Max Reitz009b03a2019-02-01 20:29:13 +0100168
169 if (path_has_protocol(base_path)) {
170 protocol_stripped = strchr(base_path, ':');
171 if (protocol_stripped) {
172 protocol_stripped++;
173 }
174 }
175 p = protocol_stripped ?: base_path;
176
177 p1 = strrchr(base_path, '/');
178#ifdef _WIN32
179 {
180 const char *p2;
181 p2 = strrchr(base_path, '\\');
182 if (!p1 || p2 > p1) {
183 p1 = p2;
184 }
185 }
186#endif
187 if (p1) {
188 p1++;
189 } else {
190 p1 = base_path;
191 }
192 if (p1 > p) {
193 p = p1;
194 }
195 len = p - base_path;
196
197 result = g_malloc(len + strlen(filename) + 1);
198 memcpy(result, base_path, len);
199 strcpy(result + len, filename);
200
201 return result;
202}
203
204static void path_combine_deprecated(char *dest, int dest_size,
205 const char *base_path,
206 const char *filename)
207{
208 char *combined = path_combine(base_path, filename);
209 pstrcpy(dest, dest_size, combined);
210 g_free(combined);
bellard83f64092006-08-01 16:21:11 +0000211}
212
Max Reitz03c320d2017-05-22 21:52:16 +0200213/*
214 * Helper function for bdrv_parse_filename() implementations to remove optional
215 * protocol prefixes (especially "file:") from a filename and for putting the
216 * stripped filename into the options QDict if there is such a prefix.
217 */
218void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
219 QDict *options)
220{
221 if (strstart(filename, prefix, &filename)) {
222 /* Stripping the explicit protocol prefix may result in a protocol
223 * prefix being (wrongly) detected (if the filename contains a colon) */
224 if (path_has_protocol(filename)) {
225 QString *fat_filename;
226
227 /* This means there is some colon before the first slash; therefore,
228 * this cannot be an absolute path */
229 assert(!path_is_absolute(filename));
230
231 /* And we can thus fix the protocol detection issue by prefixing it
232 * by "./" */
233 fat_filename = qstring_from_str("./");
234 qstring_append(fat_filename, filename);
235
236 assert(!path_has_protocol(qstring_get_str(fat_filename)));
237
238 qdict_put(options, "filename", fat_filename);
239 } else {
240 /* If no protocol prefix was detected, we can use the shortened
241 * filename as-is */
242 qdict_put_str(options, "filename", filename);
243 }
244 }
245}
246
247
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200248/* Returns whether the image file is opened as read-only. Note that this can
249 * return false and writing to the image file is still not possible because the
250 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400251bool bdrv_is_read_only(BlockDriverState *bs)
252{
253 return bs->read_only;
254}
255
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200256int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
257 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400258{
Jeff Codye2b82472017-04-07 16:55:26 -0400259 /* Do not set read_only if copy_on_read is enabled */
260 if (bs->copy_on_read && read_only) {
261 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
262 bdrv_get_device_or_node_name(bs));
263 return -EINVAL;
264 }
265
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400266 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200267 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
268 !ignore_allow_rdw)
269 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400270 error_setg(errp, "Node '%s' is read only",
271 bdrv_get_device_or_node_name(bs));
272 return -EPERM;
273 }
274
Jeff Cody45803a02017-04-07 16:55:29 -0400275 return 0;
276}
277
Kevin Wolfeaa24102018-10-12 11:27:41 +0200278/*
279 * Called by a driver that can only provide a read-only image.
280 *
281 * Returns 0 if the node is already read-only or it could switch the node to
282 * read-only because BDRV_O_AUTO_RDONLY is set.
283 *
284 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
285 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
286 * is not NULL, it is used as the error message for the Error object.
287 */
288int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
289 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400290{
291 int ret = 0;
292
Kevin Wolfeaa24102018-10-12 11:27:41 +0200293 if (!(bs->open_flags & BDRV_O_RDWR)) {
294 return 0;
295 }
296 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
297 goto fail;
298 }
299
300 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400301 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200302 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400303 }
304
Kevin Wolfeaa24102018-10-12 11:27:41 +0200305 bs->read_only = true;
306 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200307
Jeff Codye2b82472017-04-07 16:55:26 -0400308 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200309
310fail:
311 error_setg(errp, "%s", errmsg ?: "Image is read-only");
312 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400313}
314
Max Reitz0a828552014-11-26 17:20:25 +0100315void bdrv_get_full_backing_filename_from_filename(const char *backed,
316 const char *backing,
Max Reitz9f074292014-11-26 17:20:26 +0100317 char *dest, size_t sz,
318 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100319{
Max Reitz9f074292014-11-26 17:20:26 +0100320 if (backing[0] == '\0' || path_has_protocol(backing) ||
321 path_is_absolute(backing))
322 {
Max Reitz0a828552014-11-26 17:20:25 +0100323 pstrcpy(dest, sz, backing);
Max Reitz9f074292014-11-26 17:20:26 +0100324 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
325 error_setg(errp, "Cannot use relative backing file names for '%s'",
326 backed);
Max Reitz0a828552014-11-26 17:20:25 +0100327 } else {
Max Reitz009b03a2019-02-01 20:29:13 +0100328 path_combine_deprecated(dest, sz, backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100329 }
330}
331
Max Reitz9f074292014-11-26 17:20:26 +0100332void bdrv_get_full_backing_filename(BlockDriverState *bs, char *dest, size_t sz,
333 Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200334{
Max Reitzf30c66b2019-02-01 20:29:05 +0100335 char *backed;
Max Reitz9f074292014-11-26 17:20:26 +0100336
Max Reitzf30c66b2019-02-01 20:29:05 +0100337 bdrv_refresh_filename(bs);
338
339 backed = bs->exact_filename[0] ? bs->exact_filename : bs->filename;
Max Reitz9f074292014-11-26 17:20:26 +0100340 bdrv_get_full_backing_filename_from_filename(backed, bs->backing_file,
341 dest, sz, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200342}
343
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100344void bdrv_register(BlockDriver *bdrv)
345{
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100346 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000347}
bellardb3380822004-03-14 21:38:54 +0000348
Markus Armbrustere4e99862014-10-07 13:59:03 +0200349BlockDriverState *bdrv_new(void)
350{
351 BlockDriverState *bs;
352 int i;
353
Markus Armbruster5839e532014-08-19 10:31:08 +0200354 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800355 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800356 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
357 QLIST_INIT(&bs->op_blockers[i]);
358 }
Stefan Hajnoczid616b222013-06-24 17:13:10 +0200359 notifier_with_return_list_init(&bs->before_write_notifiers);
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200360 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200361 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800362 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200363 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200364
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300365 qemu_co_queue_init(&bs->flush_queue);
366
Kevin Wolf0f122642018-03-28 18:29:18 +0200367 for (i = 0; i < bdrv_drain_all_count; i++) {
368 bdrv_drained_begin(bs);
369 }
370
Max Reitz2c1d04e2016-01-29 16:36:11 +0100371 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
372
bellardb3380822004-03-14 21:38:54 +0000373 return bs;
374}
375
Marc Mari88d88792016-08-12 09:27:03 -0400376static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000377{
378 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400379
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100380 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
381 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000382 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100383 }
bellardea2384d2004-08-01 21:59:26 +0000384 }
Marc Mari88d88792016-08-12 09:27:03 -0400385
bellardea2384d2004-08-01 21:59:26 +0000386 return NULL;
387}
388
Marc Mari88d88792016-08-12 09:27:03 -0400389BlockDriver *bdrv_find_format(const char *format_name)
390{
391 BlockDriver *drv1;
392 int i;
393
394 drv1 = bdrv_do_find_format(format_name);
395 if (drv1) {
396 return drv1;
397 }
398
399 /* The driver isn't registered, maybe we need to load a module */
400 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
401 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
402 block_module_load_one(block_driver_modules[i].library_name);
403 break;
404 }
405 }
406
407 return bdrv_do_find_format(format_name);
408}
409
Kevin Wolfe8eb8632018-02-21 11:47:43 +0100410int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100411{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800412 static const char *whitelist_rw[] = {
413 CONFIG_BDRV_RW_WHITELIST
414 };
415 static const char *whitelist_ro[] = {
416 CONFIG_BDRV_RO_WHITELIST
Markus Armbrustereb852012009-10-27 18:41:44 +0100417 };
418 const char **p;
419
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800420 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100421 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800422 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100423
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800424 for (p = whitelist_rw; *p; p++) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100425 if (!strcmp(drv->format_name, *p)) {
426 return 1;
427 }
428 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800429 if (read_only) {
430 for (p = whitelist_ro; *p; p++) {
431 if (!strcmp(drv->format_name, *p)) {
432 return 1;
433 }
434 }
435 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100436 return 0;
437}
438
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000439bool bdrv_uses_whitelist(void)
440{
441 return use_bdrv_whitelist;
442}
443
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800444typedef struct CreateCo {
445 BlockDriver *drv;
446 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800447 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800448 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200449 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800450} CreateCo;
451
452static void coroutine_fn bdrv_create_co_entry(void *opaque)
453{
Max Reitzcc84d902013-09-06 17:14:26 +0200454 Error *local_err = NULL;
455 int ret;
456
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800457 CreateCo *cco = opaque;
458 assert(cco->drv);
459
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100460 ret = cco->drv->bdrv_co_create_opts(cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300461 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200462 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800463}
464
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200465int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800466 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000467{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800468 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200469
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800470 Coroutine *co;
471 CreateCo cco = {
472 .drv = drv,
473 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800474 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800475 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200476 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800477 };
478
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100479 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200480 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300481 ret = -ENOTSUP;
482 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800483 }
484
485 if (qemu_in_coroutine()) {
486 /* Fast-path if already in coroutine context */
487 bdrv_create_co_entry(&cco);
488 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200489 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
490 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800491 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200492 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800493 }
494 }
495
496 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200497 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100498 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200499 error_propagate(errp, cco.err);
500 } else {
501 error_setg_errno(errp, -ret, "Could not create image");
502 }
503 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800504
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300505out:
506 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800507 return ret;
bellardea2384d2004-08-01 21:59:26 +0000508}
509
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800510int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200511{
512 BlockDriver *drv;
Max Reitzcc84d902013-09-06 17:14:26 +0200513 Error *local_err = NULL;
514 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200515
Max Reitzb65a5e12015-02-05 13:58:12 -0500516 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200517 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000518 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200519 }
520
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800521 ret = bdrv_create(drv, filename, opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300522 error_propagate(errp, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200523 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200524}
525
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100526/**
527 * Try to get @bs's logical and physical block size.
528 * On success, store them in @bsz struct and return 0.
529 * On failure return -errno.
530 * @bs must not be empty.
531 */
532int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
533{
534 BlockDriver *drv = bs->drv;
535
536 if (drv && drv->bdrv_probe_blocksizes) {
537 return drv->bdrv_probe_blocksizes(bs, bsz);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +0300538 } else if (drv && drv->is_filter && bs->file) {
539 return bdrv_probe_blocksizes(bs->file->bs, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100540 }
541
542 return -ENOTSUP;
543}
544
545/**
546 * Try to get @bs's geometry (cyls, heads, sectors).
547 * On success, store them in @geo struct and return 0.
548 * On failure return -errno.
549 * @bs must not be empty.
550 */
551int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
552{
553 BlockDriver *drv = bs->drv;
554
555 if (drv && drv->bdrv_probe_geometry) {
556 return drv->bdrv_probe_geometry(bs, geo);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +0300557 } else if (drv && drv->is_filter && bs->file) {
558 return bdrv_probe_geometry(bs->file->bs, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100559 }
560
561 return -ENOTSUP;
562}
563
Jim Meyeringeba25052012-05-28 09:27:54 +0200564/*
565 * Create a uniquely-named empty temporary file.
566 * Return 0 upon success, otherwise a negative errno value.
567 */
568int get_tmp_filename(char *filename, int size)
569{
bellardd5249392004-08-03 21:14:23 +0000570#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000571 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200572 /* GetTempFileName requires that its output buffer (4th param)
573 have length MAX_PATH or greater. */
574 assert(size >= MAX_PATH);
575 return (GetTempPath(MAX_PATH, temp_dir)
576 && GetTempFileName(temp_dir, "qem", 0, filename)
577 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000578#else
bellardea2384d2004-08-01 21:59:26 +0000579 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000580 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000581 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530582 if (!tmpdir) {
583 tmpdir = "/var/tmp";
584 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200585 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
586 return -EOVERFLOW;
587 }
bellardea2384d2004-08-01 21:59:26 +0000588 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800589 if (fd < 0) {
590 return -errno;
591 }
592 if (close(fd) != 0) {
593 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200594 return -errno;
595 }
596 return 0;
bellardd5249392004-08-03 21:14:23 +0000597#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200598}
bellardea2384d2004-08-01 21:59:26 +0000599
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200600/*
601 * Detect host devices. By convention, /dev/cdrom[N] is always
602 * recognized as a host CDROM.
603 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200604static BlockDriver *find_hdev_driver(const char *filename)
605{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200606 int score_max = 0, score;
607 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200608
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100609 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200610 if (d->bdrv_probe_device) {
611 score = d->bdrv_probe_device(filename);
612 if (score > score_max) {
613 score_max = score;
614 drv = d;
615 }
616 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200617 }
618
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200619 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200620}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200621
Marc Mari88d88792016-08-12 09:27:03 -0400622static BlockDriver *bdrv_do_find_protocol(const char *protocol)
623{
624 BlockDriver *drv1;
625
626 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
627 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
628 return drv1;
629 }
630 }
631
632 return NULL;
633}
634
Kevin Wolf98289622013-07-10 15:47:39 +0200635BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500636 bool allow_protocol_prefix,
637 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200638{
639 BlockDriver *drv1;
640 char protocol[128];
641 int len;
642 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400643 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200644
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200645 /* TODO Drivers without bdrv_file_open must be specified explicitly */
646
Christoph Hellwig39508e72010-06-23 12:25:17 +0200647 /*
648 * XXX(hch): we really should not let host device detection
649 * override an explicit protocol specification, but moving this
650 * later breaks access to device names with colons in them.
651 * Thanks to the brain-dead persistent naming schemes on udev-
652 * based Linux systems those actually are quite common.
653 */
654 drv1 = find_hdev_driver(filename);
655 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200656 return drv1;
657 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200658
Kevin Wolf98289622013-07-10 15:47:39 +0200659 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100660 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200661 }
Kevin Wolf98289622013-07-10 15:47:39 +0200662
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000663 p = strchr(filename, ':');
664 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200665 len = p - filename;
666 if (len > sizeof(protocol) - 1)
667 len = sizeof(protocol) - 1;
668 memcpy(protocol, filename, len);
669 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400670
671 drv1 = bdrv_do_find_protocol(protocol);
672 if (drv1) {
673 return drv1;
674 }
675
676 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
677 if (block_driver_modules[i].protocol_name &&
678 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
679 block_module_load_one(block_driver_modules[i].library_name);
680 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200681 }
682 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500683
Marc Mari88d88792016-08-12 09:27:03 -0400684 drv1 = bdrv_do_find_protocol(protocol);
685 if (!drv1) {
686 error_setg(errp, "Unknown protocol '%s'", protocol);
687 }
688 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200689}
690
Markus Armbrusterc6684242014-11-20 16:27:10 +0100691/*
692 * Guess image format by probing its contents.
693 * This is not a good idea when your image is raw (CVE-2008-2004), but
694 * we do it anyway for backward compatibility.
695 *
696 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100697 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
698 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100699 * @filename is its filename.
700 *
701 * For all block drivers, call the bdrv_probe() method to get its
702 * probing score.
703 * Return the first block driver with the highest probing score.
704 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100705BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
706 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100707{
708 int score_max = 0, score;
709 BlockDriver *drv = NULL, *d;
710
711 QLIST_FOREACH(d, &bdrv_drivers, list) {
712 if (d->bdrv_probe) {
713 score = d->bdrv_probe(buf, buf_size, filename);
714 if (score > score_max) {
715 score_max = score;
716 drv = d;
717 }
718 }
719 }
720
721 return drv;
722}
723
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100724static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200725 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000726{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100727 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100728 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100729 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700730
Kevin Wolf08a00552010-06-01 18:37:31 +0200731 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100732 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100733 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200734 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700735 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700736
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100737 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000738 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200739 error_setg_errno(errp, -ret, "Could not read image for determining its "
740 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200741 *pdrv = NULL;
742 return ret;
bellard83f64092006-08-01 16:21:11 +0000743 }
744
Markus Armbrusterc6684242014-11-20 16:27:10 +0100745 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200746 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200747 error_setg(errp, "Could not determine image format: No compatible "
748 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200749 ret = -ENOENT;
750 }
751 *pdrv = drv;
752 return ret;
bellardea2384d2004-08-01 21:59:26 +0000753}
754
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100755/**
756 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +0200757 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100758 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +0200759int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100760{
761 BlockDriver *drv = bs->drv;
762
Max Reitzd470ad42017-11-10 21:31:09 +0100763 if (!drv) {
764 return -ENOMEDIUM;
765 }
766
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700767 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +0300768 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -0700769 return 0;
770
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100771 /* query actual device if possible, otherwise just trust the hint */
772 if (drv->bdrv_getlength) {
773 int64_t length = drv->bdrv_getlength(bs);
774 if (length < 0) {
775 return length;
776 }
Fam Zheng7e382002013-11-06 19:48:06 +0800777 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +0100778 }
779
780 bs->total_sectors = hint;
781 return 0;
782}
783
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100784/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100785 * Combines a QDict of new block driver @options with any missing options taken
786 * from @old_options, so that leaving out an option defaults to its old value.
787 */
788static void bdrv_join_options(BlockDriverState *bs, QDict *options,
789 QDict *old_options)
790{
791 if (bs->drv && bs->drv->bdrv_join_options) {
792 bs->drv->bdrv_join_options(options, old_options);
793 } else {
794 qdict_join(options, old_options, false);
795 }
796}
797
Alberto Garcia543770b2018-09-06 12:37:09 +0300798static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
799 int open_flags,
800 Error **errp)
801{
802 Error *local_err = NULL;
803 char *value = qemu_opt_get_del(opts, "detect-zeroes");
804 BlockdevDetectZeroesOptions detect_zeroes =
805 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
806 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
807 g_free(value);
808 if (local_err) {
809 error_propagate(errp, local_err);
810 return detect_zeroes;
811 }
812
813 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
814 !(open_flags & BDRV_O_UNMAP))
815 {
816 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
817 "without setting discard operation to unmap");
818 }
819
820 return detect_zeroes;
821}
822
Kevin Wolfcddff5b2015-11-16 16:43:27 +0100823/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +0100824 * Set open flags for a given discard mode
825 *
826 * Return 0 on success, -1 if the discard mode was invalid.
827 */
828int bdrv_parse_discard_flags(const char *mode, int *flags)
829{
830 *flags &= ~BDRV_O_UNMAP;
831
832 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
833 /* do nothing */
834 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
835 *flags |= BDRV_O_UNMAP;
836 } else {
837 return -1;
838 }
839
840 return 0;
841}
842
843/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100844 * Set open flags for a given cache mode
845 *
846 * Return 0 on success, -1 if the cache mode was invalid.
847 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100848int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100849{
850 *flags &= ~BDRV_O_CACHE_MASK;
851
852 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100853 *writethrough = false;
854 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100855 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100856 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +0100857 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100858 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100859 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100860 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100861 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100862 *flags |= BDRV_O_NO_FLUSH;
863 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +0100864 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +0100865 } else {
866 return -1;
867 }
868
869 return 0;
870}
871
Kevin Wolfb5411552017-01-17 15:56:16 +0100872static char *bdrv_child_get_parent_desc(BdrvChild *c)
873{
874 BlockDriverState *parent = c->opaque;
875 return g_strdup(bdrv_get_device_or_node_name(parent));
876}
877
Kevin Wolf20018e12016-05-23 18:46:59 +0200878static void bdrv_child_cb_drained_begin(BdrvChild *child)
879{
880 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200881 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +0200882}
883
Kevin Wolf89bd0302018-03-22 14:11:20 +0100884static bool bdrv_child_cb_drained_poll(BdrvChild *child)
885{
886 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200887 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +0100888}
889
Kevin Wolf20018e12016-05-23 18:46:59 +0200890static void bdrv_child_cb_drained_end(BdrvChild *child)
891{
892 BlockDriverState *bs = child->opaque;
893 bdrv_drained_end(bs);
894}
895
Kevin Wolfd736f112017-12-18 16:05:48 +0100896static void bdrv_child_cb_attach(BdrvChild *child)
897{
898 BlockDriverState *bs = child->opaque;
899 bdrv_apply_subtree_drain(child, bs);
900}
901
902static void bdrv_child_cb_detach(BdrvChild *child)
903{
904 BlockDriverState *bs = child->opaque;
905 bdrv_unapply_subtree_drain(child, bs);
906}
907
Kevin Wolf38701b62017-05-04 18:52:39 +0200908static int bdrv_child_cb_inactivate(BdrvChild *child)
909{
910 BlockDriverState *bs = child->opaque;
911 assert(bs->open_flags & BDRV_O_INACTIVE);
912 return 0;
913}
914
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200915/*
Kevin Wolf73176be2016-03-07 13:02:15 +0100916 * Returns the options and flags that a temporary snapshot should get, based on
917 * the originally requested flags (the originally requested image will have
918 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200919 */
Kevin Wolf73176be2016-03-07 13:02:15 +0100920static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
921 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200922{
Kevin Wolf73176be2016-03-07 13:02:15 +0100923 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
924
925 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +0100926 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
927 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +0200928
Alberto Garciaf87a0e22016-09-15 17:53:02 +0300929 /* Copy the read-only option from the parent */
930 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
931
Kevin Wolf41869042016-06-16 12:59:30 +0200932 /* aio=native doesn't work for cache.direct=off, so disable it for the
933 * temporary snapshot */
934 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +0200935}
936
937/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200938 * Returns the options and flags that bs->file should get if a protocol driver
939 * is expected, based on the given options and flags for the parent BDS
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200940 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200941static void bdrv_inherited_options(int *child_flags, QDict *child_options,
942 int parent_flags, QDict *parent_options)
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200943{
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200944 int flags = parent_flags;
945
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200946 /* Enable protocol handling, disable format probing for bs->file */
947 flags |= BDRV_O_PROTOCOL;
948
Kevin Wolf91a097e2015-05-08 17:49:53 +0200949 /* If the cache mode isn't explicitly set, inherit direct and no-flush from
950 * the parent. */
951 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
952 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
Fam Zheng5a9347c2017-05-03 00:35:37 +0800953 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
Kevin Wolf91a097e2015-05-08 17:49:53 +0200954
Alberto Garciaf87a0e22016-09-15 17:53:02 +0300955 /* Inherit the read-only option from the parent if it's not set */
956 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolfe35bdc12018-10-05 18:57:40 +0200957 qdict_copy_default(child_options, parent_options, BDRV_OPT_AUTO_READ_ONLY);
Alberto Garciaf87a0e22016-09-15 17:53:02 +0300958
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200959 /* Our block drivers take care to send flushes and respect unmap policy,
Kevin Wolf91a097e2015-05-08 17:49:53 +0200960 * so we can default to enable both on lower layers regardless of the
961 * corresponding parent options. */
Kevin Wolf818584a2016-09-12 18:03:18 +0200962 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200963
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200964 /* Clear flags that only apply to the top layer */
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000965 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ |
966 BDRV_O_NO_IO);
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200967
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200968 *child_flags = flags;
Kevin Wolf0b50cc82014-04-11 21:29:52 +0200969}
970
Kevin Wolff3930ed2015-04-08 13:43:47 +0200971const BdrvChildRole child_file = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200972 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +0100973 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200974 .inherit_options = bdrv_inherited_options,
Kevin Wolf20018e12016-05-23 18:46:59 +0200975 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +0100976 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +0200977 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolfd736f112017-12-18 16:05:48 +0100978 .attach = bdrv_child_cb_attach,
979 .detach = bdrv_child_cb_detach,
Kevin Wolf38701b62017-05-04 18:52:39 +0200980 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolff3930ed2015-04-08 13:43:47 +0200981};
982
983/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200984 * Returns the options and flags that bs->file should get if the use of formats
985 * (and not only protocols) is permitted for it, based on the given options and
986 * flags for the parent BDS
Kevin Wolff3930ed2015-04-08 13:43:47 +0200987 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200988static void bdrv_inherited_fmt_options(int *child_flags, QDict *child_options,
989 int parent_flags, QDict *parent_options)
Kevin Wolff3930ed2015-04-08 13:43:47 +0200990{
Kevin Wolf8e2160e2015-04-29 17:29:39 +0200991 child_file.inherit_options(child_flags, child_options,
992 parent_flags, parent_options);
993
Daniel P. Berrangeabb06c52016-03-21 14:11:42 +0000994 *child_flags &= ~(BDRV_O_PROTOCOL | BDRV_O_NO_IO);
Kevin Wolff3930ed2015-04-08 13:43:47 +0200995}
996
997const BdrvChildRole child_format = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +0200998 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +0100999 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001000 .inherit_options = bdrv_inherited_fmt_options,
Kevin Wolf20018e12016-05-23 18:46:59 +02001001 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +01001002 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +02001003 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolfd736f112017-12-18 16:05:48 +01001004 .attach = bdrv_child_cb_attach,
1005 .detach = bdrv_child_cb_detach,
Kevin Wolf38701b62017-05-04 18:52:39 +02001006 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolff3930ed2015-04-08 13:43:47 +02001007};
1008
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001009static void bdrv_backing_attach(BdrvChild *c)
1010{
1011 BlockDriverState *parent = c->opaque;
1012 BlockDriverState *backing_hd = c->bs;
1013
1014 assert(!parent->backing_blocker);
1015 error_setg(&parent->backing_blocker,
1016 "node is used as backing hd of '%s'",
1017 bdrv_get_device_or_node_name(parent));
1018
Max Reitzf30c66b2019-02-01 20:29:05 +01001019 bdrv_refresh_filename(backing_hd);
1020
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001021 parent->open_flags &= ~BDRV_O_NO_BACKING;
1022 pstrcpy(parent->backing_file, sizeof(parent->backing_file),
1023 backing_hd->filename);
1024 pstrcpy(parent->backing_format, sizeof(parent->backing_format),
1025 backing_hd->drv ? backing_hd->drv->format_name : "");
1026
1027 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1028 /* Otherwise we won't be able to commit or stream */
1029 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1030 parent->backing_blocker);
1031 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1032 parent->backing_blocker);
1033 /*
1034 * We do backup in 3 ways:
1035 * 1. drive backup
1036 * The target bs is new opened, and the source is top BDS
1037 * 2. blockdev backup
1038 * Both the source and the target are top BDSes.
1039 * 3. internal backup(used for block replication)
1040 * Both the source and the target are backing file
1041 *
1042 * In case 1 and 2, neither the source nor the target is the backing file.
1043 * In case 3, we will block the top BDS, so there is only one block job
1044 * for the top BDS and its backing chain.
1045 */
1046 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1047 parent->backing_blocker);
1048 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1049 parent->backing_blocker);
Kevin Wolfd736f112017-12-18 16:05:48 +01001050
1051 bdrv_child_cb_attach(c);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001052}
1053
1054static void bdrv_backing_detach(BdrvChild *c)
1055{
1056 BlockDriverState *parent = c->opaque;
1057
1058 assert(parent->backing_blocker);
1059 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1060 error_free(parent->backing_blocker);
1061 parent->backing_blocker = NULL;
Kevin Wolfd736f112017-12-18 16:05:48 +01001062
1063 bdrv_child_cb_detach(c);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001064}
1065
Kevin Wolf317fc442014-04-25 13:27:34 +02001066/*
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001067 * Returns the options and flags that bs->backing should get, based on the
1068 * given options and flags for the parent BDS
Kevin Wolf317fc442014-04-25 13:27:34 +02001069 */
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001070static void bdrv_backing_options(int *child_flags, QDict *child_options,
1071 int parent_flags, QDict *parent_options)
Kevin Wolf317fc442014-04-25 13:27:34 +02001072{
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001073 int flags = parent_flags;
1074
Kevin Wolfb8816a42016-03-04 14:52:32 +01001075 /* The cache mode is inherited unmodified for backing files; except WCE,
1076 * which is only applied on the top level (BlockBackend) */
Kevin Wolf91a097e2015-05-08 17:49:53 +02001077 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1078 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
Fam Zheng5a9347c2017-05-03 00:35:37 +08001079 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001080
Kevin Wolf317fc442014-04-25 13:27:34 +02001081 /* backing files always opened read-only */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001082 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001083 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001084 flags &= ~BDRV_O_COPY_ON_READ;
Kevin Wolf317fc442014-04-25 13:27:34 +02001085
1086 /* snapshot=on is handled on the top layer */
Kevin Wolf8bfea152014-04-11 19:16:36 +02001087 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_TEMPORARY);
Kevin Wolf317fc442014-04-25 13:27:34 +02001088
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001089 *child_flags = flags;
Kevin Wolf317fc442014-04-25 13:27:34 +02001090}
1091
Kevin Wolf6858eba2017-06-29 19:32:21 +02001092static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1093 const char *filename, Error **errp)
1094{
1095 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001096 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001097 int ret;
1098
Alberto Garciae94d3db2018-11-12 16:00:34 +02001099 if (read_only) {
1100 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001101 if (ret < 0) {
1102 return ret;
1103 }
1104 }
1105
Kevin Wolf6858eba2017-06-29 19:32:21 +02001106 ret = bdrv_change_backing_file(parent, filename,
1107 base->drv ? base->drv->format_name : "");
1108 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001109 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001110 }
1111
Alberto Garciae94d3db2018-11-12 16:00:34 +02001112 if (read_only) {
1113 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001114 }
1115
Kevin Wolf6858eba2017-06-29 19:32:21 +02001116 return ret;
1117}
1118
Kevin Wolf91ef3822016-12-20 16:23:46 +01001119const BdrvChildRole child_backing = {
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001120 .parent_is_bds = true,
Kevin Wolfb5411552017-01-17 15:56:16 +01001121 .get_parent_desc = bdrv_child_get_parent_desc,
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001122 .attach = bdrv_backing_attach,
1123 .detach = bdrv_backing_detach,
Kevin Wolf8e2160e2015-04-29 17:29:39 +02001124 .inherit_options = bdrv_backing_options,
Kevin Wolf20018e12016-05-23 18:46:59 +02001125 .drained_begin = bdrv_child_cb_drained_begin,
Kevin Wolf89bd0302018-03-22 14:11:20 +01001126 .drained_poll = bdrv_child_cb_drained_poll,
Kevin Wolf20018e12016-05-23 18:46:59 +02001127 .drained_end = bdrv_child_cb_drained_end,
Kevin Wolf38701b62017-05-04 18:52:39 +02001128 .inactivate = bdrv_child_cb_inactivate,
Kevin Wolf6858eba2017-06-29 19:32:21 +02001129 .update_filename = bdrv_backing_update_filename,
Kevin Wolff3930ed2015-04-08 13:43:47 +02001130};
1131
Kevin Wolf7b272452012-11-12 17:05:39 +01001132static int bdrv_open_flags(BlockDriverState *bs, int flags)
1133{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001134 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001135
1136 /*
1137 * Clear flags that are internal to the block layer before opening the
1138 * image.
1139 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001140 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001141
1142 /*
1143 * Snapshots should be writable.
1144 */
Kevin Wolf8bfea152014-04-11 19:16:36 +02001145 if (flags & BDRV_O_TEMPORARY) {
Kevin Wolf7b272452012-11-12 17:05:39 +01001146 open_flags |= BDRV_O_RDWR;
1147 }
1148
1149 return open_flags;
1150}
1151
Kevin Wolf91a097e2015-05-08 17:49:53 +02001152static void update_flags_from_options(int *flags, QemuOpts *opts)
1153{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001154 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001155
Alberto Garcia57f9db92018-09-06 12:37:06 +03001156 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001157 *flags |= BDRV_O_NO_FLUSH;
1158 }
1159
Alberto Garcia57f9db92018-09-06 12:37:06 +03001160 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001161 *flags |= BDRV_O_NOCACHE;
1162 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001163
Alberto Garcia57f9db92018-09-06 12:37:06 +03001164 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001165 *flags |= BDRV_O_RDWR;
1166 }
1167
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001168 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1169 *flags |= BDRV_O_AUTO_RDONLY;
1170 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001171}
1172
1173static void update_options_from_flags(QDict *options, int flags)
1174{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001175 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001176 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001177 }
1178 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001179 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1180 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001181 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001182 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001183 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001184 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001185 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1186 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1187 flags & BDRV_O_AUTO_RDONLY);
1188 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001189}
1190
Kevin Wolf636ea372014-01-24 14:11:52 +01001191static void bdrv_assign_node_name(BlockDriverState *bs,
1192 const char *node_name,
1193 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001194{
Jeff Cody15489c72015-10-12 19:36:50 -04001195 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001196
Jeff Cody15489c72015-10-12 19:36:50 -04001197 if (!node_name) {
1198 node_name = gen_node_name = id_generate(ID_BLOCK);
1199 } else if (!id_wellformed(node_name)) {
1200 /*
1201 * Check for empty string or invalid characters, but not if it is
1202 * generated (generated names use characters not available to the user)
1203 */
Kevin Wolf9aebf3b2014-09-25 09:54:02 +02001204 error_setg(errp, "Invalid node name");
Kevin Wolf636ea372014-01-24 14:11:52 +01001205 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001206 }
1207
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001208 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001209 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001210 error_setg(errp, "node-name=%s is conflicting with a device id",
1211 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001212 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001213 }
1214
Benoît Canet6913c0c2014-01-23 21:31:33 +01001215 /* takes care of avoiding duplicates node names */
1216 if (bdrv_find_node(node_name)) {
1217 error_setg(errp, "Duplicate node name");
Jeff Cody15489c72015-10-12 19:36:50 -04001218 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001219 }
1220
Kevin Wolf824808d2018-07-04 13:28:29 +02001221 /* Make sure that the node name isn't truncated */
1222 if (strlen(node_name) >= sizeof(bs->node_name)) {
1223 error_setg(errp, "Node name too long");
1224 goto out;
1225 }
1226
Benoît Canet6913c0c2014-01-23 21:31:33 +01001227 /* copy node name into the bs and insert it into the graph list */
1228 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1229 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001230out:
1231 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001232}
1233
Kevin Wolf01a56502017-01-18 15:51:56 +01001234static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1235 const char *node_name, QDict *options,
1236 int open_flags, Error **errp)
1237{
1238 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001239 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001240
1241 bdrv_assign_node_name(bs, node_name, &local_err);
1242 if (local_err) {
1243 error_propagate(errp, local_err);
1244 return -EINVAL;
1245 }
1246
1247 bs->drv = drv;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001248 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Kevin Wolf01a56502017-01-18 15:51:56 +01001249 bs->opaque = g_malloc0(drv->instance_size);
1250
1251 if (drv->bdrv_file_open) {
1252 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1253 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001254 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001255 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001256 } else {
1257 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001258 }
1259
1260 if (ret < 0) {
1261 if (local_err) {
1262 error_propagate(errp, local_err);
1263 } else if (bs->filename[0]) {
1264 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1265 } else {
1266 error_setg_errno(errp, -ret, "Could not open image");
1267 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001268 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001269 }
1270
1271 ret = refresh_total_sectors(bs, bs->total_sectors);
1272 if (ret < 0) {
1273 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001274 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001275 }
1276
1277 bdrv_refresh_limits(bs, &local_err);
1278 if (local_err) {
1279 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001280 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001281 }
1282
1283 assert(bdrv_opt_mem_align(bs) != 0);
1284 assert(bdrv_min_mem_align(bs) != 0);
1285 assert(is_power_of_2(bs->bl.request_alignment));
1286
Kevin Wolf0f122642018-03-28 18:29:18 +02001287 for (i = 0; i < bs->quiesce_counter; i++) {
1288 if (drv->bdrv_co_drain_begin) {
1289 drv->bdrv_co_drain_begin(bs);
1290 }
1291 }
1292
Kevin Wolf01a56502017-01-18 15:51:56 +01001293 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001294open_failed:
1295 bs->drv = NULL;
1296 if (bs->file != NULL) {
1297 bdrv_unref_child(bs, bs->file);
1298 bs->file = NULL;
1299 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001300 g_free(bs->opaque);
1301 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001302 return ret;
1303}
1304
Kevin Wolf680c7f92017-01-18 17:16:41 +01001305BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1306 int flags, Error **errp)
1307{
1308 BlockDriverState *bs;
1309 int ret;
1310
1311 bs = bdrv_new();
1312 bs->open_flags = flags;
1313 bs->explicit_options = qdict_new();
1314 bs->options = qdict_new();
1315 bs->opaque = NULL;
1316
1317 update_options_from_flags(bs->options, flags);
1318
1319 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1320 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001321 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001322 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001323 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001324 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001325 bdrv_unref(bs);
1326 return NULL;
1327 }
1328
1329 return bs;
1330}
1331
Kevin Wolfc5f30142016-10-06 11:33:17 +02001332QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001333 .name = "bdrv_common",
1334 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1335 .desc = {
1336 {
1337 .name = "node-name",
1338 .type = QEMU_OPT_STRING,
1339 .help = "Node name of the block device node",
1340 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001341 {
1342 .name = "driver",
1343 .type = QEMU_OPT_STRING,
1344 .help = "Block driver to use for the node",
1345 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001346 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001347 .name = BDRV_OPT_CACHE_DIRECT,
1348 .type = QEMU_OPT_BOOL,
1349 .help = "Bypass software writeback cache on the host",
1350 },
1351 {
1352 .name = BDRV_OPT_CACHE_NO_FLUSH,
1353 .type = QEMU_OPT_BOOL,
1354 .help = "Ignore flush requests",
1355 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001356 {
1357 .name = BDRV_OPT_READ_ONLY,
1358 .type = QEMU_OPT_BOOL,
1359 .help = "Node is opened in read-only mode",
1360 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001361 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001362 .name = BDRV_OPT_AUTO_READ_ONLY,
1363 .type = QEMU_OPT_BOOL,
1364 .help = "Node can become read-only if opening read-write fails",
1365 },
1366 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001367 .name = "detect-zeroes",
1368 .type = QEMU_OPT_STRING,
1369 .help = "try to optimize zero writes (off, on, unmap)",
1370 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001371 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001372 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001373 .type = QEMU_OPT_STRING,
1374 .help = "discard operation (ignore/off, unmap/on)",
1375 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001376 {
1377 .name = BDRV_OPT_FORCE_SHARE,
1378 .type = QEMU_OPT_BOOL,
1379 .help = "always accept other writers (default: off)",
1380 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001381 { /* end of list */ }
1382 },
1383};
1384
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001385/*
Kevin Wolf57915332010-04-14 15:24:50 +02001386 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001387 *
1388 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001389 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001390static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001391 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001392{
1393 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001394 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001395 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001396 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001397 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001398 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001399 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001400 Error *local_err = NULL;
Kevin Wolf57915332010-04-14 15:24:50 +02001401
Paolo Bonzini64058752012-05-08 16:51:49 +02001402 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001403 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001404
Kevin Wolf62392eb2015-04-24 16:38:02 +02001405 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
1406 qemu_opts_absorb_qdict(opts, options, &local_err);
1407 if (local_err) {
1408 error_propagate(errp, local_err);
1409 ret = -EINVAL;
1410 goto fail_opts;
1411 }
1412
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001413 update_flags_from_options(&bs->open_flags, opts);
1414
Kevin Wolf62392eb2015-04-24 16:38:02 +02001415 driver_name = qemu_opt_get(opts, "driver");
1416 drv = bdrv_find_format(driver_name);
1417 assert(drv != NULL);
1418
Fam Zheng5a9347c2017-05-03 00:35:37 +08001419 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1420
1421 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1422 error_setg(errp,
1423 BDRV_OPT_FORCE_SHARE
1424 "=on can only be used with read-only images");
1425 ret = -EINVAL;
1426 goto fail_opts;
1427 }
1428
Kevin Wolf45673672013-04-22 17:48:40 +02001429 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001430 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001431 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001432 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001433 /*
1434 * Caution: while qdict_get_try_str() is fine, getting
1435 * non-string types would require more care. When @options
1436 * come from -blockdev or blockdev_add, its members are typed
1437 * according to the QAPI schema, but when they come from
1438 * -drive, they're all QString.
1439 */
Kevin Wolf45673672013-04-22 17:48:40 +02001440 filename = qdict_get_try_str(options, "filename");
1441 }
1442
Max Reitz4a008242017-04-13 18:06:24 +02001443 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001444 error_setg(errp, "The '%s' block driver requires a file name",
1445 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001446 ret = -EINVAL;
1447 goto fail_opts;
1448 }
1449
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001450 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1451 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001452
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001453 bs->read_only = !(bs->open_flags & BDRV_O_RDWR);
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001454
1455 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, bs->read_only)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001456 if (!bs->read_only && bdrv_is_whitelisted(drv, true)) {
1457 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1458 } else {
1459 ret = -ENOTSUP;
1460 }
1461 if (ret < 0) {
1462 error_setg(errp,
1463 !bs->read_only && bdrv_is_whitelisted(drv, true)
1464 ? "Driver '%s' can only be used for read-only devices"
1465 : "Driver '%s' is not whitelisted",
1466 drv->format_name);
1467 goto fail_opts;
1468 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001469 }
Kevin Wolf57915332010-04-14 15:24:50 +02001470
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001471 /* bdrv_new() and bdrv_close() make it so */
1472 assert(atomic_read(&bs->copy_on_read) == 0);
1473
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001474 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001475 if (!bs->read_only) {
1476 bdrv_enable_copy_on_read(bs);
1477 } else {
1478 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001479 ret = -EINVAL;
1480 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001481 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001482 }
1483
Alberto Garcia415bbca2018-10-03 13:23:13 +03001484 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001485 if (discard != NULL) {
1486 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1487 error_setg(errp, "Invalid discard option");
1488 ret = -EINVAL;
1489 goto fail_opts;
1490 }
1491 }
1492
Alberto Garcia543770b2018-09-06 12:37:09 +03001493 bs->detect_zeroes =
1494 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1495 if (local_err) {
1496 error_propagate(errp, local_err);
1497 ret = -EINVAL;
1498 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001499 }
1500
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001501 if (filename != NULL) {
1502 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1503 } else {
1504 bs->filename[0] = '\0';
1505 }
Max Reitz91af7012014-07-18 20:24:56 +02001506 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001507
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001508 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001509 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001510 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001511
Kevin Wolf01a56502017-01-18 15:51:56 +01001512 assert(!drv->bdrv_file_open || file == NULL);
1513 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001514 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001515 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001516 }
1517
Kevin Wolf18edf282015-04-07 17:12:56 +02001518 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001519 return 0;
1520
Kevin Wolf18edf282015-04-07 17:12:56 +02001521fail_opts:
1522 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001523 return ret;
1524}
1525
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001526static QDict *parse_json_filename(const char *filename, Error **errp)
1527{
1528 QObject *options_obj;
1529 QDict *options;
1530 int ret;
1531
1532 ret = strstart(filename, "json:", &filename);
1533 assert(ret);
1534
Markus Armbruster5577fff2017-02-28 22:26:59 +01001535 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001536 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001537 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001538 return NULL;
1539 }
1540
Max Reitz7dc847e2018-02-24 16:40:29 +01001541 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001542 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001543 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001544 error_setg(errp, "Invalid JSON object given");
1545 return NULL;
1546 }
1547
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001548 qdict_flatten(options);
1549
1550 return options;
1551}
1552
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001553static void parse_json_protocol(QDict *options, const char **pfilename,
1554 Error **errp)
1555{
1556 QDict *json_options;
1557 Error *local_err = NULL;
1558
1559 /* Parse json: pseudo-protocol */
1560 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1561 return;
1562 }
1563
1564 json_options = parse_json_filename(*pfilename, &local_err);
1565 if (local_err) {
1566 error_propagate(errp, local_err);
1567 return;
1568 }
1569
1570 /* Options given in the filename have lower priority than options
1571 * specified directly */
1572 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001573 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001574 *pfilename = NULL;
1575}
1576
Kevin Wolf57915332010-04-14 15:24:50 +02001577/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001578 * Fills in default options for opening images and converts the legacy
1579 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001580 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1581 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001582 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001583static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001584 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001585{
1586 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001587 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001588 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001589 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001590 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001591
Markus Armbruster129c7d12017-03-30 19:43:12 +02001592 /*
1593 * Caution: while qdict_get_try_str() is fine, getting non-string
1594 * types would require more care. When @options come from
1595 * -blockdev or blockdev_add, its members are typed according to
1596 * the QAPI schema, but when they come from -drive, they're all
1597 * QString.
1598 */
Max Reitz53a29512015-03-19 14:53:16 -04001599 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001600 if (drvname) {
1601 drv = bdrv_find_format(drvname);
1602 if (!drv) {
1603 error_setg(errp, "Unknown driver '%s'", drvname);
1604 return -ENOENT;
1605 }
1606 /* If the user has explicitly specified the driver, this choice should
1607 * override the BDRV_O_PROTOCOL flag */
1608 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001609 }
1610
1611 if (protocol) {
1612 *flags |= BDRV_O_PROTOCOL;
1613 } else {
1614 *flags &= ~BDRV_O_PROTOCOL;
1615 }
1616
Kevin Wolf91a097e2015-05-08 17:49:53 +02001617 /* Translate cache options from flags into options */
1618 update_options_from_flags(*options, *flags);
1619
Kevin Wolff54120f2014-05-26 11:09:59 +02001620 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001621 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001622 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001623 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001624 parse_filename = true;
1625 } else {
1626 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1627 "the same time");
1628 return -EINVAL;
1629 }
1630 }
1631
1632 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001633 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001634 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001635
Max Reitz053e1572015-08-26 19:47:51 +02001636 if (!drvname && protocol) {
1637 if (filename) {
1638 drv = bdrv_find_protocol(filename, parse_filename, errp);
1639 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001640 return -EINVAL;
1641 }
Max Reitz053e1572015-08-26 19:47:51 +02001642
1643 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001644 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001645 } else {
1646 error_setg(errp, "Must specify either driver or file");
1647 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001648 }
1649 }
1650
Kevin Wolf17b005f2014-05-27 10:50:29 +02001651 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001652
1653 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001654 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001655 drv->bdrv_parse_filename(filename, *options, &local_err);
1656 if (local_err) {
1657 error_propagate(errp, local_err);
1658 return -EINVAL;
1659 }
1660
1661 if (!drv->bdrv_needs_filename) {
1662 qdict_del(*options, "filename");
1663 }
1664 }
1665
1666 return 0;
1667}
1668
Kevin Wolf3121fb42017-09-14 14:42:12 +02001669static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1670 uint64_t perm, uint64_t shared,
Fam Zhengc1cef672017-03-14 10:30:50 +08001671 GSList *ignore_children, Error **errp);
1672static void bdrv_child_abort_perm_update(BdrvChild *c);
1673static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared);
1674
Kevin Wolf148eb132017-09-14 14:32:04 +02001675typedef struct BlockReopenQueueEntry {
1676 bool prepared;
1677 BDRVReopenState state;
1678 QSIMPLEQ_ENTRY(BlockReopenQueueEntry) entry;
1679} BlockReopenQueueEntry;
1680
1681/*
1682 * Return the flags that @bs will have after the reopens in @q have
1683 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1684 * return the current flags.
1685 */
1686static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1687{
1688 BlockReopenQueueEntry *entry;
1689
1690 if (q != NULL) {
1691 QSIMPLEQ_FOREACH(entry, q, entry) {
1692 if (entry->state.bs == bs) {
1693 return entry->state.flags;
1694 }
1695 }
1696 }
1697
1698 return bs->open_flags;
1699}
1700
1701/* Returns whether the image file can be written to after the reopen queue @q
1702 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02001703static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
1704 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02001705{
1706 int flags = bdrv_reopen_get_flags(q, bs);
1707
1708 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
1709}
1710
Max Reitzcc022142018-06-06 21:37:00 +02001711/*
1712 * Return whether the BDS can be written to. This is not necessarily
1713 * the same as !bdrv_is_read_only(bs), as inactivated images may not
1714 * be written to but do not count as read-only images.
1715 */
1716bool bdrv_is_writable(BlockDriverState *bs)
1717{
1718 return bdrv_is_writable_after_reopen(bs, NULL);
1719}
1720
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001721static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001722 BdrvChild *c, const BdrvChildRole *role,
1723 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001724 uint64_t parent_perm, uint64_t parent_shared,
1725 uint64_t *nperm, uint64_t *nshared)
1726{
1727 if (bs->drv && bs->drv->bdrv_child_perm) {
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001728 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001729 parent_perm, parent_shared,
1730 nperm, nshared);
1731 }
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001732 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001733 if (child_bs && child_bs->force_share) {
1734 *nshared = BLK_PERM_ALL;
1735 }
1736}
1737
Kevin Wolf33a610c2016-12-15 13:04:20 +01001738/*
1739 * Check whether permissions on this node can be changed in a way that
1740 * @cumulative_perms and @cumulative_shared_perms are the new cumulative
1741 * permissions of all its parents. This involves checking whether all necessary
1742 * permission changes to child nodes can be performed.
1743 *
1744 * A call to this function must always be followed by a call to bdrv_set_perm()
1745 * or bdrv_abort_perm_update().
1746 */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001747static int bdrv_check_perm(BlockDriverState *bs, BlockReopenQueue *q,
1748 uint64_t cumulative_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001749 uint64_t cumulative_shared_perms,
1750 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001751{
1752 BlockDriver *drv = bs->drv;
1753 BdrvChild *c;
1754 int ret;
1755
1756 /* Write permissions never work with read-only images */
1757 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02001758 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01001759 {
1760 error_setg(errp, "Block node is read-only");
1761 return -EPERM;
1762 }
1763
1764 /* Check this node */
1765 if (!drv) {
1766 return 0;
1767 }
1768
1769 if (drv->bdrv_check_perm) {
1770 return drv->bdrv_check_perm(bs, cumulative_perms,
1771 cumulative_shared_perms, errp);
1772 }
1773
Kevin Wolf78e421c2016-12-20 23:25:12 +01001774 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01001775 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01001776 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01001777 return 0;
1778 }
1779
1780 /* Check all children */
1781 QLIST_FOREACH(c, &bs->children, next) {
1782 uint64_t cur_perm, cur_shared;
Kevin Wolf3121fb42017-09-14 14:42:12 +02001783 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001784 cumulative_perms, cumulative_shared_perms,
1785 &cur_perm, &cur_shared);
Kevin Wolf3121fb42017-09-14 14:42:12 +02001786 ret = bdrv_child_check_perm(c, q, cur_perm, cur_shared,
1787 ignore_children, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001788 if (ret < 0) {
1789 return ret;
1790 }
1791 }
1792
1793 return 0;
1794}
1795
1796/*
1797 * Notifies drivers that after a previous bdrv_check_perm() call, the
1798 * permission update is not performed and any preparations made for it (e.g.
1799 * taken file locks) need to be undone.
1800 *
1801 * This function recursively notifies all child nodes.
1802 */
1803static void bdrv_abort_perm_update(BlockDriverState *bs)
1804{
1805 BlockDriver *drv = bs->drv;
1806 BdrvChild *c;
1807
1808 if (!drv) {
1809 return;
1810 }
1811
1812 if (drv->bdrv_abort_perm_update) {
1813 drv->bdrv_abort_perm_update(bs);
1814 }
1815
1816 QLIST_FOREACH(c, &bs->children, next) {
1817 bdrv_child_abort_perm_update(c);
1818 }
1819}
1820
1821static void bdrv_set_perm(BlockDriverState *bs, uint64_t cumulative_perms,
1822 uint64_t cumulative_shared_perms)
1823{
1824 BlockDriver *drv = bs->drv;
1825 BdrvChild *c;
1826
1827 if (!drv) {
1828 return;
1829 }
1830
1831 /* Update this node */
1832 if (drv->bdrv_set_perm) {
1833 drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
1834 }
1835
Kevin Wolf78e421c2016-12-20 23:25:12 +01001836 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01001837 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01001838 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01001839 return;
1840 }
1841
1842 /* Update all children */
1843 QLIST_FOREACH(c, &bs->children, next) {
1844 uint64_t cur_perm, cur_shared;
Kevin Wolfe0995dc2017-09-14 12:47:11 +02001845 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08001846 cumulative_perms, cumulative_shared_perms,
1847 &cur_perm, &cur_shared);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001848 bdrv_child_set_perm(c, cur_perm, cur_shared);
1849 }
1850}
1851
1852static void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
1853 uint64_t *shared_perm)
1854{
1855 BdrvChild *c;
1856 uint64_t cumulative_perms = 0;
1857 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
1858
1859 QLIST_FOREACH(c, &bs->parents, next_parent) {
1860 cumulative_perms |= c->perm;
1861 cumulative_shared_perms &= c->shared_perm;
1862 }
1863
1864 *perm = cumulative_perms;
1865 *shared_perm = cumulative_shared_perms;
1866}
1867
Kevin Wolfd0833192017-01-16 18:26:20 +01001868static char *bdrv_child_user_desc(BdrvChild *c)
1869{
1870 if (c->role->get_parent_desc) {
1871 return c->role->get_parent_desc(c);
1872 }
1873
1874 return g_strdup("another user");
1875}
1876
Fam Zheng51761962017-05-03 00:35:36 +08001877char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01001878{
1879 struct perm_name {
1880 uint64_t perm;
1881 const char *name;
1882 } permissions[] = {
1883 { BLK_PERM_CONSISTENT_READ, "consistent read" },
1884 { BLK_PERM_WRITE, "write" },
1885 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
1886 { BLK_PERM_RESIZE, "resize" },
1887 { BLK_PERM_GRAPH_MOD, "change children" },
1888 { 0, NULL }
1889 };
1890
1891 char *result = g_strdup("");
1892 struct perm_name *p;
1893
1894 for (p = permissions; p->name; p++) {
1895 if (perm & p->perm) {
1896 char *old = result;
1897 result = g_strdup_printf("%s%s%s", old, *old ? ", " : "", p->name);
1898 g_free(old);
1899 }
1900 }
1901
1902 return result;
1903}
1904
Kevin Wolf33a610c2016-12-15 13:04:20 +01001905/*
1906 * Checks whether a new reference to @bs can be added if the new user requires
Kevin Wolf46181122017-03-06 15:00:13 +01001907 * @new_used_perm/@new_shared_perm as its permissions. If @ignore_children is
1908 * set, the BdrvChild objects in this list are ignored in the calculations;
1909 * this allows checking permission updates for an existing reference.
Kevin Wolf33a610c2016-12-15 13:04:20 +01001910 *
1911 * Needs to be followed by a call to either bdrv_set_perm() or
1912 * bdrv_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001913static int bdrv_check_update_perm(BlockDriverState *bs, BlockReopenQueue *q,
1914 uint64_t new_used_perm,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001915 uint64_t new_shared_perm,
Kevin Wolf46181122017-03-06 15:00:13 +01001916 GSList *ignore_children, Error **errp)
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001917{
1918 BdrvChild *c;
Kevin Wolf33a610c2016-12-15 13:04:20 +01001919 uint64_t cumulative_perms = new_used_perm;
1920 uint64_t cumulative_shared_perms = new_shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001921
1922 /* There is no reason why anyone couldn't tolerate write_unchanged */
1923 assert(new_shared_perm & BLK_PERM_WRITE_UNCHANGED);
1924
1925 QLIST_FOREACH(c, &bs->parents, next_parent) {
Kevin Wolf46181122017-03-06 15:00:13 +01001926 if (g_slist_find(ignore_children, c)) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001927 continue;
1928 }
1929
Kevin Wolfd0833192017-01-16 18:26:20 +01001930 if ((new_used_perm & c->shared_perm) != new_used_perm) {
1931 char *user = bdrv_child_user_desc(c);
1932 char *perm_names = bdrv_perm_names(new_used_perm & ~c->shared_perm);
1933 error_setg(errp, "Conflicts with use by %s as '%s', which does not "
1934 "allow '%s' on %s",
1935 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1936 g_free(user);
1937 g_free(perm_names);
1938 return -EPERM;
1939 }
1940
1941 if ((c->perm & new_shared_perm) != c->perm) {
1942 char *user = bdrv_child_user_desc(c);
1943 char *perm_names = bdrv_perm_names(c->perm & ~new_shared_perm);
1944 error_setg(errp, "Conflicts with use by %s as '%s', which uses "
1945 "'%s' on %s",
1946 user, c->name, perm_names, bdrv_get_node_name(c->bs));
1947 g_free(user);
1948 g_free(perm_names);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001949 return -EPERM;
1950 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01001951
1952 cumulative_perms |= c->perm;
1953 cumulative_shared_perms &= c->shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01001954 }
1955
Kevin Wolf3121fb42017-09-14 14:42:12 +02001956 return bdrv_check_perm(bs, q, cumulative_perms, cumulative_shared_perms,
Kevin Wolf46181122017-03-06 15:00:13 +01001957 ignore_children, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01001958}
1959
1960/* Needs to be followed by a call to either bdrv_child_set_perm() or
1961 * bdrv_child_abort_perm_update(). */
Kevin Wolf3121fb42017-09-14 14:42:12 +02001962static int bdrv_child_check_perm(BdrvChild *c, BlockReopenQueue *q,
1963 uint64_t perm, uint64_t shared,
Fam Zhengc1cef672017-03-14 10:30:50 +08001964 GSList *ignore_children, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001965{
Kevin Wolf46181122017-03-06 15:00:13 +01001966 int ret;
1967
1968 ignore_children = g_slist_prepend(g_slist_copy(ignore_children), c);
Kevin Wolf3121fb42017-09-14 14:42:12 +02001969 ret = bdrv_check_update_perm(c->bs, q, perm, shared, ignore_children, errp);
Kevin Wolf46181122017-03-06 15:00:13 +01001970 g_slist_free(ignore_children);
1971
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03001972 if (ret < 0) {
1973 return ret;
1974 }
1975
1976 if (!c->has_backup_perm) {
1977 c->has_backup_perm = true;
1978 c->backup_perm = c->perm;
1979 c->backup_shared_perm = c->shared_perm;
1980 }
1981 /*
1982 * Note: it's OK if c->has_backup_perm was already set, as we can find the
1983 * same child twice during check_perm procedure
1984 */
1985
1986 c->perm = perm;
1987 c->shared_perm = shared;
1988
1989 return 0;
Kevin Wolf33a610c2016-12-15 13:04:20 +01001990}
1991
Fam Zhengc1cef672017-03-14 10:30:50 +08001992static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared)
Kevin Wolf33a610c2016-12-15 13:04:20 +01001993{
1994 uint64_t cumulative_perms, cumulative_shared_perms;
1995
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03001996 c->has_backup_perm = false;
1997
Kevin Wolf33a610c2016-12-15 13:04:20 +01001998 c->perm = perm;
1999 c->shared_perm = shared;
2000
2001 bdrv_get_cumulative_perm(c->bs, &cumulative_perms,
2002 &cumulative_shared_perms);
2003 bdrv_set_perm(c->bs, cumulative_perms, cumulative_shared_perms);
2004}
2005
Fam Zhengc1cef672017-03-14 10:30:50 +08002006static void bdrv_child_abort_perm_update(BdrvChild *c)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002007{
Vladimir Sementsov-Ogievskiyf962e962019-02-23 22:20:40 +03002008 if (c->has_backup_perm) {
2009 c->perm = c->backup_perm;
2010 c->shared_perm = c->backup_shared_perm;
2011 c->has_backup_perm = false;
2012 }
2013
Kevin Wolf33a610c2016-12-15 13:04:20 +01002014 bdrv_abort_perm_update(c->bs);
2015}
2016
2017int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2018 Error **errp)
2019{
2020 int ret;
2021
Kevin Wolf3121fb42017-09-14 14:42:12 +02002022 ret = bdrv_child_check_perm(c, NULL, perm, shared, NULL, errp);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002023 if (ret < 0) {
2024 bdrv_child_abort_perm_update(c);
2025 return ret;
2026 }
2027
2028 bdrv_child_set_perm(c, perm, shared);
2029
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002030 return 0;
2031}
2032
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002033void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
2034 const BdrvChildRole *role,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002035 BlockReopenQueue *reopen_queue,
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002036 uint64_t perm, uint64_t shared,
2037 uint64_t *nperm, uint64_t *nshared)
2038{
2039 if (c == NULL) {
2040 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2041 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
2042 return;
2043 }
2044
2045 *nperm = (perm & DEFAULT_PERM_PASSTHROUGH) |
2046 (c->perm & DEFAULT_PERM_UNCHANGED);
2047 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) |
2048 (c->shared_perm & DEFAULT_PERM_UNCHANGED);
2049}
2050
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002051void bdrv_format_default_perms(BlockDriverState *bs, BdrvChild *c,
2052 const BdrvChildRole *role,
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002053 BlockReopenQueue *reopen_queue,
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002054 uint64_t perm, uint64_t shared,
2055 uint64_t *nperm, uint64_t *nshared)
2056{
2057 bool backing = (role == &child_backing);
2058 assert(role == &child_backing || role == &child_file);
2059
2060 if (!backing) {
Kevin Wolf5fbfabd2017-11-30 17:38:43 +01002061 int flags = bdrv_reopen_get_flags(reopen_queue, bs);
2062
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002063 /* Apart from the modifications below, the same permissions are
2064 * forwarded and left alone as for filters */
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002065 bdrv_filter_default_perms(bs, c, role, reopen_queue, perm, shared,
2066 &perm, &shared);
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002067
2068 /* Format drivers may touch metadata even if the guest doesn't write */
Max Reitzcc022142018-06-06 21:37:00 +02002069 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002070 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2071 }
2072
2073 /* bs->file always needs to be consistent because of the metadata. We
2074 * can never allow other users to resize or write to it. */
Kevin Wolf5fbfabd2017-11-30 17:38:43 +01002075 if (!(flags & BDRV_O_NO_IO)) {
2076 perm |= BLK_PERM_CONSISTENT_READ;
2077 }
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002078 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
2079 } else {
2080 /* We want consistent read from backing files if the parent needs it.
2081 * No other operations are performed on backing files. */
2082 perm &= BLK_PERM_CONSISTENT_READ;
2083
2084 /* If the parent can deal with changing data, we're okay with a
2085 * writable and resizable backing file. */
2086 /* TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too? */
2087 if (shared & BLK_PERM_WRITE) {
2088 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2089 } else {
2090 shared = 0;
2091 }
2092
2093 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2094 BLK_PERM_WRITE_UNCHANGED;
2095 }
2096
Kevin Wolf9c5e6592017-05-04 18:52:40 +02002097 if (bs->open_flags & BDRV_O_INACTIVE) {
2098 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2099 }
2100
Kevin Wolf6b1a0442016-12-19 15:21:48 +01002101 *nperm = perm;
2102 *nshared = shared;
2103}
2104
Kevin Wolf8ee03992017-03-06 13:45:28 +01002105static void bdrv_replace_child_noperm(BdrvChild *child,
2106 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002107{
2108 BlockDriverState *old_bs = child->bs;
Kevin Wolf0152bf42017-12-07 13:03:13 +01002109 int i;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002110
Fam Zhengbb2614e2017-04-07 14:54:10 +08002111 if (old_bs && new_bs) {
2112 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2113 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002114 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002115 /* Detach first so that the recursive drain sections coming from @child
2116 * are already gone and we only end the drain sections that came from
2117 * elsewhere. */
2118 if (child->role->detach) {
2119 child->role->detach(child);
2120 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002121 if (old_bs->quiesce_counter && child->role->drained_end) {
Kevin Wolf0f122642018-03-28 18:29:18 +02002122 int num = old_bs->quiesce_counter;
2123 if (child->role->parent_is_bds) {
2124 num -= bdrv_drain_all_count;
2125 }
2126 assert(num >= 0);
2127 for (i = 0; i < num; i++) {
Kevin Wolf0152bf42017-12-07 13:03:13 +01002128 child->role->drained_end(child);
2129 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002130 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002131 QLIST_REMOVE(child, next_parent);
2132 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002133
2134 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002135
2136 if (new_bs) {
2137 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
2138 if (new_bs->quiesce_counter && child->role->drained_begin) {
Kevin Wolf0f122642018-03-28 18:29:18 +02002139 int num = new_bs->quiesce_counter;
2140 if (child->role->parent_is_bds) {
2141 num -= bdrv_drain_all_count;
2142 }
2143 assert(num >= 0);
2144 for (i = 0; i < num; i++) {
Kevin Wolf4be6a6d2018-06-29 18:01:31 +02002145 bdrv_parent_drained_begin_single(child, true);
Kevin Wolf0152bf42017-12-07 13:03:13 +01002146 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002147 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002148
Kevin Wolfd736f112017-12-18 16:05:48 +01002149 /* Attach only after starting new drained sections, so that recursive
2150 * drain sections coming from @child don't get an extra .drained_begin
2151 * callback. */
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002152 if (child->role->attach) {
2153 child->role->attach(child);
2154 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002155 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002156}
2157
Kevin Wolf466787f2017-03-08 14:44:07 +01002158/*
2159 * Updates @child to change its reference to point to @new_bs, including
2160 * checking and applying the necessary permisson updates both to the old node
2161 * and to @new_bs.
2162 *
2163 * NULL is passed as @new_bs for removing the reference before freeing @child.
2164 *
2165 * If @new_bs is not NULL, bdrv_check_perm() must be called beforehand, as this
2166 * function uses bdrv_set_perm() to update the permissions according to the new
2167 * reference that @new_bs gets.
2168 */
2169static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolf8ee03992017-03-06 13:45:28 +01002170{
2171 BlockDriverState *old_bs = child->bs;
2172 uint64_t perm, shared_perm;
2173
Kevin Wolf8aecf1d2017-08-03 17:02:57 +02002174 bdrv_replace_child_noperm(child, new_bs);
2175
Kevin Wolf8ee03992017-03-06 13:45:28 +01002176 if (old_bs) {
2177 /* Update permissions for old node. This is guaranteed to succeed
2178 * because we're just taking a parent away, so we're loosening
2179 * restrictions. */
2180 bdrv_get_cumulative_perm(old_bs, &perm, &shared_perm);
Kevin Wolf3121fb42017-09-14 14:42:12 +02002181 bdrv_check_perm(old_bs, NULL, perm, shared_perm, NULL, &error_abort);
Kevin Wolf8ee03992017-03-06 13:45:28 +01002182 bdrv_set_perm(old_bs, perm, shared_perm);
2183 }
2184
Kevin Wolf8ee03992017-03-06 13:45:28 +01002185 if (new_bs) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002186 bdrv_get_cumulative_perm(new_bs, &perm, &shared_perm);
Kevin Wolff54120f2014-05-26 11:09:59 +02002187 bdrv_set_perm(new_bs, perm, shared_perm);
Kevin Wolff54120f2014-05-26 11:09:59 +02002188 }
2189}
2190
Kevin Wolff21d96d2016-03-08 13:47:46 +01002191BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2192 const char *child_name,
Kevin Wolf36fe1332016-05-17 14:51:55 +02002193 const BdrvChildRole *child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002194 uint64_t perm, uint64_t shared_perm,
2195 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002196{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002197 BdrvChild *child;
2198 int ret;
2199
Kevin Wolf3121fb42017-09-14 14:42:12 +02002200 ret = bdrv_check_update_perm(child_bs, NULL, perm, shared_perm, NULL, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002201 if (ret < 0) {
Kevin Wolf33a610c2016-12-15 13:04:20 +01002202 bdrv_abort_perm_update(child_bs);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002203 return NULL;
2204 }
2205
2206 child = g_new(BdrvChild, 1);
Kevin Wolfdf581792015-06-15 11:53:47 +02002207 *child = (BdrvChild) {
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002208 .bs = NULL,
2209 .name = g_strdup(child_name),
2210 .role = child_role,
2211 .perm = perm,
2212 .shared_perm = shared_perm,
2213 .opaque = opaque,
Kevin Wolfdf581792015-06-15 11:53:47 +02002214 };
2215
Kevin Wolf33a610c2016-12-15 13:04:20 +01002216 /* This performs the matching bdrv_set_perm() for the above check. */
Kevin Wolf466787f2017-03-08 14:44:07 +01002217 bdrv_replace_child(child, child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002218
2219 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002220}
2221
Wen Congyang98292c62016-05-10 15:36:38 +08002222BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2223 BlockDriverState *child_bs,
2224 const char *child_name,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002225 const BdrvChildRole *child_role,
2226 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002227{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002228 BdrvChild *child;
Kevin Wolff68c5982016-12-20 15:51:12 +01002229 uint64_t perm, shared_perm;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002230
Kevin Wolff68c5982016-12-20 15:51:12 +01002231 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2232
2233 assert(parent_bs->drv);
Fam Zhengbb2614e2017-04-07 14:54:10 +08002234 assert(bdrv_get_aio_context(parent_bs) == bdrv_get_aio_context(child_bs));
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002235 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002236 perm, shared_perm, &perm, &shared_perm);
Kevin Wolff68c5982016-12-20 15:51:12 +01002237
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002238 child = bdrv_root_attach_child(child_bs, child_name, child_role,
Kevin Wolff68c5982016-12-20 15:51:12 +01002239 perm, shared_perm, parent_bs, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002240 if (child == NULL) {
2241 return NULL;
2242 }
2243
Kevin Wolff21d96d2016-03-08 13:47:46 +01002244 QLIST_INSERT_HEAD(&parent_bs->children, child, next);
2245 return child;
2246}
2247
Kevin Wolf3f09bfb2015-09-15 11:58:23 +02002248static void bdrv_detach_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002249{
Kevin Wolff21d96d2016-03-08 13:47:46 +01002250 if (child->next.le_prev) {
2251 QLIST_REMOVE(child, next);
2252 child->next.le_prev = NULL;
2253 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002254
Kevin Wolf466787f2017-03-08 14:44:07 +01002255 bdrv_replace_child(child, NULL);
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002256
Kevin Wolf260fecf2015-04-27 13:46:22 +02002257 g_free(child->name);
Kevin Wolf33a60402015-06-15 13:51:04 +02002258 g_free(child);
2259}
2260
Kevin Wolff21d96d2016-03-08 13:47:46 +01002261void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002262{
Kevin Wolf779020c2015-10-13 14:09:44 +02002263 BlockDriverState *child_bs;
2264
Kevin Wolff21d96d2016-03-08 13:47:46 +01002265 child_bs = child->bs;
2266 bdrv_detach_child(child);
2267 bdrv_unref(child_bs);
2268}
2269
2270void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
2271{
Kevin Wolf779020c2015-10-13 14:09:44 +02002272 if (child == NULL) {
2273 return;
2274 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002275
2276 if (child->bs->inherits_from == parent) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002277 BdrvChild *c;
2278
2279 /* Remove inherits_from only when the last reference between parent and
2280 * child->bs goes away. */
2281 QLIST_FOREACH(c, &parent->children, next) {
2282 if (c != child && c->bs == child->bs) {
2283 break;
2284 }
2285 }
2286 if (c == NULL) {
2287 child->bs->inherits_from = NULL;
2288 }
Kevin Wolf33a60402015-06-15 13:51:04 +02002289 }
2290
Kevin Wolff21d96d2016-03-08 13:47:46 +01002291 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02002292}
2293
Kevin Wolf5c8cab42016-02-24 15:13:35 +01002294
2295static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
2296{
2297 BdrvChild *c;
2298 QLIST_FOREACH(c, &bs->parents, next_parent) {
2299 if (c->role->change_media) {
2300 c->role->change_media(c, load);
2301 }
2302 }
2303}
2304
Alberto Garcia0065c452018-10-31 18:16:37 +02002305/* Return true if you can reach parent going through child->inherits_from
2306 * recursively. If parent or child are NULL, return false */
2307static bool bdrv_inherits_from_recursive(BlockDriverState *child,
2308 BlockDriverState *parent)
2309{
2310 while (child && child != parent) {
2311 child = child->inherits_from;
2312 }
2313
2314 return child != NULL;
2315}
2316
Kevin Wolf5db15a52015-09-14 15:33:33 +02002317/*
2318 * Sets the backing file link of a BDS. A new reference is created; callers
2319 * which don't need their own reference any more must call bdrv_unref().
2320 */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002321void bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
2322 Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08002323{
Alberto Garcia0065c452018-10-31 18:16:37 +02002324 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
2325 bdrv_inherits_from_recursive(backing_hd, bs);
2326
Kevin Wolf5db15a52015-09-14 15:33:33 +02002327 if (backing_hd) {
2328 bdrv_ref(backing_hd);
2329 }
Fam Zheng8d24cce2014-05-23 21:29:45 +08002330
Kevin Wolf760e0062015-06-17 14:55:21 +02002331 if (bs->backing) {
Kevin Wolf5db15a52015-09-14 15:33:33 +02002332 bdrv_unref_child(bs, bs->backing);
Fam Zheng826b6ca2014-05-23 21:29:47 +08002333 }
2334
Fam Zheng8d24cce2014-05-23 21:29:45 +08002335 if (!backing_hd) {
Kevin Wolf760e0062015-06-17 14:55:21 +02002336 bs->backing = NULL;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002337 goto out;
2338 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002339
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002340 bs->backing = bdrv_attach_child(bs, backing_hd, "backing", &child_backing,
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002341 errp);
Alberto Garcia0065c452018-10-31 18:16:37 +02002342 /* If backing_hd was already part of bs's backing chain, and
2343 * inherits_from pointed recursively to bs then let's update it to
2344 * point directly to bs (else it will become NULL). */
2345 if (update_inherits_from) {
2346 backing_hd->inherits_from = bs;
2347 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002348 if (!bs->backing) {
2349 bdrv_unref(backing_hd);
2350 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08002351
Fam Zheng8d24cce2014-05-23 21:29:45 +08002352out:
Kevin Wolf3baca892014-07-16 17:48:16 +02002353 bdrv_refresh_limits(bs, NULL);
Fam Zheng8d24cce2014-05-23 21:29:45 +08002354}
2355
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002356/*
2357 * Opens the backing file for a BlockDriverState if not yet open
2358 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002359 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
2360 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2361 * itself, all options starting with "${bdref_key}." are considered part of the
2362 * BlockdevRef.
2363 *
2364 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002365 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002366int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
2367 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02002368{
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002369 char *backing_filename = g_malloc0(PATH_MAX);
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002370 char *bdref_key_dot;
2371 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02002372 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01002373 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08002374 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002375 QDict *options;
2376 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002377 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002378
Kevin Wolf760e0062015-06-17 14:55:21 +02002379 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002380 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002381 }
2382
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002383 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002384 if (parent_options == NULL) {
2385 tmp_parent_options = qdict_new();
2386 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01002387 }
2388
Paolo Bonzini9156df12012-10-18 16:49:17 +02002389 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002390
2391 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2392 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
2393 g_free(bdref_key_dot);
2394
Markus Armbruster129c7d12017-03-30 19:43:12 +02002395 /*
2396 * Caution: while qdict_get_try_str() is fine, getting non-string
2397 * types would require more care. When @parent_options come from
2398 * -blockdev or blockdev_add, its members are typed according to
2399 * the QAPI schema, but when they come from -drive, they're all
2400 * QString.
2401 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002402 reference = qdict_get_try_str(parent_options, bdref_key);
2403 if (reference || qdict_haskey(options, "file.filename")) {
Kevin Wolf1cb6f502013-04-12 20:27:07 +02002404 backing_filename[0] = '\0';
2405 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002406 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002407 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08002408 } else {
Max Reitz998c2012019-02-01 20:29:08 +01002409 if (qdict_size(options) == 0) {
2410 /* If the user specifies options that do not modify the
2411 * backing file's behavior, we might still consider it the
2412 * implicit backing file. But it's easier this way, and
2413 * just specifying some of the backing BDS's options is
2414 * only possible with -drive anyway (otherwise the QAPI
2415 * schema forces the user to specify everything). */
2416 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
2417 }
2418
Max Reitz9f074292014-11-26 17:20:26 +01002419 bdrv_get_full_backing_filename(bs, backing_filename, PATH_MAX,
2420 &local_err);
2421 if (local_err) {
2422 ret = -EINVAL;
2423 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002424 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01002425 goto free_exit;
2426 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02002427 }
2428
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002429 if (!bs->drv || !bs->drv->supports_backing) {
2430 ret = -EINVAL;
2431 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002432 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02002433 goto free_exit;
2434 }
2435
Peter Krempa6bff5972017-10-12 16:14:10 +02002436 if (!reference &&
2437 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002438 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02002439 }
2440
Max Reitz5b363932016-05-17 16:41:31 +02002441 backing_hd = bdrv_open_inherit(*backing_filename ? backing_filename : NULL,
2442 reference, options, 0, bs, &child_backing,
2443 errp);
2444 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02002445 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002446 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02002447 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002448 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002449 }
sochin.jiang5ce6bfe2017-06-26 19:04:24 +08002450 bdrv_set_aio_context(backing_hd, bdrv_get_aio_context(bs));
Kevin Wolfdf581792015-06-15 11:53:47 +02002451
Max Reitz998c2012019-02-01 20:29:08 +01002452 if (implicit_backing) {
2453 bdrv_refresh_filename(backing_hd);
2454 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
2455 backing_hd->filename);
2456 }
2457
Kevin Wolf5db15a52015-09-14 15:33:33 +02002458 /* Hook up the backing file link; drop our reference, bs owns the
2459 * backing_hd reference now */
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002460 bdrv_set_backing_hd(bs, backing_hd, &local_err);
Kevin Wolf5db15a52015-09-14 15:33:33 +02002461 bdrv_unref(backing_hd);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002462 if (local_err) {
Fam Zheng8cd1a3e2017-03-17 09:56:30 +08002463 error_propagate(errp, local_err);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01002464 ret = -EINVAL;
2465 goto free_exit;
2466 }
Peter Feinerd80ac652014-01-08 19:43:25 +00002467
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002468 qdict_del(parent_options, bdref_key);
2469
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002470free_exit:
2471 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002472 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002473 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02002474}
2475
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002476static BlockDriverState *
2477bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
2478 BlockDriverState *parent, const BdrvChildRole *child_role,
2479 bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01002480{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002481 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01002482 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01002483 char *bdref_key_dot;
2484 const char *reference;
2485
Kevin Wolfdf581792015-06-15 11:53:47 +02002486 assert(child_role != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01002487
Max Reitzda557aa2013-12-20 19:28:11 +01002488 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
2489 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
2490 g_free(bdref_key_dot);
2491
Markus Armbruster129c7d12017-03-30 19:43:12 +02002492 /*
2493 * Caution: while qdict_get_try_str() is fine, getting non-string
2494 * types would require more care. When @options come from
2495 * -blockdev or blockdev_add, its members are typed according to
2496 * the QAPI schema, but when they come from -drive, they're all
2497 * QString.
2498 */
Max Reitzda557aa2013-12-20 19:28:11 +01002499 reference = qdict_get_try_str(options, bdref_key);
2500 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002501 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01002502 error_setg(errp, "A block device must be specified for \"%s\"",
2503 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01002504 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002505 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01002506 goto done;
2507 }
2508
Max Reitz5b363932016-05-17 16:41:31 +02002509 bs = bdrv_open_inherit(filename, reference, image_options, 0,
2510 parent, child_role, errp);
2511 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02002512 goto done;
2513 }
2514
Max Reitzda557aa2013-12-20 19:28:11 +01002515done:
2516 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002517 return bs;
2518}
2519
2520/*
2521 * Opens a disk image whose options are given as BlockdevRef in another block
2522 * device's options.
2523 *
2524 * If allow_none is true, no image will be opened if filename is false and no
2525 * BlockdevRef is given. NULL will be returned, but errp remains unset.
2526 *
2527 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
2528 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
2529 * itself, all options starting with "${bdref_key}." are considered part of the
2530 * BlockdevRef.
2531 *
2532 * The BlockdevRef will be removed from the options QDict.
2533 */
2534BdrvChild *bdrv_open_child(const char *filename,
2535 QDict *options, const char *bdref_key,
2536 BlockDriverState *parent,
2537 const BdrvChildRole *child_role,
2538 bool allow_none, Error **errp)
2539{
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002540 BdrvChild *c;
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01002541 BlockDriverState *bs;
2542
2543 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_role,
2544 allow_none, errp);
2545 if (bs == NULL) {
2546 return NULL;
2547 }
2548
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002549 c = bdrv_attach_child(parent, bs, bdref_key, child_role, errp);
2550 if (!c) {
2551 bdrv_unref(bs);
2552 return NULL;
2553 }
2554
2555 return c;
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002556}
2557
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002558/* TODO Future callers may need to specify parent/child_role in order for
2559 * option inheritance to work. Existing callers use it for the root node. */
2560BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
2561{
2562 BlockDriverState *bs = NULL;
2563 Error *local_err = NULL;
2564 QObject *obj = NULL;
2565 QDict *qdict = NULL;
2566 const char *reference = NULL;
2567 Visitor *v = NULL;
2568
2569 if (ref->type == QTYPE_QSTRING) {
2570 reference = ref->u.reference;
2571 } else {
2572 BlockdevOptions *options = &ref->u.definition;
2573 assert(ref->type == QTYPE_QDICT);
2574
2575 v = qobject_output_visitor_new(&obj);
2576 visit_type_BlockdevOptions(v, NULL, &options, &local_err);
2577 if (local_err) {
2578 error_propagate(errp, local_err);
2579 goto fail;
2580 }
2581 visit_complete(v, &obj);
2582
Max Reitz7dc847e2018-02-24 16:40:29 +01002583 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002584 qdict_flatten(qdict);
2585
2586 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
2587 * compatibility with other callers) rather than what we want as the
2588 * real defaults. Apply the defaults here instead. */
2589 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
2590 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
2591 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02002592 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
2593
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002594 }
2595
2596 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, errp);
2597 obj = NULL;
2598
2599fail:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002600 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01002601 visit_free(v);
2602 return bs;
2603}
2604
Max Reitz66836182016-05-17 16:41:27 +02002605static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
2606 int flags,
2607 QDict *snapshot_options,
2608 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02002609{
2610 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002611 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02002612 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08002613 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05002614 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01002615 Error *local_err = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02002616 int ret;
2617
2618 /* if snapshot, we create a temporary backing file and open it
2619 instead of opening 'filename' directly */
2620
2621 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02002622 total_size = bdrv_getlength(bs);
2623 if (total_size < 0) {
2624 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002625 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02002626 }
Kevin Wolfb9988752014-04-03 12:09:34 +02002627
2628 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002629 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02002630 if (ret < 0) {
2631 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002632 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002633 }
2634
Max Reitzef810432014-12-02 18:32:42 +01002635 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08002636 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01002637 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002638 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08002639 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02002640 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01002641 error_prepend(errp, "Could not create temporary overlay '%s': ",
2642 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002643 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002644 }
2645
Kevin Wolf73176be2016-03-07 13:02:15 +01002646 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05002647 qdict_put_str(snapshot_options, "file.driver", "file");
2648 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
2649 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02002650
Max Reitz5b363932016-05-17 16:41:31 +02002651 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01002652 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02002653 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002654 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02002655 }
2656
Eric Blakeff6ed712017-04-27 16:58:18 -05002657 /* bdrv_append() consumes a strong reference to bs_snapshot
2658 * (i.e. it will call bdrv_unref() on it) even on error, so in
2659 * order to be able to return one, we have to increase
2660 * bs_snapshot's refcount here */
Max Reitz66836182016-05-17 16:41:27 +02002661 bdrv_ref(bs_snapshot);
Kevin Wolfb2c28322017-02-20 12:46:42 +01002662 bdrv_append(bs_snapshot, bs, &local_err);
2663 if (local_err) {
2664 error_propagate(errp, local_err);
Eric Blakeff6ed712017-04-27 16:58:18 -05002665 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01002666 goto out;
2667 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002668
2669out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002670 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02002671 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05002672 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02002673}
2674
Max Reitzda557aa2013-12-20 19:28:11 +01002675/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002676 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002677 *
2678 * options is a QDict of options to pass to the block drivers, or NULL for an
2679 * empty set of options. The reference to the QDict belongs to the block layer
2680 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002681 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01002682 *
2683 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
2684 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01002685 *
2686 * The reference parameter may be used to specify an existing block device which
2687 * should be opened. If specified, neither options nor a filename may be given,
2688 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002689 */
Max Reitz5b363932016-05-17 16:41:31 +02002690static BlockDriverState *bdrv_open_inherit(const char *filename,
2691 const char *reference,
2692 QDict *options, int flags,
2693 BlockDriverState *parent,
2694 const BdrvChildRole *child_role,
2695 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00002696{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002697 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002698 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02002699 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02002700 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03002701 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02002702 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002703 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02002704 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01002705 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02002706 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00002707
Kevin Wolff3930ed2015-04-08 13:43:47 +02002708 assert(!child_role || !flags);
2709 assert(!child_role == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01002710
Max Reitzddf56362014-02-18 18:33:06 +01002711 if (reference) {
2712 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002713 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01002714
Max Reitzddf56362014-02-18 18:33:06 +01002715 if (filename || options_non_empty) {
2716 error_setg(errp, "Cannot reference an existing block device with "
2717 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02002718 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01002719 }
2720
2721 bs = bdrv_lookup_bs(reference, reference, errp);
2722 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02002723 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01002724 }
Kevin Wolf76b22322016-04-04 17:11:13 +02002725
Max Reitzddf56362014-02-18 18:33:06 +01002726 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02002727 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01002728 }
2729
Max Reitz5b363932016-05-17 16:41:31 +02002730 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01002731
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002732 /* NULL means an empty set of options */
2733 if (options == NULL) {
2734 options = qdict_new();
2735 }
2736
Kevin Wolf145f5982015-05-08 16:15:03 +02002737 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002738 parse_json_protocol(options, &filename, &local_err);
2739 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002740 goto fail;
2741 }
2742
Kevin Wolf145f5982015-05-08 16:15:03 +02002743 bs->explicit_options = qdict_clone_shallow(options);
2744
Kevin Wolff3930ed2015-04-08 13:43:47 +02002745 if (child_role) {
Kevin Wolfbddcec32015-04-09 18:47:50 +02002746 bs->inherits_from = parent;
Kevin Wolf8e2160e2015-04-29 17:29:39 +02002747 child_role->inherit_options(&flags, options,
2748 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02002749 }
2750
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002751 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Kevin Wolf462f5bc2014-05-26 11:39:55 +02002752 if (local_err) {
2753 goto fail;
2754 }
2755
Markus Armbruster129c7d12017-03-30 19:43:12 +02002756 /*
2757 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
2758 * Caution: getting a boolean member of @options requires care.
2759 * When @options come from -blockdev or blockdev_add, members are
2760 * typed according to the QAPI schema, but when they come from
2761 * -drive, they're all QString.
2762 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03002763 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
2764 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
2765 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
2766 } else {
2767 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03002768 }
2769
2770 if (flags & BDRV_O_SNAPSHOT) {
2771 snapshot_options = qdict_new();
2772 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
2773 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03002774 /* Let bdrv_backing_options() override "read-only" */
2775 qdict_del(options, BDRV_OPT_READ_ONLY);
Alberto Garcia14499ea2016-09-15 17:53:00 +03002776 bdrv_backing_options(&flags, options, flags, options);
2777 }
2778
Kevin Wolf62392eb2015-04-24 16:38:02 +02002779 bs->open_flags = flags;
2780 bs->options = options;
2781 options = qdict_clone_shallow(options);
2782
Kevin Wolf76c591b2014-06-04 14:19:44 +02002783 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002784 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02002785 drvname = qdict_get_try_str(options, "driver");
2786 if (drvname) {
2787 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002788 if (!drv) {
2789 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002790 goto fail;
2791 }
2792 }
2793
2794 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02002795
Markus Armbruster129c7d12017-03-30 19:43:12 +02002796 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002797 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01002798 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
2799 (backing && *backing == '\0'))
2800 {
Max Reitz4f7be282018-02-24 16:40:33 +01002801 if (backing) {
2802 warn_report("Use of \"backing\": \"\" is deprecated; "
2803 "use \"backing\": null instead");
2804 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02002805 flags |= BDRV_O_NO_BACKING;
2806 qdict_del(options, "backing");
2807 }
2808
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002809 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002810 * probing, the block drivers will do their own bdrv_open_child() for the
2811 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02002812 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002813 BlockDriverState *file_bs;
2814
2815 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
2816 &child_file, true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02002817 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01002818 goto fail;
2819 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002820 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01002821 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
2822 * looking at the header to guess the image format. This works even
2823 * in cases where a guest would not see a consistent state. */
2824 file = blk_new(0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01002825 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002826 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01002827 if (local_err) {
2828 goto fail;
2829 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002830
Eric Blake46f5ac22017-04-27 16:58:17 -05002831 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002832 }
Max Reitz5469a2a2014-02-18 18:33:10 +01002833 }
2834
Kevin Wolf76c591b2014-06-04 14:19:44 +02002835 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01002836 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02002837 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02002838 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02002839 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02002840 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01002841 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02002842 /*
2843 * This option update would logically belong in bdrv_fill_options(),
2844 * but we first need to open bs->file for the probing to work, while
2845 * opening bs->file already requires the (mostly) final set of options
2846 * so that cache mode etc. can be inherited.
2847 *
2848 * Adding the driver later is somewhat ugly, but it's not an option
2849 * that would ever be inherited, so it's correct. We just need to make
2850 * sure to update both bs->options (which has the full effective
2851 * options for bs) and options (which has file.* already removed).
2852 */
Eric Blake46f5ac22017-04-27 16:58:17 -05002853 qdict_put_str(bs->options, "driver", drv->format_name);
2854 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02002855 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02002856 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02002857 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01002858 }
2859
Max Reitz53a29512015-03-19 14:53:16 -04002860 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
2861 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
2862 /* file must be NULL if a protocol BDS is about to be created
2863 * (the inverse results in an error message from bdrv_open_common()) */
2864 assert(!(flags & BDRV_O_PROTOCOL) || !file);
2865
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002866 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01002867 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002868 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02002869 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01002870 }
2871
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01002872 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002873 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01002874 file = NULL;
2875 }
2876
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002877 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02002878 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01002879 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002880 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002881 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002882 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002883 }
2884
Alberto Garcia50196d72018-09-06 12:37:03 +03002885 /* Remove all children options and references
2886 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03002887 QLIST_FOREACH(child, &bs->children, next) {
2888 char *child_key_dot;
2889 child_key_dot = g_strdup_printf("%s.", child->name);
2890 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
2891 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03002892 qdict_del(bs->explicit_options, child->name);
2893 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03002894 g_free(child_key_dot);
2895 }
2896
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002897 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01002898 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002899 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01002900 if (flags & BDRV_O_PROTOCOL) {
2901 error_setg(errp, "Block protocol '%s' doesn't support the option "
2902 "'%s'", drv->format_name, entry->key);
2903 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01002904 error_setg(errp,
2905 "Block format '%s' does not support the option '%s'",
2906 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01002907 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002908
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002909 goto close_and_fail;
2910 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002911
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01002912 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002913
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002914 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03002915 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02002916
2917 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
2918 * temporary snapshot afterwards. */
2919 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02002920 BlockDriverState *snapshot_bs;
2921 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
2922 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01002923 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02002924 if (local_err) {
2925 goto close_and_fail;
2926 }
Max Reitz5b363932016-05-17 16:41:31 +02002927 /* We are not going to return bs but the overlay on top of it
2928 * (snapshot_bs); thus, we have to drop the strong reference to bs
2929 * (which we obtained by calling bdrv_new()). bs will not be deleted,
2930 * though, because the overlay still has a reference to it. */
2931 bdrv_unref(bs);
2932 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02002933 }
2934
Max Reitz5b363932016-05-17 16:41:31 +02002935 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002936
Kevin Wolf8bfea152014-04-11 19:16:36 +02002937fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01002938 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002939 qobject_unref(snapshot_options);
2940 qobject_unref(bs->explicit_options);
2941 qobject_unref(bs->options);
2942 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002943 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03002944 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02002945 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03002946 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02002947 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01002948
Kevin Wolfb6ad4912013-03-15 10:35:04 +01002949close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02002950 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002951 qobject_unref(snapshot_options);
2952 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03002953 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02002954 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02002955}
2956
Max Reitz5b363932016-05-17 16:41:31 +02002957BlockDriverState *bdrv_open(const char *filename, const char *reference,
2958 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02002959{
Max Reitz5b363932016-05-17 16:41:31 +02002960 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitzce343772015-08-26 19:47:50 +02002961 NULL, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02002962}
2963
Jeff Codye971aa12012-09-20 15:13:19 -04002964/*
2965 * Adds a BlockDriverState to a simple queue for an atomic, transactional
2966 * reopen of multiple devices.
2967 *
2968 * bs_queue can either be an existing BlockReopenQueue that has had QSIMPLE_INIT
2969 * already performed, or alternatively may be NULL a new BlockReopenQueue will
2970 * be created and initialized. This newly created BlockReopenQueue should be
2971 * passed back in for subsequent calls that are intended to be of the same
2972 * atomic 'set'.
2973 *
2974 * bs is the BlockDriverState to add to the reopen queue.
2975 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02002976 * options contains the changed options for the associated bs
2977 * (the BlockReopenQueue takes ownership)
2978 *
Jeff Codye971aa12012-09-20 15:13:19 -04002979 * flags contains the open flags for the associated bs
2980 *
2981 * returns a pointer to bs_queue, which is either the newly allocated
2982 * bs_queue, or the existing bs_queue being used.
2983 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01002984 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04002985 */
Kevin Wolf28518102015-05-08 17:07:31 +02002986static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
2987 BlockDriverState *bs,
2988 QDict *options,
Kevin Wolf28518102015-05-08 17:07:31 +02002989 const BdrvChildRole *role,
2990 QDict *parent_options,
2991 int parent_flags)
Jeff Codye971aa12012-09-20 15:13:19 -04002992{
2993 assert(bs != NULL);
2994
2995 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02002996 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02002997 QDict *old_options, *explicit_options, *options_copy;
2998 int flags;
2999 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003000
Kevin Wolf1a63a902017-12-06 20:24:44 +01003001 /* Make sure that the caller remembered to use a drained section. This is
3002 * important to avoid graph changes between the recursive queuing here and
3003 * bdrv_reopen_multiple(). */
3004 assert(bs->quiesce_counter > 0);
3005
Jeff Codye971aa12012-09-20 15:13:19 -04003006 if (bs_queue == NULL) {
3007 bs_queue = g_new0(BlockReopenQueue, 1);
3008 QSIMPLEQ_INIT(bs_queue);
3009 }
3010
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003011 if (!options) {
3012 options = qdict_new();
3013 }
3014
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003015 /* Check if this BlockDriverState is already in the queue */
3016 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3017 if (bs == bs_entry->state.bs) {
3018 break;
3019 }
3020 }
3021
Kevin Wolf28518102015-05-08 17:07:31 +02003022 /*
3023 * Precedence of options:
3024 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003025 * 2. Retained from explicitly set options of bs
3026 * 3. Inherited from parent node
3027 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003028 */
3029
Kevin Wolf145f5982015-05-08 16:15:03 +02003030 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003031 if (bs_entry) {
3032 old_options = qdict_clone_shallow(bs_entry->state.explicit_options);
3033 } else {
3034 old_options = qdict_clone_shallow(bs->explicit_options);
3035 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003036 bdrv_join_options(bs, options, old_options);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003037 qobject_unref(old_options);
Kevin Wolf145f5982015-05-08 16:15:03 +02003038
3039 explicit_options = qdict_clone_shallow(options);
3040
Kevin Wolf28518102015-05-08 17:07:31 +02003041 /* Inherit from parent node */
3042 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003043 flags = 0;
Kevin Wolf8e2160e2015-04-29 17:29:39 +02003044 role->inherit_options(&flags, options, parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003045 } else {
3046 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003047 }
3048
3049 /* Old values are used for options that aren't set yet */
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003050 old_options = qdict_clone_shallow(bs->options);
Kevin Wolfcddff5b2015-11-16 16:43:27 +01003051 bdrv_join_options(bs, options, old_options);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003052 qobject_unref(old_options);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003053
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003054 /* We have the final set of options so let's update the flags */
3055 options_copy = qdict_clone_shallow(options);
3056 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3057 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3058 update_flags_from_options(&flags, opts);
3059 qemu_opts_del(opts);
3060 qobject_unref(options_copy);
3061
Kevin Wolffd452022017-08-03 17:02:59 +02003062 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003063 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003064 if (flags & BDRV_O_RDWR) {
3065 flags |= BDRV_O_ALLOW_RDWR;
3066 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003067
Kevin Wolf1857c972017-09-14 14:53:46 +02003068 if (!bs_entry) {
3069 bs_entry = g_new0(BlockReopenQueueEntry, 1);
3070 QSIMPLEQ_INSERT_TAIL(bs_queue, bs_entry, entry);
3071 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003072 qobject_unref(bs_entry->state.options);
3073 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003074 }
3075
3076 bs_entry->state.bs = bs;
3077 bs_entry->state.options = options;
3078 bs_entry->state.explicit_options = explicit_options;
3079 bs_entry->state.flags = flags;
3080
Kevin Wolf30450252017-07-03 17:07:35 +02003081 /* This needs to be overwritten in bdrv_reopen_prepare() */
3082 bs_entry->state.perm = UINT64_MAX;
3083 bs_entry->state.shared_perm = 0;
3084
Kevin Wolf67251a32015-04-09 18:54:04 +02003085 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003086 QDict *new_child_options;
3087 char *child_key_dot;
Kevin Wolf67251a32015-04-09 18:54:04 +02003088
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003089 /* reopen can only change the options of block devices that were
3090 * implicitly created and inherited options. For other (referenced)
3091 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003092 if (child->bs->inherits_from != bs) {
3093 continue;
3094 }
3095
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003096 child_key_dot = g_strdup_printf("%s.", child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003097 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003098 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
3099 g_free(child_key_dot);
3100
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003101 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Kevin Wolf28518102015-05-08 17:07:31 +02003102 child->role, options, flags);
Jeff Codye971aa12012-09-20 15:13:19 -04003103 }
3104
Jeff Codye971aa12012-09-20 15:13:19 -04003105 return bs_queue;
3106}
3107
Kevin Wolf28518102015-05-08 17:07:31 +02003108BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
3109 BlockDriverState *bs,
Alberto Garcia2e891722018-11-12 16:00:44 +02003110 QDict *options)
Kevin Wolf28518102015-05-08 17:07:31 +02003111{
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003112 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, NULL, 0);
Kevin Wolf28518102015-05-08 17:07:31 +02003113}
3114
Jeff Codye971aa12012-09-20 15:13:19 -04003115/*
3116 * Reopen multiple BlockDriverStates atomically & transactionally.
3117 *
3118 * The queue passed in (bs_queue) must have been built up previous
3119 * via bdrv_reopen_queue().
3120 *
3121 * Reopens all BDS specified in the queue, with the appropriate
3122 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02003123 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04003124 * data cleaned up.
3125 *
3126 * If all devices prepare successfully, then the changes are committed
3127 * to all devices.
3128 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003129 * All affected nodes must be drained between bdrv_reopen_queue() and
3130 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003131 */
Paolo Bonzini720150f2016-10-27 12:49:02 +02003132int bdrv_reopen_multiple(AioContext *ctx, BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04003133{
3134 int ret = -1;
3135 BlockReopenQueueEntry *bs_entry, *next;
3136 Error *local_err = NULL;
3137
3138 assert(bs_queue != NULL);
3139
Jeff Codye971aa12012-09-20 15:13:19 -04003140 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01003141 assert(bs_entry->state.bs->quiesce_counter > 0);
Jeff Codye971aa12012-09-20 15:13:19 -04003142 if (bdrv_reopen_prepare(&bs_entry->state, bs_queue, &local_err)) {
3143 error_propagate(errp, local_err);
3144 goto cleanup;
3145 }
3146 bs_entry->prepared = true;
3147 }
3148
3149 /* If we reach this point, we have success and just need to apply the
3150 * changes
3151 */
3152 QSIMPLEQ_FOREACH(bs_entry, bs_queue, entry) {
3153 bdrv_reopen_commit(&bs_entry->state);
3154 }
3155
3156 ret = 0;
3157
3158cleanup:
3159 QSIMPLEQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Alberto Garcia1bab38e2018-06-29 14:37:01 +03003160 if (ret) {
3161 if (bs_entry->prepared) {
3162 bdrv_reopen_abort(&bs_entry->state);
3163 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003164 qobject_unref(bs_entry->state.explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003165 qobject_unref(bs_entry->state.options);
Jeff Codye971aa12012-09-20 15:13:19 -04003166 }
3167 g_free(bs_entry);
3168 }
3169 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03003170
Jeff Codye971aa12012-09-20 15:13:19 -04003171 return ret;
3172}
3173
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003174int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
3175 Error **errp)
3176{
3177 int ret;
3178 BlockReopenQueue *queue;
3179 QDict *opts = qdict_new();
3180
3181 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
3182
3183 bdrv_subtree_drained_begin(bs);
Alberto Garcia2e891722018-11-12 16:00:44 +02003184 queue = bdrv_reopen_queue(NULL, bs, opts);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02003185 ret = bdrv_reopen_multiple(bdrv_get_aio_context(bs), queue, errp);
3186 bdrv_subtree_drained_end(bs);
3187
3188 return ret;
3189}
3190
Kevin Wolf30450252017-07-03 17:07:35 +02003191static BlockReopenQueueEntry *find_parent_in_reopen_queue(BlockReopenQueue *q,
3192 BdrvChild *c)
3193{
3194 BlockReopenQueueEntry *entry;
3195
3196 QSIMPLEQ_FOREACH(entry, q, entry) {
3197 BlockDriverState *bs = entry->state.bs;
3198 BdrvChild *child;
3199
3200 QLIST_FOREACH(child, &bs->children, next) {
3201 if (child == c) {
3202 return entry;
3203 }
3204 }
3205 }
3206
3207 return NULL;
3208}
3209
3210static void bdrv_reopen_perm(BlockReopenQueue *q, BlockDriverState *bs,
3211 uint64_t *perm, uint64_t *shared)
3212{
3213 BdrvChild *c;
3214 BlockReopenQueueEntry *parent;
3215 uint64_t cumulative_perms = 0;
3216 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
3217
3218 QLIST_FOREACH(c, &bs->parents, next_parent) {
3219 parent = find_parent_in_reopen_queue(q, c);
3220 if (!parent) {
3221 cumulative_perms |= c->perm;
3222 cumulative_shared_perms &= c->shared_perm;
3223 } else {
3224 uint64_t nperm, nshared;
3225
3226 bdrv_child_perm(parent->state.bs, bs, c, c->role, q,
3227 parent->state.perm, parent->state.shared_perm,
3228 &nperm, &nshared);
3229
3230 cumulative_perms |= nperm;
3231 cumulative_shared_perms &= nshared;
3232 }
3233 }
3234 *perm = cumulative_perms;
3235 *shared = cumulative_shared_perms;
3236}
Jeff Codye971aa12012-09-20 15:13:19 -04003237
3238/*
3239 * Prepares a BlockDriverState for reopen. All changes are staged in the
3240 * 'opaque' field of the BDRVReopenState, which is used and allocated by
3241 * the block driver layer .bdrv_reopen_prepare()
3242 *
3243 * bs is the BlockDriverState to reopen
3244 * flags are the new open flags
3245 * queue is the reopen queue
3246 *
3247 * Returns 0 on success, non-zero on error. On error errp will be set
3248 * as well.
3249 *
3250 * On failure, bdrv_reopen_abort() will be called to clean up any data.
3251 * It is the responsibility of the caller to then call the abort() or
3252 * commit() for any other BDS that have been left in a prepare() state
3253 *
3254 */
3255int bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
3256 Error **errp)
3257{
3258 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02003259 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04003260 Error *local_err = NULL;
3261 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003262 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003263 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03003264 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04003265 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01003266 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04003267
3268 assert(reopen_state != NULL);
3269 assert(reopen_state->bs->drv != NULL);
3270 drv = reopen_state->bs->drv;
3271
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003272 /* This function and each driver's bdrv_reopen_prepare() remove
3273 * entries from reopen_state->options as they are processed, so
3274 * we need to make a copy of the original QDict. */
3275 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
3276
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003277 /* Process generic block layer options */
3278 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3279 qemu_opts_absorb_qdict(opts, reopen_state->options, &local_err);
3280 if (local_err) {
3281 error_propagate(errp, local_err);
3282 ret = -EINVAL;
3283 goto error;
3284 }
3285
Alberto Garciae6d79c42018-11-12 16:00:47 +02003286 /* This was already called in bdrv_reopen_queue_child() so the flags
3287 * are up-to-date. This time we simply want to remove the options from
3288 * QemuOpts in order to indicate that they have been processed. */
3289 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02003290 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02003291 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02003292
Alberto Garcia415bbca2018-10-03 13:23:13 +03003293 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03003294 if (discard != NULL) {
3295 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
3296 error_setg(errp, "Invalid discard option");
3297 ret = -EINVAL;
3298 goto error;
3299 }
3300 }
3301
Alberto Garcia543770b2018-09-06 12:37:09 +03003302 reopen_state->detect_zeroes =
3303 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
3304 if (local_err) {
3305 error_propagate(errp, local_err);
3306 ret = -EINVAL;
3307 goto error;
3308 }
3309
Alberto Garcia57f9db92018-09-06 12:37:06 +03003310 /* All other options (including node-name and driver) must be unchanged.
3311 * Put them back into the QDict, so that they are checked at the end
3312 * of this function. */
3313 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003314
Jeff Cody3d8ce172017-04-07 16:55:30 -04003315 /* If we are to stay read-only, do not allow permission change
3316 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
3317 * not set, or if the BDS still has copy_on_read enabled */
3318 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02003319 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04003320 if (local_err) {
3321 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04003322 goto error;
3323 }
3324
Kevin Wolf30450252017-07-03 17:07:35 +02003325 /* Calculate required permissions after reopening */
3326 bdrv_reopen_perm(queue, reopen_state->bs,
3327 &reopen_state->perm, &reopen_state->shared_perm);
Jeff Codye971aa12012-09-20 15:13:19 -04003328
3329 ret = bdrv_flush(reopen_state->bs);
3330 if (ret) {
Eric Blake455b0fd2015-11-10 23:51:20 -07003331 error_setg_errno(errp, -ret, "Error flushing drive");
Jeff Codye971aa12012-09-20 15:13:19 -04003332 goto error;
3333 }
3334
3335 if (drv->bdrv_reopen_prepare) {
3336 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
3337 if (ret) {
3338 if (local_err != NULL) {
3339 error_propagate(errp, local_err);
3340 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01003341 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04003342 error_setg(errp, "failed while preparing to reopen image '%s'",
3343 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04003344 }
3345 goto error;
3346 }
3347 } else {
3348 /* It is currently mandatory to have a bdrv_reopen_prepare()
3349 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03003350 error_setg(errp, "Block format '%s' used by node '%s' "
3351 "does not support reopening files", drv->format_name,
3352 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04003353 ret = -1;
3354 goto error;
3355 }
3356
Max Reitz9ad08c42018-11-16 17:45:24 +01003357 drv_prepared = true;
3358
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003359 /* Options that are not handled are only okay if they are unchanged
3360 * compared to the old state. It is expected that some options are only
3361 * used for the initial open, but not reopen (e.g. filename) */
3362 if (qdict_size(reopen_state->options)) {
3363 const QDictEntry *entry = qdict_first(reopen_state->options);
3364
3365 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01003366 QObject *new = entry->value;
3367 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003368
Alberto Garciadb905282018-09-06 12:37:05 +03003369 /* Allow child references (child_name=node_name) as long as they
3370 * point to the current child (i.e. everything stays the same). */
3371 if (qobject_type(new) == QTYPE_QSTRING) {
3372 BdrvChild *child;
3373 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
3374 if (!strcmp(child->name, entry->key)) {
3375 break;
3376 }
3377 }
3378
3379 if (child) {
3380 const char *str = qobject_get_try_str(new);
3381 if (!strcmp(child->bs->node_name, str)) {
3382 continue; /* Found child with this name, skip option */
3383 }
3384 }
3385 }
3386
Max Reitz54fd1b02017-11-14 19:01:26 +01003387 /*
3388 * TODO: When using -drive to specify blockdev options, all values
3389 * will be strings; however, when using -blockdev, blockdev-add or
3390 * filenames using the json:{} pseudo-protocol, they will be
3391 * correctly typed.
3392 * In contrast, reopening options are (currently) always strings
3393 * (because you can only specify them through qemu-io; all other
3394 * callers do not specify any options).
3395 * Therefore, when using anything other than -drive to create a BDS,
3396 * this cannot detect non-string options as unchanged, because
3397 * qobject_is_equal() always returns false for objects of different
3398 * type. In the future, this should be remedied by correctly typing
3399 * all options. For now, this is not too big of an issue because
3400 * the user can simply omit options which cannot be changed anyway,
3401 * so they will stay unchanged.
3402 */
3403 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003404 error_setg(errp, "Cannot change the option '%s'", entry->key);
3405 ret = -EINVAL;
3406 goto error;
3407 }
3408 } while ((entry = qdict_next(reopen_state->options, entry)));
3409 }
3410
Kevin Wolf30450252017-07-03 17:07:35 +02003411 ret = bdrv_check_perm(reopen_state->bs, queue, reopen_state->perm,
3412 reopen_state->shared_perm, NULL, errp);
3413 if (ret < 0) {
3414 goto error;
3415 }
3416
Jeff Codye971aa12012-09-20 15:13:19 -04003417 ret = 0;
3418
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003419 /* Restore the original reopen_state->options QDict */
3420 qobject_unref(reopen_state->options);
3421 reopen_state->options = qobject_ref(orig_reopen_opts);
3422
Jeff Codye971aa12012-09-20 15:13:19 -04003423error:
Max Reitz9ad08c42018-11-16 17:45:24 +01003424 if (ret < 0 && drv_prepared) {
3425 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
3426 * call drv->bdrv_reopen_abort() before signaling an error
3427 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
3428 * when the respective bdrv_reopen_prepare() has failed) */
3429 if (drv->bdrv_reopen_abort) {
3430 drv->bdrv_reopen_abort(reopen_state);
3431 }
3432 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02003433 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003434 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03003435 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04003436 return ret;
3437}
3438
3439/*
3440 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
3441 * makes them final by swapping the staging BlockDriverState contents into
3442 * the active BlockDriverState contents.
3443 */
3444void bdrv_reopen_commit(BDRVReopenState *reopen_state)
3445{
3446 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003447 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03003448 BdrvChild *child;
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003449 bool old_can_write, new_can_write;
Jeff Codye971aa12012-09-20 15:13:19 -04003450
3451 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003452 bs = reopen_state->bs;
3453 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04003454 assert(drv != NULL);
3455
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003456 old_can_write =
3457 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3458
Jeff Codye971aa12012-09-20 15:13:19 -04003459 /* If there are any driver level actions to take */
3460 if (drv->bdrv_reopen_commit) {
3461 drv->bdrv_reopen_commit(reopen_state);
3462 }
3463
3464 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003465 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003466 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02003467
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003468 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03003469 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003470 bs->open_flags = reopen_state->flags;
3471 bs->read_only = !(reopen_state->flags & BDRV_O_RDWR);
Alberto Garcia543770b2018-09-06 12:37:09 +03003472 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01003473
Alberto Garcia50196d72018-09-06 12:37:03 +03003474 /* Remove child references from bs->options and bs->explicit_options.
3475 * Child options were already removed in bdrv_reopen_queue_child() */
3476 QLIST_FOREACH(child, &bs->children, next) {
3477 qdict_del(bs->explicit_options, child->name);
3478 qdict_del(bs->options, child->name);
3479 }
3480
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03003481 bdrv_refresh_limits(bs, NULL);
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003482
Kevin Wolf30450252017-07-03 17:07:35 +02003483 bdrv_set_perm(reopen_state->bs, reopen_state->perm,
3484 reopen_state->shared_perm);
3485
Vladimir Sementsov-Ogievskiycb9ff6c2017-06-28 15:05:13 +03003486 new_can_write =
3487 !bdrv_is_read_only(bs) && !(bdrv_get_flags(bs) & BDRV_O_INACTIVE);
3488 if (!old_can_write && new_can_write && drv->bdrv_reopen_bitmaps_rw) {
3489 Error *local_err = NULL;
3490 if (drv->bdrv_reopen_bitmaps_rw(bs, &local_err) < 0) {
3491 /* This is not fatal, bitmaps just left read-only, so all following
3492 * writes will fail. User can remove read-only bitmaps to unblock
3493 * writes.
3494 */
3495 error_reportf_err(local_err,
3496 "%s: Failed to make dirty bitmaps writable: ",
3497 bdrv_get_node_name(bs));
3498 }
3499 }
Jeff Codye971aa12012-09-20 15:13:19 -04003500}
3501
3502/*
3503 * Abort the reopen, and delete and free the staged changes in
3504 * reopen_state
3505 */
3506void bdrv_reopen_abort(BDRVReopenState *reopen_state)
3507{
3508 BlockDriver *drv;
3509
3510 assert(reopen_state != NULL);
3511 drv = reopen_state->bs->drv;
3512 assert(drv != NULL);
3513
3514 if (drv->bdrv_reopen_abort) {
3515 drv->bdrv_reopen_abort(reopen_state);
3516 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003517
Kevin Wolf30450252017-07-03 17:07:35 +02003518 bdrv_abort_perm_update(reopen_state->bs);
Jeff Codye971aa12012-09-20 15:13:19 -04003519}
3520
3521
Max Reitz64dff522016-01-29 16:36:10 +01003522static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00003523{
Max Reitz33384422014-06-20 21:57:33 +02003524 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003525 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02003526
Max Reitzca9bd242016-01-29 16:36:14 +01003527 assert(!bs->job);
Max Reitz30f55fb2016-05-17 16:41:32 +02003528 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03003529
Paolo Bonzinifc272912015-12-23 11:48:24 +01003530 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02003531 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08003532 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01003533
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02003534 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03003535 if (bs->drv->bdrv_close) {
3536 bs->drv->bdrv_close(bs);
3537 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003538 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00003539 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08003540
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003541 bdrv_set_backing_hd(bs, NULL, &error_abort);
3542
3543 if (bs->file != NULL) {
3544 bdrv_unref_child(bs, bs->file);
3545 bs->file = NULL;
3546 }
3547
3548 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
3549 /* TODO Remove bdrv_unref() from drivers' close function and use
3550 * bdrv_unref_child() here */
3551 if (child->bs->inherits_from == bs) {
3552 child->bs->inherits_from = NULL;
3553 }
3554 bdrv_detach_child(child);
3555 }
3556
3557 g_free(bs->opaque);
3558 bs->opaque = NULL;
3559 atomic_set(&bs->copy_on_read, 0);
3560 bs->backing_file[0] = '\0';
3561 bs->backing_format[0] = '\0';
3562 bs->total_sectors = 0;
3563 bs->encrypted = false;
3564 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003565 qobject_unref(bs->options);
3566 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003567 bs->options = NULL;
3568 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003569 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02003570 bs->full_open_options = NULL;
3571
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03003572 bdrv_release_named_dirty_bitmaps(bs);
3573 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
3574
Max Reitz33384422014-06-20 21:57:33 +02003575 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
3576 g_free(ban);
3577 }
3578 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01003579 bdrv_drained_end(bs);
bellardb3380822004-03-14 21:38:54 +00003580}
3581
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003582void bdrv_close_all(void)
3583{
Kevin Wolfb3b52992018-05-16 13:46:37 +02003584 assert(job_next(NULL) == NULL);
Kevin Wolfcd7fca92016-07-06 11:22:39 +02003585 nbd_export_close_all();
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003586
Max Reitzca9bd242016-01-29 16:36:14 +01003587 /* Drop references from requests still in flight, such as canceled block
3588 * jobs whose AIO context has not been polled yet */
3589 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02003590
Max Reitzca9bd242016-01-29 16:36:14 +01003591 blk_remove_all_bs();
3592 blockdev_close_all_bdrv_states();
3593
Kevin Wolfa1a2af02016-04-08 18:26:37 +02003594 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09003595}
3596
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003597static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003598{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03003599 GQueue *queue;
3600 GHashTable *found;
3601 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003602
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003603 if (c->role->stay_at_node) {
3604 return false;
3605 }
3606
Max Reitzec9f10f2018-06-13 20:18:15 +02003607 /* If the child @c belongs to the BDS @to, replacing the current
3608 * c->bs by @to would mean to create a loop.
3609 *
3610 * Such a case occurs when appending a BDS to a backing chain.
3611 * For instance, imagine the following chain:
3612 *
3613 * guest device -> node A -> further backing chain...
3614 *
3615 * Now we create a new BDS B which we want to put on top of this
3616 * chain, so we first attach A as its backing node:
3617 *
3618 * node B
3619 * |
3620 * v
3621 * guest device -> node A -> further backing chain...
3622 *
3623 * Finally we want to replace A by B. When doing that, we want to
3624 * replace all pointers to A by pointers to B -- except for the
3625 * pointer from B because (1) that would create a loop, and (2)
3626 * that pointer should simply stay intact:
3627 *
3628 * guest device -> node B
3629 * |
3630 * v
3631 * node A -> further backing chain...
3632 *
3633 * In general, when replacing a node A (c->bs) by a node B (@to),
3634 * if A is a child of B, that means we cannot replace A by B there
3635 * because that would create a loop. Silently detaching A from B
3636 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03003637 * place there is the most sensible choice.
3638 *
3639 * We would also create a loop in any cases where @c is only
3640 * indirectly referenced by @to. Prevent this by returning false
3641 * if @c is found (by breadth-first search) anywhere in the whole
3642 * subtree of @to.
3643 */
3644
3645 ret = true;
3646 found = g_hash_table_new(NULL, NULL);
3647 g_hash_table_add(found, to);
3648 queue = g_queue_new();
3649 g_queue_push_tail(queue, to);
3650
3651 while (!g_queue_is_empty(queue)) {
3652 BlockDriverState *v = g_queue_pop_head(queue);
3653 BdrvChild *c2;
3654
3655 QLIST_FOREACH(c2, &v->children, next) {
3656 if (c2 == c) {
3657 ret = false;
3658 break;
3659 }
3660
3661 if (g_hash_table_contains(found, c2->bs)) {
3662 continue;
3663 }
3664
3665 g_queue_push_tail(queue, c2->bs);
3666 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003667 }
3668 }
3669
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03003670 g_queue_free(queue);
3671 g_hash_table_destroy(found);
3672
3673 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003674}
3675
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003676void bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
3677 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003678{
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003679 BdrvChild *c, *next;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003680 GSList *list = NULL, *p;
3681 uint64_t old_perm, old_shared;
3682 uint64_t perm = 0, shared = BLK_PERM_ALL;
3683 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003684
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003685 assert(!atomic_read(&from->in_flight));
3686 assert(!atomic_read(&to->in_flight));
3687
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003688 /* Make sure that @from doesn't go away until we have successfully attached
3689 * all of its parents to @to. */
3690 bdrv_ref(from);
3691
3692 /* Put all parents into @list and calculate their cumulative permissions */
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003693 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
Max Reitzec9f10f2018-06-13 20:18:15 +02003694 assert(c->bs == from);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01003695 if (!should_update_child(c, to)) {
Kevin Wolf26de9432017-01-17 13:39:34 +01003696 continue;
3697 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003698 list = g_slist_prepend(list, c);
3699 perm |= c->perm;
3700 shared &= c->shared_perm;
3701 }
3702
3703 /* Check whether the required permissions can be granted on @to, ignoring
3704 * all BdrvChild in @list so that they can't block themselves. */
Kevin Wolf3121fb42017-09-14 14:42:12 +02003705 ret = bdrv_check_update_perm(to, NULL, perm, shared, list, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003706 if (ret < 0) {
3707 bdrv_abort_perm_update(to);
3708 goto out;
3709 }
3710
3711 /* Now actually perform the change. We performed the permission check for
3712 * all elements of @list at once, so set the permissions all at once at the
3713 * very end. */
3714 for (p = list; p != NULL; p = p->next) {
3715 c = p->data;
Max Reitz9bd910e2016-06-10 20:57:46 +02003716
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003717 bdrv_ref(to);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003718 bdrv_replace_child_noperm(c, to);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003719 bdrv_unref(from);
3720 }
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003721
3722 bdrv_get_cumulative_perm(to, &old_perm, &old_shared);
3723 bdrv_set_perm(to, old_perm | perm, old_shared | shared);
3724
3725out:
3726 g_slist_free(list);
3727 bdrv_unref(from);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003728}
3729
Jeff Cody8802d1f2012-02-28 15:54:06 -05003730/*
3731 * Add new bs contents at the top of an image chain while the chain is
3732 * live, while keeping required fields on the top layer.
3733 *
3734 * This will modify the BlockDriverState fields, and swap contents
3735 * between bs_new and bs_top. Both bs_new and bs_top are modified.
3736 *
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02003737 * bs_new must not be attached to a BlockBackend.
Jeff Codyf6801b82012-03-27 16:30:19 -04003738 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05003739 * This function does not create any image files.
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003740 *
3741 * bdrv_append() takes ownership of a bs_new reference and unrefs it because
3742 * that's what the callers commonly need. bs_new will be referenced by the old
3743 * parents of bs_top after bdrv_append() returns. If the caller needs to keep a
3744 * reference of its own, it must call bdrv_ref().
Jeff Cody8802d1f2012-02-28 15:54:06 -05003745 */
Kevin Wolfb2c28322017-02-20 12:46:42 +01003746void bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
3747 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05003748{
Kevin Wolfb2c28322017-02-20 12:46:42 +01003749 Error *local_err = NULL;
3750
Kevin Wolfb2c28322017-02-20 12:46:42 +01003751 bdrv_set_backing_hd(bs_new, bs_top, &local_err);
3752 if (local_err) {
3753 error_propagate(errp, local_err);
3754 goto out;
3755 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003756
Kevin Wolf5fe31c22017-03-06 16:20:51 +01003757 bdrv_replace_node(bs_top, bs_new, &local_err);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01003758 if (local_err) {
3759 error_propagate(errp, local_err);
3760 bdrv_set_backing_hd(bs_new, NULL, &error_abort);
3761 goto out;
3762 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003763
3764 /* bs_new is now referenced by its new parents, we don't need the
3765 * additional reference any more. */
Kevin Wolfb2c28322017-02-20 12:46:42 +01003766out:
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003767 bdrv_unref(bs_new);
Jeff Cody8802d1f2012-02-28 15:54:06 -05003768}
3769
Fam Zheng4f6fd342013-08-23 09:14:47 +08003770static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00003771{
Paolo Bonzini3e914652012-03-30 13:17:11 +02003772 assert(!bs->job);
Fam Zheng3718d8a2014-05-23 21:29:43 +08003773 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08003774 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02003775
Stefan Hajnoczie1b5c522013-06-27 15:32:26 +02003776 bdrv_close(bs);
3777
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01003778 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01003779 if (bs->node_name[0] != '\0') {
3780 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
3781 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01003782 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
3783
Anthony Liguori7267c092011-08-20 22:09:37 -05003784 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00003785}
3786
aliguorie97fc192009-04-21 23:11:50 +00003787/*
3788 * Run consistency checks on an image
3789 *
Kevin Wolfe076f332010-06-29 11:43:13 +02003790 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02003791 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02003792 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00003793 */
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003794static int coroutine_fn bdrv_co_check(BlockDriverState *bs,
3795 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00003796{
Max Reitz908bcd52014-08-07 22:47:55 +02003797 if (bs->drv == NULL) {
3798 return -ENOMEDIUM;
3799 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003800 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00003801 return -ENOTSUP;
3802 }
3803
Kevin Wolfe076f332010-06-29 11:43:13 +02003804 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003805 return bs->drv->bdrv_co_check(bs, res, fix);
3806}
3807
3808typedef struct CheckCo {
3809 BlockDriverState *bs;
3810 BdrvCheckResult *res;
3811 BdrvCheckMode fix;
3812 int ret;
3813} CheckCo;
3814
3815static void bdrv_check_co_entry(void *opaque)
3816{
3817 CheckCo *cco = opaque;
3818 cco->ret = bdrv_co_check(cco->bs, cco->res, cco->fix);
Kevin Wolf4720cbe2019-01-07 13:02:48 +01003819 aio_wait_kick();
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003820}
3821
3822int bdrv_check(BlockDriverState *bs,
3823 BdrvCheckResult *res, BdrvCheckMode fix)
3824{
3825 Coroutine *co;
3826 CheckCo cco = {
3827 .bs = bs,
3828 .res = res,
3829 .ret = -EINPROGRESS,
3830 .fix = fix,
3831 };
3832
3833 if (qemu_in_coroutine()) {
3834 /* Fast-path if already in coroutine context */
3835 bdrv_check_co_entry(&cco);
3836 } else {
3837 co = qemu_coroutine_create(bdrv_check_co_entry, &cco);
Kevin Wolf4720cbe2019-01-07 13:02:48 +01003838 bdrv_coroutine_enter(bs, co);
Paolo Bonzini2fd61632018-03-01 17:36:19 +01003839 BDRV_POLL_WHILE(bs, cco.ret == -EINPROGRESS);
3840 }
3841
3842 return cco.ret;
aliguorie97fc192009-04-21 23:11:50 +00003843}
3844
Kevin Wolf756e6732010-01-12 12:55:17 +01003845/*
3846 * Return values:
3847 * 0 - success
3848 * -EINVAL - backing format specified, but no file
3849 * -ENOSPC - can't update the backing file because no space is left in the
3850 * image file header
3851 * -ENOTSUP - format driver doesn't support changing the backing file
3852 */
3853int bdrv_change_backing_file(BlockDriverState *bs,
3854 const char *backing_file, const char *backing_fmt)
3855{
3856 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02003857 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01003858
Max Reitzd470ad42017-11-10 21:31:09 +01003859 if (!drv) {
3860 return -ENOMEDIUM;
3861 }
3862
Paolo Bonzini5f377792012-04-12 14:01:01 +02003863 /* Backing file format doesn't make sense without a backing file */
3864 if (backing_fmt && !backing_file) {
3865 return -EINVAL;
3866 }
3867
Kevin Wolf756e6732010-01-12 12:55:17 +01003868 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02003869 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01003870 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02003871 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01003872 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02003873
3874 if (ret == 0) {
3875 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
3876 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01003877 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3878 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02003879 }
3880 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01003881}
3882
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003883/*
3884 * Finds the image layer in the chain that has 'bs' as its backing file.
3885 *
3886 * active is the current topmost image.
3887 *
3888 * Returns NULL if bs is not found in active's image chain,
3889 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003890 *
3891 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003892 */
3893BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
3894 BlockDriverState *bs)
3895{
Kevin Wolf760e0062015-06-17 14:55:21 +02003896 while (active && bs != backing_bs(active)) {
3897 active = backing_bs(active);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003898 }
3899
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003900 return active;
3901}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003902
Jeff Cody4caf0fc2014-06-25 15:35:26 -04003903/* Given a BDS, searches for the base layer. */
3904BlockDriverState *bdrv_find_base(BlockDriverState *bs)
3905{
3906 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003907}
3908
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003909/*
3910 * Drops images above 'base' up to and including 'top', and sets the image
3911 * above 'top' to have base as its backing file.
3912 *
3913 * Requires that the overlay to 'top' is opened r/w, so that the backing file
3914 * information in 'bs' can be properly updated.
3915 *
3916 * E.g., this will convert the following chain:
3917 * bottom <- base <- intermediate <- top <- active
3918 *
3919 * to
3920 *
3921 * bottom <- base <- active
3922 *
3923 * It is allowed for bottom==base, in which case it converts:
3924 *
3925 * base <- intermediate <- top <- active
3926 *
3927 * to
3928 *
3929 * base <- active
3930 *
Jeff Cody54e26902014-06-25 15:40:10 -04003931 * If backing_file_str is non-NULL, it will be used when modifying top's
3932 * overlay image metadata.
3933 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003934 * Error conditions:
3935 * if active == top, that is considered an error
3936 *
3937 */
Kevin Wolfbde70712017-06-27 20:36:18 +02003938int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
3939 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003940{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02003941 BlockDriverState *explicit_top = top;
3942 bool update_inherits_from;
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003943 BdrvChild *c, *next;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003944 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003945 int ret = -EIO;
3946
Kevin Wolf6858eba2017-06-29 19:32:21 +02003947 bdrv_ref(top);
3948
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003949 if (!top->drv || !base->drv) {
3950 goto exit;
3951 }
3952
Kevin Wolf5db15a52015-09-14 15:33:33 +02003953 /* Make sure that base is in the backing chain of top */
3954 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003955 goto exit;
3956 }
3957
Alberto Garcia6bd858b2018-10-31 18:16:38 +02003958 /* If 'base' recursively inherits from 'top' then we should set
3959 * base->inherits_from to top->inherits_from after 'top' and all
3960 * other intermediate nodes have been dropped.
3961 * If 'top' is an implicit node (e.g. "commit_top") we should skip
3962 * it because no one inherits from it. We use explicit_top for that. */
3963 while (explicit_top && explicit_top->implicit) {
3964 explicit_top = backing_bs(explicit_top);
3965 }
3966 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
3967
Jeff Cody6ebdcee2012-09-27 13:29:12 -04003968 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02003969 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
3970 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01003971 if (!backing_file_str) {
3972 bdrv_refresh_filename(base);
3973 backing_file_str = base->filename;
3974 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003975
3976 QLIST_FOREACH_SAFE(c, &top->parents, next_parent, next) {
3977 /* Check whether we are allowed to switch c from top to base */
3978 GSList *ignore_children = g_slist_prepend(NULL, c);
3979 bdrv_check_update_perm(base, NULL, c->perm, c->shared_perm,
3980 ignore_children, &local_err);
Fam Zheng2c860e72018-03-15 11:51:57 +08003981 g_slist_free(ignore_children);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003982 if (local_err) {
3983 ret = -EPERM;
3984 error_report_err(local_err);
Kevin Wolf6858eba2017-06-29 19:32:21 +02003985 goto exit;
3986 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003987
Kevin Wolf61f09ce2017-09-19 16:22:54 +02003988 /* If so, update the backing file path in the image file */
3989 if (c->role->update_filename) {
3990 ret = c->role->update_filename(c, base, backing_file_str,
3991 &local_err);
3992 if (ret < 0) {
3993 bdrv_abort_perm_update(base);
3994 error_report_err(local_err);
3995 goto exit;
3996 }
3997 }
3998
3999 /* Do the actual switch in the in-memory graph.
4000 * Completes bdrv_check_update_perm() transaction internally. */
4001 bdrv_ref(base);
4002 bdrv_replace_child(c, base);
4003 bdrv_unref(top);
Kevin Wolf12fa4af2017-02-17 20:42:32 +01004004 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004005
Alberto Garcia6bd858b2018-10-31 18:16:38 +02004006 if (update_inherits_from) {
4007 base->inherits_from = explicit_top->inherits_from;
4008 }
4009
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004010 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004011exit:
Kevin Wolf6858eba2017-06-29 19:32:21 +02004012 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04004013 return ret;
4014}
4015
bellard83f64092006-08-01 16:21:11 +00004016/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08004017 * Length of a allocated file in bytes. Sparse files are counted by actual
4018 * allocated space. Return < 0 if error or unknown.
4019 */
4020int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
4021{
4022 BlockDriver *drv = bs->drv;
4023 if (!drv) {
4024 return -ENOMEDIUM;
4025 }
4026 if (drv->bdrv_get_allocated_file_size) {
4027 return drv->bdrv_get_allocated_file_size(bs);
4028 }
4029 if (bs->file) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004030 return bdrv_get_allocated_file_size(bs->file->bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08004031 }
4032 return -ENOTSUP;
4033}
4034
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01004035/*
4036 * bdrv_measure:
4037 * @drv: Format driver
4038 * @opts: Creation options for new image
4039 * @in_bs: Existing image containing data for new image (may be NULL)
4040 * @errp: Error object
4041 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
4042 * or NULL on error
4043 *
4044 * Calculate file size required to create a new image.
4045 *
4046 * If @in_bs is given then space for allocated clusters and zero clusters
4047 * from that image are included in the calculation. If @opts contains a
4048 * backing file that is shared by @in_bs then backing clusters may be omitted
4049 * from the calculation.
4050 *
4051 * If @in_bs is NULL then the calculation includes no allocated clusters
4052 * unless a preallocation option is given in @opts.
4053 *
4054 * Note that @in_bs may use a different BlockDriver from @drv.
4055 *
4056 * If an error occurs the @errp pointer is set.
4057 */
4058BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
4059 BlockDriverState *in_bs, Error **errp)
4060{
4061 if (!drv->bdrv_measure) {
4062 error_setg(errp, "Block driver '%s' does not support size measurement",
4063 drv->format_name);
4064 return NULL;
4065 }
4066
4067 return drv->bdrv_measure(opts, in_bs, errp);
4068}
4069
Fam Zheng4a1d5e12011-07-12 19:56:39 +08004070/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004071 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00004072 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004073int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00004074{
4075 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004076
bellard83f64092006-08-01 16:21:11 +00004077 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00004078 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01004079
Kevin Wolfb94a2612013-10-29 12:18:58 +01004080 if (drv->has_variable_length) {
4081 int ret = refresh_total_sectors(bs, bs->total_sectors);
4082 if (ret < 0) {
4083 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01004084 }
bellard83f64092006-08-01 16:21:11 +00004085 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004086 return bs->total_sectors;
4087}
4088
4089/**
4090 * Return length in bytes on success, -errno on error.
4091 * The length is always a multiple of BDRV_SECTOR_SIZE.
4092 */
4093int64_t bdrv_getlength(BlockDriverState *bs)
4094{
4095 int64_t ret = bdrv_nb_sectors(bs);
4096
Fam Zheng4a9c9ea2015-05-15 16:36:05 +08004097 ret = ret > INT64_MAX / BDRV_SECTOR_SIZE ? -EFBIG : ret;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004098 return ret < 0 ? ret : ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00004099}
4100
bellard19cb3732006-08-19 11:45:59 +00004101/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00004102void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00004103{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02004104 int64_t nb_sectors = bdrv_nb_sectors(bs);
4105
4106 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00004107}
bellardcf989512004-02-16 21:56:36 +00004108
Eric Blake54115412016-06-23 16:37:26 -06004109bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00004110{
4111 return bs->sg;
4112}
4113
Eric Blake54115412016-06-23 16:37:26 -06004114bool bdrv_is_encrypted(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00004115{
Kevin Wolf760e0062015-06-17 14:55:21 +02004116 if (bs->backing && bs->backing->bs->encrypted) {
Eric Blake54115412016-06-23 16:37:26 -06004117 return true;
Kevin Wolf760e0062015-06-17 14:55:21 +02004118 }
bellardea2384d2004-08-01 21:59:26 +00004119 return bs->encrypted;
4120}
4121
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02004122const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00004123{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02004124 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00004125}
4126
Stefan Hajnocziada42402014-08-27 12:08:55 +01004127static int qsort_strcmp(const void *a, const void *b)
4128{
Max Reitzceff5bd2016-10-12 22:49:05 +02004129 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01004130}
4131
ths5fafdf22007-09-16 21:08:06 +00004132void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
bellardea2384d2004-08-01 21:59:26 +00004133 void *opaque)
4134{
4135 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04004136 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01004137 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04004138 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00004139
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01004140 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04004141 if (drv->format_name) {
4142 bool found = false;
4143 int i = count;
4144 while (formats && i && !found) {
4145 found = !strcmp(formats[--i], drv->format_name);
4146 }
4147
4148 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02004149 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04004150 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04004151 }
4152 }
bellardea2384d2004-08-01 21:59:26 +00004153 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01004154
Max Reitzeb0df692016-10-12 22:49:06 +02004155 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
4156 const char *format_name = block_driver_modules[i].format_name;
4157
4158 if (format_name) {
4159 bool found = false;
4160 int j = count;
4161
4162 while (formats && j && !found) {
4163 found = !strcmp(formats[--j], format_name);
4164 }
4165
4166 if (!found) {
4167 formats = g_renew(const char *, formats, count + 1);
4168 formats[count++] = format_name;
4169 }
4170 }
4171 }
4172
Stefan Hajnocziada42402014-08-27 12:08:55 +01004173 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
4174
4175 for (i = 0; i < count; i++) {
4176 it(opaque, formats[i]);
4177 }
4178
Jeff Codye855e4f2014-04-28 18:29:54 -04004179 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00004180}
4181
Benoît Canetdc364f42014-01-23 21:31:32 +01004182/* This function is to find a node in the bs graph */
4183BlockDriverState *bdrv_find_node(const char *node_name)
4184{
4185 BlockDriverState *bs;
4186
4187 assert(node_name);
4188
4189 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4190 if (!strcmp(node_name, bs->node_name)) {
4191 return bs;
4192 }
4193 }
4194 return NULL;
4195}
4196
Benoît Canetc13163f2014-01-23 21:31:34 +01004197/* Put this QMP function here so it can access the static graph_bdrv_states. */
Alberto Garciad5a8ee62015-04-17 14:52:43 +03004198BlockDeviceInfoList *bdrv_named_nodes_list(Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01004199{
4200 BlockDeviceInfoList *list, *entry;
4201 BlockDriverState *bs;
4202
4203 list = NULL;
4204 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Kevin Wolfc83f9fb2016-03-03 11:37:48 +01004205 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03004206 if (!info) {
4207 qapi_free_BlockDeviceInfoList(list);
4208 return NULL;
4209 }
Benoît Canetc13163f2014-01-23 21:31:34 +01004210 entry = g_malloc0(sizeof(*entry));
Alberto Garciad5a8ee62015-04-17 14:52:43 +03004211 entry->value = info;
Benoît Canetc13163f2014-01-23 21:31:34 +01004212 entry->next = list;
4213 list = entry;
4214 }
4215
4216 return list;
4217}
4218
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03004219#define QAPI_LIST_ADD(list, element) do { \
4220 typeof(list) _tmp = g_new(typeof(*(list)), 1); \
4221 _tmp->value = (element); \
4222 _tmp->next = (list); \
4223 (list) = _tmp; \
4224} while (0)
4225
4226typedef struct XDbgBlockGraphConstructor {
4227 XDbgBlockGraph *graph;
4228 GHashTable *graph_nodes;
4229} XDbgBlockGraphConstructor;
4230
4231static XDbgBlockGraphConstructor *xdbg_graph_new(void)
4232{
4233 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
4234
4235 gr->graph = g_new0(XDbgBlockGraph, 1);
4236 gr->graph_nodes = g_hash_table_new(NULL, NULL);
4237
4238 return gr;
4239}
4240
4241static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
4242{
4243 XDbgBlockGraph *graph = gr->graph;
4244
4245 g_hash_table_destroy(gr->graph_nodes);
4246 g_free(gr);
4247
4248 return graph;
4249}
4250
4251static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
4252{
4253 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
4254
4255 if (ret != 0) {
4256 return ret;
4257 }
4258
4259 /*
4260 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
4261 * answer of g_hash_table_lookup.
4262 */
4263 ret = g_hash_table_size(gr->graph_nodes) + 1;
4264 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
4265
4266 return ret;
4267}
4268
4269static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
4270 XDbgBlockGraphNodeType type, const char *name)
4271{
4272 XDbgBlockGraphNode *n;
4273
4274 n = g_new0(XDbgBlockGraphNode, 1);
4275
4276 n->id = xdbg_graph_node_num(gr, node);
4277 n->type = type;
4278 n->name = g_strdup(name);
4279
4280 QAPI_LIST_ADD(gr->graph->nodes, n);
4281}
4282
4283static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
4284 const BdrvChild *child)
4285{
4286 typedef struct {
4287 unsigned int flag;
4288 BlockPermission num;
4289 } PermissionMap;
4290
4291 static const PermissionMap permissions[] = {
4292 { BLK_PERM_CONSISTENT_READ, BLOCK_PERMISSION_CONSISTENT_READ },
4293 { BLK_PERM_WRITE, BLOCK_PERMISSION_WRITE },
4294 { BLK_PERM_WRITE_UNCHANGED, BLOCK_PERMISSION_WRITE_UNCHANGED },
4295 { BLK_PERM_RESIZE, BLOCK_PERMISSION_RESIZE },
4296 { BLK_PERM_GRAPH_MOD, BLOCK_PERMISSION_GRAPH_MOD },
4297 { 0, 0 }
4298 };
4299 const PermissionMap *p;
4300 XDbgBlockGraphEdge *edge;
4301
4302 QEMU_BUILD_BUG_ON(1UL << (ARRAY_SIZE(permissions) - 1) != BLK_PERM_ALL + 1);
4303
4304 edge = g_new0(XDbgBlockGraphEdge, 1);
4305
4306 edge->parent = xdbg_graph_node_num(gr, parent);
4307 edge->child = xdbg_graph_node_num(gr, child->bs);
4308 edge->name = g_strdup(child->name);
4309
4310 for (p = permissions; p->flag; p++) {
4311 if (p->flag & child->perm) {
4312 QAPI_LIST_ADD(edge->perm, p->num);
4313 }
4314 if (p->flag & child->shared_perm) {
4315 QAPI_LIST_ADD(edge->shared_perm, p->num);
4316 }
4317 }
4318
4319 QAPI_LIST_ADD(gr->graph->edges, edge);
4320}
4321
4322
4323XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
4324{
4325 BlockBackend *blk;
4326 BlockJob *job;
4327 BlockDriverState *bs;
4328 BdrvChild *child;
4329 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
4330
4331 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
4332 char *allocated_name = NULL;
4333 const char *name = blk_name(blk);
4334
4335 if (!*name) {
4336 name = allocated_name = blk_get_attached_dev_id(blk);
4337 }
4338 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
4339 name);
4340 g_free(allocated_name);
4341 if (blk_root(blk)) {
4342 xdbg_graph_add_edge(gr, blk, blk_root(blk));
4343 }
4344 }
4345
4346 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
4347 GSList *el;
4348
4349 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
4350 job->job.id);
4351 for (el = job->nodes; el; el = el->next) {
4352 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
4353 }
4354 }
4355
4356 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
4357 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
4358 bs->node_name);
4359 QLIST_FOREACH(child, &bs->children, next) {
4360 xdbg_graph_add_edge(gr, bs, child);
4361 }
4362 }
4363
4364 return xdbg_graph_finalize(gr);
4365}
4366
Benoît Canet12d3ba82014-01-23 21:31:35 +01004367BlockDriverState *bdrv_lookup_bs(const char *device,
4368 const char *node_name,
4369 Error **errp)
4370{
Markus Armbruster7f06d472014-10-07 13:59:12 +02004371 BlockBackend *blk;
4372 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004373
Benoît Canet12d3ba82014-01-23 21:31:35 +01004374 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02004375 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01004376
Markus Armbruster7f06d472014-10-07 13:59:12 +02004377 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02004378 bs = blk_bs(blk);
4379 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02004380 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02004381 }
4382
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02004383 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004384 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01004385 }
4386
Benoît Canetdd67fa52014-02-12 17:15:06 +01004387 if (node_name) {
4388 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01004389
Benoît Canetdd67fa52014-02-12 17:15:06 +01004390 if (bs) {
4391 return bs;
4392 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01004393 }
4394
Benoît Canetdd67fa52014-02-12 17:15:06 +01004395 error_setg(errp, "Cannot find device=%s nor node_name=%s",
4396 device ? device : "",
4397 node_name ? node_name : "");
4398 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01004399}
4400
Jeff Cody5a6684d2014-06-25 15:40:09 -04004401/* If 'base' is in the same chain as 'top', return true. Otherwise,
4402 * return false. If either argument is NULL, return false. */
4403bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
4404{
4405 while (top && top != base) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004406 top = backing_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04004407 }
4408
4409 return top != NULL;
4410}
4411
Fam Zheng04df7652014-10-31 11:32:54 +08004412BlockDriverState *bdrv_next_node(BlockDriverState *bs)
4413{
4414 if (!bs) {
4415 return QTAILQ_FIRST(&graph_bdrv_states);
4416 }
4417 return QTAILQ_NEXT(bs, node_list);
4418}
4419
Kevin Wolf0f122642018-03-28 18:29:18 +02004420BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
4421{
4422 if (!bs) {
4423 return QTAILQ_FIRST(&all_bdrv_states);
4424 }
4425 return QTAILQ_NEXT(bs, bs_list);
4426}
4427
Fam Zheng20a9e772014-10-31 11:32:55 +08004428const char *bdrv_get_node_name(const BlockDriverState *bs)
4429{
4430 return bs->node_name;
4431}
4432
Kevin Wolf1f0c4612016-03-22 18:38:44 +01004433const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004434{
4435 BdrvChild *c;
4436 const char *name;
4437
4438 /* If multiple parents have a name, just pick the first one. */
4439 QLIST_FOREACH(c, &bs->parents, next_parent) {
4440 if (c->role->get_name) {
4441 name = c->role->get_name(c);
4442 if (name && *name) {
4443 return name;
4444 }
4445 }
4446 }
4447
4448 return NULL;
4449}
4450
Markus Armbruster7f06d472014-10-07 13:59:12 +02004451/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02004452const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00004453{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004454 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00004455}
4456
Alberto Garcia9b2aa842015-04-08 12:29:18 +03004457/* This can be used to identify nodes that might not have a device
4458 * name associated. Since node and device names live in the same
4459 * namespace, the result is unambiguous. The exception is if both are
4460 * absent, then this returns an empty (non-null) string. */
4461const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
4462{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01004463 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03004464}
4465
Markus Armbrusterc8433282012-06-05 16:49:24 +02004466int bdrv_get_flags(BlockDriverState *bs)
4467{
4468 return bs->open_flags;
4469}
4470
Peter Lieven3ac21622013-06-28 12:47:42 +02004471int bdrv_has_zero_init_1(BlockDriverState *bs)
4472{
4473 return 1;
4474}
4475
Kevin Wolff2feebb2010-04-14 17:30:35 +02004476int bdrv_has_zero_init(BlockDriverState *bs)
4477{
Max Reitzd470ad42017-11-10 21:31:09 +01004478 if (!bs->drv) {
4479 return 0;
4480 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02004481
Paolo Bonzini11212d82013-09-04 19:00:27 +02004482 /* If BS is a copy on write image, it is initialized to
4483 the contents of the base image, which may not be zeroes. */
Kevin Wolf760e0062015-06-17 14:55:21 +02004484 if (bs->backing) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02004485 return 0;
4486 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02004487 if (bs->drv->bdrv_has_zero_init) {
4488 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02004489 }
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004490 if (bs->file && bs->drv->is_filter) {
4491 return bdrv_has_zero_init(bs->file->bs);
4492 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02004493
Peter Lieven3ac21622013-06-28 12:47:42 +02004494 /* safe default */
4495 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02004496}
4497
Peter Lieven4ce78692013-10-24 12:06:54 +02004498bool bdrv_unallocated_blocks_are_zero(BlockDriverState *bs)
4499{
4500 BlockDriverInfo bdi;
4501
Kevin Wolf760e0062015-06-17 14:55:21 +02004502 if (bs->backing) {
Peter Lieven4ce78692013-10-24 12:06:54 +02004503 return false;
4504 }
4505
4506 if (bdrv_get_info(bs, &bdi) == 0) {
4507 return bdi.unallocated_blocks_are_zero;
4508 }
4509
4510 return false;
4511}
4512
4513bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
4514{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03004515 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02004516 return false;
4517 }
4518
Eric Blakee24d8132018-01-26 13:34:39 -06004519 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02004520}
4521
ths5fafdf22007-09-16 21:08:06 +00004522void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00004523 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00004524{
Kevin Wolf3574c602011-10-26 11:02:11 +02004525 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00004526}
4527
bellardfaea38e2006-08-05 21:31:00 +00004528int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
4529{
4530 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004531 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
4532 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00004533 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004534 }
4535 if (!drv->bdrv_get_info) {
4536 if (bs->file && drv->is_filter) {
4537 return bdrv_get_info(bs->file->bs, bdi);
4538 }
bellardfaea38e2006-08-05 21:31:00 +00004539 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03004540 }
bellardfaea38e2006-08-05 21:31:00 +00004541 memset(bdi, 0, sizeof(*bdi));
4542 return drv->bdrv_get_info(bs, bdi);
4543}
4544
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03004545ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
4546 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02004547{
4548 BlockDriver *drv = bs->drv;
4549 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03004550 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02004551 }
4552 return NULL;
4553}
4554
Eric Blakea31939e2015-11-18 01:52:54 -07004555void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004556{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02004557 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004558 return;
4559 }
4560
Kevin Wolfbf736fe2013-06-05 15:17:55 +02004561 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01004562}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004563
Kevin Wolf41c695c2012-12-06 14:32:58 +01004564int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
4565 const char *tag)
4566{
4567 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004568 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004569 }
4570
4571 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
4572 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
4573 }
4574
4575 return -ENOTSUP;
4576}
4577
Fam Zheng4cc70e92013-11-20 10:01:54 +08004578int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
4579{
4580 while (bs && bs->drv && !bs->drv->bdrv_debug_remove_breakpoint) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004581 bs = bs->file ? bs->file->bs : NULL;
Fam Zheng4cc70e92013-11-20 10:01:54 +08004582 }
4583
4584 if (bs && bs->drv && bs->drv->bdrv_debug_remove_breakpoint) {
4585 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
4586 }
4587
4588 return -ENOTSUP;
4589}
4590
Kevin Wolf41c695c2012-12-06 14:32:58 +01004591int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
4592{
Max Reitz938789e2014-03-10 23:44:08 +01004593 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004594 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004595 }
4596
4597 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
4598 return bs->drv->bdrv_debug_resume(bs, tag);
4599 }
4600
4601 return -ENOTSUP;
4602}
4603
4604bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
4605{
4606 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004607 bs = bs->file ? bs->file->bs : NULL;
Kevin Wolf41c695c2012-12-06 14:32:58 +01004608 }
4609
4610 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
4611 return bs->drv->bdrv_debug_is_suspended(bs, tag);
4612 }
4613
4614 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01004615}
4616
Jeff Codyb1b1d782012-10-16 15:49:09 -04004617/* backing_file can either be relative, or absolute, or a protocol. If it is
4618 * relative, it must be relative to the chain. So, passing in bs->filename
4619 * from a BDS as backing_file should not be done, as that may be relative to
4620 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004621BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
4622 const char *backing_file)
4623{
Jeff Codyb1b1d782012-10-16 15:49:09 -04004624 char *filename_full = NULL;
4625 char *backing_file_full = NULL;
4626 char *filename_tmp = NULL;
4627 int is_protocol = 0;
4628 BlockDriverState *curr_bs = NULL;
4629 BlockDriverState *retval = NULL;
Jeff Cody418661e2017-01-25 20:08:20 -05004630 Error *local_error = NULL;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004631
4632 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004633 return NULL;
4634 }
4635
Jeff Codyb1b1d782012-10-16 15:49:09 -04004636 filename_full = g_malloc(PATH_MAX);
4637 backing_file_full = g_malloc(PATH_MAX);
4638 filename_tmp = g_malloc(PATH_MAX);
4639
4640 is_protocol = path_has_protocol(backing_file);
4641
Max Reitzf30c66b2019-02-01 20:29:05 +01004642 /* This will recursively refresh everything in the backing chain */
4643 bdrv_refresh_filename(bs);
4644
Kevin Wolf760e0062015-06-17 14:55:21 +02004645 for (curr_bs = bs; curr_bs->backing; curr_bs = curr_bs->backing->bs) {
Jeff Codyb1b1d782012-10-16 15:49:09 -04004646
4647 /* If either of the filename paths is actually a protocol, then
4648 * compare unmodified paths; otherwise make paths relative */
4649 if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
4650 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004651 retval = curr_bs->backing->bs;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004652 break;
4653 }
Jeff Cody418661e2017-01-25 20:08:20 -05004654 /* Also check against the full backing filename for the image */
4655 bdrv_get_full_backing_filename(curr_bs, backing_file_full, PATH_MAX,
4656 &local_error);
4657 if (local_error == NULL) {
4658 if (strcmp(backing_file, backing_file_full) == 0) {
4659 retval = curr_bs->backing->bs;
4660 break;
4661 }
4662 } else {
4663 error_free(local_error);
4664 local_error = NULL;
4665 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004666 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04004667 /* If not an absolute filename path, make it relative to the current
4668 * image's filename path */
Max Reitz009b03a2019-02-01 20:29:13 +01004669 path_combine_deprecated(filename_tmp, PATH_MAX, curr_bs->filename,
4670 backing_file);
Jeff Codyb1b1d782012-10-16 15:49:09 -04004671
4672 /* We are going to compare absolute pathnames */
4673 if (!realpath(filename_tmp, filename_full)) {
4674 continue;
4675 }
4676
4677 /* We need to make sure the backing filename we are comparing against
4678 * is relative to the current image filename (or absolute) */
Max Reitz009b03a2019-02-01 20:29:13 +01004679 path_combine_deprecated(filename_tmp, PATH_MAX, curr_bs->filename,
4680 curr_bs->backing_file);
Jeff Codyb1b1d782012-10-16 15:49:09 -04004681
4682 if (!realpath(filename_tmp, backing_file_full)) {
4683 continue;
4684 }
4685
4686 if (strcmp(backing_file_full, filename_full) == 0) {
Kevin Wolf760e0062015-06-17 14:55:21 +02004687 retval = curr_bs->backing->bs;
Jeff Codyb1b1d782012-10-16 15:49:09 -04004688 break;
4689 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004690 }
4691 }
4692
Jeff Codyb1b1d782012-10-16 15:49:09 -04004693 g_free(filename_full);
4694 g_free(backing_file_full);
4695 g_free(filename_tmp);
4696 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00004697}
4698
bellardea2384d2004-08-01 21:59:26 +00004699void bdrv_init(void)
4700{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05004701 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00004702}
pbrookce1a14d2006-08-07 02:38:06 +00004703
Markus Armbrustereb852012009-10-27 18:41:44 +01004704void bdrv_init_with_whitelist(void)
4705{
4706 use_bdrv_whitelist = 1;
4707 bdrv_init();
4708}
4709
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004710static void coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs,
4711 Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06004712{
Kevin Wolf4417ab72017-05-04 18:52:37 +02004713 BdrvChild *child, *parent;
Kevin Wolf9c5e6592017-05-04 18:52:40 +02004714 uint64_t perm, shared_perm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004715 Error *local_err = NULL;
4716 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04004717 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004718
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004719 if (!bs->drv) {
4720 return;
Anthony Liguori0f154232011-11-14 15:09:45 -06004721 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004722
Kevin Wolf04c01a52016-01-13 15:56:06 +01004723 if (!(bs->open_flags & BDRV_O_INACTIVE)) {
Alexey Kardashevskiy7ea2d262014-10-09 13:50:46 +11004724 return;
4725 }
Alexey Kardashevskiy7ea2d262014-10-09 13:50:46 +11004726
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03004727 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004728 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004729 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004730 error_propagate(errp, local_err);
4731 return;
4732 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004733 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004734
Kevin Wolfdafe0962017-11-16 13:00:01 +01004735 /*
4736 * Update permissions, they may differ for inactive nodes.
4737 *
4738 * Note that the required permissions of inactive images are always a
4739 * subset of the permissions required after activating the image. This
4740 * allows us to just get the permissions upfront without restricting
4741 * drv->bdrv_invalidate_cache().
4742 *
4743 * It also means that in error cases, we don't have to try and revert to
4744 * the old permissions (which is an operation that could fail, too). We can
4745 * just keep the extended permissions for the next time that an activation
4746 * of the image is tried.
4747 */
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03004748 bs->open_flags &= ~BDRV_O_INACTIVE;
Kevin Wolfdafe0962017-11-16 13:00:01 +01004749 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4750 ret = bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &local_err);
4751 if (ret < 0) {
4752 bs->open_flags |= BDRV_O_INACTIVE;
4753 error_propagate(errp, local_err);
4754 return;
4755 }
4756 bdrv_set_perm(bs, perm, shared_perm);
4757
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004758 if (bs->drv->bdrv_co_invalidate_cache) {
4759 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08004760 if (local_err) {
4761 bs->open_flags |= BDRV_O_INACTIVE;
4762 error_propagate(errp, local_err);
4763 return;
4764 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01004765 }
4766
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04004767 for (bm = bdrv_dirty_bitmap_next(bs, NULL); bm;
4768 bm = bdrv_dirty_bitmap_next(bs, bm))
4769 {
4770 bdrv_dirty_bitmap_set_migration(bm, false);
4771 }
4772
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004773 ret = refresh_total_sectors(bs, bs->total_sectors);
4774 if (ret < 0) {
Kevin Wolf04c01a52016-01-13 15:56:06 +01004775 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004776 error_setg_errno(errp, -ret, "Could not refresh total sector count");
4777 return;
4778 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02004779
4780 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4781 if (parent->role->activate) {
4782 parent->role->activate(parent, &local_err);
4783 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01004784 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02004785 error_propagate(errp, local_err);
4786 return;
4787 }
4788 }
4789 }
Anthony Liguori0f154232011-11-14 15:09:45 -06004790}
4791
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004792typedef struct InvalidateCacheCo {
4793 BlockDriverState *bs;
4794 Error **errp;
4795 bool done;
4796} InvalidateCacheCo;
4797
4798static void coroutine_fn bdrv_invalidate_cache_co_entry(void *opaque)
4799{
4800 InvalidateCacheCo *ico = opaque;
4801 bdrv_co_invalidate_cache(ico->bs, ico->errp);
4802 ico->done = true;
Kevin Wolf4720cbe2019-01-07 13:02:48 +01004803 aio_wait_kick();
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004804}
4805
4806void bdrv_invalidate_cache(BlockDriverState *bs, Error **errp)
4807{
4808 Coroutine *co;
4809 InvalidateCacheCo ico = {
4810 .bs = bs,
4811 .done = false,
4812 .errp = errp
4813 };
4814
4815 if (qemu_in_coroutine()) {
4816 /* Fast-path if already in coroutine context */
4817 bdrv_invalidate_cache_co_entry(&ico);
4818 } else {
4819 co = qemu_coroutine_create(bdrv_invalidate_cache_co_entry, &ico);
Kevin Wolf4720cbe2019-01-07 13:02:48 +01004820 bdrv_coroutine_enter(bs, co);
Paolo Bonzini2b148f32018-03-01 17:36:18 +01004821 BDRV_POLL_WHILE(bs, !ico.done);
4822 }
4823}
4824
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004825void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06004826{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01004827 BlockDriverState *bs;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004828 Error *local_err = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02004829 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06004830
Kevin Wolf88be7b42016-05-20 18:49:07 +02004831 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004832 AioContext *aio_context = bdrv_get_aio_context(bs);
4833
4834 aio_context_acquire(aio_context);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004835 bdrv_invalidate_cache(bs, &local_err);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004836 aio_context_release(aio_context);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004837 if (local_err) {
4838 error_propagate(errp, local_err);
Max Reitz5e003f12017-11-10 18:25:45 +01004839 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01004840 return;
4841 }
Anthony Liguori0f154232011-11-14 15:09:45 -06004842 }
4843}
4844
Kevin Wolf9e372712018-11-23 15:11:14 +01004845static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
4846{
4847 BdrvChild *parent;
4848
4849 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4850 if (parent->role->parent_is_bds) {
4851 BlockDriverState *parent_bs = parent->opaque;
4852 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
4853 return true;
4854 }
4855 }
4856 }
4857
4858 return false;
4859}
4860
4861static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004862{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02004863 BdrvChild *child, *parent;
Kevin Wolf9e372712018-11-23 15:11:14 +01004864 uint64_t perm, shared_perm;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004865 int ret;
4866
Max Reitzd470ad42017-11-10 21:31:09 +01004867 if (!bs->drv) {
4868 return -ENOMEDIUM;
4869 }
4870
Kevin Wolf9e372712018-11-23 15:11:14 +01004871 /* Make sure that we don't inactivate a child before its parent.
4872 * It will be covered by recursion from the yet active parent. */
4873 if (bdrv_has_bds_parent(bs, true)) {
4874 return 0;
4875 }
4876
4877 assert(!(bs->open_flags & BDRV_O_INACTIVE));
4878
4879 /* Inactivate this node */
4880 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004881 ret = bs->drv->bdrv_inactivate(bs);
4882 if (ret < 0) {
4883 return ret;
4884 }
4885 }
4886
Kevin Wolf9e372712018-11-23 15:11:14 +01004887 QLIST_FOREACH(parent, &bs->parents, next_parent) {
4888 if (parent->role->inactivate) {
4889 ret = parent->role->inactivate(parent);
4890 if (ret < 0) {
4891 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02004892 }
4893 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004894 }
Kevin Wolf38701b62017-05-04 18:52:39 +02004895
Kevin Wolf9e372712018-11-23 15:11:14 +01004896 bs->open_flags |= BDRV_O_INACTIVE;
4897
4898 /* Update permissions, they may differ for inactive nodes */
4899 bdrv_get_cumulative_perm(bs, &perm, &shared_perm);
4900 bdrv_check_perm(bs, NULL, perm, shared_perm, NULL, &error_abort);
4901 bdrv_set_perm(bs, perm, shared_perm);
4902
4903
4904 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02004905 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01004906 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02004907 if (ret < 0) {
4908 return ret;
4909 }
4910 }
4911
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004912 return 0;
4913}
4914
4915int bdrv_inactivate_all(void)
4916{
Max Reitz79720af2016-03-16 19:54:44 +01004917 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02004918 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004919 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004920 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004921
Kevin Wolf88be7b42016-05-20 18:49:07 +02004922 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004923 AioContext *aio_context = bdrv_get_aio_context(bs);
4924
4925 if (!g_slist_find(aio_ctxs, aio_context)) {
4926 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
4927 aio_context_acquire(aio_context);
4928 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004929 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004930
Kevin Wolf9e372712018-11-23 15:11:14 +01004931 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
4932 /* Nodes with BDS parents are covered by recursion from the last
4933 * parent that gets inactivated. Don't inactivate them a second
4934 * time if that has already happened. */
4935 if (bdrv_has_bds_parent(bs, false)) {
4936 continue;
4937 }
4938 ret = bdrv_inactivate_recurse(bs);
4939 if (ret < 0) {
4940 bdrv_next_cleanup(&it);
4941 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004942 }
4943 }
4944
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004945out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004946 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
4947 AioContext *aio_context = ctx->data;
4948 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004949 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00004950 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08004951
4952 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01004953}
4954
Kevin Wolff9f05dc2011-07-15 13:50:26 +02004955/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00004956/* removable device support */
4957
4958/**
4959 * Return TRUE if the media is present
4960 */
Max Reitze031f752015-10-19 17:53:11 +02004961bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00004962{
4963 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02004964 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02004965
Max Reitze031f752015-10-19 17:53:11 +02004966 if (!drv) {
4967 return false;
4968 }
Max Reitz28d7a782015-10-19 17:53:13 +02004969 if (drv->bdrv_is_inserted) {
4970 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02004971 }
Max Reitz28d7a782015-10-19 17:53:13 +02004972 QLIST_FOREACH(child, &bs->children, next) {
4973 if (!bdrv_is_inserted(child->bs)) {
4974 return false;
4975 }
4976 }
4977 return true;
bellard19cb3732006-08-19 11:45:59 +00004978}
4979
4980/**
bellard19cb3732006-08-19 11:45:59 +00004981 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
4982 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02004983void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00004984{
4985 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00004986
Markus Armbruster822e1cd2011-07-20 18:23:42 +02004987 if (drv && drv->bdrv_eject) {
4988 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00004989 }
bellard19cb3732006-08-19 11:45:59 +00004990}
4991
bellard19cb3732006-08-19 11:45:59 +00004992/**
4993 * Lock or unlock the media (if it is locked, the user won't be able
4994 * to eject it manually).
4995 */
Markus Armbruster025e8492011-09-06 18:58:47 +02004996void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00004997{
4998 BlockDriver *drv = bs->drv;
4999
Markus Armbruster025e8492011-09-06 18:58:47 +02005000 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01005001
Markus Armbruster025e8492011-09-06 18:58:47 +02005002 if (drv && drv->bdrv_lock_medium) {
5003 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00005004 }
5005}
ths985a03b2007-12-24 16:10:43 +00005006
Fam Zheng9fcb0252013-08-23 09:14:46 +08005007/* Get a reference to bs */
5008void bdrv_ref(BlockDriverState *bs)
5009{
5010 bs->refcnt++;
5011}
5012
5013/* Release a previously grabbed reference to bs.
5014 * If after releasing, reference count is zero, the BlockDriverState is
5015 * deleted. */
5016void bdrv_unref(BlockDriverState *bs)
5017{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04005018 if (!bs) {
5019 return;
5020 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08005021 assert(bs->refcnt > 0);
5022 if (--bs->refcnt == 0) {
5023 bdrv_delete(bs);
5024 }
5025}
5026
Fam Zhengfbe40ff2014-05-23 21:29:42 +08005027struct BdrvOpBlocker {
5028 Error *reason;
5029 QLIST_ENTRY(BdrvOpBlocker) list;
5030};
5031
5032bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
5033{
5034 BdrvOpBlocker *blocker;
5035 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5036 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
5037 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02005038 error_propagate_prepend(errp, error_copy(blocker->reason),
5039 "Node '%s' is busy: ",
5040 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08005041 return true;
5042 }
5043 return false;
5044}
5045
5046void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
5047{
5048 BdrvOpBlocker *blocker;
5049 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5050
Markus Armbruster5839e532014-08-19 10:31:08 +02005051 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08005052 blocker->reason = reason;
5053 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
5054}
5055
5056void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
5057{
5058 BdrvOpBlocker *blocker, *next;
5059 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
5060 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
5061 if (blocker->reason == reason) {
5062 QLIST_REMOVE(blocker, list);
5063 g_free(blocker);
5064 }
5065 }
5066}
5067
5068void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
5069{
5070 int i;
5071 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5072 bdrv_op_block(bs, i, reason);
5073 }
5074}
5075
5076void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
5077{
5078 int i;
5079 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5080 bdrv_op_unblock(bs, i, reason);
5081 }
5082}
5083
5084bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
5085{
5086 int i;
5087
5088 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
5089 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
5090 return false;
5091 }
5092 }
5093 return true;
5094}
5095
Luiz Capitulinod92ada22012-11-30 10:52:09 -02005096void bdrv_img_create(const char *filename, const char *fmt,
5097 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08005098 char *options, uint64_t img_size, int flags, bool quiet,
5099 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005100{
Chunyan Liu83d05212014-06-05 17:20:51 +08005101 QemuOptsList *create_opts = NULL;
5102 QemuOpts *opts = NULL;
5103 const char *backing_fmt, *backing_file;
5104 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005105 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02005106 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005107 int ret = 0;
5108
5109 /* Find driver and parse its options */
5110 drv = bdrv_find_format(fmt);
5111 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02005112 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02005113 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005114 }
5115
Max Reitzb65a5e12015-02-05 13:58:12 -05005116 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005117 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02005118 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005119 }
5120
Max Reitzc6149722014-12-02 18:32:45 +01005121 if (!drv->create_opts) {
5122 error_setg(errp, "Format driver '%s' does not support image creation",
5123 drv->format_name);
5124 return;
5125 }
5126
5127 if (!proto_drv->create_opts) {
5128 error_setg(errp, "Protocol driver '%s' does not support image creation",
5129 proto_drv->format_name);
5130 return;
5131 }
5132
Chunyan Liuc282e1f2014-06-05 17:21:11 +08005133 create_opts = qemu_opts_append(create_opts, drv->create_opts);
5134 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005135
5136 /* Create parameter list with default values */
Chunyan Liu83d05212014-06-05 17:20:51 +08005137 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01005138 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005139
5140 /* Parse -o options */
5141 if (options) {
Markus Armbrusterdc523cd342015-02-12 18:37:11 +01005142 qemu_opts_do_parse(opts, options, NULL, &local_err);
5143 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005144 goto out;
5145 }
5146 }
5147
5148 if (base_filename) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01005149 qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename, &local_err);
Markus Armbruster6be41942015-02-12 17:49:02 +01005150 if (local_err) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02005151 error_setg(errp, "Backing file not supported for file format '%s'",
5152 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005153 goto out;
5154 }
5155 }
5156
5157 if (base_fmt) {
Markus Armbrusterf43e47d2015-02-12 17:52:20 +01005158 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, &local_err);
Markus Armbruster6be41942015-02-12 17:49:02 +01005159 if (local_err) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02005160 error_setg(errp, "Backing file format not supported for file "
5161 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005162 goto out;
5163 }
5164 }
5165
Chunyan Liu83d05212014-06-05 17:20:51 +08005166 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
5167 if (backing_file) {
5168 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02005169 error_setg(errp, "Error: Trying to create an image with the "
5170 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01005171 goto out;
5172 }
5173 }
5174
Chunyan Liu83d05212014-06-05 17:20:51 +08005175 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005176
John Snow6e6e55f2017-07-17 20:34:22 -04005177 /* The size for the image must always be specified, unless we have a backing
5178 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05005179 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04005180 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
5181 BlockDriverState *bs;
5182 char *full_backing = g_new0(char, PATH_MAX);
5183 int back_flags;
5184 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02005185
John Snow6e6e55f2017-07-17 20:34:22 -04005186 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
5187 full_backing, PATH_MAX,
5188 &local_err);
5189 if (local_err) {
Max Reitz29168012014-11-26 17:20:27 +01005190 g_free(full_backing);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005191 goto out;
5192 }
John Snow6e6e55f2017-07-17 20:34:22 -04005193
5194 /* backing files always opened read-only */
5195 back_flags = flags;
5196 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
5197
Fam Zhengcc954f02017-12-15 16:04:45 +08005198 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04005199 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04005200 qdict_put_str(backing_options, "driver", backing_fmt);
5201 }
Fam Zhengcc954f02017-12-15 16:04:45 +08005202 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04005203
5204 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
5205 &local_err);
5206 g_free(full_backing);
5207 if (!bs && size != -1) {
5208 /* Couldn't open BS, but we have a size, so it's nonfatal */
5209 warn_reportf_err(local_err,
5210 "Could not verify backing image. "
5211 "This may become an error in future versions.\n");
5212 local_err = NULL;
5213 } else if (!bs) {
5214 /* Couldn't open bs, do not have size */
5215 error_append_hint(&local_err,
5216 "Could not open backing image to determine size.\n");
5217 goto out;
5218 } else {
5219 if (size == -1) {
5220 /* Opened BS, have no size */
5221 size = bdrv_getlength(bs);
5222 if (size < 0) {
5223 error_setg_errno(errp, -size, "Could not get size of '%s'",
5224 backing_file);
5225 bdrv_unref(bs);
5226 goto out;
5227 }
5228 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
5229 }
5230 bdrv_unref(bs);
5231 }
5232 } /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
5233
5234 if (size == -1) {
5235 error_setg(errp, "Image creation needs a size parameter");
5236 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005237 }
5238
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01005239 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02005240 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08005241 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01005242 puts("");
5243 }
Chunyan Liu83d05212014-06-05 17:20:51 +08005244
Chunyan Liuc282e1f2014-06-05 17:21:11 +08005245 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08005246
Max Reitzcc84d902013-09-06 17:14:26 +02005247 if (ret == -EFBIG) {
5248 /* This is generally a better message than whatever the driver would
5249 * deliver (especially because of the cluster_size_hint), since that
5250 * is most probably not much different from "image too large". */
5251 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08005252 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02005253 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005254 }
Max Reitzcc84d902013-09-06 17:14:26 +02005255 error_setg(errp, "The image size is too large for file format '%s'"
5256 "%s", fmt, cluster_size_hint);
5257 error_free(local_err);
5258 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005259 }
5260
5261out:
Chunyan Liu83d05212014-06-05 17:20:51 +08005262 qemu_opts_del(opts);
5263 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03005264 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01005265}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01005266
5267AioContext *bdrv_get_aio_context(BlockDriverState *bs)
5268{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00005269 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005270}
5271
Fam Zheng052a7572017-04-10 20:09:25 +08005272void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
5273{
5274 aio_co_enter(bdrv_get_aio_context(bs), co);
5275}
5276
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005277static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
5278{
5279 QLIST_REMOVE(ban, list);
5280 g_free(ban);
5281}
5282
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005283void bdrv_detach_aio_context(BlockDriverState *bs)
5284{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005285 BdrvAioNotifier *baf, *baf_tmp;
Max Reitzb97511c2016-05-17 13:38:04 +02005286 BdrvChild *child;
Max Reitz33384422014-06-20 21:57:33 +02005287
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005288 if (!bs->drv) {
5289 return;
5290 }
5291
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005292 assert(!bs->walking_aio_notifiers);
5293 bs->walking_aio_notifiers = true;
5294 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
5295 if (baf->deleted) {
5296 bdrv_do_remove_aio_context_notifier(baf);
5297 } else {
5298 baf->detach_aio_context(baf->opaque);
5299 }
Max Reitz33384422014-06-20 21:57:33 +02005300 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005301 /* Never mind iterating again to check for ->deleted. bdrv_close() will
5302 * remove remaining aio notifiers if we aren't called again.
5303 */
5304 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02005305
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005306 if (bs->drv->bdrv_detach_aio_context) {
5307 bs->drv->bdrv_detach_aio_context(bs);
5308 }
Max Reitzb97511c2016-05-17 13:38:04 +02005309 QLIST_FOREACH(child, &bs->children, next) {
5310 bdrv_detach_aio_context(child->bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005311 }
5312
Kevin Wolfe64f25f2019-02-08 16:51:17 +01005313 if (bs->quiesce_counter) {
5314 aio_enable_external(bs->aio_context);
5315 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005316 bs->aio_context = NULL;
5317}
5318
5319void bdrv_attach_aio_context(BlockDriverState *bs,
5320 AioContext *new_context)
5321{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005322 BdrvAioNotifier *ban, *ban_tmp;
Max Reitzb97511c2016-05-17 13:38:04 +02005323 BdrvChild *child;
Max Reitz33384422014-06-20 21:57:33 +02005324
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005325 if (!bs->drv) {
5326 return;
5327 }
5328
Kevin Wolfe64f25f2019-02-08 16:51:17 +01005329 if (bs->quiesce_counter) {
5330 aio_disable_external(new_context);
5331 }
5332
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005333 bs->aio_context = new_context;
5334
Max Reitzb97511c2016-05-17 13:38:04 +02005335 QLIST_FOREACH(child, &bs->children, next) {
5336 bdrv_attach_aio_context(child->bs, new_context);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005337 }
5338 if (bs->drv->bdrv_attach_aio_context) {
5339 bs->drv->bdrv_attach_aio_context(bs, new_context);
5340 }
Max Reitz33384422014-06-20 21:57:33 +02005341
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005342 assert(!bs->walking_aio_notifiers);
5343 bs->walking_aio_notifiers = true;
5344 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
5345 if (ban->deleted) {
5346 bdrv_do_remove_aio_context_notifier(ban);
5347 } else {
5348 ban->attached_aio_context(new_context, ban->opaque);
5349 }
Max Reitz33384422014-06-20 21:57:33 +02005350 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005351 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005352}
5353
Kevin Wolfd70d5952019-02-08 16:53:37 +01005354/* The caller must own the AioContext lock for the old AioContext of bs, but it
5355 * must not own the AioContext lock for new_context (unless new_context is
5356 * the same as the current context of bs). */
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005357void bdrv_set_aio_context(BlockDriverState *bs, AioContext *new_context)
5358{
Kevin Wolfd70d5952019-02-08 16:53:37 +01005359 if (bdrv_get_aio_context(bs) == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03005360 return;
5361 }
5362
Kevin Wolfd70d5952019-02-08 16:53:37 +01005363 bdrv_drained_begin(bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005364 bdrv_detach_aio_context(bs);
5365
5366 /* This function executes in the old AioContext so acquire the new one in
5367 * case it runs in a different thread.
5368 */
5369 aio_context_acquire(new_context);
5370 bdrv_attach_aio_context(bs, new_context);
Kevin Wolfd70d5952019-02-08 16:53:37 +01005371 bdrv_drained_end(bs);
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02005372 aio_context_release(new_context);
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01005373}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02005374
Max Reitz33384422014-06-20 21:57:33 +02005375void bdrv_add_aio_context_notifier(BlockDriverState *bs,
5376 void (*attached_aio_context)(AioContext *new_context, void *opaque),
5377 void (*detach_aio_context)(void *opaque), void *opaque)
5378{
5379 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
5380 *ban = (BdrvAioNotifier){
5381 .attached_aio_context = attached_aio_context,
5382 .detach_aio_context = detach_aio_context,
5383 .opaque = opaque
5384 };
5385
5386 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
5387}
5388
5389void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
5390 void (*attached_aio_context)(AioContext *,
5391 void *),
5392 void (*detach_aio_context)(void *),
5393 void *opaque)
5394{
5395 BdrvAioNotifier *ban, *ban_next;
5396
5397 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5398 if (ban->attached_aio_context == attached_aio_context &&
5399 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005400 ban->opaque == opaque &&
5401 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02005402 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01005403 if (bs->walking_aio_notifiers) {
5404 ban->deleted = true;
5405 } else {
5406 bdrv_do_remove_aio_context_notifier(ban);
5407 }
Max Reitz33384422014-06-20 21:57:33 +02005408 return;
5409 }
5410 }
5411
5412 abort();
5413}
5414
Max Reitz77485432014-10-27 11:12:50 +01005415int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02005416 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
5417 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02005418{
Max Reitzd470ad42017-11-10 21:31:09 +01005419 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02005420 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01005421 return -ENOMEDIUM;
5422 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08005423 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02005424 error_setg(errp, "Block driver '%s' does not support option amendment",
5425 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02005426 return -ENOTSUP;
5427 }
Max Reitzd1402b52018-05-09 23:00:18 +02005428 return bs->drv->bdrv_amend_options(bs, opts, status_cb, cb_opaque, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02005429}
Benoît Canetf6186f42013-10-02 14:33:48 +02005430
Benoît Canetb5042a32014-03-03 19:11:34 +01005431/* This function will be called by the bdrv_recurse_is_first_non_filter method
5432 * of block filter and by bdrv_is_first_non_filter.
5433 * It is used to test if the given bs is the candidate or recurse more in the
5434 * node graph.
Benoît Canet212a5a82014-01-23 21:31:36 +01005435 */
Benoît Canet212a5a82014-01-23 21:31:36 +01005436bool bdrv_recurse_is_first_non_filter(BlockDriverState *bs,
5437 BlockDriverState *candidate)
Benoît Canetf6186f42013-10-02 14:33:48 +02005438{
Benoît Canetb5042a32014-03-03 19:11:34 +01005439 /* return false if basic checks fails */
5440 if (!bs || !bs->drv) {
5441 return false;
5442 }
5443
5444 /* the code reached a non block filter driver -> check if the bs is
5445 * the same as the candidate. It's the recursion termination condition.
5446 */
5447 if (!bs->drv->is_filter) {
5448 return bs == candidate;
5449 }
5450 /* Down this path the driver is a block filter driver */
5451
5452 /* If the block filter recursion method is defined use it to recurse down
5453 * the node graph.
5454 */
5455 if (bs->drv->bdrv_recurse_is_first_non_filter) {
Benoît Canet212a5a82014-01-23 21:31:36 +01005456 return bs->drv->bdrv_recurse_is_first_non_filter(bs, candidate);
5457 }
5458
Benoît Canetb5042a32014-03-03 19:11:34 +01005459 /* the driver is a block filter but don't allow to recurse -> return false
5460 */
5461 return false;
Benoît Canet212a5a82014-01-23 21:31:36 +01005462}
5463
5464/* This function checks if the candidate is the first non filter bs down it's
5465 * bs chain. Since we don't have pointers to parents it explore all bs chains
5466 * from the top. Some filters can choose not to pass down the recursion.
5467 */
5468bool bdrv_is_first_non_filter(BlockDriverState *candidate)
5469{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01005470 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02005471 BdrvNextIterator it;
Benoît Canet212a5a82014-01-23 21:31:36 +01005472
5473 /* walk down the bs forest recursively */
Kevin Wolf88be7b42016-05-20 18:49:07 +02005474 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Benoît Canet212a5a82014-01-23 21:31:36 +01005475 bool perm;
5476
Benoît Canetb5042a32014-03-03 19:11:34 +01005477 /* try to recurse in this top level bs */
Kevin Wolfe6dc8a12014-02-04 11:45:31 +01005478 perm = bdrv_recurse_is_first_non_filter(bs, candidate);
Benoît Canet212a5a82014-01-23 21:31:36 +01005479
5480 /* candidate is the first non filter */
5481 if (perm) {
Max Reitz5e003f12017-11-10 18:25:45 +01005482 bdrv_next_cleanup(&it);
Benoît Canet212a5a82014-01-23 21:31:36 +01005483 return true;
5484 }
5485 }
5486
5487 return false;
Benoît Canetf6186f42013-10-02 14:33:48 +02005488}
Benoît Canet09158f02014-06-27 18:25:25 +02005489
Wen Congyange12f3782015-07-17 10:12:22 +08005490BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
5491 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02005492{
5493 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005494 AioContext *aio_context;
5495
Benoît Canet09158f02014-06-27 18:25:25 +02005496 if (!to_replace_bs) {
5497 error_setg(errp, "Node name '%s' not found", node_name);
5498 return NULL;
5499 }
5500
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005501 aio_context = bdrv_get_aio_context(to_replace_bs);
5502 aio_context_acquire(aio_context);
5503
Benoît Canet09158f02014-06-27 18:25:25 +02005504 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005505 to_replace_bs = NULL;
5506 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02005507 }
5508
5509 /* We don't want arbitrary node of the BDS chain to be replaced only the top
5510 * most non filter in order to prevent data corruption.
5511 * Another benefit is that this tests exclude backing files which are
5512 * blocked by the backing blockers.
5513 */
Wen Congyange12f3782015-07-17 10:12:22 +08005514 if (!bdrv_recurse_is_first_non_filter(parent_bs, to_replace_bs)) {
Benoît Canet09158f02014-06-27 18:25:25 +02005515 error_setg(errp, "Only top most non filter can be replaced");
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005516 to_replace_bs = NULL;
5517 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02005518 }
5519
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01005520out:
5521 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02005522 return to_replace_bs;
5523}
Ming Lei448ad912014-07-04 18:04:33 +08005524
Max Reitz91af7012014-07-18 20:24:56 +02005525static bool append_open_options(QDict *d, BlockDriverState *bs)
5526{
5527 const QDictEntry *entry;
Kevin Wolf9e700c12015-04-24 15:20:28 +02005528 QemuOptDesc *desc;
Max Reitz91af7012014-07-18 20:24:56 +02005529 bool found_any = false;
5530
5531 for (entry = qdict_first(bs->options); entry;
5532 entry = qdict_next(bs->options, entry))
5533 {
Alberto Garciaa600aad2018-09-06 12:37:04 +03005534 /* Exclude all non-driver-specific options */
Kevin Wolf9e700c12015-04-24 15:20:28 +02005535 for (desc = bdrv_runtime_opts.desc; desc->name; desc++) {
5536 if (!strcmp(qdict_entry_key(entry), desc->name)) {
5537 break;
5538 }
5539 }
5540 if (desc->name) {
5541 continue;
5542 }
5543
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02005544 qdict_put_obj(d, qdict_entry_key(entry),
5545 qobject_ref(qdict_entry_value(entry)));
Kevin Wolf9e700c12015-04-24 15:20:28 +02005546 found_any = true;
Max Reitz91af7012014-07-18 20:24:56 +02005547 }
5548
5549 return found_any;
5550}
5551
Max Reitz90993622019-02-01 20:29:09 +01005552/* Note: This function may return false positives; it may return true
5553 * even if opening the backing file specified by bs's image header
5554 * would result in exactly bs->backing. */
5555static bool bdrv_backing_overridden(BlockDriverState *bs)
5556{
5557 if (bs->backing) {
5558 return strcmp(bs->auto_backing_file,
5559 bs->backing->bs->filename);
5560 } else {
5561 /* No backing BDS, so if the image header reports any backing
5562 * file, it must have been suppressed */
5563 return bs->auto_backing_file[0] != '\0';
5564 }
5565}
5566
Max Reitz91af7012014-07-18 20:24:56 +02005567/* Updates the following BDS fields:
5568 * - exact_filename: A filename which may be used for opening a block device
5569 * which (mostly) equals the given BDS (even without any
5570 * other options; so reading and writing must return the same
5571 * results, but caching etc. may be different)
5572 * - full_open_options: Options which, when given when opening a block device
5573 * (without a filename), result in a BDS (mostly)
5574 * equalling the given one
5575 * - filename: If exact_filename is set, it is copied here. Otherwise,
5576 * full_open_options is converted to a JSON object, prefixed with
5577 * "json:" (for use through the JSON pseudo protocol) and put here.
5578 */
5579void bdrv_refresh_filename(BlockDriverState *bs)
5580{
5581 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01005582 BdrvChild *child;
Max Reitz91af7012014-07-18 20:24:56 +02005583 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01005584 bool backing_overridden;
Max Reitz91af7012014-07-18 20:24:56 +02005585
5586 if (!drv) {
5587 return;
5588 }
5589
Max Reitze24518e2019-02-01 20:29:06 +01005590 /* This BDS's file name may depend on any of its children's file names, so
5591 * refresh those first */
5592 QLIST_FOREACH(child, &bs->children, next) {
5593 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02005594 }
5595
Max Reitzbb808d52019-02-01 20:29:07 +01005596 if (bs->implicit) {
5597 /* For implicit nodes, just copy everything from the single child */
5598 child = QLIST_FIRST(&bs->children);
5599 assert(QLIST_NEXT(child, next) == NULL);
5600
5601 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
5602 child->bs->exact_filename);
5603 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
5604
5605 bs->full_open_options = qobject_ref(child->bs->full_open_options);
5606
5607 return;
5608 }
5609
Max Reitz90993622019-02-01 20:29:09 +01005610 backing_overridden = bdrv_backing_overridden(bs);
5611
5612 if (bs->open_flags & BDRV_O_NO_IO) {
5613 /* Without I/O, the backing file does not change anything.
5614 * Therefore, in such a case (primarily qemu-img), we can
5615 * pretend the backing file has not been overridden even if
5616 * it technically has been. */
5617 backing_overridden = false;
5618 }
5619
Max Reitz91af7012014-07-18 20:24:56 +02005620 if (drv->bdrv_refresh_filename) {
5621 /* Obsolete information is of no use here, so drop the old file name
5622 * information before refreshing it */
5623 bs->exact_filename[0] = '\0';
5624 if (bs->full_open_options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005625 qobject_unref(bs->full_open_options);
Max Reitz91af7012014-07-18 20:24:56 +02005626 bs->full_open_options = NULL;
5627 }
5628
Kevin Wolf4cdd01d2015-04-27 13:50:54 +02005629 opts = qdict_new();
5630 append_open_options(opts, bs);
5631 drv->bdrv_refresh_filename(bs, opts);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005632 qobject_unref(opts);
Max Reitz91af7012014-07-18 20:24:56 +02005633 } else if (bs->file) {
5634 /* Try to reconstruct valid information from the underlying file */
5635 bool has_open_options;
5636
5637 bs->exact_filename[0] = '\0';
5638 if (bs->full_open_options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005639 qobject_unref(bs->full_open_options);
Max Reitz91af7012014-07-18 20:24:56 +02005640 bs->full_open_options = NULL;
5641 }
5642
5643 opts = qdict_new();
5644 has_open_options = append_open_options(opts, bs);
Max Reitz90993622019-02-01 20:29:09 +01005645 has_open_options |= backing_overridden;
Max Reitz91af7012014-07-18 20:24:56 +02005646
5647 /* If no specific options have been given for this BDS, the filename of
5648 * the underlying file should suffice for this one as well */
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005649 if (bs->file->bs->exact_filename[0] && !has_open_options) {
5650 strcpy(bs->exact_filename, bs->file->bs->exact_filename);
Max Reitz91af7012014-07-18 20:24:56 +02005651 }
5652 /* Reconstructing the full options QDict is simple for most format block
5653 * drivers, as long as the full options are known for the underlying
5654 * file BDS. The full options QDict of that file BDS should somehow
5655 * contain a representation of the filename, therefore the following
5656 * suffices without querying the (exact_)filename of this BDS. */
Max Reitz90993622019-02-01 20:29:09 +01005657 if (bs->file->bs->full_open_options &&
5658 (!bs->backing || bs->backing->bs->full_open_options))
5659 {
Eric Blake46f5ac22017-04-27 16:58:17 -05005660 qdict_put_str(opts, "driver", drv->format_name);
Marc-André Lureauf5a74a52018-04-19 17:01:44 +02005661 qdict_put(opts, "file",
5662 qobject_ref(bs->file->bs->full_open_options));
Max Reitz91af7012014-07-18 20:24:56 +02005663
Max Reitz90993622019-02-01 20:29:09 +01005664 if (bs->backing) {
5665 qdict_put(opts, "backing",
5666 qobject_ref(bs->backing->bs->full_open_options));
5667 } else if (backing_overridden) {
5668 qdict_put_null(opts, "backing");
5669 }
5670
Max Reitz91af7012014-07-18 20:24:56 +02005671 bs->full_open_options = opts;
5672 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005673 qobject_unref(opts);
Max Reitz91af7012014-07-18 20:24:56 +02005674 }
5675 } else if (!bs->full_open_options && qdict_size(bs->options)) {
5676 /* There is no underlying file BDS (at least referenced by BDS.file),
5677 * so the full options QDict should be equal to the options given
5678 * specifically for this block device when it was opened (plus the
5679 * driver specification).
5680 * Because those options don't change, there is no need to update
5681 * full_open_options when it's already set. */
5682
5683 opts = qdict_new();
5684 append_open_options(opts, bs);
Eric Blake46f5ac22017-04-27 16:58:17 -05005685 qdict_put_str(opts, "driver", drv->format_name);
Max Reitz91af7012014-07-18 20:24:56 +02005686
5687 if (bs->exact_filename[0]) {
5688 /* This may not work for all block protocol drivers (some may
5689 * require this filename to be parsed), but we have to find some
5690 * default solution here, so just include it. If some block driver
5691 * does not support pure options without any filename at all or
5692 * needs some special format of the options QDict, it needs to
5693 * implement the driver-specific bdrv_refresh_filename() function.
5694 */
Eric Blake46f5ac22017-04-27 16:58:17 -05005695 qdict_put_str(opts, "filename", bs->exact_filename);
Max Reitz91af7012014-07-18 20:24:56 +02005696 }
5697
5698 bs->full_open_options = opts;
5699 }
5700
5701 if (bs->exact_filename[0]) {
5702 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
5703 } else if (bs->full_open_options) {
5704 QString *json = qobject_to_json(QOBJECT(bs->full_open_options));
5705 snprintf(bs->filename, sizeof(bs->filename), "json:%s",
5706 qstring_get_str(json));
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005707 qobject_unref(json);
Max Reitz91af7012014-07-18 20:24:56 +02005708 }
5709}
Wen Congyange06018a2016-05-10 15:36:37 +08005710
5711/*
5712 * Hot add/remove a BDS's child. So the user can take a child offline when
5713 * it is broken and take a new child online
5714 */
5715void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
5716 Error **errp)
5717{
5718
5719 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
5720 error_setg(errp, "The node %s does not support adding a child",
5721 bdrv_get_device_or_node_name(parent_bs));
5722 return;
5723 }
5724
5725 if (!QLIST_EMPTY(&child_bs->parents)) {
5726 error_setg(errp, "The node %s already has a parent",
5727 child_bs->node_name);
5728 return;
5729 }
5730
5731 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
5732}
5733
5734void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
5735{
5736 BdrvChild *tmp;
5737
5738 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
5739 error_setg(errp, "The node %s does not support removing a child",
5740 bdrv_get_device_or_node_name(parent_bs));
5741 return;
5742 }
5743
5744 QLIST_FOREACH(tmp, &parent_bs->children, next) {
5745 if (tmp == child) {
5746 break;
5747 }
5748 }
5749
5750 if (!tmp) {
5751 error_setg(errp, "The node %s does not have a child named %s",
5752 bdrv_get_device_or_node_name(parent_bs),
5753 bdrv_get_device_or_node_name(child->bs));
5754 return;
5755 }
5756
5757 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
5758}
Vladimir Sementsov-Ogievskiy67b792f2017-06-28 15:05:21 +03005759
5760bool bdrv_can_store_new_dirty_bitmap(BlockDriverState *bs, const char *name,
5761 uint32_t granularity, Error **errp)
5762{
5763 BlockDriver *drv = bs->drv;
5764
5765 if (!drv) {
5766 error_setg_errno(errp, ENOMEDIUM,
5767 "Can't store persistent bitmaps to %s",
5768 bdrv_get_device_or_node_name(bs));
5769 return false;
5770 }
5771
5772 if (!drv->bdrv_can_store_new_dirty_bitmap) {
5773 error_setg_errno(errp, ENOTSUP,
5774 "Can't store persistent bitmaps to %s",
5775 bdrv_get_device_or_node_name(bs));
5776 return false;
5777 }
5778
5779 return drv->bdrv_can_store_new_dirty_bitmap(bs, name, granularity, errp);
5780}