blob: a2a4a0dd8044a2f946d1761d105d1437332f38ee [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
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03005 * Copyright (c) 2020 Virtuozzo International GmbH.
ths5fafdf22007-09-16 21:08:06 +00006 *
bellardfc01f7e2003-06-30 10:03:06 +00007 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 */
Markus Armbrustere688df62018-02-01 12:18:31 +010025
Peter Maydelld38ea872016-01-29 17:50:05 +000026#include "qemu/osdep.h"
Daniel P. Berrange0ab8ed12017-01-25 16:14:15 +000027#include "block/trace.h"
Paolo Bonzini737e1502012-12-17 18:19:44 +010028#include "block/block_int.h"
29#include "block/blockjob.h"
Max Reitz0c9b70d2020-10-27 20:05:42 +010030#include "block/fuse.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020031#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020032#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010033#include "qemu/error-report.h"
Marc-André Lureau5e5733e2019-08-29 22:34:43 +040034#include "block/module_block.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020035#include "qemu/main-loop.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010036#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010037#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010038#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010039#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010040#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010041#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010042#include "qapi/qobject-output-visitor.h"
43#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020044#include "sysemu/block-backend.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010045#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010046#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010047#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010048#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010049#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020050#include "qemu/cutils.h"
51#include "qemu/id.h"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030052#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000053
Juan Quintela71e72a12009-07-27 16:12:56 +020054#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000055#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000056#include <sys/queue.h>
Joelle van Dynefeccdce2021-03-15 11:03:39 -070057#if defined(HAVE_SYS_DISK_H)
bellard7674e7b2005-04-26 21:59:26 +000058#include <sys/disk.h>
59#endif
blueswir1c5e97232009-03-07 20:06:23 +000060#endif
bellard7674e7b2005-04-26 21:59:26 +000061
aliguori49dc7682009-03-08 16:26:59 +000062#ifdef _WIN32
63#include <windows.h>
64#endif
65
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010066#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
67
Benoît Canetdc364f42014-01-23 21:31:32 +010068static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
69 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
70
Max Reitz2c1d04e2016-01-29 16:36:11 +010071static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
72 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
73
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010074static QLIST_HEAD(, BlockDriver) bdrv_drivers =
75 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000076
Max Reitz5b363932016-05-17 16:41:31 +020077static BlockDriverState *bdrv_open_inherit(const char *filename,
78 const char *reference,
79 QDict *options, int flags,
80 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020081 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020082 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +020083 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020084
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030085static void bdrv_replace_child_noperm(BdrvChild *child,
86 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +030087static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
88 Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030089
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +030090static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
91 BlockReopenQueue *queue,
92 Transaction *set_backings_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +030093static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
94static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
95
Markus Armbrustereb852012009-10-27 18:41:44 +010096/* If non-zero, use only whitelisted block drivers */
97static int use_bdrv_whitelist;
98
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +000099#ifdef _WIN32
100static int is_windows_drive_prefix(const char *filename)
101{
102 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
103 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
104 filename[1] == ':');
105}
106
107int is_windows_drive(const char *filename)
108{
109 if (is_windows_drive_prefix(filename) &&
110 filename[2] == '\0')
111 return 1;
112 if (strstart(filename, "\\\\.\\", NULL) ||
113 strstart(filename, "//./", NULL))
114 return 1;
115 return 0;
116}
117#endif
118
Kevin Wolf339064d2013-11-28 10:23:32 +0100119size_t bdrv_opt_mem_align(BlockDriverState *bs)
120{
121 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300122 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800123 return MAX(4096, qemu_real_host_page_size);
Kevin Wolf339064d2013-11-28 10:23:32 +0100124 }
125
126 return bs->bl.opt_mem_alignment;
127}
128
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300129size_t bdrv_min_mem_align(BlockDriverState *bs)
130{
131 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300132 /* page size or 4k (hdd sector size) should be on the safe side */
Wei Yang038adc22019-10-13 10:11:45 +0800133 return MAX(4096, qemu_real_host_page_size);
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300134 }
135
136 return bs->bl.min_mem_alignment;
137}
138
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000139/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100140int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000141{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200142 const char *p;
143
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000144#ifdef _WIN32
145 if (is_windows_drive(path) ||
146 is_windows_drive_prefix(path)) {
147 return 0;
148 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200149 p = path + strcspn(path, ":/\\");
150#else
151 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000152#endif
153
Paolo Bonzini947995c2012-05-08 16:51:48 +0200154 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000155}
156
bellard83f64092006-08-01 16:21:11 +0000157int path_is_absolute(const char *path)
158{
bellard21664422007-01-07 18:22:37 +0000159#ifdef _WIN32
160 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200161 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000162 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200163 }
164 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000165#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200166 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000167#endif
bellard83f64092006-08-01 16:21:11 +0000168}
169
Max Reitz009b03a2019-02-01 20:29:13 +0100170/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000171 path to it by considering it is relative to base_path. URL are
172 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100173char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000174{
Max Reitz009b03a2019-02-01 20:29:13 +0100175 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000176 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100177 char *result;
bellard83f64092006-08-01 16:21:11 +0000178 int len;
179
bellard83f64092006-08-01 16:21:11 +0000180 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100181 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000182 }
Max Reitz009b03a2019-02-01 20:29:13 +0100183
184 if (path_has_protocol(base_path)) {
185 protocol_stripped = strchr(base_path, ':');
186 if (protocol_stripped) {
187 protocol_stripped++;
188 }
189 }
190 p = protocol_stripped ?: base_path;
191
192 p1 = strrchr(base_path, '/');
193#ifdef _WIN32
194 {
195 const char *p2;
196 p2 = strrchr(base_path, '\\');
197 if (!p1 || p2 > p1) {
198 p1 = p2;
199 }
200 }
201#endif
202 if (p1) {
203 p1++;
204 } else {
205 p1 = base_path;
206 }
207 if (p1 > p) {
208 p = p1;
209 }
210 len = p - base_path;
211
212 result = g_malloc(len + strlen(filename) + 1);
213 memcpy(result, base_path, len);
214 strcpy(result + len, filename);
215
216 return result;
217}
218
Max Reitz03c320d2017-05-22 21:52:16 +0200219/*
220 * Helper function for bdrv_parse_filename() implementations to remove optional
221 * protocol prefixes (especially "file:") from a filename and for putting the
222 * stripped filename into the options QDict if there is such a prefix.
223 */
224void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
225 QDict *options)
226{
227 if (strstart(filename, prefix, &filename)) {
228 /* Stripping the explicit protocol prefix may result in a protocol
229 * prefix being (wrongly) detected (if the filename contains a colon) */
230 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100231 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200232
233 /* This means there is some colon before the first slash; therefore,
234 * this cannot be an absolute path */
235 assert(!path_is_absolute(filename));
236
237 /* And we can thus fix the protocol detection issue by prefixing it
238 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100239 fat_filename = g_string_new("./");
240 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200241
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100242 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200243
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100244 qdict_put(options, "filename",
245 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200246 } else {
247 /* If no protocol prefix was detected, we can use the shortened
248 * filename as-is */
249 qdict_put_str(options, "filename", filename);
250 }
251 }
252}
253
254
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200255/* Returns whether the image file is opened as read-only. Note that this can
256 * return false and writing to the image file is still not possible because the
257 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400258bool bdrv_is_read_only(BlockDriverState *bs)
259{
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300260 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400261}
262
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200263int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
264 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400265{
Jeff Codye2b82472017-04-07 16:55:26 -0400266 /* Do not set read_only if copy_on_read is enabled */
267 if (bs->copy_on_read && read_only) {
268 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
269 bdrv_get_device_or_node_name(bs));
270 return -EINVAL;
271 }
272
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400273 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200274 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
275 !ignore_allow_rdw)
276 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400277 error_setg(errp, "Node '%s' is read only",
278 bdrv_get_device_or_node_name(bs));
279 return -EPERM;
280 }
281
Jeff Cody45803a02017-04-07 16:55:29 -0400282 return 0;
283}
284
Kevin Wolfeaa24102018-10-12 11:27:41 +0200285/*
286 * Called by a driver that can only provide a read-only image.
287 *
288 * Returns 0 if the node is already read-only or it could switch the node to
289 * read-only because BDRV_O_AUTO_RDONLY is set.
290 *
291 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
292 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
293 * is not NULL, it is used as the error message for the Error object.
294 */
295int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
296 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400297{
298 int ret = 0;
299
Kevin Wolfeaa24102018-10-12 11:27:41 +0200300 if (!(bs->open_flags & BDRV_O_RDWR)) {
301 return 0;
302 }
303 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
304 goto fail;
305 }
306
307 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400308 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200309 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400310 }
311
Kevin Wolfeaa24102018-10-12 11:27:41 +0200312 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200313
Jeff Codye2b82472017-04-07 16:55:26 -0400314 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200315
316fail:
317 error_setg(errp, "%s", errmsg ?: "Image is read-only");
318 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400319}
320
Max Reitz645ae7d2019-02-01 20:29:14 +0100321/*
322 * If @backing is empty, this function returns NULL without setting
323 * @errp. In all other cases, NULL will only be returned with @errp
324 * set.
325 *
326 * Therefore, a return value of NULL without @errp set means that
327 * there is no backing file; if @errp is set, there is one but its
328 * absolute filename cannot be generated.
329 */
330char *bdrv_get_full_backing_filename_from_filename(const char *backed,
331 const char *backing,
332 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100333{
Max Reitz645ae7d2019-02-01 20:29:14 +0100334 if (backing[0] == '\0') {
335 return NULL;
336 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
337 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100338 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
339 error_setg(errp, "Cannot use relative backing file names for '%s'",
340 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100341 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100342 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100343 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100344 }
345}
346
Max Reitz9f4793d2019-02-01 20:29:16 +0100347/*
348 * If @filename is empty or NULL, this function returns NULL without
349 * setting @errp. In all other cases, NULL will only be returned with
350 * @errp set.
351 */
352static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
353 const char *filename, Error **errp)
354{
Max Reitz8df68612019-02-01 20:29:23 +0100355 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100356
Max Reitz8df68612019-02-01 20:29:23 +0100357 if (!filename || filename[0] == '\0') {
358 return NULL;
359 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
360 return g_strdup(filename);
361 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100362
Max Reitz8df68612019-02-01 20:29:23 +0100363 dir = bdrv_dirname(relative_to, errp);
364 if (!dir) {
365 return NULL;
366 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100367
Max Reitz8df68612019-02-01 20:29:23 +0100368 full_name = g_strconcat(dir, filename, NULL);
369 g_free(dir);
370 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100371}
372
Max Reitz6b6833c2019-02-01 20:29:15 +0100373char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200374{
Max Reitz9f4793d2019-02-01 20:29:16 +0100375 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200376}
377
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100378void bdrv_register(BlockDriver *bdrv)
379{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100380 assert(bdrv->format_name);
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100381 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000382}
bellardb3380822004-03-14 21:38:54 +0000383
Markus Armbrustere4e99862014-10-07 13:59:03 +0200384BlockDriverState *bdrv_new(void)
385{
386 BlockDriverState *bs;
387 int i;
388
Markus Armbruster5839e532014-08-19 10:31:08 +0200389 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800390 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800391 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
392 QLIST_INIT(&bs->op_blockers[i]);
393 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200394 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200395 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800396 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200397 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200398
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300399 qemu_co_queue_init(&bs->flush_queue);
400
Kevin Wolf0f122642018-03-28 18:29:18 +0200401 for (i = 0; i < bdrv_drain_all_count; i++) {
402 bdrv_drained_begin(bs);
403 }
404
Max Reitz2c1d04e2016-01-29 16:36:11 +0100405 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
406
bellardb3380822004-03-14 21:38:54 +0000407 return bs;
408}
409
Marc Mari88d88792016-08-12 09:27:03 -0400410static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000411{
412 BlockDriver *drv1;
Marc Mari88d88792016-08-12 09:27:03 -0400413
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100414 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
415 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000416 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100417 }
bellardea2384d2004-08-01 21:59:26 +0000418 }
Marc Mari88d88792016-08-12 09:27:03 -0400419
bellardea2384d2004-08-01 21:59:26 +0000420 return NULL;
421}
422
Marc Mari88d88792016-08-12 09:27:03 -0400423BlockDriver *bdrv_find_format(const char *format_name)
424{
425 BlockDriver *drv1;
426 int i;
427
428 drv1 = bdrv_do_find_format(format_name);
429 if (drv1) {
430 return drv1;
431 }
432
433 /* The driver isn't registered, maybe we need to load a module */
434 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
435 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
436 block_module_load_one(block_driver_modules[i].library_name);
437 break;
438 }
439 }
440
441 return bdrv_do_find_format(format_name);
442}
443
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300444static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100445{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800446 static const char *whitelist_rw[] = {
447 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200448 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800449 };
450 static const char *whitelist_ro[] = {
451 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200452 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100453 };
454 const char **p;
455
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800456 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100457 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800458 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100459
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800460 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300461 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100462 return 1;
463 }
464 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800465 if (read_only) {
466 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300467 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800468 return 1;
469 }
470 }
471 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100472 return 0;
473}
474
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300475int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
476{
477 return bdrv_format_is_whitelisted(drv->format_name, read_only);
478}
479
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000480bool bdrv_uses_whitelist(void)
481{
482 return use_bdrv_whitelist;
483}
484
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800485typedef struct CreateCo {
486 BlockDriver *drv;
487 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800488 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800489 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200490 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800491} CreateCo;
492
493static void coroutine_fn bdrv_create_co_entry(void *opaque)
494{
Max Reitzcc84d902013-09-06 17:14:26 +0200495 Error *local_err = NULL;
496 int ret;
497
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800498 CreateCo *cco = opaque;
499 assert(cco->drv);
500
Maxim Levitskyb92902d2020-03-26 03:12:17 +0200501 ret = cco->drv->bdrv_co_create_opts(cco->drv,
502 cco->filename, cco->opts, &local_err);
Eduardo Habkost621ff942016-06-13 18:57:56 -0300503 error_propagate(&cco->err, local_err);
Max Reitzcc84d902013-09-06 17:14:26 +0200504 cco->ret = ret;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800505}
506
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200507int bdrv_create(BlockDriver *drv, const char* filename,
Chunyan Liu83d05212014-06-05 17:20:51 +0800508 QemuOpts *opts, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000509{
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800510 int ret;
Kevin Wolf0e7e1982009-05-18 16:42:10 +0200511
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800512 Coroutine *co;
513 CreateCo cco = {
514 .drv = drv,
515 .filename = g_strdup(filename),
Chunyan Liu83d05212014-06-05 17:20:51 +0800516 .opts = opts,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800517 .ret = NOT_DONE,
Max Reitzcc84d902013-09-06 17:14:26 +0200518 .err = NULL,
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800519 };
520
Stefan Hajnocziefc75e22018-01-18 13:43:45 +0100521 if (!drv->bdrv_co_create_opts) {
Max Reitzcc84d902013-09-06 17:14:26 +0200522 error_setg(errp, "Driver '%s' does not support image creation", drv->format_name);
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300523 ret = -ENOTSUP;
524 goto out;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800525 }
526
527 if (qemu_in_coroutine()) {
528 /* Fast-path if already in coroutine context */
529 bdrv_create_co_entry(&cco);
530 } else {
Paolo Bonzini0b8b8752016-07-04 19:10:01 +0200531 co = qemu_coroutine_create(bdrv_create_co_entry, &cco);
532 qemu_coroutine_enter(co);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800533 while (cco.ret == NOT_DONE) {
Paolo Bonzinib47ec2c2014-07-07 15:18:01 +0200534 aio_poll(qemu_get_aio_context(), true);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800535 }
536 }
537
538 ret = cco.ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200539 if (ret < 0) {
Markus Armbruster84d18f02014-01-30 15:07:28 +0100540 if (cco.err) {
Max Reitzcc84d902013-09-06 17:14:26 +0200541 error_propagate(errp, cco.err);
542 } else {
543 error_setg_errno(errp, -ret, "Could not create image");
544 }
545 }
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800546
Luiz Capitulino80168bf2012-10-17 16:45:25 -0300547out:
548 g_free(cco.filename);
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800549 return ret;
bellardea2384d2004-08-01 21:59:26 +0000550}
551
Max Reitzfd171462020-01-22 17:45:29 +0100552/**
553 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
554 * least the given @minimum_size.
555 *
556 * On success, return @blk's actual length.
557 * Otherwise, return -errno.
558 */
559static int64_t create_file_fallback_truncate(BlockBackend *blk,
560 int64_t minimum_size, Error **errp)
561{
562 Error *local_err = NULL;
563 int64_t size;
564 int ret;
565
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200566 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
567 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100568 if (ret < 0 && ret != -ENOTSUP) {
569 error_propagate(errp, local_err);
570 return ret;
571 }
572
573 size = blk_getlength(blk);
574 if (size < 0) {
575 error_free(local_err);
576 error_setg_errno(errp, -size,
577 "Failed to inquire the new image file's length");
578 return size;
579 }
580
581 if (size < minimum_size) {
582 /* Need to grow the image, but we failed to do that */
583 error_propagate(errp, local_err);
584 return -ENOTSUP;
585 }
586
587 error_free(local_err);
588 local_err = NULL;
589
590 return size;
591}
592
593/**
594 * Helper function for bdrv_create_file_fallback(): Zero the first
595 * sector to remove any potentially pre-existing image header.
596 */
597static int create_file_fallback_zero_first_sector(BlockBackend *blk,
598 int64_t current_size,
599 Error **errp)
600{
601 int64_t bytes_to_clear;
602 int ret;
603
604 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
605 if (bytes_to_clear) {
606 ret = blk_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
607 if (ret < 0) {
608 error_setg_errno(errp, -ret,
609 "Failed to clear the new image's first sector");
610 return ret;
611 }
612 }
613
614 return 0;
615}
616
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200617/**
618 * Simple implementation of bdrv_co_create_opts for protocol drivers
619 * which only support creation via opening a file
620 * (usually existing raw storage device)
621 */
622int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
623 const char *filename,
624 QemuOpts *opts,
625 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100626{
627 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100628 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100629 int64_t size = 0;
630 char *buf = NULL;
631 PreallocMode prealloc;
632 Error *local_err = NULL;
633 int ret;
634
635 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
636 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
637 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
638 PREALLOC_MODE_OFF, &local_err);
639 g_free(buf);
640 if (local_err) {
641 error_propagate(errp, local_err);
642 return -EINVAL;
643 }
644
645 if (prealloc != PREALLOC_MODE_OFF) {
646 error_setg(errp, "Unsupported preallocation mode '%s'",
647 PreallocMode_str(prealloc));
648 return -ENOTSUP;
649 }
650
Max Reitzeeea1fa2020-02-25 16:56:18 +0100651 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100652 qdict_put_str(options, "driver", drv->format_name);
653
654 blk = blk_new_open(filename, NULL, options,
655 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
656 if (!blk) {
657 error_prepend(errp, "Protocol driver '%s' does not support image "
658 "creation, and opening the image failed: ",
659 drv->format_name);
660 return -EINVAL;
661 }
662
663 size = create_file_fallback_truncate(blk, size, errp);
664 if (size < 0) {
665 ret = size;
666 goto out;
667 }
668
669 ret = create_file_fallback_zero_first_sector(blk, size, errp);
670 if (ret < 0) {
671 goto out;
672 }
673
674 ret = 0;
675out:
676 blk_unref(blk);
677 return ret;
678}
679
Chunyan Liuc282e1f2014-06-05 17:21:11 +0800680int bdrv_create_file(const char *filename, QemuOpts *opts, Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200681{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100682 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200683 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100684 QDict *qdict;
685 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200686
Max Reitzb65a5e12015-02-05 13:58:12 -0500687 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200688 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000689 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200690 }
691
Stefano Garzarella729222a2021-03-08 17:12:32 +0100692 if (!drv->create_opts) {
693 error_setg(errp, "Driver '%s' does not support image creation",
694 drv->format_name);
695 return -ENOTSUP;
696 }
697
698 /*
699 * 'opts' contains a QemuOptsList with a combination of format and protocol
700 * default values.
701 *
702 * The format properly removes its options, but the default values remain
703 * in 'opts->list'. So if the protocol has options with the same name
704 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
705 * of the format, since for overlapping options, the format wins.
706 *
707 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
708 * only the set options, and then convert it back to QemuOpts, using the
709 * create_opts of the protocol. So the new QemuOpts, will contain only the
710 * protocol defaults.
711 */
712 qdict = qemu_opts_to_qdict(opts, NULL);
713 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
714 if (protocol_opts == NULL) {
715 ret = -EINVAL;
716 goto out;
717 }
718
719 ret = bdrv_create(drv, filename, protocol_opts, errp);
720out:
721 qemu_opts_del(protocol_opts);
722 qobject_unref(qdict);
723 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200724}
725
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300726int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
727{
728 Error *local_err = NULL;
729 int ret;
730
731 assert(bs != NULL);
732
733 if (!bs->drv) {
734 error_setg(errp, "Block node '%s' is not opened", bs->filename);
735 return -ENOMEDIUM;
736 }
737
738 if (!bs->drv->bdrv_co_delete_file) {
739 error_setg(errp, "Driver '%s' does not support image deletion",
740 bs->drv->format_name);
741 return -ENOTSUP;
742 }
743
744 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
745 if (ret < 0) {
746 error_propagate(errp, local_err);
747 }
748
749 return ret;
750}
751
Maxim Levitskya890f082020-12-17 19:09:03 +0200752void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
753{
754 Error *local_err = NULL;
755 int ret;
756
757 if (!bs) {
758 return;
759 }
760
761 ret = bdrv_co_delete_file(bs, &local_err);
762 /*
763 * ENOTSUP will happen if the block driver doesn't support
764 * the 'bdrv_co_delete_file' interface. This is a predictable
765 * scenario and shouldn't be reported back to the user.
766 */
767 if (ret == -ENOTSUP) {
768 error_free(local_err);
769 } else if (ret < 0) {
770 error_report_err(local_err);
771 }
772}
773
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100774/**
775 * Try to get @bs's logical and physical block size.
776 * On success, store them in @bsz struct and return 0.
777 * On failure return -errno.
778 * @bs must not be empty.
779 */
780int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
781{
782 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200783 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100784
785 if (drv && drv->bdrv_probe_blocksizes) {
786 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200787 } else if (filtered) {
788 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100789 }
790
791 return -ENOTSUP;
792}
793
794/**
795 * Try to get @bs's geometry (cyls, heads, sectors).
796 * On success, store them in @geo struct and return 0.
797 * On failure return -errno.
798 * @bs must not be empty.
799 */
800int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
801{
802 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200803 BlockDriverState *filtered = bdrv_filter_bs(bs);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100804
805 if (drv && drv->bdrv_probe_geometry) {
806 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200807 } else if (filtered) {
808 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100809 }
810
811 return -ENOTSUP;
812}
813
Jim Meyeringeba25052012-05-28 09:27:54 +0200814/*
815 * Create a uniquely-named empty temporary file.
816 * Return 0 upon success, otherwise a negative errno value.
817 */
818int get_tmp_filename(char *filename, int size)
819{
bellardd5249392004-08-03 21:14:23 +0000820#ifdef _WIN32
bellard3b9f94e2007-01-07 17:27:07 +0000821 char temp_dir[MAX_PATH];
Jim Meyeringeba25052012-05-28 09:27:54 +0200822 /* GetTempFileName requires that its output buffer (4th param)
823 have length MAX_PATH or greater. */
824 assert(size >= MAX_PATH);
825 return (GetTempPath(MAX_PATH, temp_dir)
826 && GetTempFileName(temp_dir, "qem", 0, filename)
827 ? 0 : -GetLastError());
bellardd5249392004-08-03 21:14:23 +0000828#else
bellardea2384d2004-08-01 21:59:26 +0000829 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000830 const char *tmpdir;
aurel320badc1e2008-03-10 00:05:34 +0000831 tmpdir = getenv("TMPDIR");
Amit Shah69bef792014-02-26 15:12:37 +0530832 if (!tmpdir) {
833 tmpdir = "/var/tmp";
834 }
Jim Meyeringeba25052012-05-28 09:27:54 +0200835 if (snprintf(filename, size, "%s/vl.XXXXXX", tmpdir) >= size) {
836 return -EOVERFLOW;
837 }
bellardea2384d2004-08-01 21:59:26 +0000838 fd = mkstemp(filename);
Dunrong Huangfe235a02012-09-05 21:26:22 +0800839 if (fd < 0) {
840 return -errno;
841 }
842 if (close(fd) != 0) {
843 unlink(filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200844 return -errno;
845 }
846 return 0;
bellardd5249392004-08-03 21:14:23 +0000847#endif
Jim Meyeringeba25052012-05-28 09:27:54 +0200848}
bellardea2384d2004-08-01 21:59:26 +0000849
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200850/*
851 * Detect host devices. By convention, /dev/cdrom[N] is always
852 * recognized as a host CDROM.
853 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200854static BlockDriver *find_hdev_driver(const char *filename)
855{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200856 int score_max = 0, score;
857 BlockDriver *drv = NULL, *d;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200858
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100859 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200860 if (d->bdrv_probe_device) {
861 score = d->bdrv_probe_device(filename);
862 if (score > score_max) {
863 score_max = score;
864 drv = d;
865 }
866 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200867 }
868
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200869 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200870}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200871
Marc Mari88d88792016-08-12 09:27:03 -0400872static BlockDriver *bdrv_do_find_protocol(const char *protocol)
873{
874 BlockDriver *drv1;
875
876 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
877 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
878 return drv1;
879 }
880 }
881
882 return NULL;
883}
884
Kevin Wolf98289622013-07-10 15:47:39 +0200885BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500886 bool allow_protocol_prefix,
887 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200888{
889 BlockDriver *drv1;
890 char protocol[128];
891 int len;
892 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400893 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200894
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200895 /* TODO Drivers without bdrv_file_open must be specified explicitly */
896
Christoph Hellwig39508e72010-06-23 12:25:17 +0200897 /*
898 * XXX(hch): we really should not let host device detection
899 * override an explicit protocol specification, but moving this
900 * later breaks access to device names with colons in them.
901 * Thanks to the brain-dead persistent naming schemes on udev-
902 * based Linux systems those actually are quite common.
903 */
904 drv1 = find_hdev_driver(filename);
905 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200906 return drv1;
907 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200908
Kevin Wolf98289622013-07-10 15:47:39 +0200909 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100910 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200911 }
Kevin Wolf98289622013-07-10 15:47:39 +0200912
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000913 p = strchr(filename, ':');
914 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200915 len = p - filename;
916 if (len > sizeof(protocol) - 1)
917 len = sizeof(protocol) - 1;
918 memcpy(protocol, filename, len);
919 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400920
921 drv1 = bdrv_do_find_protocol(protocol);
922 if (drv1) {
923 return drv1;
924 }
925
926 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
927 if (block_driver_modules[i].protocol_name &&
928 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
929 block_module_load_one(block_driver_modules[i].library_name);
930 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200931 }
932 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500933
Marc Mari88d88792016-08-12 09:27:03 -0400934 drv1 = bdrv_do_find_protocol(protocol);
935 if (!drv1) {
936 error_setg(errp, "Unknown protocol '%s'", protocol);
937 }
938 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200939}
940
Markus Armbrusterc6684242014-11-20 16:27:10 +0100941/*
942 * Guess image format by probing its contents.
943 * This is not a good idea when your image is raw (CVE-2008-2004), but
944 * we do it anyway for backward compatibility.
945 *
946 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100947 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
948 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100949 * @filename is its filename.
950 *
951 * For all block drivers, call the bdrv_probe() method to get its
952 * probing score.
953 * Return the first block driver with the highest probing score.
954 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100955BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
956 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100957{
958 int score_max = 0, score;
959 BlockDriver *drv = NULL, *d;
960
961 QLIST_FOREACH(d, &bdrv_drivers, list) {
962 if (d->bdrv_probe) {
963 score = d->bdrv_probe(buf, buf_size, filename);
964 if (score > score_max) {
965 score_max = score;
966 drv = d;
967 }
968 }
969 }
970
971 return drv;
972}
973
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100974static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +0200975 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +0000976{
Markus Armbrusterc6684242014-11-20 16:27:10 +0100977 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +0100978 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +0100979 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700980
Kevin Wolf08a00552010-06-01 18:37:31 +0200981 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100982 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +0100983 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +0200984 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -0700985 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -0700986
Kevin Wolf5696c6e2017-02-17 18:39:24 +0100987 ret = blk_pread(file, 0, buf, sizeof(buf));
bellard83f64092006-08-01 16:21:11 +0000988 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200989 error_setg_errno(errp, -ret, "Could not read image for determining its "
990 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +0200991 *pdrv = NULL;
992 return ret;
bellard83f64092006-08-01 16:21:11 +0000993 }
994
Markus Armbrusterc6684242014-11-20 16:27:10 +0100995 drv = bdrv_probe_all(buf, ret, filename);
Stefan Weilc98ac352010-07-21 21:51:51 +0200996 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +0200997 error_setg(errp, "Could not determine image format: No compatible "
998 "driver found");
Stefan Weilc98ac352010-07-21 21:51:51 +0200999 ret = -ENOENT;
1000 }
1001 *pdrv = drv;
1002 return ret;
bellardea2384d2004-08-01 21:59:26 +00001003}
1004
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001005/**
1006 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001007 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001008 */
Kevin Wolf3d9f2d22018-06-26 13:55:20 +02001009int refresh_total_sectors(BlockDriverState *bs, int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001010{
1011 BlockDriver *drv = bs->drv;
1012
Max Reitzd470ad42017-11-10 21:31:09 +01001013 if (!drv) {
1014 return -ENOMEDIUM;
1015 }
1016
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001017 /* Do not attempt drv->bdrv_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001018 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001019 return 0;
1020
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001021 /* query actual device if possible, otherwise just trust the hint */
1022 if (drv->bdrv_getlength) {
1023 int64_t length = drv->bdrv_getlength(bs);
1024 if (length < 0) {
1025 return length;
1026 }
Fam Zheng7e382002013-11-06 19:48:06 +08001027 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001028 }
1029
1030 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001031
1032 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1033 return -EFBIG;
1034 }
1035
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001036 return 0;
1037}
1038
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001039/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001040 * Combines a QDict of new block driver @options with any missing options taken
1041 * from @old_options, so that leaving out an option defaults to its old value.
1042 */
1043static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1044 QDict *old_options)
1045{
1046 if (bs->drv && bs->drv->bdrv_join_options) {
1047 bs->drv->bdrv_join_options(options, old_options);
1048 } else {
1049 qdict_join(options, old_options, false);
1050 }
1051}
1052
Alberto Garcia543770b2018-09-06 12:37:09 +03001053static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1054 int open_flags,
1055 Error **errp)
1056{
1057 Error *local_err = NULL;
1058 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1059 BlockdevDetectZeroesOptions detect_zeroes =
1060 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1061 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
1062 g_free(value);
1063 if (local_err) {
1064 error_propagate(errp, local_err);
1065 return detect_zeroes;
1066 }
1067
1068 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1069 !(open_flags & BDRV_O_UNMAP))
1070 {
1071 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1072 "without setting discard operation to unmap");
1073 }
1074
1075 return detect_zeroes;
1076}
1077
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001078/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001079 * Set open flags for aio engine
1080 *
1081 * Return 0 on success, -1 if the engine specified is invalid
1082 */
1083int bdrv_parse_aio(const char *mode, int *flags)
1084{
1085 if (!strcmp(mode, "threads")) {
1086 /* do nothing, default */
1087 } else if (!strcmp(mode, "native")) {
1088 *flags |= BDRV_O_NATIVE_AIO;
1089#ifdef CONFIG_LINUX_IO_URING
1090 } else if (!strcmp(mode, "io_uring")) {
1091 *flags |= BDRV_O_IO_URING;
1092#endif
1093 } else {
1094 return -1;
1095 }
1096
1097 return 0;
1098}
1099
1100/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001101 * Set open flags for a given discard mode
1102 *
1103 * Return 0 on success, -1 if the discard mode was invalid.
1104 */
1105int bdrv_parse_discard_flags(const char *mode, int *flags)
1106{
1107 *flags &= ~BDRV_O_UNMAP;
1108
1109 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1110 /* do nothing */
1111 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1112 *flags |= BDRV_O_UNMAP;
1113 } else {
1114 return -1;
1115 }
1116
1117 return 0;
1118}
1119
1120/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001121 * Set open flags for a given cache mode
1122 *
1123 * Return 0 on success, -1 if the cache mode was invalid.
1124 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001125int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001126{
1127 *flags &= ~BDRV_O_CACHE_MASK;
1128
1129 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001130 *writethrough = false;
1131 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001132 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001133 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001134 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001135 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001136 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001137 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001138 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001139 *flags |= BDRV_O_NO_FLUSH;
1140 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001141 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001142 } else {
1143 return -1;
1144 }
1145
1146 return 0;
1147}
1148
Kevin Wolfb5411552017-01-17 15:56:16 +01001149static char *bdrv_child_get_parent_desc(BdrvChild *c)
1150{
1151 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001152 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001153}
1154
Kevin Wolf20018e12016-05-23 18:46:59 +02001155static void bdrv_child_cb_drained_begin(BdrvChild *child)
1156{
1157 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001158 bdrv_do_drained_begin_quiesce(bs, NULL, false);
Kevin Wolf20018e12016-05-23 18:46:59 +02001159}
1160
Kevin Wolf89bd0302018-03-22 14:11:20 +01001161static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1162{
1163 BlockDriverState *bs = child->opaque;
Kevin Wolf6cd5c9d2018-05-29 17:17:45 +02001164 return bdrv_drain_poll(bs, false, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001165}
1166
Max Reitze037c092019-07-19 11:26:14 +02001167static void bdrv_child_cb_drained_end(BdrvChild *child,
1168 int *drained_end_counter)
Kevin Wolf20018e12016-05-23 18:46:59 +02001169{
1170 BlockDriverState *bs = child->opaque;
Max Reitze037c092019-07-19 11:26:14 +02001171 bdrv_drained_end_no_poll(bs, drained_end_counter);
Kevin Wolf20018e12016-05-23 18:46:59 +02001172}
1173
Kevin Wolf38701b62017-05-04 18:52:39 +02001174static int bdrv_child_cb_inactivate(BdrvChild *child)
1175{
1176 BlockDriverState *bs = child->opaque;
1177 assert(bs->open_flags & BDRV_O_INACTIVE);
1178 return 0;
1179}
1180
Kevin Wolf5d231842019-05-06 19:17:56 +02001181static bool bdrv_child_cb_can_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1182 GSList **ignore, Error **errp)
1183{
1184 BlockDriverState *bs = child->opaque;
1185 return bdrv_can_set_aio_context(bs, ctx, ignore, errp);
1186}
1187
Kevin Wolf53a7d042019-05-06 19:17:59 +02001188static void bdrv_child_cb_set_aio_ctx(BdrvChild *child, AioContext *ctx,
1189 GSList **ignore)
1190{
1191 BlockDriverState *bs = child->opaque;
1192 return bdrv_set_aio_context_ignore(bs, ctx, ignore);
1193}
1194
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001195/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001196 * Returns the options and flags that a temporary snapshot should get, based on
1197 * the originally requested flags (the originally requested image will have
1198 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001199 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001200static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1201 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001202{
Kevin Wolf73176be2016-03-07 13:02:15 +01001203 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1204
1205 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001206 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1207 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001208
Kevin Wolf3f486862019-04-04 17:04:43 +02001209 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001210 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001211 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001212
Kevin Wolf41869042016-06-16 12:59:30 +02001213 /* aio=native doesn't work for cache.direct=off, so disable it for the
1214 * temporary snapshot */
1215 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001216}
1217
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001218static void bdrv_backing_attach(BdrvChild *c)
1219{
1220 BlockDriverState *parent = c->opaque;
1221 BlockDriverState *backing_hd = c->bs;
1222
1223 assert(!parent->backing_blocker);
1224 error_setg(&parent->backing_blocker,
1225 "node is used as backing hd of '%s'",
1226 bdrv_get_device_or_node_name(parent));
1227
Max Reitzf30c66b2019-02-01 20:29:05 +01001228 bdrv_refresh_filename(backing_hd);
1229
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001230 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001231
1232 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1233 /* Otherwise we won't be able to commit or stream */
1234 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1235 parent->backing_blocker);
1236 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1237 parent->backing_blocker);
1238 /*
1239 * We do backup in 3 ways:
1240 * 1. drive backup
1241 * The target bs is new opened, and the source is top BDS
1242 * 2. blockdev backup
1243 * Both the source and the target are top BDSes.
1244 * 3. internal backup(used for block replication)
1245 * Both the source and the target are backing file
1246 *
1247 * In case 1 and 2, neither the source nor the target is the backing file.
1248 * In case 3, we will block the top BDS, so there is only one block job
1249 * for the top BDS and its backing chain.
1250 */
1251 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1252 parent->backing_blocker);
1253 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1254 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001255}
Kevin Wolfd736f112017-12-18 16:05:48 +01001256
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001257static void bdrv_backing_detach(BdrvChild *c)
1258{
1259 BlockDriverState *parent = c->opaque;
1260
1261 assert(parent->backing_blocker);
1262 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1263 error_free(parent->backing_blocker);
1264 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001265}
Kevin Wolfd736f112017-12-18 16:05:48 +01001266
Kevin Wolf6858eba2017-06-29 19:32:21 +02001267static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1268 const char *filename, Error **errp)
1269{
1270 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001271 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001272 int ret;
1273
Alberto Garciae94d3db2018-11-12 16:00:34 +02001274 if (read_only) {
1275 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001276 if (ret < 0) {
1277 return ret;
1278 }
1279 }
1280
Kevin Wolf6858eba2017-06-29 19:32:21 +02001281 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001282 base->drv ? base->drv->format_name : "",
1283 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001284 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001285 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001286 }
1287
Alberto Garciae94d3db2018-11-12 16:00:34 +02001288 if (read_only) {
1289 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001290 }
1291
Kevin Wolf6858eba2017-06-29 19:32:21 +02001292 return ret;
1293}
1294
Max Reitzfae8bd32020-05-13 13:05:20 +02001295/*
1296 * Returns the options and flags that a generic child of a BDS should
1297 * get, based on the given options and flags for the parent BDS.
1298 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001299static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1300 int *child_flags, QDict *child_options,
1301 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001302{
1303 int flags = parent_flags;
1304
1305 /*
1306 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1307 * Generally, the question to answer is: Should this child be
1308 * format-probed by default?
1309 */
1310
1311 /*
1312 * Pure and non-filtered data children of non-format nodes should
1313 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1314 * set). This only affects a very limited set of drivers (namely
1315 * quorum and blkverify when this comment was written).
1316 * Force-clear BDRV_O_PROTOCOL then.
1317 */
1318 if (!parent_is_format &&
1319 (role & BDRV_CHILD_DATA) &&
1320 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1321 {
1322 flags &= ~BDRV_O_PROTOCOL;
1323 }
1324
1325 /*
1326 * All children of format nodes (except for COW children) and all
1327 * metadata children in general should never be format-probed.
1328 * Force-set BDRV_O_PROTOCOL then.
1329 */
1330 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1331 (role & BDRV_CHILD_METADATA))
1332 {
1333 flags |= BDRV_O_PROTOCOL;
1334 }
1335
1336 /*
1337 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1338 * the parent.
1339 */
1340 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1341 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1342 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1343
1344 if (role & BDRV_CHILD_COW) {
1345 /* backing files are opened read-only by default */
1346 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1347 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1348 } else {
1349 /* Inherit the read-only option from the parent if it's not set */
1350 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1351 qdict_copy_default(child_options, parent_options,
1352 BDRV_OPT_AUTO_READ_ONLY);
1353 }
1354
1355 /*
1356 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1357 * can default to enable it on lower layers regardless of the
1358 * parent option.
1359 */
1360 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1361
1362 /* Clear flags that only apply to the top layer */
1363 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1364
1365 if (role & BDRV_CHILD_METADATA) {
1366 flags &= ~BDRV_O_NO_IO;
1367 }
1368 if (role & BDRV_CHILD_COW) {
1369 flags &= ~BDRV_O_TEMPORARY;
1370 }
1371
1372 *child_flags = flags;
1373}
1374
Max Reitzca2f1232020-05-13 13:05:22 +02001375static void bdrv_child_cb_attach(BdrvChild *child)
1376{
1377 BlockDriverState *bs = child->opaque;
1378
1379 if (child->role & BDRV_CHILD_COW) {
1380 bdrv_backing_attach(child);
1381 }
1382
1383 bdrv_apply_subtree_drain(child, bs);
1384}
1385
Max Reitz48e08282020-05-13 13:05:23 +02001386static void bdrv_child_cb_detach(BdrvChild *child)
1387{
1388 BlockDriverState *bs = child->opaque;
1389
1390 if (child->role & BDRV_CHILD_COW) {
1391 bdrv_backing_detach(child);
1392 }
1393
1394 bdrv_unapply_subtree_drain(child, bs);
1395}
1396
Max Reitz43483552020-05-13 13:05:24 +02001397static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1398 const char *filename, Error **errp)
1399{
1400 if (c->role & BDRV_CHILD_COW) {
1401 return bdrv_backing_update_filename(c, base, filename, errp);
1402 }
1403 return 0;
1404}
1405
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001406AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001407{
1408 BlockDriverState *bs = c->opaque;
1409
1410 return bdrv_get_aio_context(bs);
1411}
1412
Max Reitz43483552020-05-13 13:05:24 +02001413const BdrvChildClass child_of_bds = {
1414 .parent_is_bds = true,
1415 .get_parent_desc = bdrv_child_get_parent_desc,
1416 .inherit_options = bdrv_inherited_options,
1417 .drained_begin = bdrv_child_cb_drained_begin,
1418 .drained_poll = bdrv_child_cb_drained_poll,
1419 .drained_end = bdrv_child_cb_drained_end,
1420 .attach = bdrv_child_cb_attach,
1421 .detach = bdrv_child_cb_detach,
1422 .inactivate = bdrv_child_cb_inactivate,
1423 .can_set_aio_ctx = bdrv_child_cb_can_set_aio_ctx,
1424 .set_aio_ctx = bdrv_child_cb_set_aio_ctx,
1425 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001426 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001427};
1428
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001429AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1430{
1431 return c->klass->get_parent_aio_context(c);
1432}
1433
Kevin Wolf7b272452012-11-12 17:05:39 +01001434static int bdrv_open_flags(BlockDriverState *bs, int flags)
1435{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001436 int open_flags = flags;
Kevin Wolf7b272452012-11-12 17:05:39 +01001437
1438 /*
1439 * Clear flags that are internal to the block layer before opening the
1440 * image.
1441 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001442 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001443
Kevin Wolf7b272452012-11-12 17:05:39 +01001444 return open_flags;
1445}
1446
Kevin Wolf91a097e2015-05-08 17:49:53 +02001447static void update_flags_from_options(int *flags, QemuOpts *opts)
1448{
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001449 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001450
Alberto Garcia57f9db92018-09-06 12:37:06 +03001451 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001452 *flags |= BDRV_O_NO_FLUSH;
1453 }
1454
Alberto Garcia57f9db92018-09-06 12:37:06 +03001455 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001456 *flags |= BDRV_O_NOCACHE;
1457 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001458
Alberto Garcia57f9db92018-09-06 12:37:06 +03001459 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001460 *flags |= BDRV_O_RDWR;
1461 }
1462
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001463 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1464 *flags |= BDRV_O_AUTO_RDONLY;
1465 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001466}
1467
1468static void update_options_from_flags(QDict *options, int flags)
1469{
Kevin Wolf91a097e2015-05-08 17:49:53 +02001470 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001471 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001472 }
1473 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001474 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1475 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001476 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001477 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001478 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001479 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001480 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1481 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1482 flags & BDRV_O_AUTO_RDONLY);
1483 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001484}
1485
Kevin Wolf636ea372014-01-24 14:11:52 +01001486static void bdrv_assign_node_name(BlockDriverState *bs,
1487 const char *node_name,
1488 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001489{
Jeff Cody15489c72015-10-12 19:36:50 -04001490 char *gen_node_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001491
Jeff Cody15489c72015-10-12 19:36:50 -04001492 if (!node_name) {
1493 node_name = gen_node_name = id_generate(ID_BLOCK);
1494 } else if (!id_wellformed(node_name)) {
1495 /*
1496 * Check for empty string or invalid characters, but not if it is
1497 * generated (generated names use characters not available to the user)
1498 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001499 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001500 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001501 }
1502
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001503 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001504 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001505 error_setg(errp, "node-name=%s is conflicting with a device id",
1506 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001507 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001508 }
1509
Benoît Canet6913c0c2014-01-23 21:31:33 +01001510 /* takes care of avoiding duplicates node names */
1511 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001512 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001513 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001514 }
1515
Kevin Wolf824808d2018-07-04 13:28:29 +02001516 /* Make sure that the node name isn't truncated */
1517 if (strlen(node_name) >= sizeof(bs->node_name)) {
1518 error_setg(errp, "Node name too long");
1519 goto out;
1520 }
1521
Benoît Canet6913c0c2014-01-23 21:31:33 +01001522 /* copy node name into the bs and insert it into the graph list */
1523 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1524 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001525out:
1526 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001527}
1528
Kevin Wolf01a56502017-01-18 15:51:56 +01001529static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1530 const char *node_name, QDict *options,
1531 int open_flags, Error **errp)
1532{
1533 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001534 int i, ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001535
1536 bdrv_assign_node_name(bs, node_name, &local_err);
1537 if (local_err) {
1538 error_propagate(errp, local_err);
1539 return -EINVAL;
1540 }
1541
1542 bs->drv = drv;
1543 bs->opaque = g_malloc0(drv->instance_size);
1544
1545 if (drv->bdrv_file_open) {
1546 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1547 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001548 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001549 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001550 } else {
1551 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001552 }
1553
1554 if (ret < 0) {
1555 if (local_err) {
1556 error_propagate(errp, local_err);
1557 } else if (bs->filename[0]) {
1558 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1559 } else {
1560 error_setg_errno(errp, -ret, "Could not open image");
1561 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001562 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001563 }
1564
1565 ret = refresh_total_sectors(bs, bs->total_sectors);
1566 if (ret < 0) {
1567 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001568 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001569 }
1570
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001571 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001572 if (local_err) {
1573 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001574 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001575 }
1576
1577 assert(bdrv_opt_mem_align(bs) != 0);
1578 assert(bdrv_min_mem_align(bs) != 0);
1579 assert(is_power_of_2(bs->bl.request_alignment));
1580
Kevin Wolf0f122642018-03-28 18:29:18 +02001581 for (i = 0; i < bs->quiesce_counter; i++) {
1582 if (drv->bdrv_co_drain_begin) {
1583 drv->bdrv_co_drain_begin(bs);
1584 }
1585 }
1586
Kevin Wolf01a56502017-01-18 15:51:56 +01001587 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001588open_failed:
1589 bs->drv = NULL;
1590 if (bs->file != NULL) {
1591 bdrv_unref_child(bs, bs->file);
1592 bs->file = NULL;
1593 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001594 g_free(bs->opaque);
1595 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001596 return ret;
1597}
1598
Kevin Wolf680c7f92017-01-18 17:16:41 +01001599BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1600 int flags, Error **errp)
1601{
1602 BlockDriverState *bs;
1603 int ret;
1604
1605 bs = bdrv_new();
1606 bs->open_flags = flags;
1607 bs->explicit_options = qdict_new();
1608 bs->options = qdict_new();
1609 bs->opaque = NULL;
1610
1611 update_options_from_flags(bs->options, flags);
1612
1613 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1614 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001615 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001616 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001617 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001618 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001619 bdrv_unref(bs);
1620 return NULL;
1621 }
1622
1623 return bs;
1624}
1625
Kevin Wolfc5f30142016-10-06 11:33:17 +02001626QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001627 .name = "bdrv_common",
1628 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1629 .desc = {
1630 {
1631 .name = "node-name",
1632 .type = QEMU_OPT_STRING,
1633 .help = "Node name of the block device node",
1634 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001635 {
1636 .name = "driver",
1637 .type = QEMU_OPT_STRING,
1638 .help = "Block driver to use for the node",
1639 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001640 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001641 .name = BDRV_OPT_CACHE_DIRECT,
1642 .type = QEMU_OPT_BOOL,
1643 .help = "Bypass software writeback cache on the host",
1644 },
1645 {
1646 .name = BDRV_OPT_CACHE_NO_FLUSH,
1647 .type = QEMU_OPT_BOOL,
1648 .help = "Ignore flush requests",
1649 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001650 {
1651 .name = BDRV_OPT_READ_ONLY,
1652 .type = QEMU_OPT_BOOL,
1653 .help = "Node is opened in read-only mode",
1654 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001655 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001656 .name = BDRV_OPT_AUTO_READ_ONLY,
1657 .type = QEMU_OPT_BOOL,
1658 .help = "Node can become read-only if opening read-write fails",
1659 },
1660 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001661 .name = "detect-zeroes",
1662 .type = QEMU_OPT_STRING,
1663 .help = "try to optimize zero writes (off, on, unmap)",
1664 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001665 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001666 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001667 .type = QEMU_OPT_STRING,
1668 .help = "discard operation (ignore/off, unmap/on)",
1669 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001670 {
1671 .name = BDRV_OPT_FORCE_SHARE,
1672 .type = QEMU_OPT_BOOL,
1673 .help = "always accept other writers (default: off)",
1674 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001675 { /* end of list */ }
1676 },
1677};
1678
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001679QemuOptsList bdrv_create_opts_simple = {
1680 .name = "simple-create-opts",
1681 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001682 .desc = {
1683 {
1684 .name = BLOCK_OPT_SIZE,
1685 .type = QEMU_OPT_SIZE,
1686 .help = "Virtual disk size"
1687 },
1688 {
1689 .name = BLOCK_OPT_PREALLOC,
1690 .type = QEMU_OPT_STRING,
1691 .help = "Preallocation mode (allowed values: off)"
1692 },
1693 { /* end of list */ }
1694 }
1695};
1696
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001697/*
Kevin Wolf57915332010-04-14 15:24:50 +02001698 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001699 *
1700 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001701 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001702static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001703 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001704{
1705 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001706 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001707 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001708 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001709 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001710 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001711 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001712 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001713 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001714
Paolo Bonzini64058752012-05-08 16:51:49 +02001715 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001716 assert(options != NULL && bs->options != options);
Kevin Wolf57915332010-04-14 15:24:50 +02001717
Kevin Wolf62392eb2015-04-24 16:38:02 +02001718 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001719 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001720 ret = -EINVAL;
1721 goto fail_opts;
1722 }
1723
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001724 update_flags_from_options(&bs->open_flags, opts);
1725
Kevin Wolf62392eb2015-04-24 16:38:02 +02001726 driver_name = qemu_opt_get(opts, "driver");
1727 drv = bdrv_find_format(driver_name);
1728 assert(drv != NULL);
1729
Fam Zheng5a9347c2017-05-03 00:35:37 +08001730 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1731
1732 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1733 error_setg(errp,
1734 BDRV_OPT_FORCE_SHARE
1735 "=on can only be used with read-only images");
1736 ret = -EINVAL;
1737 goto fail_opts;
1738 }
1739
Kevin Wolf45673672013-04-22 17:48:40 +02001740 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001741 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001742 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001743 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001744 /*
1745 * Caution: while qdict_get_try_str() is fine, getting
1746 * non-string types would require more care. When @options
1747 * come from -blockdev or blockdev_add, its members are typed
1748 * according to the QAPI schema, but when they come from
1749 * -drive, they're all QString.
1750 */
Kevin Wolf45673672013-04-22 17:48:40 +02001751 filename = qdict_get_try_str(options, "filename");
1752 }
1753
Max Reitz4a008242017-04-13 18:06:24 +02001754 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001755 error_setg(errp, "The '%s' block driver requires a file name",
1756 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001757 ret = -EINVAL;
1758 goto fail_opts;
1759 }
1760
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001761 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1762 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001763
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001764 ro = bdrv_is_read_only(bs);
1765
1766 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1767 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001768 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1769 } else {
1770 ret = -ENOTSUP;
1771 }
1772 if (ret < 0) {
1773 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001774 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001775 ? "Driver '%s' can only be used for read-only devices"
1776 : "Driver '%s' is not whitelisted",
1777 drv->format_name);
1778 goto fail_opts;
1779 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001780 }
Kevin Wolf57915332010-04-14 15:24:50 +02001781
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001782 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001783 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001784
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001785 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001786 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001787 bdrv_enable_copy_on_read(bs);
1788 } else {
1789 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001790 ret = -EINVAL;
1791 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001792 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001793 }
1794
Alberto Garcia415bbca2018-10-03 13:23:13 +03001795 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001796 if (discard != NULL) {
1797 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1798 error_setg(errp, "Invalid discard option");
1799 ret = -EINVAL;
1800 goto fail_opts;
1801 }
1802 }
1803
Alberto Garcia543770b2018-09-06 12:37:09 +03001804 bs->detect_zeroes =
1805 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1806 if (local_err) {
1807 error_propagate(errp, local_err);
1808 ret = -EINVAL;
1809 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001810 }
1811
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001812 if (filename != NULL) {
1813 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1814 } else {
1815 bs->filename[0] = '\0';
1816 }
Max Reitz91af7012014-07-18 20:24:56 +02001817 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001818
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001819 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001820 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001821 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001822
Kevin Wolf01a56502017-01-18 15:51:56 +01001823 assert(!drv->bdrv_file_open || file == NULL);
1824 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001825 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001826 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001827 }
1828
Kevin Wolf18edf282015-04-07 17:12:56 +02001829 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001830 return 0;
1831
Kevin Wolf18edf282015-04-07 17:12:56 +02001832fail_opts:
1833 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001834 return ret;
1835}
1836
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001837static QDict *parse_json_filename(const char *filename, Error **errp)
1838{
1839 QObject *options_obj;
1840 QDict *options;
1841 int ret;
1842
1843 ret = strstart(filename, "json:", &filename);
1844 assert(ret);
1845
Markus Armbruster5577fff2017-02-28 22:26:59 +01001846 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001847 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001848 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001849 return NULL;
1850 }
1851
Max Reitz7dc847e2018-02-24 16:40:29 +01001852 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001853 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001854 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001855 error_setg(errp, "Invalid JSON object given");
1856 return NULL;
1857 }
1858
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001859 qdict_flatten(options);
1860
1861 return options;
1862}
1863
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001864static void parse_json_protocol(QDict *options, const char **pfilename,
1865 Error **errp)
1866{
1867 QDict *json_options;
1868 Error *local_err = NULL;
1869
1870 /* Parse json: pseudo-protocol */
1871 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1872 return;
1873 }
1874
1875 json_options = parse_json_filename(*pfilename, &local_err);
1876 if (local_err) {
1877 error_propagate(errp, local_err);
1878 return;
1879 }
1880
1881 /* Options given in the filename have lower priority than options
1882 * specified directly */
1883 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001884 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001885 *pfilename = NULL;
1886}
1887
Kevin Wolf57915332010-04-14 15:24:50 +02001888/*
Kevin Wolff54120f2014-05-26 11:09:59 +02001889 * Fills in default options for opening images and converts the legacy
1890 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04001891 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
1892 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02001893 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001894static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02001895 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02001896{
1897 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04001898 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001899 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02001900 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001901 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001902
Markus Armbruster129c7d12017-03-30 19:43:12 +02001903 /*
1904 * Caution: while qdict_get_try_str() is fine, getting non-string
1905 * types would require more care. When @options come from
1906 * -blockdev or blockdev_add, its members are typed according to
1907 * the QAPI schema, but when they come from -drive, they're all
1908 * QString.
1909 */
Max Reitz53a29512015-03-19 14:53:16 -04001910 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02001911 if (drvname) {
1912 drv = bdrv_find_format(drvname);
1913 if (!drv) {
1914 error_setg(errp, "Unknown driver '%s'", drvname);
1915 return -ENOENT;
1916 }
1917 /* If the user has explicitly specified the driver, this choice should
1918 * override the BDRV_O_PROTOCOL flag */
1919 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04001920 }
1921
1922 if (protocol) {
1923 *flags |= BDRV_O_PROTOCOL;
1924 } else {
1925 *flags &= ~BDRV_O_PROTOCOL;
1926 }
1927
Kevin Wolf91a097e2015-05-08 17:49:53 +02001928 /* Translate cache options from flags into options */
1929 update_options_from_flags(*options, *flags);
1930
Kevin Wolff54120f2014-05-26 11:09:59 +02001931 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001932 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001933 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001934 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02001935 parse_filename = true;
1936 } else {
1937 error_setg(errp, "Can't specify 'file' and 'filename' options at "
1938 "the same time");
1939 return -EINVAL;
1940 }
1941 }
1942
1943 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02001944 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02001945 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02001946
Max Reitz053e1572015-08-26 19:47:51 +02001947 if (!drvname && protocol) {
1948 if (filename) {
1949 drv = bdrv_find_protocol(filename, parse_filename, errp);
1950 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001951 return -EINVAL;
1952 }
Max Reitz053e1572015-08-26 19:47:51 +02001953
1954 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05001955 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02001956 } else {
1957 error_setg(errp, "Must specify either driver or file");
1958 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02001959 }
1960 }
1961
Kevin Wolf17b005f2014-05-27 10:50:29 +02001962 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02001963
1964 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02001965 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02001966 drv->bdrv_parse_filename(filename, *options, &local_err);
1967 if (local_err) {
1968 error_propagate(errp, local_err);
1969 return -EINVAL;
1970 }
1971
1972 if (!drv->bdrv_needs_filename) {
1973 qdict_del(*options, "filename");
1974 }
1975 }
1976
1977 return 0;
1978}
1979
Kevin Wolf148eb132017-09-14 14:32:04 +02001980typedef struct BlockReopenQueueEntry {
1981 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01001982 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02001983 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001984 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02001985} BlockReopenQueueEntry;
1986
1987/*
1988 * Return the flags that @bs will have after the reopens in @q have
1989 * successfully completed. If @q is NULL (or @bs is not contained in @q),
1990 * return the current flags.
1991 */
1992static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
1993{
1994 BlockReopenQueueEntry *entry;
1995
1996 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03001997 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02001998 if (entry->state.bs == bs) {
1999 return entry->state.flags;
2000 }
2001 }
2002 }
2003
2004 return bs->open_flags;
2005}
2006
2007/* Returns whether the image file can be written to after the reopen queue @q
2008 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002009static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2010 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002011{
2012 int flags = bdrv_reopen_get_flags(q, bs);
2013
2014 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2015}
2016
Max Reitzcc022142018-06-06 21:37:00 +02002017/*
2018 * Return whether the BDS can be written to. This is not necessarily
2019 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2020 * be written to but do not count as read-only images.
2021 */
2022bool bdrv_is_writable(BlockDriverState *bs)
2023{
2024 return bdrv_is_writable_after_reopen(bs, NULL);
2025}
2026
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002027static char *bdrv_child_user_desc(BdrvChild *c)
2028{
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002029 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002030}
2031
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002032/*
2033 * Check that @a allows everything that @b needs. @a and @b must reference same
2034 * child node.
2035 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002036static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2037{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002038 const char *child_bs_name;
2039 g_autofree char *a_user = NULL;
2040 g_autofree char *b_user = NULL;
2041 g_autofree char *perms = NULL;
2042
2043 assert(a->bs);
2044 assert(a->bs == b->bs);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002045
2046 if ((b->perm & a->shared_perm) == b->perm) {
2047 return true;
2048 }
2049
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002050 child_bs_name = bdrv_get_node_name(b->bs);
2051 a_user = bdrv_child_user_desc(a);
2052 b_user = bdrv_child_user_desc(b);
2053 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2054
2055 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2056 "both required by %s (uses node '%s' as '%s' child) and "
2057 "unshared by %s (uses node '%s' as '%s' child).",
2058 child_bs_name, perms,
2059 b_user, child_bs_name, b->name,
2060 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002061
2062 return false;
2063}
2064
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002065static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002066{
2067 BdrvChild *a, *b;
2068
2069 /*
2070 * During the loop we'll look at each pair twice. That's correct because
2071 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2072 * directions.
2073 */
2074 QLIST_FOREACH(a, &bs->parents, next_parent) {
2075 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002076 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002077 continue;
2078 }
2079
2080 if (!bdrv_a_allow_b(a, b, errp)) {
2081 return true;
2082 }
2083 }
2084 }
2085
2086 return false;
2087}
2088
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002089static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002090 BdrvChild *c, BdrvChildRole role,
2091 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002092 uint64_t parent_perm, uint64_t parent_shared,
2093 uint64_t *nperm, uint64_t *nshared)
2094{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002095 assert(bs->drv && bs->drv->bdrv_child_perm);
Max Reitze5d8a402020-05-13 13:05:44 +02002096 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002097 parent_perm, parent_shared,
2098 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002099 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002100 if (child_bs && child_bs->force_share) {
2101 *nshared = BLK_PERM_ALL;
2102 }
2103}
2104
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002105/*
2106 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2107 * nodes that are already in the @list, of course) so that final list is
2108 * topologically sorted. Return the result (GSList @list object is updated, so
2109 * don't use old reference after function call).
2110 *
2111 * On function start @list must be already topologically sorted and for any node
2112 * in the @list the whole subtree of the node must be in the @list as well. The
2113 * simplest way to satisfy this criteria: use only result of
2114 * bdrv_topological_dfs() or NULL as @list parameter.
2115 */
2116static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2117 BlockDriverState *bs)
2118{
2119 BdrvChild *child;
2120 g_autoptr(GHashTable) local_found = NULL;
2121
2122 if (!found) {
2123 assert(!list);
2124 found = local_found = g_hash_table_new(NULL, NULL);
2125 }
2126
2127 if (g_hash_table_contains(found, bs)) {
2128 return list;
2129 }
2130 g_hash_table_add(found, bs);
2131
2132 QLIST_FOREACH(child, &bs->children, next) {
2133 list = bdrv_topological_dfs(list, found, child->bs);
2134 }
2135
2136 return g_slist_prepend(list, bs);
2137}
2138
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002139typedef struct BdrvChildSetPermState {
2140 BdrvChild *child;
2141 uint64_t old_perm;
2142 uint64_t old_shared_perm;
2143} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002144
2145static void bdrv_child_set_perm_abort(void *opaque)
2146{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002147 BdrvChildSetPermState *s = opaque;
2148
2149 s->child->perm = s->old_perm;
2150 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002151}
2152
2153static TransactionActionDrv bdrv_child_set_pem_drv = {
2154 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002155 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002156};
2157
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002158static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2159 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002160{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002161 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
2162
2163 *s = (BdrvChildSetPermState) {
2164 .child = c,
2165 .old_perm = c->perm,
2166 .old_shared_perm = c->shared_perm,
2167 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002168
2169 c->perm = perm;
2170 c->shared_perm = shared;
2171
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002172 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002173}
2174
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002175static void bdrv_drv_set_perm_commit(void *opaque)
2176{
2177 BlockDriverState *bs = opaque;
2178 uint64_t cumulative_perms, cumulative_shared_perms;
2179
2180 if (bs->drv->bdrv_set_perm) {
2181 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2182 &cumulative_shared_perms);
2183 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2184 }
2185}
2186
2187static void bdrv_drv_set_perm_abort(void *opaque)
2188{
2189 BlockDriverState *bs = opaque;
2190
2191 if (bs->drv->bdrv_abort_perm_update) {
2192 bs->drv->bdrv_abort_perm_update(bs);
2193 }
2194}
2195
2196TransactionActionDrv bdrv_drv_set_perm_drv = {
2197 .abort = bdrv_drv_set_perm_abort,
2198 .commit = bdrv_drv_set_perm_commit,
2199};
2200
2201static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2202 uint64_t shared_perm, Transaction *tran,
2203 Error **errp)
2204{
2205 if (!bs->drv) {
2206 return 0;
2207 }
2208
2209 if (bs->drv->bdrv_check_perm) {
2210 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2211 if (ret < 0) {
2212 return ret;
2213 }
2214 }
2215
2216 if (tran) {
2217 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2218 }
2219
2220 return 0;
2221}
2222
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002223typedef struct BdrvReplaceChildState {
2224 BdrvChild *child;
2225 BlockDriverState *old_bs;
2226} BdrvReplaceChildState;
2227
2228static void bdrv_replace_child_commit(void *opaque)
2229{
2230 BdrvReplaceChildState *s = opaque;
2231
2232 bdrv_unref(s->old_bs);
2233}
2234
2235static void bdrv_replace_child_abort(void *opaque)
2236{
2237 BdrvReplaceChildState *s = opaque;
2238 BlockDriverState *new_bs = s->child->bs;
2239
2240 /* old_bs reference is transparently moved from @s to @s->child */
2241 bdrv_replace_child_noperm(s->child, s->old_bs);
2242 bdrv_unref(new_bs);
2243}
2244
2245static TransactionActionDrv bdrv_replace_child_drv = {
2246 .commit = bdrv_replace_child_commit,
2247 .abort = bdrv_replace_child_abort,
2248 .clean = g_free,
2249};
2250
2251/*
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03002252 * bdrv_replace_child
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002253 *
2254 * Note: real unref of old_bs is done only on commit.
2255 */
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03002256static void bdrv_replace_child(BdrvChild *child, BlockDriverState *new_bs,
2257 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002258{
2259 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
2260 *s = (BdrvReplaceChildState) {
2261 .child = child,
2262 .old_bs = child->bs,
2263 };
2264 tran_add(tran, &bdrv_replace_child_drv, s);
2265
2266 if (new_bs) {
2267 bdrv_ref(new_bs);
2268 }
2269 bdrv_replace_child_noperm(child, new_bs);
2270 /* old_bs reference is transparently moved from @child to @s */
2271}
2272
Kevin Wolf33a610c2016-12-15 13:04:20 +01002273/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002274 * Refresh permissions in @bs subtree. The function is intended to be called
2275 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002276 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002277static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2278 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002279{
2280 BlockDriver *drv = bs->drv;
2281 BdrvChild *c;
2282 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002283 uint64_t cumulative_perms, cumulative_shared_perms;
2284
2285 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002286
2287 /* Write permissions never work with read-only images */
2288 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002289 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002290 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002291 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2292 error_setg(errp, "Block node is read-only");
2293 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002294 error_setg(errp, "Read-only block node '%s' cannot support "
2295 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002296 }
2297
Kevin Wolf33a610c2016-12-15 13:04:20 +01002298 return -EPERM;
2299 }
2300
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002301 /*
2302 * Unaligned requests will automatically be aligned to bl.request_alignment
2303 * and without RESIZE we can't extend requests to write to space beyond the
2304 * end of the image, so it's required that the image size is aligned.
2305 */
2306 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2307 !(cumulative_perms & BLK_PERM_RESIZE))
2308 {
2309 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2310 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2311 "Image size is not a multiple of request "
2312 "alignment");
2313 return -EPERM;
2314 }
2315 }
2316
Kevin Wolf33a610c2016-12-15 13:04:20 +01002317 /* Check this node */
2318 if (!drv) {
2319 return 0;
2320 }
2321
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002322 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002323 errp);
2324 if (ret < 0) {
2325 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002326 }
2327
Kevin Wolf78e421c2016-12-20 23:25:12 +01002328 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002329 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002330 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002331 return 0;
2332 }
2333
2334 /* Check all children */
2335 QLIST_FOREACH(c, &bs->children, next) {
2336 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002337
Max Reitze5d8a402020-05-13 13:05:44 +02002338 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002339 cumulative_perms, cumulative_shared_perms,
2340 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002341 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002342 }
2343
2344 return 0;
2345}
2346
Vladimir Sementsov-Ogievskiy25409802021-04-28 18:18:00 +03002347static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2348 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002349{
2350 int ret;
2351 BlockDriverState *bs;
2352
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002353 for ( ; list; list = list->next) {
2354 bs = list->data;
2355
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002356 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002357 return -EINVAL;
2358 }
2359
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002360 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002361 if (ret < 0) {
2362 return ret;
2363 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002364 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002365
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002366 return 0;
2367}
2368
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002369void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2370 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002371{
2372 BdrvChild *c;
2373 uint64_t cumulative_perms = 0;
2374 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2375
2376 QLIST_FOREACH(c, &bs->parents, next_parent) {
2377 cumulative_perms |= c->perm;
2378 cumulative_shared_perms &= c->shared_perm;
2379 }
2380
2381 *perm = cumulative_perms;
2382 *shared_perm = cumulative_shared_perms;
2383}
2384
Fam Zheng51761962017-05-03 00:35:36 +08002385char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002386{
2387 struct perm_name {
2388 uint64_t perm;
2389 const char *name;
2390 } permissions[] = {
2391 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2392 { BLK_PERM_WRITE, "write" },
2393 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2394 { BLK_PERM_RESIZE, "resize" },
2395 { BLK_PERM_GRAPH_MOD, "change children" },
2396 { 0, NULL }
2397 };
2398
Alberto Garciae2a74232020-01-10 18:15:18 +01002399 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002400 struct perm_name *p;
2401
2402 for (p = permissions; p->name; p++) {
2403 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002404 if (result->len > 0) {
2405 g_string_append(result, ", ");
2406 }
2407 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002408 }
2409 }
2410
Alberto Garciae2a74232020-01-10 18:15:18 +01002411 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002412}
2413
Kevin Wolf33a610c2016-12-15 13:04:20 +01002414
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002415static int bdrv_refresh_perms(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002416{
2417 int ret;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002418 Transaction *tran = tran_new();
2419 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002420
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002421 ret = bdrv_list_refresh_perms(list, NULL, tran, errp);
2422 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002423
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002424 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002425}
2426
Kevin Wolf33a610c2016-12-15 13:04:20 +01002427int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2428 Error **errp)
2429{
Max Reitz10467792019-05-22 19:03:51 +02002430 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002431 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002432 int ret;
2433
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002434 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002435
2436 ret = bdrv_refresh_perms(c->bs, &local_err);
2437
2438 tran_finalize(tran, ret);
2439
Kevin Wolf33a610c2016-12-15 13:04:20 +01002440 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002441 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2442 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002443 error_propagate(errp, local_err);
2444 } else {
2445 /*
2446 * Our caller may intend to only loosen restrictions and
2447 * does not expect this function to fail. Errors are not
2448 * fatal in such a case, so we can just hide them from our
2449 * caller.
2450 */
2451 error_free(local_err);
2452 ret = 0;
2453 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002454 }
2455
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002456 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002457}
2458
Max Reitzc1087f12019-05-22 19:03:46 +02002459int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2460{
2461 uint64_t parent_perms, parent_shared;
2462 uint64_t perms, shared;
2463
2464 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002465 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002466 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002467
2468 return bdrv_child_try_set_perm(c, perms, shared, errp);
2469}
2470
Max Reitz87278af2020-05-13 13:05:40 +02002471/*
2472 * Default implementation for .bdrv_child_perm() for block filters:
2473 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2474 * filtered child.
2475 */
2476static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002477 BdrvChildRole role,
2478 BlockReopenQueue *reopen_queue,
2479 uint64_t perm, uint64_t shared,
2480 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002481{
Kevin Wolfe444fa82019-08-02 15:59:41 +02002482 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2483 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002484}
2485
Max Reitz70082db2020-05-13 13:05:26 +02002486static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002487 BdrvChildRole role,
2488 BlockReopenQueue *reopen_queue,
2489 uint64_t perm, uint64_t shared,
2490 uint64_t *nperm, uint64_t *nshared)
2491{
Max Reitze5d8a402020-05-13 13:05:44 +02002492 assert(role & BDRV_CHILD_COW);
Max Reitz70082db2020-05-13 13:05:26 +02002493
2494 /*
2495 * We want consistent read from backing files if the parent needs it.
2496 * No other operations are performed on backing files.
2497 */
2498 perm &= BLK_PERM_CONSISTENT_READ;
2499
2500 /*
2501 * If the parent can deal with changing data, we're okay with a
2502 * writable and resizable backing file.
2503 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2504 */
2505 if (shared & BLK_PERM_WRITE) {
2506 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2507 } else {
2508 shared = 0;
2509 }
2510
2511 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_GRAPH_MOD |
2512 BLK_PERM_WRITE_UNCHANGED;
2513
2514 if (bs->open_flags & BDRV_O_INACTIVE) {
2515 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2516 }
2517
2518 *nperm = perm;
2519 *nshared = shared;
2520}
2521
Max Reitz6f838a42020-05-13 13:05:27 +02002522static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002523 BdrvChildRole role,
2524 BlockReopenQueue *reopen_queue,
2525 uint64_t perm, uint64_t shared,
2526 uint64_t *nperm, uint64_t *nshared)
2527{
2528 int flags;
2529
Max Reitze5d8a402020-05-13 13:05:44 +02002530 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002531
2532 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2533
2534 /*
2535 * Apart from the modifications below, the same permissions are
2536 * forwarded and left alone as for filters
2537 */
Max Reitze5d8a402020-05-13 13:05:44 +02002538 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002539 perm, shared, &perm, &shared);
2540
Max Reitzf8890542020-05-13 13:05:28 +02002541 if (role & BDRV_CHILD_METADATA) {
2542 /* Format drivers may touch metadata even if the guest doesn't write */
2543 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2544 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2545 }
2546
2547 /*
2548 * bs->file always needs to be consistent because of the
2549 * metadata. We can never allow other users to resize or write
2550 * to it.
2551 */
2552 if (!(flags & BDRV_O_NO_IO)) {
2553 perm |= BLK_PERM_CONSISTENT_READ;
2554 }
2555 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002556 }
2557
Max Reitzf8890542020-05-13 13:05:28 +02002558 if (role & BDRV_CHILD_DATA) {
2559 /*
2560 * Technically, everything in this block is a subset of the
2561 * BDRV_CHILD_METADATA path taken above, and so this could
2562 * be an "else if" branch. However, that is not obvious, and
2563 * this function is not performance critical, therefore we let
2564 * this be an independent "if".
2565 */
2566
2567 /*
2568 * We cannot allow other users to resize the file because the
2569 * format driver might have some assumptions about the size
2570 * (e.g. because it is stored in metadata, or because the file
2571 * is split into fixed-size data files).
2572 */
2573 shared &= ~BLK_PERM_RESIZE;
2574
2575 /*
2576 * WRITE_UNCHANGED often cannot be performed as such on the
2577 * data file. For example, the qcow2 driver may still need to
2578 * write copied clusters on copy-on-read.
2579 */
2580 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2581 perm |= BLK_PERM_WRITE;
2582 }
2583
2584 /*
2585 * If the data file is written to, the format driver may
2586 * expect to be able to resize it by writing beyond the EOF.
2587 */
2588 if (perm & BLK_PERM_WRITE) {
2589 perm |= BLK_PERM_RESIZE;
2590 }
Max Reitz6f838a42020-05-13 13:05:27 +02002591 }
Max Reitz6f838a42020-05-13 13:05:27 +02002592
2593 if (bs->open_flags & BDRV_O_INACTIVE) {
2594 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2595 }
2596
2597 *nperm = perm;
2598 *nshared = shared;
2599}
2600
Max Reitz2519f542020-05-13 13:05:29 +02002601void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002602 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002603 uint64_t perm, uint64_t shared,
2604 uint64_t *nperm, uint64_t *nshared)
2605{
Max Reitz2519f542020-05-13 13:05:29 +02002606 if (role & BDRV_CHILD_FILTERED) {
2607 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2608 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002609 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002610 perm, shared, nperm, nshared);
2611 } else if (role & BDRV_CHILD_COW) {
2612 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002613 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002614 perm, shared, nperm, nshared);
2615 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002616 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002617 perm, shared, nperm, nshared);
2618 } else {
2619 g_assert_not_reached();
2620 }
2621}
2622
Max Reitz7b1d9c42019-11-08 13:34:51 +01002623uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2624{
2625 static const uint64_t permissions[] = {
2626 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2627 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2628 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2629 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
2630 [BLOCK_PERMISSION_GRAPH_MOD] = BLK_PERM_GRAPH_MOD,
2631 };
2632
2633 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2634 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2635
2636 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2637
2638 return permissions[qapi_perm];
2639}
2640
Kevin Wolf8ee03992017-03-06 13:45:28 +01002641static void bdrv_replace_child_noperm(BdrvChild *child,
2642 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002643{
2644 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002645 int new_bs_quiesce_counter;
2646 int drain_saldo;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002647
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002648 assert(!child->frozen);
2649
Fam Zhengbb2614e2017-04-07 14:54:10 +08002650 if (old_bs && new_bs) {
2651 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2652 }
Max Reitzdebc2922019-07-22 15:33:44 +02002653
2654 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2655 drain_saldo = new_bs_quiesce_counter - child->parent_quiesce_counter;
2656
2657 /*
2658 * If the new child node is drained but the old one was not, flush
2659 * all outstanding requests to the old child node.
2660 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002661 while (drain_saldo > 0 && child->klass->drained_begin) {
Max Reitzdebc2922019-07-22 15:33:44 +02002662 bdrv_parent_drained_begin_single(child, true);
2663 drain_saldo--;
2664 }
2665
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002666 if (old_bs) {
Kevin Wolfd736f112017-12-18 16:05:48 +01002667 /* Detach first so that the recursive drain sections coming from @child
2668 * are already gone and we only end the drain sections that came from
2669 * elsewhere. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002670 if (child->klass->detach) {
2671 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002672 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002673 QLIST_REMOVE(child, next_parent);
2674 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002675
2676 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002677
2678 if (new_bs) {
2679 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzdebc2922019-07-22 15:33:44 +02002680
2681 /*
2682 * Detaching the old node may have led to the new node's
2683 * quiesce_counter having been decreased. Not a problem, we
2684 * just need to recognize this here and then invoke
2685 * drained_end appropriately more often.
2686 */
2687 assert(new_bs->quiesce_counter <= new_bs_quiesce_counter);
2688 drain_saldo += new_bs->quiesce_counter - new_bs_quiesce_counter;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002689
Kevin Wolfd736f112017-12-18 16:05:48 +01002690 /* Attach only after starting new drained sections, so that recursive
2691 * drain sections coming from @child don't get an extra .drained_begin
2692 * callback. */
Max Reitzbd86fb92020-05-13 13:05:13 +02002693 if (child->klass->attach) {
2694 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002695 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002696 }
Max Reitzdebc2922019-07-22 15:33:44 +02002697
2698 /*
2699 * If the old child node was drained but the new one is not, allow
2700 * requests to come in only after the new node has been attached.
2701 */
Max Reitzbd86fb92020-05-13 13:05:13 +02002702 while (drain_saldo < 0 && child->klass->drained_end) {
Max Reitzdebc2922019-07-22 15:33:44 +02002703 bdrv_parent_drained_end_single(child);
2704 drain_saldo++;
2705 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002706}
2707
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002708static void bdrv_child_free(void *opaque)
2709{
2710 BdrvChild *c = opaque;
2711
2712 g_free(c->name);
2713 g_free(c);
2714}
2715
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002716static void bdrv_remove_empty_child(BdrvChild *child)
2717{
2718 assert(!child->bs);
2719 QLIST_SAFE_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03002720 bdrv_child_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002721}
2722
2723typedef struct BdrvAttachChildCommonState {
2724 BdrvChild **child;
2725 AioContext *old_parent_ctx;
2726 AioContext *old_child_ctx;
2727} BdrvAttachChildCommonState;
2728
2729static void bdrv_attach_child_common_abort(void *opaque)
2730{
2731 BdrvAttachChildCommonState *s = opaque;
2732 BdrvChild *child = *s->child;
2733 BlockDriverState *bs = child->bs;
2734
2735 bdrv_replace_child_noperm(child, NULL);
2736
2737 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
2738 bdrv_try_set_aio_context(bs, s->old_child_ctx, &error_abort);
2739 }
2740
2741 if (bdrv_child_get_parent_aio_context(child) != s->old_parent_ctx) {
2742 GSList *ignore = g_slist_prepend(NULL, child);
2743
2744 child->klass->can_set_aio_ctx(child, s->old_parent_ctx, &ignore,
2745 &error_abort);
2746 g_slist_free(ignore);
2747 ignore = g_slist_prepend(NULL, child);
2748 child->klass->set_aio_ctx(child, s->old_parent_ctx, &ignore);
2749
2750 g_slist_free(ignore);
2751 }
2752
2753 bdrv_unref(bs);
2754 bdrv_remove_empty_child(child);
2755 *s->child = NULL;
2756}
2757
2758static TransactionActionDrv bdrv_attach_child_common_drv = {
2759 .abort = bdrv_attach_child_common_abort,
2760 .clean = g_free,
2761};
2762
2763/*
2764 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002765 *
2766 * Resulting new child is returned through @child.
2767 * At start *@child must be NULL.
2768 * @child is saved to a new entry of @tran, so that *@child could be reverted to
2769 * NULL on abort(). So referenced variable must live at least until transaction
2770 * end.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002771 */
2772static int bdrv_attach_child_common(BlockDriverState *child_bs,
2773 const char *child_name,
2774 const BdrvChildClass *child_class,
2775 BdrvChildRole child_role,
2776 uint64_t perm, uint64_t shared_perm,
2777 void *opaque, BdrvChild **child,
2778 Transaction *tran, Error **errp)
2779{
2780 BdrvChild *new_child;
2781 AioContext *parent_ctx;
2782 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2783
2784 assert(child);
2785 assert(*child == NULL);
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002786 assert(child_class->get_parent_desc);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002787
2788 new_child = g_new(BdrvChild, 1);
2789 *new_child = (BdrvChild) {
2790 .bs = NULL,
2791 .name = g_strdup(child_name),
2792 .klass = child_class,
2793 .role = child_role,
2794 .perm = perm,
2795 .shared_perm = shared_perm,
2796 .opaque = opaque,
2797 };
2798
2799 /*
2800 * If the AioContexts don't match, first try to move the subtree of
2801 * child_bs into the AioContext of the new parent. If this doesn't work,
2802 * try moving the parent into the AioContext of child_bs instead.
2803 */
2804 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
2805 if (child_ctx != parent_ctx) {
2806 Error *local_err = NULL;
2807 int ret = bdrv_try_set_aio_context(child_bs, parent_ctx, &local_err);
2808
2809 if (ret < 0 && child_class->can_set_aio_ctx) {
2810 GSList *ignore = g_slist_prepend(NULL, new_child);
2811 if (child_class->can_set_aio_ctx(new_child, child_ctx, &ignore,
2812 NULL))
2813 {
2814 error_free(local_err);
2815 ret = 0;
2816 g_slist_free(ignore);
2817 ignore = g_slist_prepend(NULL, new_child);
2818 child_class->set_aio_ctx(new_child, child_ctx, &ignore);
2819 }
2820 g_slist_free(ignore);
2821 }
2822
2823 if (ret < 0) {
2824 error_propagate(errp, local_err);
2825 bdrv_remove_empty_child(new_child);
2826 return ret;
2827 }
2828 }
2829
2830 bdrv_ref(child_bs);
2831 bdrv_replace_child_noperm(new_child, child_bs);
2832
2833 *child = new_child;
2834
2835 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
2836 *s = (BdrvAttachChildCommonState) {
2837 .child = child,
2838 .old_parent_ctx = parent_ctx,
2839 .old_child_ctx = child_ctx,
2840 };
2841 tran_add(tran, &bdrv_attach_child_common_drv, s);
2842
2843 return 0;
2844}
2845
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002846/*
2847 * Variable referenced by @child must live at least until transaction end.
2848 * (see bdrv_attach_child_common() doc for details)
2849 */
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002850static int bdrv_attach_child_noperm(BlockDriverState *parent_bs,
2851 BlockDriverState *child_bs,
2852 const char *child_name,
2853 const BdrvChildClass *child_class,
2854 BdrvChildRole child_role,
2855 BdrvChild **child,
2856 Transaction *tran,
2857 Error **errp)
2858{
2859 int ret;
2860 uint64_t perm, shared_perm;
2861
2862 assert(parent_bs->drv);
2863
2864 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
2865 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
2866 perm, shared_perm, &perm, &shared_perm);
2867
2868 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2869 child_role, perm, shared_perm, parent_bs,
2870 child, tran, errp);
2871 if (ret < 0) {
2872 return ret;
2873 }
2874
2875 QLIST_INSERT_HEAD(&parent_bs->children, *child, next);
2876 /*
2877 * child is removed in bdrv_attach_child_common_abort(), so don't care to
2878 * abort this change separately.
2879 */
2880
2881 return 0;
2882}
2883
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002884static void bdrv_detach_child(BdrvChild *child)
2885{
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002886 BlockDriverState *old_bs = child->bs;
2887
2888 bdrv_replace_child_noperm(child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002889 bdrv_remove_empty_child(child);
Vladimir Sementsov-Ogievskiy4954aac2021-04-28 18:18:01 +03002890
2891 if (old_bs) {
2892 /*
2893 * Update permissions for old node. We're just taking a parent away, so
2894 * we're loosening restrictions. Errors of permission update are not
2895 * fatal in this case, ignore them.
2896 */
2897 bdrv_refresh_perms(old_bs, NULL);
2898
2899 /*
2900 * When the parent requiring a non-default AioContext is removed, the
2901 * node moves back to the main AioContext
2902 */
2903 bdrv_try_set_aio_context(old_bs, qemu_get_aio_context(), NULL);
2904 }
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002905}
2906
Alberto Garciab441dc72019-05-13 16:46:18 +03002907/*
2908 * This function steals the reference to child_bs from the caller.
2909 * That reference is later dropped by bdrv_root_unref_child().
2910 *
2911 * On failure NULL is returned, errp is set and the reference to
2912 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002913 *
2914 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
2915 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03002916 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002917BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
2918 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002919 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002920 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002921 uint64_t perm, uint64_t shared_perm,
2922 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02002923{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002924 int ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002925 BdrvChild *child = NULL;
2926 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002927
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002928 ret = bdrv_attach_child_common(child_bs, child_name, child_class,
2929 child_role, perm, shared_perm, opaque,
2930 &child, tran, errp);
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002931 if (ret < 0) {
Kevin Wolfe878bb12021-05-03 13:05:54 +02002932 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002933 }
2934
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002935 ret = bdrv_refresh_perms(child_bs, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02002936
Kevin Wolfe878bb12021-05-03 13:05:54 +02002937out:
2938 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002939 /* child is unset on failure by bdrv_attach_child_common_abort() */
2940 assert((ret < 0) == !child);
2941
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002942 bdrv_unref(child_bs);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02002943 return child;
Kevin Wolfdf581792015-06-15 11:53:47 +02002944}
2945
Alberto Garciab441dc72019-05-13 16:46:18 +03002946/*
2947 * This function transfers the reference to child_bs from the caller
2948 * to parent_bs. That reference is later dropped by parent_bs on
2949 * bdrv_close() or if someone calls bdrv_unref_child().
2950 *
2951 * On failure NULL is returned, errp is set and the reference to
2952 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02002953 *
2954 * If @parent_bs and @child_bs are in different AioContexts, the caller must
2955 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03002956 */
Wen Congyang98292c62016-05-10 15:36:38 +08002957BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
2958 BlockDriverState *child_bs,
2959 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02002960 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02002961 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01002962 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01002963{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002964 int ret;
2965 BdrvChild *child = NULL;
2966 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002967
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002968 ret = bdrv_attach_child_noperm(parent_bs, child_bs, child_name, child_class,
2969 child_role, &child, tran, errp);
2970 if (ret < 0) {
2971 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002972 }
2973
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002974 ret = bdrv_refresh_perms(parent_bs, errp);
2975 if (ret < 0) {
2976 goto out;
2977 }
2978
2979out:
2980 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002981 /* child is unset on failure by bdrv_attach_child_common_abort() */
2982 assert((ret < 0) == !child);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03002983
2984 bdrv_unref(child_bs);
2985
Kevin Wolff21d96d2016-03-08 13:47:46 +01002986 return child;
2987}
2988
Max Reitz7b99a262019-06-12 16:07:11 +02002989/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01002990void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02002991{
Kevin Wolf779020c2015-10-13 14:09:44 +02002992 BlockDriverState *child_bs;
2993
Kevin Wolff21d96d2016-03-08 13:47:46 +01002994 child_bs = child->bs;
2995 bdrv_detach_child(child);
2996 bdrv_unref(child_bs);
2997}
2998
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03002999typedef struct BdrvSetInheritsFrom {
3000 BlockDriverState *bs;
3001 BlockDriverState *old_inherits_from;
3002} BdrvSetInheritsFrom;
3003
3004static void bdrv_set_inherits_from_abort(void *opaque)
3005{
3006 BdrvSetInheritsFrom *s = opaque;
3007
3008 s->bs->inherits_from = s->old_inherits_from;
3009}
3010
3011static TransactionActionDrv bdrv_set_inherits_from_drv = {
3012 .abort = bdrv_set_inherits_from_abort,
3013 .clean = g_free,
3014};
3015
3016/* @tran is allowed to be NULL. In this case no rollback is possible */
3017static void bdrv_set_inherits_from(BlockDriverState *bs,
3018 BlockDriverState *new_inherits_from,
3019 Transaction *tran)
3020{
3021 if (tran) {
3022 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3023
3024 *s = (BdrvSetInheritsFrom) {
3025 .bs = bs,
3026 .old_inherits_from = bs->inherits_from,
3027 };
3028
3029 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3030 }
3031
3032 bs->inherits_from = new_inherits_from;
3033}
3034
Max Reitz3cf746b2019-07-03 19:28:07 +02003035/**
3036 * Clear all inherits_from pointers from children and grandchildren of
3037 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003038 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003039 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003040static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3041 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003042{
Max Reitz3cf746b2019-07-03 19:28:07 +02003043 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003044
Max Reitz3cf746b2019-07-03 19:28:07 +02003045 if (child->bs->inherits_from == root) {
3046 /*
3047 * Remove inherits_from only when the last reference between root and
3048 * child->bs goes away.
3049 */
3050 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003051 if (c != child && c->bs == child->bs) {
3052 break;
3053 }
3054 }
3055 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003056 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003057 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003058 }
3059
Max Reitz3cf746b2019-07-03 19:28:07 +02003060 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003061 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003062 }
3063}
3064
Max Reitz7b99a262019-06-12 16:07:11 +02003065/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003066void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3067{
3068 if (child == NULL) {
3069 return;
3070 }
3071
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003072 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003073 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003074}
3075
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003076
3077static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3078{
3079 BdrvChild *c;
3080 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003081 if (c->klass->change_media) {
3082 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003083 }
3084 }
3085}
3086
Alberto Garcia0065c452018-10-31 18:16:37 +02003087/* Return true if you can reach parent going through child->inherits_from
3088 * recursively. If parent or child are NULL, return false */
3089static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3090 BlockDriverState *parent)
3091{
3092 while (child && child != parent) {
3093 child = child->inherits_from;
3094 }
3095
3096 return child != NULL;
3097}
3098
Kevin Wolf5db15a52015-09-14 15:33:33 +02003099/*
Max Reitz25191e52020-05-13 13:05:33 +02003100 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3101 * mostly used for COW backing children (role = COW), but also for
3102 * filtered children (role = FILTERED | PRIMARY).
3103 */
3104static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3105{
3106 if (bs->drv && bs->drv->is_filter) {
3107 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3108 } else {
3109 return BDRV_CHILD_COW;
3110 }
3111}
3112
3113/*
Max Reitz9ee413c2019-06-12 18:42:34 +02003114 * Sets the bs->backing link of a BDS. A new reference is created; callers
Kevin Wolf5db15a52015-09-14 15:33:33 +02003115 * which don't need their own reference any more must call bdrv_unref().
3116 */
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003117static int bdrv_set_backing_noperm(BlockDriverState *bs,
3118 BlockDriverState *backing_hd,
3119 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003120{
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003121 int ret = 0;
Alberto Garcia0065c452018-10-31 18:16:37 +02003122 bool update_inherits_from = bdrv_chain_contains(bs, backing_hd) &&
3123 bdrv_inherits_from_recursive(backing_hd, bs);
3124
Max Reitz9ee413c2019-06-12 18:42:34 +02003125 if (bdrv_is_backing_chain_frozen(bs, child_bs(bs->backing), errp)) {
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003126 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003127 }
3128
Kevin Wolf760e0062015-06-17 14:55:21 +02003129 if (bs->backing) {
Max Reitz7b99a262019-06-12 16:07:11 +02003130 /* Cannot be frozen, we checked that above */
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003131 bdrv_unset_inherits_from(bs, bs->backing, tran);
3132 bdrv_remove_filter_or_cow_child(bs, tran);
Fam Zheng826b6ca2014-05-23 21:29:47 +08003133 }
3134
Fam Zheng8d24cce2014-05-23 21:29:45 +08003135 if (!backing_hd) {
3136 goto out;
3137 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003138
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003139 ret = bdrv_attach_child_noperm(bs, backing_hd, "backing",
3140 &child_of_bds, bdrv_backing_role(bs),
3141 &bs->backing, tran, errp);
3142 if (ret < 0) {
3143 return ret;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003144 }
3145
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003146
3147 /*
3148 * If backing_hd was already part of bs's backing chain, and
Alberto Garcia0065c452018-10-31 18:16:37 +02003149 * inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003150 * point directly to bs (else it will become NULL).
3151 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003152 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003153 bdrv_set_inherits_from(backing_hd, bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003154 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003155
Fam Zheng8d24cce2014-05-23 21:29:45 +08003156out:
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003157 bdrv_refresh_limits(bs, tran, NULL);
3158
3159 return 0;
3160}
3161
3162int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3163 Error **errp)
3164{
3165 int ret;
3166 Transaction *tran = tran_new();
3167
3168 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3169 if (ret < 0) {
3170 goto out;
3171 }
3172
3173 ret = bdrv_refresh_perms(bs, errp);
3174out:
3175 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003176
3177 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003178}
3179
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003180/*
3181 * Opens the backing file for a BlockDriverState if not yet open
3182 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003183 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3184 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3185 * itself, all options starting with "${bdref_key}." are considered part of the
3186 * BlockdevRef.
3187 *
3188 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003189 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003190int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3191 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003192{
Max Reitz6b6833c2019-02-01 20:29:15 +01003193 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003194 char *bdref_key_dot;
3195 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003196 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003197 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003198 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003199 QDict *options;
3200 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003201 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003202
Kevin Wolf760e0062015-06-17 14:55:21 +02003203 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003204 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003205 }
3206
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003207 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003208 if (parent_options == NULL) {
3209 tmp_parent_options = qdict_new();
3210 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003211 }
3212
Paolo Bonzini9156df12012-10-18 16:49:17 +02003213 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003214
3215 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3216 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3217 g_free(bdref_key_dot);
3218
Markus Armbruster129c7d12017-03-30 19:43:12 +02003219 /*
3220 * Caution: while qdict_get_try_str() is fine, getting non-string
3221 * types would require more care. When @parent_options come from
3222 * -blockdev or blockdev_add, its members are typed according to
3223 * the QAPI schema, but when they come from -drive, they're all
3224 * QString.
3225 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003226 reference = qdict_get_try_str(parent_options, bdref_key);
3227 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003228 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003229 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003230 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003231 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003232 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003233 if (qdict_size(options) == 0) {
3234 /* If the user specifies options that do not modify the
3235 * backing file's behavior, we might still consider it the
3236 * implicit backing file. But it's easier this way, and
3237 * just specifying some of the backing BDS's options is
3238 * only possible with -drive anyway (otherwise the QAPI
3239 * schema forces the user to specify everything). */
3240 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3241 }
3242
Max Reitz6b6833c2019-02-01 20:29:15 +01003243 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003244 if (local_err) {
3245 ret = -EINVAL;
3246 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003247 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003248 goto free_exit;
3249 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003250 }
3251
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003252 if (!bs->drv || !bs->drv->supports_backing) {
3253 ret = -EINVAL;
3254 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003255 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003256 goto free_exit;
3257 }
3258
Peter Krempa6bff5972017-10-12 16:14:10 +02003259 if (!reference &&
3260 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003261 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003262 }
3263
Max Reitz6b6833c2019-02-01 20:29:15 +01003264 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003265 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003266 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003267 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003268 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003269 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003270 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003271 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003272
Max Reitz998c2012019-02-01 20:29:08 +01003273 if (implicit_backing) {
3274 bdrv_refresh_filename(backing_hd);
3275 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3276 backing_hd->filename);
3277 }
3278
Kevin Wolf5db15a52015-09-14 15:33:33 +02003279 /* Hook up the backing file link; drop our reference, bs owns the
3280 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003281 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003282 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003283 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003284 goto free_exit;
3285 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003286
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003287 qdict_del(parent_options, bdref_key);
3288
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003289free_exit:
3290 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003291 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003292 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003293}
3294
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003295static BlockDriverState *
3296bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003297 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003298 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003299{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003300 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003301 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003302 char *bdref_key_dot;
3303 const char *reference;
3304
Max Reitzbd86fb92020-05-13 13:05:13 +02003305 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003306
Max Reitzda557aa2013-12-20 19:28:11 +01003307 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3308 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3309 g_free(bdref_key_dot);
3310
Markus Armbruster129c7d12017-03-30 19:43:12 +02003311 /*
3312 * Caution: while qdict_get_try_str() is fine, getting non-string
3313 * types would require more care. When @options come from
3314 * -blockdev or blockdev_add, its members are typed according to
3315 * the QAPI schema, but when they come from -drive, they're all
3316 * QString.
3317 */
Max Reitzda557aa2013-12-20 19:28:11 +01003318 reference = qdict_get_try_str(options, bdref_key);
3319 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003320 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003321 error_setg(errp, "A block device must be specified for \"%s\"",
3322 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003323 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003324 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003325 goto done;
3326 }
3327
Max Reitz5b363932016-05-17 16:41:31 +02003328 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003329 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003330 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003331 goto done;
3332 }
3333
Max Reitzda557aa2013-12-20 19:28:11 +01003334done:
3335 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003336 return bs;
3337}
3338
3339/*
3340 * Opens a disk image whose options are given as BlockdevRef in another block
3341 * device's options.
3342 *
3343 * If allow_none is true, no image will be opened if filename is false and no
3344 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3345 *
3346 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3347 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3348 * itself, all options starting with "${bdref_key}." are considered part of the
3349 * BlockdevRef.
3350 *
3351 * The BlockdevRef will be removed from the options QDict.
3352 */
3353BdrvChild *bdrv_open_child(const char *filename,
3354 QDict *options, const char *bdref_key,
3355 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003356 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003357 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003358 bool allow_none, Error **errp)
3359{
3360 BlockDriverState *bs;
3361
Max Reitzbd86fb92020-05-13 13:05:13 +02003362 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003363 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003364 if (bs == NULL) {
3365 return NULL;
3366 }
3367
Max Reitz258b7762020-05-13 13:05:15 +02003368 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3369 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003370}
3371
Max Reitzbd86fb92020-05-13 13:05:13 +02003372/*
3373 * TODO Future callers may need to specify parent/child_class in order for
3374 * option inheritance to work. Existing callers use it for the root node.
3375 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003376BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3377{
3378 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003379 QObject *obj = NULL;
3380 QDict *qdict = NULL;
3381 const char *reference = NULL;
3382 Visitor *v = NULL;
3383
3384 if (ref->type == QTYPE_QSTRING) {
3385 reference = ref->u.reference;
3386 } else {
3387 BlockdevOptions *options = &ref->u.definition;
3388 assert(ref->type == QTYPE_QDICT);
3389
3390 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003391 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003392 visit_complete(v, &obj);
3393
Max Reitz7dc847e2018-02-24 16:40:29 +01003394 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003395 qdict_flatten(qdict);
3396
3397 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3398 * compatibility with other callers) rather than what we want as the
3399 * real defaults. Apply the defaults here instead. */
3400 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3401 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3402 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003403 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3404
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003405 }
3406
Max Reitz272c02e2020-05-13 13:05:17 +02003407 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003408 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003409 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003410 visit_free(v);
3411 return bs;
3412}
3413
Max Reitz66836182016-05-17 16:41:27 +02003414static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3415 int flags,
3416 QDict *snapshot_options,
3417 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003418{
3419 /* TODO: extra byte is a hack to ensure MAX_PATH space on Windows. */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003420 char *tmp_filename = g_malloc0(PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003421 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003422 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003423 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003424 int ret;
3425
3426 /* if snapshot, we create a temporary backing file and open it
3427 instead of opening 'filename' directly */
3428
3429 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003430 total_size = bdrv_getlength(bs);
3431 if (total_size < 0) {
3432 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003433 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003434 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003435
3436 /* Create the temporary image */
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003437 ret = get_tmp_filename(tmp_filename, PATH_MAX + 1);
Kevin Wolfb9988752014-04-03 12:09:34 +02003438 if (ret < 0) {
3439 error_setg_errno(errp, -ret, "Could not get temporary filename");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003440 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003441 }
3442
Max Reitzef810432014-12-02 18:32:42 +01003443 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003444 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003445 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003446 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003447 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003448 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003449 error_prepend(errp, "Could not create temporary overlay '%s': ",
3450 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003451 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003452 }
3453
Kevin Wolf73176be2016-03-07 13:02:15 +01003454 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003455 qdict_put_str(snapshot_options, "file.driver", "file");
3456 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3457 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003458
Max Reitz5b363932016-05-17 16:41:31 +02003459 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003460 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003461 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003462 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003463 }
3464
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003465 ret = bdrv_append(bs_snapshot, bs, errp);
3466 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003467 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003468 goto out;
3469 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003470
3471out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003472 qobject_unref(snapshot_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003473 g_free(tmp_filename);
Eric Blakeff6ed712017-04-27 16:58:18 -05003474 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003475}
3476
Max Reitzda557aa2013-12-20 19:28:11 +01003477/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003478 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003479 *
3480 * options is a QDict of options to pass to the block drivers, or NULL for an
3481 * empty set of options. The reference to the QDict belongs to the block layer
3482 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003483 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003484 *
3485 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3486 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003487 *
3488 * The reference parameter may be used to specify an existing block device which
3489 * should be opened. If specified, neither options nor a filename may be given,
3490 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003491 */
Max Reitz5b363932016-05-17 16:41:31 +02003492static BlockDriverState *bdrv_open_inherit(const char *filename,
3493 const char *reference,
3494 QDict *options, int flags,
3495 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003496 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003497 BdrvChildRole child_role,
Max Reitz5b363932016-05-17 16:41:31 +02003498 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003499{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003500 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003501 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003502 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003503 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003504 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003505 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003506 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003507 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003508 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003509 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003510
Max Reitzbd86fb92020-05-13 13:05:13 +02003511 assert(!child_class || !flags);
3512 assert(!child_class == !parent);
Max Reitzf67503e2014-02-18 18:33:05 +01003513
Max Reitzddf56362014-02-18 18:33:06 +01003514 if (reference) {
3515 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003516 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003517
Max Reitzddf56362014-02-18 18:33:06 +01003518 if (filename || options_non_empty) {
3519 error_setg(errp, "Cannot reference an existing block device with "
3520 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003521 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003522 }
3523
3524 bs = bdrv_lookup_bs(reference, reference, errp);
3525 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003526 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003527 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003528
Max Reitzddf56362014-02-18 18:33:06 +01003529 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003530 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003531 }
3532
Max Reitz5b363932016-05-17 16:41:31 +02003533 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003534
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003535 /* NULL means an empty set of options */
3536 if (options == NULL) {
3537 options = qdict_new();
3538 }
3539
Kevin Wolf145f5982015-05-08 16:15:03 +02003540 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003541 parse_json_protocol(options, &filename, &local_err);
3542 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003543 goto fail;
3544 }
3545
Kevin Wolf145f5982015-05-08 16:15:03 +02003546 bs->explicit_options = qdict_clone_shallow(options);
3547
Max Reitzbd86fb92020-05-13 13:05:13 +02003548 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003549 bool parent_is_format;
3550
3551 if (parent->drv) {
3552 parent_is_format = parent->drv->is_format;
3553 } else {
3554 /*
3555 * parent->drv is not set yet because this node is opened for
3556 * (potential) format probing. That means that @parent is going
3557 * to be a format node.
3558 */
3559 parent_is_format = true;
3560 }
3561
Kevin Wolfbddcec32015-04-09 18:47:50 +02003562 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003563 child_class->inherit_options(child_role, parent_is_format,
3564 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003565 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003566 }
3567
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003568 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003569 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003570 goto fail;
3571 }
3572
Markus Armbruster129c7d12017-03-30 19:43:12 +02003573 /*
3574 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3575 * Caution: getting a boolean member of @options requires care.
3576 * When @options come from -blockdev or blockdev_add, members are
3577 * typed according to the QAPI schema, but when they come from
3578 * -drive, they're all QString.
3579 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003580 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3581 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3582 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3583 } else {
3584 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003585 }
3586
3587 if (flags & BDRV_O_SNAPSHOT) {
3588 snapshot_options = qdict_new();
3589 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3590 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003591 /* Let bdrv_backing_options() override "read-only" */
3592 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003593 bdrv_inherited_options(BDRV_CHILD_COW, true,
3594 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003595 }
3596
Kevin Wolf62392eb2015-04-24 16:38:02 +02003597 bs->open_flags = flags;
3598 bs->options = options;
3599 options = qdict_clone_shallow(options);
3600
Kevin Wolf76c591b2014-06-04 14:19:44 +02003601 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003602 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003603 drvname = qdict_get_try_str(options, "driver");
3604 if (drvname) {
3605 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003606 if (!drv) {
3607 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003608 goto fail;
3609 }
3610 }
3611
3612 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003613
Markus Armbruster129c7d12017-03-30 19:43:12 +02003614 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003615 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003616 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3617 (backing && *backing == '\0'))
3618 {
Max Reitz4f7be282018-02-24 16:40:33 +01003619 if (backing) {
3620 warn_report("Use of \"backing\": \"\" is deprecated; "
3621 "use \"backing\": null instead");
3622 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003623 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003624 qdict_del(bs->explicit_options, "backing");
3625 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003626 qdict_del(options, "backing");
3627 }
3628
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003629 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003630 * probing, the block drivers will do their own bdrv_open_child() for the
3631 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003632 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003633 BlockDriverState *file_bs;
3634
3635 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003636 &child_of_bds, BDRV_CHILD_IMAGE,
3637 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003638 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003639 goto fail;
3640 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003641 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003642 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3643 * looking at the header to guess the image format. This works even
3644 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003645 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003646 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003647 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003648 if (local_err) {
3649 goto fail;
3650 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003651
Eric Blake46f5ac22017-04-27 16:58:17 -05003652 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003653 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003654 }
3655
Kevin Wolf76c591b2014-06-04 14:19:44 +02003656 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003657 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003658 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003659 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003660 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003661 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003662 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003663 /*
3664 * This option update would logically belong in bdrv_fill_options(),
3665 * but we first need to open bs->file for the probing to work, while
3666 * opening bs->file already requires the (mostly) final set of options
3667 * so that cache mode etc. can be inherited.
3668 *
3669 * Adding the driver later is somewhat ugly, but it's not an option
3670 * that would ever be inherited, so it's correct. We just need to make
3671 * sure to update both bs->options (which has the full effective
3672 * options for bs) and options (which has file.* already removed).
3673 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003674 qdict_put_str(bs->options, "driver", drv->format_name);
3675 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003676 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003677 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003678 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01003679 }
3680
Max Reitz53a29512015-03-19 14:53:16 -04003681 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
3682 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
3683 /* file must be NULL if a protocol BDS is about to be created
3684 * (the inverse results in an error message from bdrv_open_common()) */
3685 assert(!(flags & BDRV_O_PROTOCOL) || !file);
3686
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003687 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01003688 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003689 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003690 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01003691 }
3692
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003693 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003694 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01003695 file = NULL;
3696 }
3697
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003698 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02003699 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003700 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003701 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003702 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003703 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003704 }
3705
Alberto Garcia50196d72018-09-06 12:37:03 +03003706 /* Remove all children options and references
3707 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03003708 QLIST_FOREACH(child, &bs->children, next) {
3709 char *child_key_dot;
3710 child_key_dot = g_strdup_printf("%s.", child->name);
3711 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
3712 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03003713 qdict_del(bs->explicit_options, child->name);
3714 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03003715 g_free(child_key_dot);
3716 }
3717
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003718 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01003719 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003720 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01003721 if (flags & BDRV_O_PROTOCOL) {
3722 error_setg(errp, "Block protocol '%s' doesn't support the option "
3723 "'%s'", drv->format_name, entry->key);
3724 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01003725 error_setg(errp,
3726 "Block format '%s' does not support the option '%s'",
3727 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01003728 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003729
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003730 goto close_and_fail;
3731 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003732
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01003733 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003734
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003735 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03003736 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003737
3738 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
3739 * temporary snapshot afterwards. */
3740 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02003741 BlockDriverState *snapshot_bs;
3742 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
3743 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01003744 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02003745 if (local_err) {
3746 goto close_and_fail;
3747 }
Max Reitz5b363932016-05-17 16:41:31 +02003748 /* We are not going to return bs but the overlay on top of it
3749 * (snapshot_bs); thus, we have to drop the strong reference to bs
3750 * (which we obtained by calling bdrv_new()). bs will not be deleted,
3751 * though, because the overlay still has a reference to it. */
3752 bdrv_unref(bs);
3753 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02003754 }
3755
Max Reitz5b363932016-05-17 16:41:31 +02003756 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003757
Kevin Wolf8bfea152014-04-11 19:16:36 +02003758fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003759 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003760 qobject_unref(snapshot_options);
3761 qobject_unref(bs->explicit_options);
3762 qobject_unref(bs->options);
3763 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003764 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03003765 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003766 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003767 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003768 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003769
Kevin Wolfb6ad4912013-03-15 10:35:04 +01003770close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02003771 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003772 qobject_unref(snapshot_options);
3773 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03003774 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02003775 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003776}
3777
Max Reitz5b363932016-05-17 16:41:31 +02003778BlockDriverState *bdrv_open(const char *filename, const char *reference,
3779 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02003780{
Max Reitz5b363932016-05-17 16:41:31 +02003781 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02003782 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003783}
3784
Alberto Garciafaf116b2019-03-12 18:48:49 +02003785/* Return true if the NULL-terminated @list contains @str */
3786static bool is_str_in_list(const char *str, const char *const *list)
3787{
3788 if (str && list) {
3789 int i;
3790 for (i = 0; list[i] != NULL; i++) {
3791 if (!strcmp(str, list[i])) {
3792 return true;
3793 }
3794 }
3795 }
3796 return false;
3797}
3798
3799/*
3800 * Check that every option set in @bs->options is also set in
3801 * @new_opts.
3802 *
3803 * Options listed in the common_options list and in
3804 * @bs->drv->mutable_opts are skipped.
3805 *
3806 * Return 0 on success, otherwise return -EINVAL and set @errp.
3807 */
3808static int bdrv_reset_options_allowed(BlockDriverState *bs,
3809 const QDict *new_opts, Error **errp)
3810{
3811 const QDictEntry *e;
3812 /* These options are common to all block drivers and are handled
3813 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
3814 const char *const common_options[] = {
3815 "node-name", "discard", "cache.direct", "cache.no-flush",
3816 "read-only", "auto-read-only", "detect-zeroes", NULL
3817 };
3818
3819 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
3820 if (!qdict_haskey(new_opts, e->key) &&
3821 !is_str_in_list(e->key, common_options) &&
3822 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
3823 error_setg(errp, "Option '%s' cannot be reset "
3824 "to its default value", e->key);
3825 return -EINVAL;
3826 }
3827 }
3828
3829 return 0;
3830}
3831
Jeff Codye971aa12012-09-20 15:13:19 -04003832/*
Alberto Garciacb828c32019-03-12 18:48:47 +02003833 * Returns true if @child can be reached recursively from @bs
3834 */
3835static bool bdrv_recurse_has_child(BlockDriverState *bs,
3836 BlockDriverState *child)
3837{
3838 BdrvChild *c;
3839
3840 if (bs == child) {
3841 return true;
3842 }
3843
3844 QLIST_FOREACH(c, &bs->children, next) {
3845 if (bdrv_recurse_has_child(c->bs, child)) {
3846 return true;
3847 }
3848 }
3849
3850 return false;
3851}
3852
3853/*
Jeff Codye971aa12012-09-20 15:13:19 -04003854 * Adds a BlockDriverState to a simple queue for an atomic, transactional
3855 * reopen of multiple devices.
3856 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003857 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04003858 * already performed, or alternatively may be NULL a new BlockReopenQueue will
3859 * be created and initialized. This newly created BlockReopenQueue should be
3860 * passed back in for subsequent calls that are intended to be of the same
3861 * atomic 'set'.
3862 *
3863 * bs is the BlockDriverState to add to the reopen queue.
3864 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003865 * options contains the changed options for the associated bs
3866 * (the BlockReopenQueue takes ownership)
3867 *
Jeff Codye971aa12012-09-20 15:13:19 -04003868 * flags contains the open flags for the associated bs
3869 *
3870 * returns a pointer to bs_queue, which is either the newly allocated
3871 * bs_queue, or the existing bs_queue being used.
3872 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01003873 * bs must be drained between bdrv_reopen_queue() and bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04003874 */
Kevin Wolf28518102015-05-08 17:07:31 +02003875static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
3876 BlockDriverState *bs,
3877 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003878 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02003879 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02003880 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02003881 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02003882 int parent_flags,
3883 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04003884{
3885 assert(bs != NULL);
3886
3887 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02003888 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003889 QDict *old_options, *explicit_options, *options_copy;
3890 int flags;
3891 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003892
Kevin Wolf1a63a902017-12-06 20:24:44 +01003893 /* Make sure that the caller remembered to use a drained section. This is
3894 * important to avoid graph changes between the recursive queuing here and
3895 * bdrv_reopen_multiple(). */
3896 assert(bs->quiesce_counter > 0);
3897
Jeff Codye971aa12012-09-20 15:13:19 -04003898 if (bs_queue == NULL) {
3899 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003900 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04003901 }
3902
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003903 if (!options) {
3904 options = qdict_new();
3905 }
3906
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003907 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003908 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003909 if (bs == bs_entry->state.bs) {
3910 break;
3911 }
3912 }
3913
Kevin Wolf28518102015-05-08 17:07:31 +02003914 /*
3915 * Precedence of options:
3916 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003917 * 2. Retained from explicitly set options of bs
3918 * 3. Inherited from parent node
3919 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02003920 */
3921
Kevin Wolf145f5982015-05-08 16:15:03 +02003922 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02003923 if (bs_entry || keep_old_opts) {
3924 old_options = qdict_clone_shallow(bs_entry ?
3925 bs_entry->state.explicit_options :
3926 bs->explicit_options);
3927 bdrv_join_options(bs, options, old_options);
3928 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03003929 }
Kevin Wolf145f5982015-05-08 16:15:03 +02003930
3931 explicit_options = qdict_clone_shallow(options);
3932
Kevin Wolf28518102015-05-08 17:07:31 +02003933 /* Inherit from parent node */
3934 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003935 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003936 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02003937 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003938 } else {
3939 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02003940 }
3941
Alberto Garcia077e8e22019-03-12 18:48:44 +02003942 if (keep_old_opts) {
3943 /* Old values are used for options that aren't set yet */
3944 old_options = qdict_clone_shallow(bs->options);
3945 bdrv_join_options(bs, options, old_options);
3946 qobject_unref(old_options);
3947 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02003948
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02003949 /* We have the final set of options so let's update the flags */
3950 options_copy = qdict_clone_shallow(options);
3951 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
3952 qemu_opts_absorb_qdict(opts, options_copy, NULL);
3953 update_flags_from_options(&flags, opts);
3954 qemu_opts_del(opts);
3955 qobject_unref(options_copy);
3956
Kevin Wolffd452022017-08-03 17:02:59 +02003957 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02003958 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02003959 if (flags & BDRV_O_RDWR) {
3960 flags |= BDRV_O_ALLOW_RDWR;
3961 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02003962
Kevin Wolf1857c972017-09-14 14:53:46 +02003963 if (!bs_entry) {
3964 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03003965 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02003966 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003967 qobject_unref(bs_entry->state.options);
3968 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02003969 }
3970
3971 bs_entry->state.bs = bs;
3972 bs_entry->state.options = options;
3973 bs_entry->state.explicit_options = explicit_options;
3974 bs_entry->state.flags = flags;
3975
Alberto Garcia85466322019-03-12 18:48:45 +02003976 /*
3977 * If keep_old_opts is false then it means that unspecified
3978 * options must be reset to their original value. We don't allow
3979 * resetting 'backing' but we need to know if the option is
3980 * missing in order to decide if we have to return an error.
3981 */
3982 if (!keep_old_opts) {
3983 bs_entry->state.backing_missing =
3984 !qdict_haskey(options, "backing") &&
3985 !qdict_haskey(options, "backing.driver");
3986 }
3987
Kevin Wolf67251a32015-04-09 18:54:04 +02003988 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02003989 QDict *new_child_options = NULL;
3990 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02003991
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02003992 /* reopen can only change the options of block devices that were
3993 * implicitly created and inherited options. For other (referenced)
3994 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02003995 if (child->bs->inherits_from != bs) {
3996 continue;
3997 }
3998
Alberto Garcia85466322019-03-12 18:48:45 +02003999 /* Check if the options contain a child reference */
4000 if (qdict_haskey(options, child->name)) {
4001 const char *childref = qdict_get_try_str(options, child->name);
4002 /*
4003 * The current child must not be reopened if the child
4004 * reference is null or points to a different node.
4005 */
4006 if (g_strcmp0(childref, child->bs->node_name)) {
4007 continue;
4008 }
4009 /*
4010 * If the child reference points to the current child then
4011 * reopen it with its existing set of options (note that
4012 * it can still inherit new options from the parent).
4013 */
4014 child_keep_old = true;
4015 } else {
4016 /* Extract child options ("child-name.*") */
4017 char *child_key_dot = g_strdup_printf("%s.", child->name);
4018 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4019 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4020 g_free(child_key_dot);
4021 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004022
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004023 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004024 child->klass, child->role, bs->drv->is_format,
4025 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004026 }
4027
Jeff Codye971aa12012-09-20 15:13:19 -04004028 return bs_queue;
4029}
4030
Kevin Wolf28518102015-05-08 17:07:31 +02004031BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4032 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004033 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004034{
Max Reitz3cdc69d2020-05-13 13:05:18 +02004035 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4036 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004037}
4038
Jeff Codye971aa12012-09-20 15:13:19 -04004039/*
4040 * Reopen multiple BlockDriverStates atomically & transactionally.
4041 *
4042 * The queue passed in (bs_queue) must have been built up previous
4043 * via bdrv_reopen_queue().
4044 *
4045 * Reopens all BDS specified in the queue, with the appropriate
4046 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004047 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004048 * data cleaned up.
4049 *
4050 * If all devices prepare successfully, then the changes are committed
4051 * to all devices.
4052 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004053 * All affected nodes must be drained between bdrv_reopen_queue() and
4054 * bdrv_reopen_multiple().
Jeff Codye971aa12012-09-20 15:13:19 -04004055 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004056int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004057{
4058 int ret = -1;
4059 BlockReopenQueueEntry *bs_entry, *next;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004060 Transaction *tran = tran_new();
4061 g_autoptr(GHashTable) found = NULL;
4062 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004063
4064 assert(bs_queue != NULL);
4065
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004066 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004067 ret = bdrv_flush(bs_entry->state.bs);
4068 if (ret < 0) {
4069 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004070 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004071 }
4072 }
4073
4074 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004075 assert(bs_entry->state.bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004076 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4077 if (ret < 0) {
4078 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004079 }
4080 bs_entry->prepared = true;
4081 }
4082
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004083 found = g_hash_table_new(NULL, NULL);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004084 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004085 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004086
4087 refresh_list = bdrv_topological_dfs(refresh_list, found, state->bs);
4088 if (state->old_backing_bs) {
4089 refresh_list = bdrv_topological_dfs(refresh_list, found,
4090 state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004091 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004092 }
4093
4094 /*
4095 * Note that file-posix driver rely on permission update done during reopen
4096 * (even if no permission changed), because it wants "new" permissions for
4097 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4098 * in raw_reopen_prepare() which is called with "old" permissions.
4099 */
4100 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4101 if (ret < 0) {
4102 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004103 }
4104
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004105 /*
4106 * If we reach this point, we have success and just need to apply the
4107 * changes.
4108 *
4109 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4110 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4111 * children are usually goes after parents in reopen-queue, so go from last
4112 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004113 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004114 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04004115 bdrv_reopen_commit(&bs_entry->state);
4116 }
4117
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004118 tran_commit(tran);
4119
4120 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4121 BlockDriverState *bs = bs_entry->state.bs;
4122
4123 if (bs->drv->bdrv_reopen_commit_post) {
4124 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4125 }
4126 }
4127
Jeff Codye971aa12012-09-20 15:13:19 -04004128 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004129 goto cleanup;
4130
4131abort:
4132 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004133 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004134 if (bs_entry->prepared) {
4135 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004136 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004137 qobject_unref(bs_entry->state.explicit_options);
4138 qobject_unref(bs_entry->state.options);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004139 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004140
Jeff Codye971aa12012-09-20 15:13:19 -04004141cleanup:
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004142 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Jeff Codye971aa12012-09-20 15:13:19 -04004143 g_free(bs_entry);
4144 }
4145 g_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004146
Jeff Codye971aa12012-09-20 15:13:19 -04004147 return ret;
4148}
4149
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004150int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4151 Error **errp)
4152{
4153 int ret;
4154 BlockReopenQueue *queue;
4155 QDict *opts = qdict_new();
4156
4157 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4158
4159 bdrv_subtree_drained_begin(bs);
Alberto Garcia077e8e22019-03-12 18:48:44 +02004160 queue = bdrv_reopen_queue(NULL, bs, opts, true);
Alberto Garcia5019aec2019-03-12 18:48:50 +02004161 ret = bdrv_reopen_multiple(queue, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004162 bdrv_subtree_drained_end(bs);
4163
4164 return ret;
4165}
4166
Kevin Wolf1de6b452020-03-06 15:14:13 +01004167static bool bdrv_reopen_can_attach(BlockDriverState *parent,
4168 BdrvChild *child,
4169 BlockDriverState *new_child,
4170 Error **errp)
4171{
4172 AioContext *parent_ctx = bdrv_get_aio_context(parent);
4173 AioContext *child_ctx = bdrv_get_aio_context(new_child);
4174 GSList *ignore;
4175 bool ret;
4176
4177 ignore = g_slist_prepend(NULL, child);
4178 ret = bdrv_can_set_aio_context(new_child, parent_ctx, &ignore, NULL);
4179 g_slist_free(ignore);
4180 if (ret) {
4181 return ret;
4182 }
4183
4184 ignore = g_slist_prepend(NULL, child);
4185 ret = bdrv_can_set_aio_context(parent, child_ctx, &ignore, errp);
4186 g_slist_free(ignore);
4187 return ret;
4188}
4189
Jeff Codye971aa12012-09-20 15:13:19 -04004190/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004191 * Take a BDRVReopenState and check if the value of 'backing' in the
4192 * reopen_state->options QDict is valid or not.
4193 *
4194 * If 'backing' is missing from the QDict then return 0.
4195 *
4196 * If 'backing' contains the node name of the backing file of
4197 * reopen_state->bs then return 0.
4198 *
4199 * If 'backing' contains a different node name (or is null) then check
4200 * whether the current backing file can be replaced with the new one.
4201 * If that's the case then reopen_state->replace_backing_bs is set to
4202 * true and reopen_state->new_backing_bs contains a pointer to the new
4203 * backing BlockDriverState (or NULL).
4204 *
4205 * Return 0 on success, otherwise return < 0 and set @errp.
4206 */
4207static int bdrv_reopen_parse_backing(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004208 Transaction *set_backings_tran,
Alberto Garciacb828c32019-03-12 18:48:47 +02004209 Error **errp)
4210{
4211 BlockDriverState *bs = reopen_state->bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004212 BlockDriverState *overlay_bs, *below_bs, *new_backing_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004213 QObject *value;
4214 const char *str;
4215
4216 value = qdict_get(reopen_state->options, "backing");
4217 if (value == NULL) {
4218 return 0;
4219 }
4220
4221 switch (qobject_type(value)) {
4222 case QTYPE_QNULL:
4223 new_backing_bs = NULL;
4224 break;
4225 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004226 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciacb828c32019-03-12 18:48:47 +02004227 new_backing_bs = bdrv_lookup_bs(NULL, str, errp);
4228 if (new_backing_bs == NULL) {
4229 return -EINVAL;
4230 } else if (bdrv_recurse_has_child(new_backing_bs, bs)) {
4231 error_setg(errp, "Making '%s' a backing file of '%s' "
4232 "would create a cycle", str, bs->node_name);
4233 return -EINVAL;
4234 }
4235 break;
4236 default:
4237 /* 'backing' does not allow any other data type */
4238 g_assert_not_reached();
4239 }
4240
4241 /*
Kevin Wolf1de6b452020-03-06 15:14:13 +01004242 * Check AioContext compatibility so that the bdrv_set_backing_hd() call in
4243 * bdrv_reopen_commit() won't fail.
Alberto Garciacb828c32019-03-12 18:48:47 +02004244 */
4245 if (new_backing_bs) {
Kevin Wolf1de6b452020-03-06 15:14:13 +01004246 if (!bdrv_reopen_can_attach(bs, bs->backing, new_backing_bs, errp)) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004247 return -EINVAL;
4248 }
4249 }
4250
4251 /*
Max Reitz1d42f482019-06-12 17:24:39 +02004252 * Ensure that @bs can really handle backing files, because we are
4253 * about to give it one (or swap the existing one)
4254 */
4255 if (bs->drv->is_filter) {
4256 /* Filters always have a file or a backing child */
4257 if (!bs->backing) {
4258 error_setg(errp, "'%s' is a %s filter node that does not support a "
4259 "backing child", bs->node_name, bs->drv->format_name);
4260 return -EINVAL;
4261 }
4262 } else if (!bs->drv->supports_backing) {
4263 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
4264 "files", bs->drv->format_name, bs->node_name);
4265 return -EINVAL;
4266 }
4267
4268 /*
Alberto Garciacb828c32019-03-12 18:48:47 +02004269 * Find the "actual" backing file by skipping all links that point
4270 * to an implicit node, if any (e.g. a commit filter node).
Max Reitz1d42f482019-06-12 17:24:39 +02004271 * We cannot use any of the bdrv_skip_*() functions here because
4272 * those return the first explicit node, while we are looking for
4273 * its overlay here.
Alberto Garciacb828c32019-03-12 18:48:47 +02004274 */
4275 overlay_bs = bs;
Max Reitz1d42f482019-06-12 17:24:39 +02004276 for (below_bs = bdrv_filter_or_cow_bs(overlay_bs);
4277 below_bs && below_bs->implicit;
4278 below_bs = bdrv_filter_or_cow_bs(overlay_bs))
4279 {
4280 overlay_bs = below_bs;
Alberto Garciacb828c32019-03-12 18:48:47 +02004281 }
4282
4283 /* If we want to replace the backing file we need some extra checks */
Max Reitz1d42f482019-06-12 17:24:39 +02004284 if (new_backing_bs != bdrv_filter_or_cow_bs(overlay_bs)) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004285 int ret;
4286
Alberto Garciacb828c32019-03-12 18:48:47 +02004287 /* Check for implicit nodes between bs and its backing file */
4288 if (bs != overlay_bs) {
4289 error_setg(errp, "Cannot change backing link if '%s' has "
4290 "an implicit backing file", bs->node_name);
4291 return -EPERM;
4292 }
Max Reitz1d42f482019-06-12 17:24:39 +02004293 /*
4294 * Check if the backing link that we want to replace is frozen.
4295 * Note that
4296 * bdrv_filter_or_cow_child(overlay_bs) == overlay_bs->backing,
4297 * because we know that overlay_bs == bs, and that @bs
4298 * either is a filter that uses ->backing or a COW format BDS
4299 * with bs->drv->supports_backing == true.
4300 */
4301 if (bdrv_is_backing_chain_frozen(overlay_bs,
4302 child_bs(overlay_bs->backing), errp))
4303 {
Alberto Garciacb828c32019-03-12 18:48:47 +02004304 return -EPERM;
4305 }
4306 reopen_state->replace_backing_bs = true;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004307 reopen_state->old_backing_bs = bs->backing ? bs->backing->bs : NULL;
4308 ret = bdrv_set_backing_noperm(bs, new_backing_bs, set_backings_tran,
4309 errp);
4310 if (ret < 0) {
4311 return ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004312 }
4313 }
4314
4315 return 0;
4316}
4317
4318/*
Jeff Codye971aa12012-09-20 15:13:19 -04004319 * Prepares a BlockDriverState for reopen. All changes are staged in the
4320 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4321 * the block driver layer .bdrv_reopen_prepare()
4322 *
4323 * bs is the BlockDriverState to reopen
4324 * flags are the new open flags
4325 * queue is the reopen queue
4326 *
4327 * Returns 0 on success, non-zero on error. On error errp will be set
4328 * as well.
4329 *
4330 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4331 * It is the responsibility of the caller to then call the abort() or
4332 * commit() for any other BDS that have been left in a prepare() state
4333 *
4334 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004335static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004336 BlockReopenQueue *queue,
4337 Transaction *set_backings_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004338{
4339 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004340 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004341 Error *local_err = NULL;
4342 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004343 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004344 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004345 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004346 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004347 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004348
4349 assert(reopen_state != NULL);
4350 assert(reopen_state->bs->drv != NULL);
4351 drv = reopen_state->bs->drv;
4352
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004353 /* This function and each driver's bdrv_reopen_prepare() remove
4354 * entries from reopen_state->options as they are processed, so
4355 * we need to make a copy of the original QDict. */
4356 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4357
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004358 /* Process generic block layer options */
4359 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004360 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004361 ret = -EINVAL;
4362 goto error;
4363 }
4364
Alberto Garciae6d79c42018-11-12 16:00:47 +02004365 /* This was already called in bdrv_reopen_queue_child() so the flags
4366 * are up-to-date. This time we simply want to remove the options from
4367 * QemuOpts in order to indicate that they have been processed. */
4368 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004369 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004370 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004371
Alberto Garcia415bbca2018-10-03 13:23:13 +03004372 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004373 if (discard != NULL) {
4374 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4375 error_setg(errp, "Invalid discard option");
4376 ret = -EINVAL;
4377 goto error;
4378 }
4379 }
4380
Alberto Garcia543770b2018-09-06 12:37:09 +03004381 reopen_state->detect_zeroes =
4382 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4383 if (local_err) {
4384 error_propagate(errp, local_err);
4385 ret = -EINVAL;
4386 goto error;
4387 }
4388
Alberto Garcia57f9db92018-09-06 12:37:06 +03004389 /* All other options (including node-name and driver) must be unchanged.
4390 * Put them back into the QDict, so that they are checked at the end
4391 * of this function. */
4392 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004393
Jeff Cody3d8ce172017-04-07 16:55:30 -04004394 /* If we are to stay read-only, do not allow permission change
4395 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4396 * not set, or if the BDS still has copy_on_read enabled */
4397 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004398 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004399 if (local_err) {
4400 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004401 goto error;
4402 }
4403
Jeff Codye971aa12012-09-20 15:13:19 -04004404 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004405 /*
4406 * If a driver-specific option is missing, it means that we
4407 * should reset it to its default value.
4408 * But not all options allow that, so we need to check it first.
4409 */
4410 ret = bdrv_reset_options_allowed(reopen_state->bs,
4411 reopen_state->options, errp);
4412 if (ret) {
4413 goto error;
4414 }
4415
Jeff Codye971aa12012-09-20 15:13:19 -04004416 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4417 if (ret) {
4418 if (local_err != NULL) {
4419 error_propagate(errp, local_err);
4420 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004421 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004422 error_setg(errp, "failed while preparing to reopen image '%s'",
4423 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004424 }
4425 goto error;
4426 }
4427 } else {
4428 /* It is currently mandatory to have a bdrv_reopen_prepare()
4429 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004430 error_setg(errp, "Block format '%s' used by node '%s' "
4431 "does not support reopening files", drv->format_name,
4432 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004433 ret = -1;
4434 goto error;
4435 }
4436
Max Reitz9ad08c42018-11-16 17:45:24 +01004437 drv_prepared = true;
4438
Alberto Garciabacd9b82019-03-12 18:48:46 +02004439 /*
4440 * We must provide the 'backing' option if the BDS has a backing
4441 * file or if the image file has a backing file name as part of
4442 * its metadata. Otherwise the 'backing' option can be omitted.
4443 */
4444 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004445 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004446 error_setg(errp, "backing is missing for '%s'",
4447 reopen_state->bs->node_name);
4448 ret = -EINVAL;
4449 goto error;
4450 }
4451
Alberto Garciacb828c32019-03-12 18:48:47 +02004452 /*
4453 * Allow changing the 'backing' option. The new value can be
4454 * either a reference to an existing node (using its node name)
4455 * or NULL to simply detach the current backing file.
4456 */
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004457 ret = bdrv_reopen_parse_backing(reopen_state, set_backings_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004458 if (ret < 0) {
4459 goto error;
4460 }
4461 qdict_del(reopen_state->options, "backing");
4462
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004463 /* Options that are not handled are only okay if they are unchanged
4464 * compared to the old state. It is expected that some options are only
4465 * used for the initial open, but not reopen (e.g. filename) */
4466 if (qdict_size(reopen_state->options)) {
4467 const QDictEntry *entry = qdict_first(reopen_state->options);
4468
4469 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004470 QObject *new = entry->value;
4471 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004472
Alberto Garciadb905282018-09-06 12:37:05 +03004473 /* Allow child references (child_name=node_name) as long as they
4474 * point to the current child (i.e. everything stays the same). */
4475 if (qobject_type(new) == QTYPE_QSTRING) {
4476 BdrvChild *child;
4477 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4478 if (!strcmp(child->name, entry->key)) {
4479 break;
4480 }
4481 }
4482
4483 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004484 if (!strcmp(child->bs->node_name,
4485 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004486 continue; /* Found child with this name, skip option */
4487 }
4488 }
4489 }
4490
Max Reitz54fd1b02017-11-14 19:01:26 +01004491 /*
4492 * TODO: When using -drive to specify blockdev options, all values
4493 * will be strings; however, when using -blockdev, blockdev-add or
4494 * filenames using the json:{} pseudo-protocol, they will be
4495 * correctly typed.
4496 * In contrast, reopening options are (currently) always strings
4497 * (because you can only specify them through qemu-io; all other
4498 * callers do not specify any options).
4499 * Therefore, when using anything other than -drive to create a BDS,
4500 * this cannot detect non-string options as unchanged, because
4501 * qobject_is_equal() always returns false for objects of different
4502 * type. In the future, this should be remedied by correctly typing
4503 * all options. For now, this is not too big of an issue because
4504 * the user can simply omit options which cannot be changed anyway,
4505 * so they will stay unchanged.
4506 */
4507 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004508 error_setg(errp, "Cannot change the option '%s'", entry->key);
4509 ret = -EINVAL;
4510 goto error;
4511 }
4512 } while ((entry = qdict_next(reopen_state->options, entry)));
4513 }
4514
Jeff Codye971aa12012-09-20 15:13:19 -04004515 ret = 0;
4516
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004517 /* Restore the original reopen_state->options QDict */
4518 qobject_unref(reopen_state->options);
4519 reopen_state->options = qobject_ref(orig_reopen_opts);
4520
Jeff Codye971aa12012-09-20 15:13:19 -04004521error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004522 if (ret < 0 && drv_prepared) {
4523 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4524 * call drv->bdrv_reopen_abort() before signaling an error
4525 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4526 * when the respective bdrv_reopen_prepare() has failed) */
4527 if (drv->bdrv_reopen_abort) {
4528 drv->bdrv_reopen_abort(reopen_state);
4529 }
4530 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004531 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004532 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004533 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004534 return ret;
4535}
4536
4537/*
4538 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4539 * makes them final by swapping the staging BlockDriverState contents into
4540 * the active BlockDriverState contents.
4541 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004542static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004543{
4544 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004545 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004546 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004547
4548 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004549 bs = reopen_state->bs;
4550 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004551 assert(drv != NULL);
4552
4553 /* If there are any driver level actions to take */
4554 if (drv->bdrv_reopen_commit) {
4555 drv->bdrv_reopen_commit(reopen_state);
4556 }
4557
4558 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004559 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004560 qobject_unref(bs->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004561
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004562 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004563 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004564 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004565 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004566
Alberto Garciacb828c32019-03-12 18:48:47 +02004567 if (reopen_state->replace_backing_bs) {
4568 qdict_del(bs->explicit_options, "backing");
4569 qdict_del(bs->options, "backing");
4570 }
4571
Alberto Garcia50196d72018-09-06 12:37:03 +03004572 /* Remove child references from bs->options and bs->explicit_options.
4573 * Child options were already removed in bdrv_reopen_queue_child() */
4574 QLIST_FOREACH(child, &bs->children, next) {
4575 qdict_del(bs->explicit_options, child->name);
4576 qdict_del(bs->options, child->name);
4577 }
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004578 bdrv_refresh_limits(bs, NULL, NULL);
Jeff Codye971aa12012-09-20 15:13:19 -04004579}
4580
4581/*
4582 * Abort the reopen, and delete and free the staged changes in
4583 * reopen_state
4584 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004585static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004586{
4587 BlockDriver *drv;
4588
4589 assert(reopen_state != NULL);
4590 drv = reopen_state->bs->drv;
4591 assert(drv != NULL);
4592
4593 if (drv->bdrv_reopen_abort) {
4594 drv->bdrv_reopen_abort(reopen_state);
4595 }
4596}
4597
4598
Max Reitz64dff522016-01-29 16:36:10 +01004599static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004600{
Max Reitz33384422014-06-20 21:57:33 +02004601 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004602 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004603
Max Reitz30f55fb2016-05-17 16:41:32 +02004604 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004605
Paolo Bonzinifc272912015-12-23 11:48:24 +01004606 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004607 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004608 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004609
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004610 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004611 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004612 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004613 bs->drv->bdrv_close(bs);
4614 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004615 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004616 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004617
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004618 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004619 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004620 }
4621
Alberto Garciadd4118c2019-05-13 16:46:17 +03004622 bs->backing = NULL;
4623 bs->file = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004624 g_free(bs->opaque);
4625 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004626 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004627 bs->backing_file[0] = '\0';
4628 bs->backing_format[0] = '\0';
4629 bs->total_sectors = 0;
4630 bs->encrypted = false;
4631 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004632 qobject_unref(bs->options);
4633 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004634 bs->options = NULL;
4635 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004636 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004637 bs->full_open_options = NULL;
4638
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004639 bdrv_release_named_dirty_bitmaps(bs);
4640 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4641
Max Reitz33384422014-06-20 21:57:33 +02004642 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4643 g_free(ban);
4644 }
4645 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004646 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004647
4648 /*
4649 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4650 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4651 * gets called.
4652 */
4653 if (bs->quiesce_counter) {
4654 bdrv_drain_all_end_quiesce(bs);
4655 }
bellardb3380822004-03-14 21:38:54 +00004656}
4657
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004658void bdrv_close_all(void)
4659{
Kevin Wolfb3b52992018-05-16 13:46:37 +02004660 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004661
Max Reitzca9bd242016-01-29 16:36:14 +01004662 /* Drop references from requests still in flight, such as canceled block
4663 * jobs whose AIO context has not been polled yet */
4664 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02004665
Max Reitzca9bd242016-01-29 16:36:14 +01004666 blk_remove_all_bs();
4667 blockdev_close_all_bdrv_states();
4668
Kevin Wolfa1a2af02016-04-08 18:26:37 +02004669 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09004670}
4671
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004672static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004673{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004674 GQueue *queue;
4675 GHashTable *found;
4676 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004677
Max Reitzbd86fb92020-05-13 13:05:13 +02004678 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004679 return false;
4680 }
4681
Max Reitzec9f10f2018-06-13 20:18:15 +02004682 /* If the child @c belongs to the BDS @to, replacing the current
4683 * c->bs by @to would mean to create a loop.
4684 *
4685 * Such a case occurs when appending a BDS to a backing chain.
4686 * For instance, imagine the following chain:
4687 *
4688 * guest device -> node A -> further backing chain...
4689 *
4690 * Now we create a new BDS B which we want to put on top of this
4691 * chain, so we first attach A as its backing node:
4692 *
4693 * node B
4694 * |
4695 * v
4696 * guest device -> node A -> further backing chain...
4697 *
4698 * Finally we want to replace A by B. When doing that, we want to
4699 * replace all pointers to A by pointers to B -- except for the
4700 * pointer from B because (1) that would create a loop, and (2)
4701 * that pointer should simply stay intact:
4702 *
4703 * guest device -> node B
4704 * |
4705 * v
4706 * node A -> further backing chain...
4707 *
4708 * In general, when replacing a node A (c->bs) by a node B (@to),
4709 * if A is a child of B, that means we cannot replace A by B there
4710 * because that would create a loop. Silently detaching A from B
4711 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004712 * place there is the most sensible choice.
4713 *
4714 * We would also create a loop in any cases where @c is only
4715 * indirectly referenced by @to. Prevent this by returning false
4716 * if @c is found (by breadth-first search) anywhere in the whole
4717 * subtree of @to.
4718 */
4719
4720 ret = true;
4721 found = g_hash_table_new(NULL, NULL);
4722 g_hash_table_add(found, to);
4723 queue = g_queue_new();
4724 g_queue_push_tail(queue, to);
4725
4726 while (!g_queue_is_empty(queue)) {
4727 BlockDriverState *v = g_queue_pop_head(queue);
4728 BdrvChild *c2;
4729
4730 QLIST_FOREACH(c2, &v->children, next) {
4731 if (c2 == c) {
4732 ret = false;
4733 break;
4734 }
4735
4736 if (g_hash_table_contains(found, c2->bs)) {
4737 continue;
4738 }
4739
4740 g_queue_push_tail(queue, c2->bs);
4741 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004742 }
4743 }
4744
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03004745 g_queue_free(queue);
4746 g_hash_table_destroy(found);
4747
4748 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01004749}
4750
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004751typedef struct BdrvRemoveFilterOrCowChild {
4752 BdrvChild *child;
4753 bool is_backing;
4754} BdrvRemoveFilterOrCowChild;
4755
4756static void bdrv_remove_filter_or_cow_child_abort(void *opaque)
4757{
4758 BdrvRemoveFilterOrCowChild *s = opaque;
4759 BlockDriverState *parent_bs = s->child->opaque;
4760
4761 QLIST_INSERT_HEAD(&parent_bs->children, s->child, next);
4762 if (s->is_backing) {
4763 parent_bs->backing = s->child;
4764 } else {
4765 parent_bs->file = s->child;
4766 }
4767
4768 /*
4769 * We don't have to restore child->bs here to undo bdrv_replace_child()
4770 * because that function is transactionable and it registered own completion
4771 * entries in @tran, so .abort() for bdrv_replace_child_safe() will be
4772 * called automatically.
4773 */
4774}
4775
4776static void bdrv_remove_filter_or_cow_child_commit(void *opaque)
4777{
4778 BdrvRemoveFilterOrCowChild *s = opaque;
4779
4780 bdrv_child_free(s->child);
4781}
4782
4783static TransactionActionDrv bdrv_remove_filter_or_cow_child_drv = {
4784 .abort = bdrv_remove_filter_or_cow_child_abort,
4785 .commit = bdrv_remove_filter_or_cow_child_commit,
4786 .clean = g_free,
4787};
4788
4789/*
4790 * A function to remove backing-chain child of @bs if exists: cow child for
4791 * format nodes (always .backing) and filter child for filters (may be .file or
4792 * .backing)
4793 */
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004794static void bdrv_remove_filter_or_cow_child(BlockDriverState *bs,
4795 Transaction *tran)
4796{
4797 BdrvRemoveFilterOrCowChild *s;
4798 BdrvChild *child = bdrv_filter_or_cow_child(bs);
4799
4800 if (!child) {
4801 return;
4802 }
4803
4804 if (child->bs) {
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03004805 bdrv_replace_child(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03004806 }
4807
4808 s = g_new(BdrvRemoveFilterOrCowChild, 1);
4809 *s = (BdrvRemoveFilterOrCowChild) {
4810 .child = child,
4811 .is_backing = (child == bs->backing),
4812 };
4813 tran_add(tran, &bdrv_remove_filter_or_cow_child_drv, s);
4814
4815 QLIST_SAFE_REMOVE(child, next);
4816 if (s->is_backing) {
4817 bs->backing = NULL;
4818 } else {
4819 bs->file = NULL;
4820 }
4821}
4822
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004823static int bdrv_replace_node_noperm(BlockDriverState *from,
4824 BlockDriverState *to,
4825 bool auto_skip, Transaction *tran,
4826 Error **errp)
4827{
4828 BdrvChild *c, *next;
4829
4830 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
4831 assert(c->bs == from);
4832 if (!should_update_child(c, to)) {
4833 if (auto_skip) {
4834 continue;
4835 }
4836 error_setg(errp, "Should not change '%s' link to '%s'",
4837 c->name, from->node_name);
4838 return -EINVAL;
4839 }
4840 if (c->frozen) {
4841 error_setg(errp, "Cannot change '%s' link to '%s'",
4842 c->name, from->node_name);
4843 return -EPERM;
4844 }
Vladimir Sementsov-Ogievskiy2fe5ff52021-04-28 18:18:03 +03004845 bdrv_replace_child(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004846 }
4847
4848 return 0;
4849}
4850
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004851/*
4852 * With auto_skip=true bdrv_replace_node_common skips updating from parents
4853 * if it creates a parent-child relation loop or if parent is block-job.
4854 *
4855 * With auto_skip=false the error is returned if from has a parent which should
4856 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004857 *
4858 * With @detach_subchain=true @to must be in a backing chain of @from. In this
4859 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004860 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004861static int bdrv_replace_node_common(BlockDriverState *from,
4862 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004863 bool auto_skip, bool detach_subchain,
4864 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004865{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004866 Transaction *tran = tran_new();
4867 g_autoptr(GHashTable) found = NULL;
4868 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04004869 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004870 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004871
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004872 if (detach_subchain) {
4873 assert(bdrv_chain_contains(from, to));
4874 assert(from != to);
4875 for (to_cow_parent = from;
4876 bdrv_filter_or_cow_bs(to_cow_parent) != to;
4877 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
4878 {
4879 ;
4880 }
4881 }
4882
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004883 /* Make sure that @from doesn't go away until we have successfully attached
4884 * all of its parents to @to. */
4885 bdrv_ref(from);
4886
Kevin Wolff871abd2019-05-21 19:00:25 +02004887 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01004888 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02004889 bdrv_drained_begin(from);
4890
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004891 /*
4892 * Do the replacement without permission update.
4893 * Replacement may influence the permissions, we should calculate new
4894 * permissions based on new graph. If we fail, we'll roll-back the
4895 * replacement.
4896 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03004897 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
4898 if (ret < 0) {
4899 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004900 }
4901
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004902 if (detach_subchain) {
4903 bdrv_remove_filter_or_cow_child(to_cow_parent, tran);
4904 }
4905
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004906 found = g_hash_table_new(NULL, NULL);
4907
4908 refresh_list = bdrv_topological_dfs(refresh_list, found, to);
4909 refresh_list = bdrv_topological_dfs(refresh_list, found, from);
4910
4911 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004912 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004913 goto out;
4914 }
4915
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004916 ret = 0;
4917
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004918out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03004919 tran_finalize(tran, ret);
4920
Kevin Wolff871abd2019-05-21 19:00:25 +02004921 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004922 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004923
4924 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004925}
4926
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004927int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
4928 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004929{
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03004930 return bdrv_replace_node_common(from, to, true, false, errp);
4931}
4932
4933int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
4934{
4935 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
4936 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03004937}
4938
Jeff Cody8802d1f2012-02-28 15:54:06 -05004939/*
4940 * Add new bs contents at the top of an image chain while the chain is
4941 * live, while keeping required fields on the top layer.
4942 *
4943 * This will modify the BlockDriverState fields, and swap contents
4944 * between bs_new and bs_top. Both bs_new and bs_top are modified.
4945 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004946 * bs_new must not be attached to a BlockBackend and must not have backing
4947 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04004948 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05004949 * This function does not create any image files.
4950 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004951int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
4952 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05004953{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004954 int ret;
4955 Transaction *tran = tran_new();
4956
4957 assert(!bs_new->backing);
4958
4959 ret = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
4960 &child_of_bds, bdrv_backing_role(bs_new),
4961 &bs_new->backing, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004962 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004963 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01004964 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004965
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004966 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03004967 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004968 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01004969 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004970
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004971 ret = bdrv_refresh_perms(bs_new, errp);
4972out:
4973 tran_finalize(tran, ret);
4974
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004975 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03004976
4977 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05004978}
4979
Fam Zheng4f6fd342013-08-23 09:14:47 +08004980static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00004981{
Fam Zheng3718d8a2014-05-23 21:29:43 +08004982 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08004983 assert(!bs->refcnt);
Markus Armbruster18846de2010-06-29 16:58:30 +02004984
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01004985 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01004986 if (bs->node_name[0] != '\0') {
4987 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
4988 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01004989 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
4990
Anton Kuchin30c321f2019-05-07 11:12:56 +03004991 bdrv_close(bs);
4992
Anthony Liguori7267c092011-08-20 22:09:37 -05004993 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00004994}
4995
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03004996BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *node_options,
4997 int flags, Error **errp)
4998{
4999 BlockDriverState *new_node_bs;
5000 Error *local_err = NULL;
5001
5002 new_node_bs = bdrv_open(NULL, NULL, node_options, flags, errp);
5003 if (new_node_bs == NULL) {
5004 error_prepend(errp, "Could not create node: ");
5005 return NULL;
5006 }
5007
5008 bdrv_drained_begin(bs);
5009 bdrv_replace_node(bs, new_node_bs, &local_err);
5010 bdrv_drained_end(bs);
5011
5012 if (local_err) {
5013 bdrv_unref(new_node_bs);
5014 error_propagate(errp, local_err);
5015 return NULL;
5016 }
5017
5018 return new_node_bs;
5019}
5020
aliguorie97fc192009-04-21 23:11:50 +00005021/*
5022 * Run consistency checks on an image
5023 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005024 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005025 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005026 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005027 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005028int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5029 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005030{
Max Reitz908bcd52014-08-07 22:47:55 +02005031 if (bs->drv == NULL) {
5032 return -ENOMEDIUM;
5033 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005034 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005035 return -ENOTSUP;
5036 }
5037
Kevin Wolfe076f332010-06-29 11:43:13 +02005038 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005039 return bs->drv->bdrv_co_check(bs, res, fix);
5040}
5041
Kevin Wolf756e6732010-01-12 12:55:17 +01005042/*
5043 * Return values:
5044 * 0 - success
5045 * -EINVAL - backing format specified, but no file
5046 * -ENOSPC - can't update the backing file because no space is left in the
5047 * image file header
5048 * -ENOTSUP - format driver doesn't support changing the backing file
5049 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005050int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
5051 const char *backing_fmt, bool warn)
Kevin Wolf756e6732010-01-12 12:55:17 +01005052{
5053 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005054 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005055
Max Reitzd470ad42017-11-10 21:31:09 +01005056 if (!drv) {
5057 return -ENOMEDIUM;
5058 }
5059
Paolo Bonzini5f377792012-04-12 14:01:01 +02005060 /* Backing file format doesn't make sense without a backing file */
5061 if (backing_fmt && !backing_file) {
5062 return -EINVAL;
5063 }
5064
Eric Blakee54ee1b2020-07-06 15:39:53 -05005065 if (warn && backing_file && !backing_fmt) {
5066 warn_report("Deprecated use of backing file without explicit "
5067 "backing format, use of this image requires "
5068 "potentially unsafe format probing");
5069 }
5070
Kevin Wolf756e6732010-01-12 12:55:17 +01005071 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005072 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005073 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005074 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005075 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005076
5077 if (ret == 0) {
5078 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5079 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005080 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5081 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005082 }
5083 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005084}
5085
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005086/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005087 * Finds the first non-filter node above bs in the chain between
5088 * active and bs. The returned node is either an immediate parent of
5089 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005090 *
5091 * Returns NULL if bs is not found in active's image chain,
5092 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005093 *
5094 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005095 */
5096BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5097 BlockDriverState *bs)
5098{
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005099 bs = bdrv_skip_filters(bs);
5100 active = bdrv_skip_filters(active);
5101
5102 while (active) {
5103 BlockDriverState *next = bdrv_backing_chain_next(active);
5104 if (bs == next) {
5105 return active;
5106 }
5107 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005108 }
5109
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005110 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005111}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005112
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005113/* Given a BDS, searches for the base layer. */
5114BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5115{
5116 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005117}
5118
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005119/*
Max Reitz7b99a262019-06-12 16:07:11 +02005120 * Return true if at least one of the COW (backing) and filter links
5121 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005122 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005123 */
5124bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5125 Error **errp)
5126{
5127 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005128 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005129
Max Reitz7b99a262019-06-12 16:07:11 +02005130 for (i = bs; i != base; i = child_bs(child)) {
5131 child = bdrv_filter_or_cow_child(i);
5132
5133 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005134 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005135 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005136 return true;
5137 }
5138 }
5139
5140 return false;
5141}
5142
5143/*
Max Reitz7b99a262019-06-12 16:07:11 +02005144 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005145 * If any of the links is already frozen the operation is aborted and
5146 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005147 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005148 * Returns 0 on success. On failure returns < 0 and sets @errp.
5149 */
5150int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5151 Error **errp)
5152{
5153 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005154 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005155
5156 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5157 return -EPERM;
5158 }
5159
Max Reitz7b99a262019-06-12 16:07:11 +02005160 for (i = bs; i != base; i = child_bs(child)) {
5161 child = bdrv_filter_or_cow_child(i);
5162 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005163 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005164 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005165 return -EPERM;
5166 }
5167 }
5168
Max Reitz7b99a262019-06-12 16:07:11 +02005169 for (i = bs; i != base; i = child_bs(child)) {
5170 child = bdrv_filter_or_cow_child(i);
5171 if (child) {
5172 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005173 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005174 }
5175
5176 return 0;
5177}
5178
5179/*
Max Reitz7b99a262019-06-12 16:07:11 +02005180 * Unfreeze all COW (backing) and filter links between @bs and @base.
5181 * The caller must ensure that all links are frozen before using this
5182 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005183 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005184 */
5185void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5186{
5187 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005188 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005189
Max Reitz7b99a262019-06-12 16:07:11 +02005190 for (i = bs; i != base; i = child_bs(child)) {
5191 child = bdrv_filter_or_cow_child(i);
5192 if (child) {
5193 assert(child->frozen);
5194 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005195 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005196 }
5197}
5198
5199/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005200 * Drops images above 'base' up to and including 'top', and sets the image
5201 * above 'top' to have base as its backing file.
5202 *
5203 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5204 * information in 'bs' can be properly updated.
5205 *
5206 * E.g., this will convert the following chain:
5207 * bottom <- base <- intermediate <- top <- active
5208 *
5209 * to
5210 *
5211 * bottom <- base <- active
5212 *
5213 * It is allowed for bottom==base, in which case it converts:
5214 *
5215 * base <- intermediate <- top <- active
5216 *
5217 * to
5218 *
5219 * base <- active
5220 *
Jeff Cody54e26902014-06-25 15:40:10 -04005221 * If backing_file_str is non-NULL, it will be used when modifying top's
5222 * overlay image metadata.
5223 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005224 * Error conditions:
5225 * if active == top, that is considered an error
5226 *
5227 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005228int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5229 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005230{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005231 BlockDriverState *explicit_top = top;
5232 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005233 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005234 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005235 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005236 g_autoptr(GSList) updated_children = NULL;
5237 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005238
Kevin Wolf6858eba2017-06-29 19:32:21 +02005239 bdrv_ref(top);
Max Reitz637d54a2019-07-22 15:33:43 +02005240 bdrv_subtree_drained_begin(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005241
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005242 if (!top->drv || !base->drv) {
5243 goto exit;
5244 }
5245
Kevin Wolf5db15a52015-09-14 15:33:33 +02005246 /* Make sure that base is in the backing chain of top */
5247 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005248 goto exit;
5249 }
5250
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005251 /* If 'base' recursively inherits from 'top' then we should set
5252 * base->inherits_from to top->inherits_from after 'top' and all
5253 * other intermediate nodes have been dropped.
5254 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5255 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005256 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005257 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5258
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005259 /* success - we can delete the intermediate states, and link top->base */
Kevin Wolfbde70712017-06-27 20:36:18 +02005260 /* TODO Check graph modification op blockers (BLK_PERM_GRAPH_MOD) once
5261 * we've figured out how they should work. */
Max Reitzf30c66b2019-02-01 20:29:05 +01005262 if (!backing_file_str) {
5263 bdrv_refresh_filename(base);
5264 backing_file_str = base->filename;
5265 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005266
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005267 QLIST_FOREACH(c, &top->parents, next_parent) {
5268 updated_children = g_slist_prepend(updated_children, c);
5269 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005270
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005271 /*
5272 * It seems correct to pass detach_subchain=true here, but it triggers
5273 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5274 * another drained section, which modify the graph (for example, removing
5275 * the child, which we keep in updated_children list). So, it's a TODO.
5276 *
5277 * Note, bug triggered if pass detach_subchain=true here and run
5278 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5279 * That's a FIXME.
5280 */
5281 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005282 if (local_err) {
5283 error_report_err(local_err);
5284 goto exit;
5285 }
5286
5287 for (p = updated_children; p; p = p->next) {
5288 c = p->data;
5289
Max Reitzbd86fb92020-05-13 13:05:13 +02005290 if (c->klass->update_filename) {
5291 ret = c->klass->update_filename(c, base, backing_file_str,
5292 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005293 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005294 /*
5295 * TODO: Actually, we want to rollback all previous iterations
5296 * of this loop, and (which is almost impossible) previous
5297 * bdrv_replace_node()...
5298 *
5299 * Note, that c->klass->update_filename may lead to permission
5300 * update, so it's a bad idea to call it inside permission
5301 * update transaction of bdrv_replace_node.
5302 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005303 error_report_err(local_err);
5304 goto exit;
5305 }
5306 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005307 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005308
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005309 if (update_inherits_from) {
5310 base->inherits_from = explicit_top->inherits_from;
5311 }
5312
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005313 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005314exit:
Max Reitz637d54a2019-07-22 15:33:43 +02005315 bdrv_subtree_drained_end(top);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005316 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005317 return ret;
5318}
5319
bellard83f64092006-08-01 16:21:11 +00005320/**
Max Reitz081e4652019-06-12 18:14:13 +02005321 * Implementation of BlockDriver.bdrv_get_allocated_file_size() that
5322 * sums the size of all data-bearing children. (This excludes backing
5323 * children.)
5324 */
5325static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5326{
5327 BdrvChild *child;
5328 int64_t child_size, sum = 0;
5329
5330 QLIST_FOREACH(child, &bs->children, next) {
5331 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5332 BDRV_CHILD_FILTERED))
5333 {
5334 child_size = bdrv_get_allocated_file_size(child->bs);
5335 if (child_size < 0) {
5336 return child_size;
5337 }
5338 sum += child_size;
5339 }
5340 }
5341
5342 return sum;
5343}
5344
5345/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005346 * Length of a allocated file in bytes. Sparse files are counted by actual
5347 * allocated space. Return < 0 if error or unknown.
5348 */
5349int64_t bdrv_get_allocated_file_size(BlockDriverState *bs)
5350{
5351 BlockDriver *drv = bs->drv;
5352 if (!drv) {
5353 return -ENOMEDIUM;
5354 }
5355 if (drv->bdrv_get_allocated_file_size) {
5356 return drv->bdrv_get_allocated_file_size(bs);
5357 }
Max Reitz081e4652019-06-12 18:14:13 +02005358
5359 if (drv->bdrv_file_open) {
5360 /*
5361 * Protocol drivers default to -ENOTSUP (most of their data is
5362 * not stored in any of their children (if they even have any),
5363 * so there is no generic way to figure it out).
5364 */
5365 return -ENOTSUP;
5366 } else if (drv->is_filter) {
5367 /* Filter drivers default to the size of their filtered child */
5368 return bdrv_get_allocated_file_size(bdrv_filter_bs(bs));
5369 } else {
5370 /* Other drivers default to summing their children's sizes */
5371 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005372 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005373}
5374
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005375/*
5376 * bdrv_measure:
5377 * @drv: Format driver
5378 * @opts: Creation options for new image
5379 * @in_bs: Existing image containing data for new image (may be NULL)
5380 * @errp: Error object
5381 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5382 * or NULL on error
5383 *
5384 * Calculate file size required to create a new image.
5385 *
5386 * If @in_bs is given then space for allocated clusters and zero clusters
5387 * from that image are included in the calculation. If @opts contains a
5388 * backing file that is shared by @in_bs then backing clusters may be omitted
5389 * from the calculation.
5390 *
5391 * If @in_bs is NULL then the calculation includes no allocated clusters
5392 * unless a preallocation option is given in @opts.
5393 *
5394 * Note that @in_bs may use a different BlockDriver from @drv.
5395 *
5396 * If an error occurs the @errp pointer is set.
5397 */
5398BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5399 BlockDriverState *in_bs, Error **errp)
5400{
5401 if (!drv->bdrv_measure) {
5402 error_setg(errp, "Block driver '%s' does not support size measurement",
5403 drv->format_name);
5404 return NULL;
5405 }
5406
5407 return drv->bdrv_measure(opts, in_bs, errp);
5408}
5409
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005410/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005411 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005412 */
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005413int64_t bdrv_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005414{
5415 BlockDriver *drv = bs->drv;
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005416
bellard83f64092006-08-01 16:21:11 +00005417 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005418 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005419
Kevin Wolfb94a2612013-10-29 12:18:58 +01005420 if (drv->has_variable_length) {
5421 int ret = refresh_total_sectors(bs, bs->total_sectors);
5422 if (ret < 0) {
5423 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005424 }
bellard83f64092006-08-01 16:21:11 +00005425 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005426 return bs->total_sectors;
5427}
5428
5429/**
5430 * Return length in bytes on success, -errno on error.
5431 * The length is always a multiple of BDRV_SECTOR_SIZE.
5432 */
5433int64_t bdrv_getlength(BlockDriverState *bs)
5434{
5435 int64_t ret = bdrv_nb_sectors(bs);
5436
Eric Blake122860b2020-11-05 09:51:22 -06005437 if (ret < 0) {
5438 return ret;
5439 }
5440 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5441 return -EFBIG;
5442 }
5443 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005444}
5445
bellard19cb3732006-08-19 11:45:59 +00005446/* return 0 as number of sectors if no device present or error */
ths96b8f132007-12-17 01:35:20 +00005447void bdrv_get_geometry(BlockDriverState *bs, uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005448{
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005449 int64_t nb_sectors = bdrv_nb_sectors(bs);
5450
5451 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005452}
bellardcf989512004-02-16 21:56:36 +00005453
Eric Blake54115412016-06-23 16:37:26 -06005454bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005455{
5456 return bs->sg;
5457}
5458
Max Reitzae23f782019-06-12 22:57:15 +02005459/**
5460 * Return whether the given node supports compressed writes.
5461 */
5462bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5463{
5464 BlockDriverState *filtered;
5465
5466 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5467 return false;
5468 }
5469
5470 filtered = bdrv_filter_bs(bs);
5471 if (filtered) {
5472 /*
5473 * Filters can only forward compressed writes, so we have to
5474 * check the child.
5475 */
5476 return bdrv_supports_compressed_writes(filtered);
5477 }
5478
5479 return true;
5480}
5481
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005482const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005483{
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005484 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005485}
5486
Stefan Hajnocziada42402014-08-27 12:08:55 +01005487static int qsort_strcmp(const void *a, const void *b)
5488{
Max Reitzceff5bd2016-10-12 22:49:05 +02005489 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005490}
5491
ths5fafdf22007-09-16 21:08:06 +00005492void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005493 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005494{
5495 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005496 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005497 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005498 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005499
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005500 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005501 if (drv->format_name) {
5502 bool found = false;
5503 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005504
5505 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5506 continue;
5507 }
5508
Jeff Codye855e4f2014-04-28 18:29:54 -04005509 while (formats && i && !found) {
5510 found = !strcmp(formats[--i], drv->format_name);
5511 }
5512
5513 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005514 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005515 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005516 }
5517 }
bellardea2384d2004-08-01 21:59:26 +00005518 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005519
Max Reitzeb0df692016-10-12 22:49:06 +02005520 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5521 const char *format_name = block_driver_modules[i].format_name;
5522
5523 if (format_name) {
5524 bool found = false;
5525 int j = count;
5526
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005527 if (use_bdrv_whitelist &&
5528 !bdrv_format_is_whitelisted(format_name, read_only)) {
5529 continue;
5530 }
5531
Max Reitzeb0df692016-10-12 22:49:06 +02005532 while (formats && j && !found) {
5533 found = !strcmp(formats[--j], format_name);
5534 }
5535
5536 if (!found) {
5537 formats = g_renew(const char *, formats, count + 1);
5538 formats[count++] = format_name;
5539 }
5540 }
5541 }
5542
Stefan Hajnocziada42402014-08-27 12:08:55 +01005543 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5544
5545 for (i = 0; i < count; i++) {
5546 it(opaque, formats[i]);
5547 }
5548
Jeff Codye855e4f2014-04-28 18:29:54 -04005549 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005550}
5551
Benoît Canetdc364f42014-01-23 21:31:32 +01005552/* This function is to find a node in the bs graph */
5553BlockDriverState *bdrv_find_node(const char *node_name)
5554{
5555 BlockDriverState *bs;
5556
5557 assert(node_name);
5558
5559 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5560 if (!strcmp(node_name, bs->node_name)) {
5561 return bs;
5562 }
5563 }
5564 return NULL;
5565}
5566
Benoît Canetc13163f2014-01-23 21:31:34 +01005567/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01005568BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
5569 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01005570{
Eric Blake9812e712020-10-27 00:05:47 -05005571 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01005572 BlockDriverState *bs;
5573
5574 list = NULL;
5575 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01005576 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03005577 if (!info) {
5578 qapi_free_BlockDeviceInfoList(list);
5579 return NULL;
5580 }
Eric Blake9812e712020-10-27 00:05:47 -05005581 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01005582 }
5583
5584 return list;
5585}
5586
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005587typedef struct XDbgBlockGraphConstructor {
5588 XDbgBlockGraph *graph;
5589 GHashTable *graph_nodes;
5590} XDbgBlockGraphConstructor;
5591
5592static XDbgBlockGraphConstructor *xdbg_graph_new(void)
5593{
5594 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
5595
5596 gr->graph = g_new0(XDbgBlockGraph, 1);
5597 gr->graph_nodes = g_hash_table_new(NULL, NULL);
5598
5599 return gr;
5600}
5601
5602static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
5603{
5604 XDbgBlockGraph *graph = gr->graph;
5605
5606 g_hash_table_destroy(gr->graph_nodes);
5607 g_free(gr);
5608
5609 return graph;
5610}
5611
5612static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
5613{
5614 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
5615
5616 if (ret != 0) {
5617 return ret;
5618 }
5619
5620 /*
5621 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
5622 * answer of g_hash_table_lookup.
5623 */
5624 ret = g_hash_table_size(gr->graph_nodes) + 1;
5625 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
5626
5627 return ret;
5628}
5629
5630static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
5631 XDbgBlockGraphNodeType type, const char *name)
5632{
5633 XDbgBlockGraphNode *n;
5634
5635 n = g_new0(XDbgBlockGraphNode, 1);
5636
5637 n->id = xdbg_graph_node_num(gr, node);
5638 n->type = type;
5639 n->name = g_strdup(name);
5640
Eric Blake9812e712020-10-27 00:05:47 -05005641 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005642}
5643
5644static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
5645 const BdrvChild *child)
5646{
Max Reitzcdb1cec2019-11-08 13:34:52 +01005647 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005648 XDbgBlockGraphEdge *edge;
5649
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005650 edge = g_new0(XDbgBlockGraphEdge, 1);
5651
5652 edge->parent = xdbg_graph_node_num(gr, parent);
5653 edge->child = xdbg_graph_node_num(gr, child->bs);
5654 edge->name = g_strdup(child->name);
5655
Max Reitzcdb1cec2019-11-08 13:34:52 +01005656 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
5657 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
5658
5659 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005660 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005661 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01005662 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05005663 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005664 }
5665 }
5666
Eric Blake9812e712020-10-27 00:05:47 -05005667 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03005668}
5669
5670
5671XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
5672{
5673 BlockBackend *blk;
5674 BlockJob *job;
5675 BlockDriverState *bs;
5676 BdrvChild *child;
5677 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
5678
5679 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
5680 char *allocated_name = NULL;
5681 const char *name = blk_name(blk);
5682
5683 if (!*name) {
5684 name = allocated_name = blk_get_attached_dev_id(blk);
5685 }
5686 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
5687 name);
5688 g_free(allocated_name);
5689 if (blk_root(blk)) {
5690 xdbg_graph_add_edge(gr, blk, blk_root(blk));
5691 }
5692 }
5693
5694 for (job = block_job_next(NULL); job; job = block_job_next(job)) {
5695 GSList *el;
5696
5697 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
5698 job->job.id);
5699 for (el = job->nodes; el; el = el->next) {
5700 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
5701 }
5702 }
5703
5704 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
5705 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
5706 bs->node_name);
5707 QLIST_FOREACH(child, &bs->children, next) {
5708 xdbg_graph_add_edge(gr, bs, child);
5709 }
5710 }
5711
5712 return xdbg_graph_finalize(gr);
5713}
5714
Benoît Canet12d3ba82014-01-23 21:31:35 +01005715BlockDriverState *bdrv_lookup_bs(const char *device,
5716 const char *node_name,
5717 Error **errp)
5718{
Markus Armbruster7f06d472014-10-07 13:59:12 +02005719 BlockBackend *blk;
5720 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005721
Benoît Canet12d3ba82014-01-23 21:31:35 +01005722 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02005723 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005724
Markus Armbruster7f06d472014-10-07 13:59:12 +02005725 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005726 bs = blk_bs(blk);
5727 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02005728 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02005729 }
5730
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02005731 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005732 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005733 }
5734
Benoît Canetdd67fa52014-02-12 17:15:06 +01005735 if (node_name) {
5736 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01005737
Benoît Canetdd67fa52014-02-12 17:15:06 +01005738 if (bs) {
5739 return bs;
5740 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01005741 }
5742
Connor Kuehl785ec4b2021-03-05 09:19:28 -06005743 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01005744 device ? device : "",
5745 node_name ? node_name : "");
5746 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01005747}
5748
Jeff Cody5a6684d2014-06-25 15:40:09 -04005749/* If 'base' is in the same chain as 'top', return true. Otherwise,
5750 * return false. If either argument is NULL, return false. */
5751bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
5752{
5753 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005754 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04005755 }
5756
5757 return top != NULL;
5758}
5759
Fam Zheng04df7652014-10-31 11:32:54 +08005760BlockDriverState *bdrv_next_node(BlockDriverState *bs)
5761{
5762 if (!bs) {
5763 return QTAILQ_FIRST(&graph_bdrv_states);
5764 }
5765 return QTAILQ_NEXT(bs, node_list);
5766}
5767
Kevin Wolf0f122642018-03-28 18:29:18 +02005768BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
5769{
5770 if (!bs) {
5771 return QTAILQ_FIRST(&all_bdrv_states);
5772 }
5773 return QTAILQ_NEXT(bs, bs_list);
5774}
5775
Fam Zheng20a9e772014-10-31 11:32:55 +08005776const char *bdrv_get_node_name(const BlockDriverState *bs)
5777{
5778 return bs->node_name;
5779}
5780
Kevin Wolf1f0c4612016-03-22 18:38:44 +01005781const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005782{
5783 BdrvChild *c;
5784 const char *name;
5785
5786 /* If multiple parents have a name, just pick the first one. */
5787 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02005788 if (c->klass->get_name) {
5789 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005790 if (name && *name) {
5791 return name;
5792 }
5793 }
5794 }
5795
5796 return NULL;
5797}
5798
Markus Armbruster7f06d472014-10-07 13:59:12 +02005799/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02005800const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005801{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005802 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00005803}
5804
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005805/* This can be used to identify nodes that might not have a device
5806 * name associated. Since node and device names live in the same
5807 * namespace, the result is unambiguous. The exception is if both are
5808 * absent, then this returns an empty (non-null) string. */
5809const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
5810{
Kevin Wolf4c265bf2016-02-26 10:22:16 +01005811 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03005812}
5813
Markus Armbrusterc8433282012-06-05 16:49:24 +02005814int bdrv_get_flags(BlockDriverState *bs)
5815{
5816 return bs->open_flags;
5817}
5818
Peter Lieven3ac21622013-06-28 12:47:42 +02005819int bdrv_has_zero_init_1(BlockDriverState *bs)
5820{
5821 return 1;
5822}
5823
Kevin Wolff2feebb2010-04-14 17:30:35 +02005824int bdrv_has_zero_init(BlockDriverState *bs)
5825{
Max Reitz93393e62019-06-12 17:03:38 +02005826 BlockDriverState *filtered;
5827
Max Reitzd470ad42017-11-10 21:31:09 +01005828 if (!bs->drv) {
5829 return 0;
5830 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005831
Paolo Bonzini11212d82013-09-04 19:00:27 +02005832 /* If BS is a copy on write image, it is initialized to
5833 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02005834 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02005835 return 0;
5836 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02005837 if (bs->drv->bdrv_has_zero_init) {
5838 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02005839 }
Max Reitz93393e62019-06-12 17:03:38 +02005840
5841 filtered = bdrv_filter_bs(bs);
5842 if (filtered) {
5843 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005844 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02005845
Peter Lieven3ac21622013-06-28 12:47:42 +02005846 /* safe default */
5847 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02005848}
5849
Peter Lieven4ce78692013-10-24 12:06:54 +02005850bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
5851{
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03005852 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02005853 return false;
5854 }
5855
Eric Blakee24d8132018-01-26 13:34:39 -06005856 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02005857}
5858
ths5fafdf22007-09-16 21:08:06 +00005859void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00005860 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00005861{
Kevin Wolf3574c602011-10-26 11:02:11 +02005862 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00005863}
5864
bellardfaea38e2006-08-05 21:31:00 +00005865int bdrv_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
5866{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005867 int ret;
bellardfaea38e2006-08-05 21:31:00 +00005868 BlockDriver *drv = bs->drv;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005869 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
5870 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00005871 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005872 }
5873 if (!drv->bdrv_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02005874 BlockDriverState *filtered = bdrv_filter_bs(bs);
5875 if (filtered) {
5876 return bdrv_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005877 }
bellardfaea38e2006-08-05 21:31:00 +00005878 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03005879 }
bellardfaea38e2006-08-05 21:31:00 +00005880 memset(bdi, 0, sizeof(*bdi));
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03005881 ret = drv->bdrv_get_info(bs, bdi);
5882 if (ret < 0) {
5883 return ret;
5884 }
5885
5886 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
5887 return -EINVAL;
5888 }
5889
5890 return 0;
bellardfaea38e2006-08-05 21:31:00 +00005891}
5892
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005893ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
5894 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02005895{
5896 BlockDriver *drv = bs->drv;
5897 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03005898 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02005899 }
5900 return NULL;
5901}
5902
Anton Nefedovd9245592019-09-23 15:17:37 +03005903BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
5904{
5905 BlockDriver *drv = bs->drv;
5906 if (!drv || !drv->bdrv_get_specific_stats) {
5907 return NULL;
5908 }
5909 return drv->bdrv_get_specific_stats(bs);
5910}
5911
Eric Blakea31939e2015-11-18 01:52:54 -07005912void bdrv_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005913{
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005914 if (!bs || !bs->drv || !bs->drv->bdrv_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005915 return;
5916 }
5917
Kevin Wolfbf736fe2013-06-05 15:17:55 +02005918 bs->drv->bdrv_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005919}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005920
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005921static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01005922{
5923 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02005924 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005925 }
5926
5927 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005928 assert(bs->drv->bdrv_debug_remove_breakpoint);
5929 return bs;
5930 }
5931
5932 return NULL;
5933}
5934
5935int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
5936 const char *tag)
5937{
5938 bs = bdrv_find_debug_node(bs);
5939 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01005940 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
5941 }
5942
5943 return -ENOTSUP;
5944}
5945
Fam Zheng4cc70e92013-11-20 10:01:54 +08005946int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
5947{
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03005948 bs = bdrv_find_debug_node(bs);
5949 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08005950 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
5951 }
5952
5953 return -ENOTSUP;
5954}
5955
Kevin Wolf41c695c2012-12-06 14:32:58 +01005956int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
5957{
Max Reitz938789e2014-03-10 23:44:08 +01005958 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02005959 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005960 }
5961
5962 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
5963 return bs->drv->bdrv_debug_resume(bs, tag);
5964 }
5965
5966 return -ENOTSUP;
5967}
5968
5969bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
5970{
5971 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02005972 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01005973 }
5974
5975 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
5976 return bs->drv->bdrv_debug_is_suspended(bs, tag);
5977 }
5978
5979 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01005980}
5981
Jeff Codyb1b1d782012-10-16 15:49:09 -04005982/* backing_file can either be relative, or absolute, or a protocol. If it is
5983 * relative, it must be relative to the chain. So, passing in bs->filename
5984 * from a BDS as backing_file should not be done, as that may be relative to
5985 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005986BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
5987 const char *backing_file)
5988{
Jeff Codyb1b1d782012-10-16 15:49:09 -04005989 char *filename_full = NULL;
5990 char *backing_file_full = NULL;
5991 char *filename_tmp = NULL;
5992 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02005993 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005994 BlockDriverState *curr_bs = NULL;
5995 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005996 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04005997
5998 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00005999 return NULL;
6000 }
6001
Jeff Codyb1b1d782012-10-16 15:49:09 -04006002 filename_full = g_malloc(PATH_MAX);
6003 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006004
6005 is_protocol = path_has_protocol(backing_file);
6006
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006007 /*
6008 * Being largely a legacy function, skip any filters here
6009 * (because filters do not have normal filenames, so they cannot
6010 * match anyway; and allowing json:{} filenames is a bit out of
6011 * scope).
6012 */
6013 for (curr_bs = bdrv_skip_filters(bs);
6014 bdrv_cow_child(curr_bs) != NULL;
6015 curr_bs = bs_below)
6016 {
6017 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006018
Max Reitz0b877d02018-08-01 20:34:11 +02006019 if (bdrv_backing_overridden(curr_bs)) {
6020 /*
6021 * If the backing file was overridden, we can only compare
6022 * directly against the backing node's filename.
6023 */
6024
6025 if (!filenames_refreshed) {
6026 /*
6027 * This will automatically refresh all of the
6028 * filenames in the rest of the backing chain, so we
6029 * only need to do this once.
6030 */
6031 bdrv_refresh_filename(bs_below);
6032 filenames_refreshed = true;
6033 }
6034
6035 if (strcmp(backing_file, bs_below->filename) == 0) {
6036 retval = bs_below;
6037 break;
6038 }
6039 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6040 /*
6041 * If either of the filename paths is actually a protocol, then
6042 * compare unmodified paths; otherwise make paths relative.
6043 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006044 char *backing_file_full_ret;
6045
Jeff Codyb1b1d782012-10-16 15:49:09 -04006046 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006047 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006048 break;
6049 }
Jeff Cody418661e2017-01-25 20:08:20 -05006050 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006051 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6052 NULL);
6053 if (backing_file_full_ret) {
6054 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6055 g_free(backing_file_full_ret);
6056 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006057 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006058 break;
6059 }
Jeff Cody418661e2017-01-25 20:08:20 -05006060 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006061 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006062 /* If not an absolute filename path, make it relative to the current
6063 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006064 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6065 NULL);
6066 /* We are going to compare canonicalized absolute pathnames */
6067 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6068 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006069 continue;
6070 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006071 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006072
6073 /* We need to make sure the backing filename we are comparing against
6074 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006075 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6076 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6077 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006078 continue;
6079 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006080 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006081
6082 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006083 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006084 break;
6085 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006086 }
6087 }
6088
Jeff Codyb1b1d782012-10-16 15:49:09 -04006089 g_free(filename_full);
6090 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006091 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006092}
6093
bellardea2384d2004-08-01 21:59:26 +00006094void bdrv_init(void)
6095{
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006096 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006097}
pbrookce1a14d2006-08-07 02:38:06 +00006098
Markus Armbrustereb852012009-10-27 18:41:44 +01006099void bdrv_init_with_whitelist(void)
6100{
6101 use_bdrv_whitelist = 1;
6102 bdrv_init();
6103}
6104
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03006105int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006106{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006107 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006108 Error *local_err = NULL;
6109 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006110 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006111
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006112 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006113 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006114 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006115
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006116 QLIST_FOREACH(child, &bs->children, next) {
Paolo Bonzini2b148f32018-03-01 17:36:18 +01006117 bdrv_co_invalidate_cache(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006118 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006119 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006120 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006121 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006122 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006123
Kevin Wolfdafe0962017-11-16 13:00:01 +01006124 /*
6125 * Update permissions, they may differ for inactive nodes.
6126 *
6127 * Note that the required permissions of inactive images are always a
6128 * subset of the permissions required after activating the image. This
6129 * allows us to just get the permissions upfront without restricting
6130 * drv->bdrv_invalidate_cache().
6131 *
6132 * It also means that in error cases, we don't have to try and revert to
6133 * the old permissions (which is an operation that could fail, too). We can
6134 * just keep the extended permissions for the next time that an activation
6135 * of the image is tried.
6136 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006137 if (bs->open_flags & BDRV_O_INACTIVE) {
6138 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006139 ret = bdrv_refresh_perms(bs, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006140 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006141 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006142 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006143 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006144
Kevin Wolf7bb49412019-12-17 15:06:38 +01006145 if (bs->drv->bdrv_co_invalidate_cache) {
6146 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6147 if (local_err) {
6148 bs->open_flags |= BDRV_O_INACTIVE;
6149 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006150 return -EINVAL;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006151 }
6152 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006153
Kevin Wolf7bb49412019-12-17 15:06:38 +01006154 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6155 bdrv_dirty_bitmap_skip_store(bm, false);
6156 }
6157
6158 ret = refresh_total_sectors(bs, bs->total_sectors);
6159 if (ret < 0) {
6160 bs->open_flags |= BDRV_O_INACTIVE;
6161 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006162 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006163 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006164 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006165
6166 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006167 if (parent->klass->activate) {
6168 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006169 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006170 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006171 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006172 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006173 }
6174 }
6175 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006176
6177 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006178}
6179
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006180void bdrv_invalidate_cache_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006181{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006182 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006183 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006184
Kevin Wolf88be7b42016-05-20 18:49:07 +02006185 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006186 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006187 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006188
6189 aio_context_acquire(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006190 ret = bdrv_invalidate_cache(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006191 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006192 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006193 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006194 return;
6195 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006196 }
6197}
6198
Kevin Wolf9e372712018-11-23 15:11:14 +01006199static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6200{
6201 BdrvChild *parent;
6202
6203 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006204 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006205 BlockDriverState *parent_bs = parent->opaque;
6206 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6207 return true;
6208 }
6209 }
6210 }
6211
6212 return false;
6213}
6214
6215static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006216{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006217 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006218 int ret;
6219
Max Reitzd470ad42017-11-10 21:31:09 +01006220 if (!bs->drv) {
6221 return -ENOMEDIUM;
6222 }
6223
Kevin Wolf9e372712018-11-23 15:11:14 +01006224 /* Make sure that we don't inactivate a child before its parent.
6225 * It will be covered by recursion from the yet active parent. */
6226 if (bdrv_has_bds_parent(bs, true)) {
6227 return 0;
6228 }
6229
6230 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6231
6232 /* Inactivate this node */
6233 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006234 ret = bs->drv->bdrv_inactivate(bs);
6235 if (ret < 0) {
6236 return ret;
6237 }
6238 }
6239
Kevin Wolf9e372712018-11-23 15:11:14 +01006240 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006241 if (parent->klass->inactivate) {
6242 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006243 if (ret < 0) {
6244 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006245 }
6246 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006247 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006248
Kevin Wolf9e372712018-11-23 15:11:14 +01006249 bs->open_flags |= BDRV_O_INACTIVE;
6250
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006251 /*
6252 * Update permissions, they may differ for inactive nodes.
6253 * We only tried to loosen restrictions, so errors are not fatal, ignore
6254 * them.
6255 */
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03006256 bdrv_refresh_perms(bs, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006257
6258 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006259 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006260 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006261 if (ret < 0) {
6262 return ret;
6263 }
6264 }
6265
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006266 return 0;
6267}
6268
6269int bdrv_inactivate_all(void)
6270{
Max Reitz79720af2016-03-16 19:54:44 +01006271 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006272 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006273 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006274 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006275
Kevin Wolf88be7b42016-05-20 18:49:07 +02006276 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006277 AioContext *aio_context = bdrv_get_aio_context(bs);
6278
6279 if (!g_slist_find(aio_ctxs, aio_context)) {
6280 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6281 aio_context_acquire(aio_context);
6282 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006283 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006284
Kevin Wolf9e372712018-11-23 15:11:14 +01006285 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6286 /* Nodes with BDS parents are covered by recursion from the last
6287 * parent that gets inactivated. Don't inactivate them a second
6288 * time if that has already happened. */
6289 if (bdrv_has_bds_parent(bs, false)) {
6290 continue;
6291 }
6292 ret = bdrv_inactivate_recurse(bs);
6293 if (ret < 0) {
6294 bdrv_next_cleanup(&it);
6295 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006296 }
6297 }
6298
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006299out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006300 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6301 AioContext *aio_context = ctx->data;
6302 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006303 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006304 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006305
6306 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006307}
6308
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006309/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006310/* removable device support */
6311
6312/**
6313 * Return TRUE if the media is present
6314 */
Max Reitze031f752015-10-19 17:53:11 +02006315bool bdrv_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006316{
6317 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006318 BdrvChild *child;
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006319
Max Reitze031f752015-10-19 17:53:11 +02006320 if (!drv) {
6321 return false;
6322 }
Max Reitz28d7a782015-10-19 17:53:13 +02006323 if (drv->bdrv_is_inserted) {
6324 return drv->bdrv_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006325 }
Max Reitz28d7a782015-10-19 17:53:13 +02006326 QLIST_FOREACH(child, &bs->children, next) {
6327 if (!bdrv_is_inserted(child->bs)) {
6328 return false;
6329 }
6330 }
6331 return true;
bellard19cb3732006-08-19 11:45:59 +00006332}
6333
6334/**
bellard19cb3732006-08-19 11:45:59 +00006335 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6336 */
Luiz Capitulinof36f3942012-02-03 16:24:53 -02006337void bdrv_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006338{
6339 BlockDriver *drv = bs->drv;
bellard19cb3732006-08-19 11:45:59 +00006340
Markus Armbruster822e1cd2011-07-20 18:23:42 +02006341 if (drv && drv->bdrv_eject) {
6342 drv->bdrv_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006343 }
bellard19cb3732006-08-19 11:45:59 +00006344}
6345
bellard19cb3732006-08-19 11:45:59 +00006346/**
6347 * Lock or unlock the media (if it is locked, the user won't be able
6348 * to eject it manually).
6349 */
Markus Armbruster025e8492011-09-06 18:58:47 +02006350void bdrv_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006351{
6352 BlockDriver *drv = bs->drv;
6353
Markus Armbruster025e8492011-09-06 18:58:47 +02006354 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006355
Markus Armbruster025e8492011-09-06 18:58:47 +02006356 if (drv && drv->bdrv_lock_medium) {
6357 drv->bdrv_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006358 }
6359}
ths985a03b2007-12-24 16:10:43 +00006360
Fam Zheng9fcb0252013-08-23 09:14:46 +08006361/* Get a reference to bs */
6362void bdrv_ref(BlockDriverState *bs)
6363{
6364 bs->refcnt++;
6365}
6366
6367/* Release a previously grabbed reference to bs.
6368 * If after releasing, reference count is zero, the BlockDriverState is
6369 * deleted. */
6370void bdrv_unref(BlockDriverState *bs)
6371{
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006372 if (!bs) {
6373 return;
6374 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006375 assert(bs->refcnt > 0);
6376 if (--bs->refcnt == 0) {
6377 bdrv_delete(bs);
6378 }
6379}
6380
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006381struct BdrvOpBlocker {
6382 Error *reason;
6383 QLIST_ENTRY(BdrvOpBlocker) list;
6384};
6385
6386bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6387{
6388 BdrvOpBlocker *blocker;
6389 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6390 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6391 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006392 error_propagate_prepend(errp, error_copy(blocker->reason),
6393 "Node '%s' is busy: ",
6394 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006395 return true;
6396 }
6397 return false;
6398}
6399
6400void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6401{
6402 BdrvOpBlocker *blocker;
6403 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6404
Markus Armbruster5839e532014-08-19 10:31:08 +02006405 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006406 blocker->reason = reason;
6407 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6408}
6409
6410void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6411{
6412 BdrvOpBlocker *blocker, *next;
6413 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6414 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6415 if (blocker->reason == reason) {
6416 QLIST_REMOVE(blocker, list);
6417 g_free(blocker);
6418 }
6419 }
6420}
6421
6422void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6423{
6424 int i;
6425 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6426 bdrv_op_block(bs, i, reason);
6427 }
6428}
6429
6430void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6431{
6432 int i;
6433 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6434 bdrv_op_unblock(bs, i, reason);
6435 }
6436}
6437
6438bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6439{
6440 int i;
6441
6442 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6443 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6444 return false;
6445 }
6446 }
6447 return true;
6448}
6449
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006450void bdrv_img_create(const char *filename, const char *fmt,
6451 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006452 char *options, uint64_t img_size, int flags, bool quiet,
6453 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006454{
Chunyan Liu83d05212014-06-05 17:20:51 +08006455 QemuOptsList *create_opts = NULL;
6456 QemuOpts *opts = NULL;
6457 const char *backing_fmt, *backing_file;
6458 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006459 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006460 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006461 int ret = 0;
6462
6463 /* Find driver and parse its options */
6464 drv = bdrv_find_format(fmt);
6465 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006466 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006467 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006468 }
6469
Max Reitzb65a5e12015-02-05 13:58:12 -05006470 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006471 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006472 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006473 }
6474
Max Reitzc6149722014-12-02 18:32:45 +01006475 if (!drv->create_opts) {
6476 error_setg(errp, "Format driver '%s' does not support image creation",
6477 drv->format_name);
6478 return;
6479 }
6480
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006481 if (!proto_drv->create_opts) {
6482 error_setg(errp, "Protocol driver '%s' does not support image creation",
6483 proto_drv->format_name);
6484 return;
6485 }
6486
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006487 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006488 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02006489 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006490
Chunyan Liu83d05212014-06-05 17:20:51 +08006491 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006492
6493 /* Parse -o options */
6494 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02006495 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006496 goto out;
6497 }
6498 }
6499
Kevin Wolff6dc1c32019-11-26 16:45:49 +01006500 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
6501 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
6502 } else if (img_size != UINT64_C(-1)) {
6503 error_setg(errp, "The image size must be specified only once");
6504 goto out;
6505 }
6506
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006507 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02006508 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02006509 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006510 error_setg(errp, "Backing file not supported for file format '%s'",
6511 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006512 goto out;
6513 }
6514 }
6515
6516 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02006517 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006518 error_setg(errp, "Backing file format not supported for file "
6519 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006520 goto out;
6521 }
6522 }
6523
Chunyan Liu83d05212014-06-05 17:20:51 +08006524 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
6525 if (backing_file) {
6526 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006527 error_setg(errp, "Error: Trying to create an image with the "
6528 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01006529 goto out;
6530 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05006531 if (backing_file[0] == '\0') {
6532 error_setg(errp, "Expected backing file name, got empty string");
6533 goto out;
6534 }
Jes Sorensen792da932010-12-16 13:52:17 +01006535 }
6536
Chunyan Liu83d05212014-06-05 17:20:51 +08006537 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006538
John Snow6e6e55f2017-07-17 20:34:22 -04006539 /* The size for the image must always be specified, unless we have a backing
6540 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05006541 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04006542 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
6543 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01006544 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04006545 int back_flags;
6546 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02006547
Max Reitz645ae7d2019-02-01 20:29:14 +01006548 full_backing =
6549 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
6550 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04006551 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006552 goto out;
6553 }
Max Reitz645ae7d2019-02-01 20:29:14 +01006554 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04006555
Max Reitzd5b23992021-06-22 16:00:30 +02006556 /*
6557 * No need to do I/O here, which allows us to open encrypted
6558 * backing images without needing the secret
6559 */
John Snow6e6e55f2017-07-17 20:34:22 -04006560 back_flags = flags;
6561 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02006562 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04006563
Fam Zhengcc954f02017-12-15 16:04:45 +08006564 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04006565 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04006566 qdict_put_str(backing_options, "driver", backing_fmt);
6567 }
Fam Zhengcc954f02017-12-15 16:04:45 +08006568 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04006569
6570 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
6571 &local_err);
6572 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05006573 if (!bs) {
6574 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04006575 goto out;
6576 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05006577 if (!backing_fmt) {
6578 warn_report("Deprecated use of backing file without explicit "
6579 "backing format (detected format of %s)",
6580 bs->drv->format_name);
6581 if (bs->drv != &bdrv_raw) {
6582 /*
6583 * A probe of raw deserves the most attention:
6584 * leaving the backing format out of the image
6585 * will ensure bs->probed is set (ensuring we
6586 * don't accidentally commit into the backing
6587 * file), and allow more spots to warn the users
6588 * to fix their toolchain when opening this image
6589 * later. For other images, we can safely record
6590 * the format that we probed.
6591 */
6592 backing_fmt = bs->drv->format_name;
6593 qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, backing_fmt,
6594 NULL);
6595 }
6596 }
John Snow6e6e55f2017-07-17 20:34:22 -04006597 if (size == -1) {
6598 /* Opened BS, have no size */
6599 size = bdrv_getlength(bs);
6600 if (size < 0) {
6601 error_setg_errno(errp, -size, "Could not get size of '%s'",
6602 backing_file);
6603 bdrv_unref(bs);
6604 goto out;
6605 }
6606 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
6607 }
6608 bdrv_unref(bs);
6609 }
Eric Blaked9f059a2020-07-06 15:39:54 -05006610 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
6611 } else if (backing_file && !backing_fmt) {
6612 warn_report("Deprecated use of unopened backing file without "
6613 "explicit backing format, use of this image requires "
6614 "potentially unsafe format probing");
6615 }
John Snow6e6e55f2017-07-17 20:34:22 -04006616
6617 if (size == -1) {
6618 error_setg(errp, "Image creation needs a size parameter");
6619 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006620 }
6621
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006622 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02006623 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08006624 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006625 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05006626 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01006627 }
Chunyan Liu83d05212014-06-05 17:20:51 +08006628
Chunyan Liuc282e1f2014-06-05 17:21:11 +08006629 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08006630
Max Reitzcc84d902013-09-06 17:14:26 +02006631 if (ret == -EFBIG) {
6632 /* This is generally a better message than whatever the driver would
6633 * deliver (especially because of the cluster_size_hint), since that
6634 * is most probably not much different from "image too large". */
6635 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08006636 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02006637 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006638 }
Max Reitzcc84d902013-09-06 17:14:26 +02006639 error_setg(errp, "The image size is too large for file format '%s'"
6640 "%s", fmt, cluster_size_hint);
6641 error_free(local_err);
6642 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006643 }
6644
6645out:
Chunyan Liu83d05212014-06-05 17:20:51 +08006646 qemu_opts_del(opts);
6647 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03006648 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006649}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006650
6651AioContext *bdrv_get_aio_context(BlockDriverState *bs)
6652{
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00006653 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006654}
6655
Kevin Wolfe336fd42020-10-05 17:58:53 +02006656AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
6657{
6658 Coroutine *self = qemu_coroutine_self();
6659 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
6660 AioContext *new_ctx;
6661
6662 /*
6663 * Increase bs->in_flight to ensure that this operation is completed before
6664 * moving the node to a different AioContext. Read new_ctx only afterwards.
6665 */
6666 bdrv_inc_in_flight(bs);
6667
6668 new_ctx = bdrv_get_aio_context(bs);
6669 aio_co_reschedule_self(new_ctx);
6670 return old_ctx;
6671}
6672
6673void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
6674{
6675 aio_co_reschedule_self(old_ctx);
6676 bdrv_dec_in_flight(bs);
6677}
6678
Kevin Wolf18c6ac12020-10-05 17:58:54 +02006679void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
6680{
6681 AioContext *ctx = bdrv_get_aio_context(bs);
6682
6683 /* In the main thread, bs->aio_context won't change concurrently */
6684 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6685
6686 /*
6687 * We're in coroutine context, so we already hold the lock of the main
6688 * loop AioContext. Don't lock it twice to avoid deadlocks.
6689 */
6690 assert(qemu_in_coroutine());
6691 if (ctx != qemu_get_aio_context()) {
6692 aio_context_acquire(ctx);
6693 }
6694}
6695
6696void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
6697{
6698 AioContext *ctx = bdrv_get_aio_context(bs);
6699
6700 assert(qemu_in_coroutine());
6701 if (ctx != qemu_get_aio_context()) {
6702 aio_context_release(ctx);
6703 }
6704}
6705
Fam Zheng052a7572017-04-10 20:09:25 +08006706void bdrv_coroutine_enter(BlockDriverState *bs, Coroutine *co)
6707{
6708 aio_co_enter(bdrv_get_aio_context(bs), co);
6709}
6710
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006711static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
6712{
6713 QLIST_REMOVE(ban, list);
6714 g_free(ban);
6715}
6716
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006717static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006718{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006719 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006720
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006721 assert(!bs->walking_aio_notifiers);
6722 bs->walking_aio_notifiers = true;
6723 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
6724 if (baf->deleted) {
6725 bdrv_do_remove_aio_context_notifier(baf);
6726 } else {
6727 baf->detach_aio_context(baf->opaque);
6728 }
Max Reitz33384422014-06-20 21:57:33 +02006729 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006730 /* Never mind iterating again to check for ->deleted. bdrv_close() will
6731 * remove remaining aio notifiers if we aren't called again.
6732 */
6733 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02006734
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006735 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006736 bs->drv->bdrv_detach_aio_context(bs);
6737 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006738
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006739 if (bs->quiesce_counter) {
6740 aio_enable_external(bs->aio_context);
6741 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006742 bs->aio_context = NULL;
6743}
6744
Kevin Wolfa3a683c2019-05-06 19:17:57 +02006745static void bdrv_attach_aio_context(BlockDriverState *bs,
6746 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006747{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006748 BdrvAioNotifier *ban, *ban_tmp;
Max Reitz33384422014-06-20 21:57:33 +02006749
Kevin Wolfe64f25f2019-02-08 16:51:17 +01006750 if (bs->quiesce_counter) {
6751 aio_disable_external(new_context);
6752 }
6753
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006754 bs->aio_context = new_context;
6755
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02006756 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006757 bs->drv->bdrv_attach_aio_context(bs, new_context);
6758 }
Max Reitz33384422014-06-20 21:57:33 +02006759
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006760 assert(!bs->walking_aio_notifiers);
6761 bs->walking_aio_notifiers = true;
6762 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
6763 if (ban->deleted) {
6764 bdrv_do_remove_aio_context_notifier(ban);
6765 } else {
6766 ban->attached_aio_context(new_context, ban->opaque);
6767 }
Max Reitz33384422014-06-20 21:57:33 +02006768 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006769 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006770}
6771
Kevin Wolf42a65f02019-05-07 18:31:38 +02006772/*
6773 * Changes the AioContext used for fd handlers, timers, and BHs by this
6774 * BlockDriverState and all its children and parents.
6775 *
Max Reitz43eaaae2019-07-22 15:30:54 +02006776 * Must be called from the main AioContext.
6777 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02006778 * The caller must own the AioContext lock for the old AioContext of bs, but it
6779 * must not own the AioContext lock for new_context (unless new_context is the
6780 * same as the current context of bs).
6781 *
6782 * @ignore will accumulate all visited BdrvChild object. The caller is
6783 * responsible for freeing the list afterwards.
6784 */
Kevin Wolf53a7d042019-05-06 19:17:59 +02006785void bdrv_set_aio_context_ignore(BlockDriverState *bs,
6786 AioContext *new_context, GSList **ignore)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006787{
Max Reitze037c092019-07-19 11:26:14 +02006788 AioContext *old_context = bdrv_get_aio_context(bs);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006789 GSList *children_to_process = NULL;
6790 GSList *parents_to_process = NULL;
6791 GSList *entry;
6792 BdrvChild *child, *parent;
Kevin Wolf0d837082019-05-06 19:17:58 +02006793
Max Reitz43eaaae2019-07-22 15:30:54 +02006794 g_assert(qemu_get_current_aio_context() == qemu_get_aio_context());
6795
Max Reitze037c092019-07-19 11:26:14 +02006796 if (old_context == new_context) {
Denis Plotnikov57830a42019-02-15 16:03:25 +03006797 return;
6798 }
6799
Kevin Wolfd70d5952019-02-08 16:53:37 +01006800 bdrv_drained_begin(bs);
Kevin Wolf0d837082019-05-06 19:17:58 +02006801
6802 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006803 if (g_slist_find(*ignore, child)) {
6804 continue;
6805 }
6806 *ignore = g_slist_prepend(*ignore, child);
Sergio Lopez722d8e72021-02-01 13:50:31 +01006807 children_to_process = g_slist_prepend(children_to_process, child);
Kevin Wolf53a7d042019-05-06 19:17:59 +02006808 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006809
6810 QLIST_FOREACH(parent, &bs->parents, next_parent) {
6811 if (g_slist_find(*ignore, parent)) {
Kevin Wolf53a7d042019-05-06 19:17:59 +02006812 continue;
6813 }
Sergio Lopez722d8e72021-02-01 13:50:31 +01006814 *ignore = g_slist_prepend(*ignore, parent);
6815 parents_to_process = g_slist_prepend(parents_to_process, parent);
Kevin Wolf0d837082019-05-06 19:17:58 +02006816 }
6817
Sergio Lopez722d8e72021-02-01 13:50:31 +01006818 for (entry = children_to_process;
6819 entry != NULL;
6820 entry = g_slist_next(entry)) {
6821 child = entry->data;
6822 bdrv_set_aio_context_ignore(child->bs, new_context, ignore);
6823 }
6824 g_slist_free(children_to_process);
6825
6826 for (entry = parents_to_process;
6827 entry != NULL;
6828 entry = g_slist_next(entry)) {
6829 parent = entry->data;
6830 assert(parent->klass->set_aio_ctx);
6831 parent->klass->set_aio_ctx(parent, new_context, ignore);
6832 }
6833 g_slist_free(parents_to_process);
6834
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006835 bdrv_detach_aio_context(bs);
6836
Max Reitze037c092019-07-19 11:26:14 +02006837 /* Acquire the new context, if necessary */
Max Reitz43eaaae2019-07-22 15:30:54 +02006838 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006839 aio_context_acquire(new_context);
6840 }
6841
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02006842 bdrv_attach_aio_context(bs, new_context);
Max Reitze037c092019-07-19 11:26:14 +02006843
6844 /*
6845 * If this function was recursively called from
6846 * bdrv_set_aio_context_ignore(), there may be nodes in the
6847 * subtree that have not yet been moved to the new AioContext.
6848 * Release the old one so bdrv_drained_end() can poll them.
6849 */
Max Reitz43eaaae2019-07-22 15:30:54 +02006850 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006851 aio_context_release(old_context);
6852 }
6853
Kevin Wolfd70d5952019-02-08 16:53:37 +01006854 bdrv_drained_end(bs);
Max Reitze037c092019-07-19 11:26:14 +02006855
Max Reitz43eaaae2019-07-22 15:30:54 +02006856 if (qemu_get_aio_context() != old_context) {
Max Reitze037c092019-07-19 11:26:14 +02006857 aio_context_acquire(old_context);
6858 }
Max Reitz43eaaae2019-07-22 15:30:54 +02006859 if (qemu_get_aio_context() != new_context) {
Max Reitze037c092019-07-19 11:26:14 +02006860 aio_context_release(new_context);
6861 }
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01006862}
Stefan Hajnoczid616b222013-06-24 17:13:10 +02006863
Kevin Wolf5d231842019-05-06 19:17:56 +02006864static bool bdrv_parent_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6865 GSList **ignore, Error **errp)
6866{
6867 if (g_slist_find(*ignore, c)) {
6868 return true;
6869 }
6870 *ignore = g_slist_prepend(*ignore, c);
6871
Max Reitzbd86fb92020-05-13 13:05:13 +02006872 /*
6873 * A BdrvChildClass that doesn't handle AioContext changes cannot
6874 * tolerate any AioContext changes
6875 */
6876 if (!c->klass->can_set_aio_ctx) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006877 char *user = bdrv_child_user_desc(c);
6878 error_setg(errp, "Changing iothreads is not supported by %s", user);
6879 g_free(user);
6880 return false;
6881 }
Max Reitzbd86fb92020-05-13 13:05:13 +02006882 if (!c->klass->can_set_aio_ctx(c, ctx, ignore, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02006883 assert(!errp || *errp);
6884 return false;
6885 }
6886 return true;
6887}
6888
6889bool bdrv_child_can_set_aio_context(BdrvChild *c, AioContext *ctx,
6890 GSList **ignore, Error **errp)
6891{
6892 if (g_slist_find(*ignore, c)) {
6893 return true;
6894 }
6895 *ignore = g_slist_prepend(*ignore, c);
6896 return bdrv_can_set_aio_context(c->bs, ctx, ignore, errp);
6897}
6898
6899/* @ignore will accumulate all visited BdrvChild object. The caller is
6900 * responsible for freeing the list afterwards. */
6901bool bdrv_can_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6902 GSList **ignore, Error **errp)
6903{
6904 BdrvChild *c;
6905
6906 if (bdrv_get_aio_context(bs) == ctx) {
6907 return true;
6908 }
6909
6910 QLIST_FOREACH(c, &bs->parents, next_parent) {
6911 if (!bdrv_parent_can_set_aio_context(c, ctx, ignore, errp)) {
6912 return false;
6913 }
6914 }
6915 QLIST_FOREACH(c, &bs->children, next) {
6916 if (!bdrv_child_can_set_aio_context(c, ctx, ignore, errp)) {
6917 return false;
6918 }
6919 }
6920
6921 return true;
6922}
6923
6924int bdrv_child_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6925 BdrvChild *ignore_child, Error **errp)
6926{
6927 GSList *ignore;
6928 bool ret;
6929
6930 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6931 ret = bdrv_can_set_aio_context(bs, ctx, &ignore, errp);
6932 g_slist_free(ignore);
6933
6934 if (!ret) {
6935 return -EPERM;
6936 }
6937
Kevin Wolf53a7d042019-05-06 19:17:59 +02006938 ignore = ignore_child ? g_slist_prepend(NULL, ignore_child) : NULL;
6939 bdrv_set_aio_context_ignore(bs, ctx, &ignore);
6940 g_slist_free(ignore);
6941
Kevin Wolf5d231842019-05-06 19:17:56 +02006942 return 0;
6943}
6944
6945int bdrv_try_set_aio_context(BlockDriverState *bs, AioContext *ctx,
6946 Error **errp)
6947{
6948 return bdrv_child_try_set_aio_context(bs, ctx, NULL, errp);
6949}
6950
Max Reitz33384422014-06-20 21:57:33 +02006951void bdrv_add_aio_context_notifier(BlockDriverState *bs,
6952 void (*attached_aio_context)(AioContext *new_context, void *opaque),
6953 void (*detach_aio_context)(void *opaque), void *opaque)
6954{
6955 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
6956 *ban = (BdrvAioNotifier){
6957 .attached_aio_context = attached_aio_context,
6958 .detach_aio_context = detach_aio_context,
6959 .opaque = opaque
6960 };
6961
6962 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
6963}
6964
6965void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
6966 void (*attached_aio_context)(AioContext *,
6967 void *),
6968 void (*detach_aio_context)(void *),
6969 void *opaque)
6970{
6971 BdrvAioNotifier *ban, *ban_next;
6972
6973 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
6974 if (ban->attached_aio_context == attached_aio_context &&
6975 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006976 ban->opaque == opaque &&
6977 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02006978 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01006979 if (bs->walking_aio_notifiers) {
6980 ban->deleted = true;
6981 } else {
6982 bdrv_do_remove_aio_context_notifier(ban);
6983 }
Max Reitz33384422014-06-20 21:57:33 +02006984 return;
6985 }
6986 }
6987
6988 abort();
6989}
6990
Max Reitz77485432014-10-27 11:12:50 +01006991int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02006992 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02006993 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02006994 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02006995{
Max Reitzd470ad42017-11-10 21:31:09 +01006996 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02006997 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01006998 return -ENOMEDIUM;
6999 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007000 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007001 error_setg(errp, "Block driver '%s' does not support option amendment",
7002 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007003 return -ENOTSUP;
7004 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007005 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7006 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007007}
Benoît Canetf6186f42013-10-02 14:33:48 +02007008
Max Reitz5d69b5a2020-02-18 11:34:41 +01007009/*
7010 * This function checks whether the given @to_replace is allowed to be
7011 * replaced by a node that always shows the same data as @bs. This is
7012 * used for example to verify whether the mirror job can replace
7013 * @to_replace by the target mirrored from @bs.
7014 * To be replaceable, @bs and @to_replace may either be guaranteed to
7015 * always show the same data (because they are only connected through
7016 * filters), or some driver may allow replacing one of its children
7017 * because it can guarantee that this child's data is not visible at
7018 * all (for example, for dissenting quorum children that have no other
7019 * parents).
7020 */
7021bool bdrv_recurse_can_replace(BlockDriverState *bs,
7022 BlockDriverState *to_replace)
7023{
Max Reitz93393e62019-06-12 17:03:38 +02007024 BlockDriverState *filtered;
7025
Max Reitz5d69b5a2020-02-18 11:34:41 +01007026 if (!bs || !bs->drv) {
7027 return false;
7028 }
7029
7030 if (bs == to_replace) {
7031 return true;
7032 }
7033
7034 /* See what the driver can do */
7035 if (bs->drv->bdrv_recurse_can_replace) {
7036 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7037 }
7038
7039 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007040 filtered = bdrv_filter_bs(bs);
7041 if (filtered) {
7042 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007043 }
7044
7045 /* Safe default */
7046 return false;
7047}
7048
Max Reitz810803a2020-02-18 11:34:44 +01007049/*
7050 * Check whether the given @node_name can be replaced by a node that
7051 * has the same data as @parent_bs. If so, return @node_name's BDS;
7052 * NULL otherwise.
7053 *
7054 * @node_name must be a (recursive) *child of @parent_bs (or this
7055 * function will return NULL).
7056 *
7057 * The result (whether the node can be replaced or not) is only valid
7058 * for as long as no graph or permission changes occur.
7059 */
Wen Congyange12f3782015-07-17 10:12:22 +08007060BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7061 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007062{
7063 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007064 AioContext *aio_context;
7065
Benoît Canet09158f02014-06-27 18:25:25 +02007066 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007067 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007068 return NULL;
7069 }
7070
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007071 aio_context = bdrv_get_aio_context(to_replace_bs);
7072 aio_context_acquire(aio_context);
7073
Benoît Canet09158f02014-06-27 18:25:25 +02007074 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007075 to_replace_bs = NULL;
7076 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007077 }
7078
7079 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7080 * most non filter in order to prevent data corruption.
7081 * Another benefit is that this tests exclude backing files which are
7082 * blocked by the backing blockers.
7083 */
Max Reitz810803a2020-02-18 11:34:44 +01007084 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7085 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7086 "because it cannot be guaranteed that doing so would not "
7087 "lead to an abrupt change of visible data",
7088 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007089 to_replace_bs = NULL;
7090 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007091 }
7092
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007093out:
7094 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007095 return to_replace_bs;
7096}
Ming Lei448ad912014-07-04 18:04:33 +08007097
Max Reitz97e2f022019-02-01 20:29:27 +01007098/**
7099 * Iterates through the list of runtime option keys that are said to
7100 * be "strong" for a BDS. An option is called "strong" if it changes
7101 * a BDS's data. For example, the null block driver's "size" and
7102 * "read-zeroes" options are strong, but its "latency-ns" option is
7103 * not.
7104 *
7105 * If a key returned by this function ends with a dot, all options
7106 * starting with that prefix are strong.
7107 */
7108static const char *const *strong_options(BlockDriverState *bs,
7109 const char *const *curopt)
7110{
7111 static const char *const global_options[] = {
7112 "driver", "filename", NULL
7113 };
7114
7115 if (!curopt) {
7116 return &global_options[0];
7117 }
7118
7119 curopt++;
7120 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7121 curopt = bs->drv->strong_runtime_opts;
7122 }
7123
7124 return (curopt && *curopt) ? curopt : NULL;
7125}
7126
7127/**
7128 * Copies all strong runtime options from bs->options to the given
7129 * QDict. The set of strong option keys is determined by invoking
7130 * strong_options().
7131 *
7132 * Returns true iff any strong option was present in bs->options (and
7133 * thus copied to the target QDict) with the exception of "filename"
7134 * and "driver". The caller is expected to use this value to decide
7135 * whether the existence of strong options prevents the generation of
7136 * a plain filename.
7137 */
7138static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7139{
7140 bool found_any = false;
7141 const char *const *option_name = NULL;
7142
7143 if (!bs->drv) {
7144 return false;
7145 }
7146
7147 while ((option_name = strong_options(bs, option_name))) {
7148 bool option_given = false;
7149
7150 assert(strlen(*option_name) > 0);
7151 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7152 QObject *entry = qdict_get(bs->options, *option_name);
7153 if (!entry) {
7154 continue;
7155 }
7156
7157 qdict_put_obj(d, *option_name, qobject_ref(entry));
7158 option_given = true;
7159 } else {
7160 const QDictEntry *entry;
7161 for (entry = qdict_first(bs->options); entry;
7162 entry = qdict_next(bs->options, entry))
7163 {
7164 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7165 qdict_put_obj(d, qdict_entry_key(entry),
7166 qobject_ref(qdict_entry_value(entry)));
7167 option_given = true;
7168 }
7169 }
7170 }
7171
7172 /* While "driver" and "filename" need to be included in a JSON filename,
7173 * their existence does not prohibit generation of a plain filename. */
7174 if (!found_any && option_given &&
7175 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7176 {
7177 found_any = true;
7178 }
7179 }
7180
Max Reitz62a01a272019-02-01 20:29:34 +01007181 if (!qdict_haskey(d, "driver")) {
7182 /* Drivers created with bdrv_new_open_driver() may not have a
7183 * @driver option. Add it here. */
7184 qdict_put_str(d, "driver", bs->drv->format_name);
7185 }
7186
Max Reitz97e2f022019-02-01 20:29:27 +01007187 return found_any;
7188}
7189
Max Reitz90993622019-02-01 20:29:09 +01007190/* Note: This function may return false positives; it may return true
7191 * even if opening the backing file specified by bs's image header
7192 * would result in exactly bs->backing. */
Max Reitz0b877d02018-08-01 20:34:11 +02007193bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007194{
7195 if (bs->backing) {
7196 return strcmp(bs->auto_backing_file,
7197 bs->backing->bs->filename);
7198 } else {
7199 /* No backing BDS, so if the image header reports any backing
7200 * file, it must have been suppressed */
7201 return bs->auto_backing_file[0] != '\0';
7202 }
7203}
7204
Max Reitz91af7012014-07-18 20:24:56 +02007205/* Updates the following BDS fields:
7206 * - exact_filename: A filename which may be used for opening a block device
7207 * which (mostly) equals the given BDS (even without any
7208 * other options; so reading and writing must return the same
7209 * results, but caching etc. may be different)
7210 * - full_open_options: Options which, when given when opening a block device
7211 * (without a filename), result in a BDS (mostly)
7212 * equalling the given one
7213 * - filename: If exact_filename is set, it is copied here. Otherwise,
7214 * full_open_options is converted to a JSON object, prefixed with
7215 * "json:" (for use through the JSON pseudo protocol) and put here.
7216 */
7217void bdrv_refresh_filename(BlockDriverState *bs)
7218{
7219 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007220 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007221 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007222 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007223 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007224 bool generate_json_filename; /* Whether our default implementation should
7225 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007226
7227 if (!drv) {
7228 return;
7229 }
7230
Max Reitze24518e2019-02-01 20:29:06 +01007231 /* This BDS's file name may depend on any of its children's file names, so
7232 * refresh those first */
7233 QLIST_FOREACH(child, &bs->children, next) {
7234 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007235 }
7236
Max Reitzbb808d52019-02-01 20:29:07 +01007237 if (bs->implicit) {
7238 /* For implicit nodes, just copy everything from the single child */
7239 child = QLIST_FIRST(&bs->children);
7240 assert(QLIST_NEXT(child, next) == NULL);
7241
7242 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7243 child->bs->exact_filename);
7244 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7245
Pan Nengyuancb895612020-01-16 16:56:00 +08007246 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007247 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7248
7249 return;
7250 }
7251
Max Reitz90993622019-02-01 20:29:09 +01007252 backing_overridden = bdrv_backing_overridden(bs);
7253
7254 if (bs->open_flags & BDRV_O_NO_IO) {
7255 /* Without I/O, the backing file does not change anything.
7256 * Therefore, in such a case (primarily qemu-img), we can
7257 * pretend the backing file has not been overridden even if
7258 * it technically has been. */
7259 backing_overridden = false;
7260 }
7261
Max Reitz97e2f022019-02-01 20:29:27 +01007262 /* Gather the options QDict */
7263 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007264 generate_json_filename = append_strong_runtime_options(opts, bs);
7265 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007266
7267 if (drv->bdrv_gather_child_options) {
7268 /* Some block drivers may not want to present all of their children's
7269 * options, or name them differently from BdrvChild.name */
7270 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7271 } else {
7272 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007273 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007274 /* We can skip the backing BDS if it has not been overridden */
7275 continue;
7276 }
7277
7278 qdict_put(opts, child->name,
7279 qobject_ref(child->bs->full_open_options));
7280 }
7281
7282 if (backing_overridden && !bs->backing) {
7283 /* Force no backing file */
7284 qdict_put_null(opts, "backing");
7285 }
7286 }
7287
7288 qobject_unref(bs->full_open_options);
7289 bs->full_open_options = opts;
7290
Max Reitz52f72d62019-06-12 17:43:03 +02007291 primary_child_bs = bdrv_primary_bs(bs);
7292
Max Reitz998b3a12019-02-01 20:29:28 +01007293 if (drv->bdrv_refresh_filename) {
7294 /* Obsolete information is of no use here, so drop the old file name
7295 * information before refreshing it */
7296 bs->exact_filename[0] = '\0';
7297
7298 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007299 } else if (primary_child_bs) {
7300 /*
7301 * Try to reconstruct valid information from the underlying
7302 * file -- this only works for format nodes (filter nodes
7303 * cannot be probed and as such must be selected by the user
7304 * either through an options dict, or through a special
7305 * filename which the filter driver must construct in its
7306 * .bdrv_refresh_filename() implementation).
7307 */
Max Reitz998b3a12019-02-01 20:29:28 +01007308
7309 bs->exact_filename[0] = '\0';
7310
Max Reitzfb695c72019-02-01 20:29:29 +01007311 /*
7312 * We can use the underlying file's filename if:
7313 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007314 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007315 * - the file is a protocol BDS, and
7316 * - opening that file (as this BDS's format) will automatically create
7317 * the BDS tree we have right now, that is:
7318 * - the user did not significantly change this BDS's behavior with
7319 * some explicit (strong) options
7320 * - no non-file child of this BDS has been overridden by the user
7321 * Both of these conditions are represented by generate_json_filename.
7322 */
Max Reitz52f72d62019-06-12 17:43:03 +02007323 if (primary_child_bs->exact_filename[0] &&
7324 primary_child_bs->drv->bdrv_file_open &&
7325 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007326 {
Max Reitz52f72d62019-06-12 17:43:03 +02007327 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007328 }
7329 }
7330
Max Reitz91af7012014-07-18 20:24:56 +02007331 if (bs->exact_filename[0]) {
7332 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007333 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007334 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007335 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007336 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007337 /* Give user a hint if we truncated things. */
7338 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7339 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007340 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007341 }
7342}
Wen Congyange06018a2016-05-10 15:36:37 +08007343
Max Reitz1e89d0f2019-02-01 20:29:18 +01007344char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7345{
7346 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007347 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007348
7349 if (!drv) {
7350 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7351 return NULL;
7352 }
7353
7354 if (drv->bdrv_dirname) {
7355 return drv->bdrv_dirname(bs, errp);
7356 }
7357
Max Reitz52f72d62019-06-12 17:43:03 +02007358 child_bs = bdrv_primary_bs(bs);
7359 if (child_bs) {
7360 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007361 }
7362
7363 bdrv_refresh_filename(bs);
7364 if (bs->exact_filename[0] != '\0') {
7365 return path_combine(bs->exact_filename, "");
7366 }
7367
7368 error_setg(errp, "Cannot generate a base directory for %s nodes",
7369 drv->format_name);
7370 return NULL;
7371}
7372
Wen Congyange06018a2016-05-10 15:36:37 +08007373/*
7374 * Hot add/remove a BDS's child. So the user can take a child offline when
7375 * it is broken and take a new child online
7376 */
7377void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7378 Error **errp)
7379{
7380
7381 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7382 error_setg(errp, "The node %s does not support adding a child",
7383 bdrv_get_device_or_node_name(parent_bs));
7384 return;
7385 }
7386
7387 if (!QLIST_EMPTY(&child_bs->parents)) {
7388 error_setg(errp, "The node %s already has a parent",
7389 child_bs->node_name);
7390 return;
7391 }
7392
7393 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7394}
7395
7396void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7397{
7398 BdrvChild *tmp;
7399
7400 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7401 error_setg(errp, "The node %s does not support removing a child",
7402 bdrv_get_device_or_node_name(parent_bs));
7403 return;
7404 }
7405
7406 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7407 if (tmp == child) {
7408 break;
7409 }
7410 }
7411
7412 if (!tmp) {
7413 error_setg(errp, "The node %s does not have a child named %s",
7414 bdrv_get_device_or_node_name(parent_bs),
7415 bdrv_get_device_or_node_name(child->bs));
7416 return;
7417 }
7418
7419 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7420}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007421
7422int bdrv_make_empty(BdrvChild *c, Error **errp)
7423{
7424 BlockDriver *drv = c->bs->drv;
7425 int ret;
7426
7427 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
7428
7429 if (!drv->bdrv_make_empty) {
7430 error_setg(errp, "%s does not support emptying nodes",
7431 drv->format_name);
7432 return -ENOTSUP;
7433 }
7434
7435 ret = drv->bdrv_make_empty(c->bs);
7436 if (ret < 0) {
7437 error_setg_errno(errp, -ret, "Failed to empty %s",
7438 c->bs->filename);
7439 return ret;
7440 }
7441
7442 return 0;
7443}
Max Reitz9a6fc882019-05-31 15:23:11 +02007444
7445/*
7446 * Return the child that @bs acts as an overlay for, and from which data may be
7447 * copied in COW or COR operations. Usually this is the backing file.
7448 */
7449BdrvChild *bdrv_cow_child(BlockDriverState *bs)
7450{
7451 if (!bs || !bs->drv) {
7452 return NULL;
7453 }
7454
7455 if (bs->drv->is_filter) {
7456 return NULL;
7457 }
7458
7459 if (!bs->backing) {
7460 return NULL;
7461 }
7462
7463 assert(bs->backing->role & BDRV_CHILD_COW);
7464 return bs->backing;
7465}
7466
7467/*
7468 * If @bs acts as a filter for exactly one of its children, return
7469 * that child.
7470 */
7471BdrvChild *bdrv_filter_child(BlockDriverState *bs)
7472{
7473 BdrvChild *c;
7474
7475 if (!bs || !bs->drv) {
7476 return NULL;
7477 }
7478
7479 if (!bs->drv->is_filter) {
7480 return NULL;
7481 }
7482
7483 /* Only one of @backing or @file may be used */
7484 assert(!(bs->backing && bs->file));
7485
7486 c = bs->backing ?: bs->file;
7487 if (!c) {
7488 return NULL;
7489 }
7490
7491 assert(c->role & BDRV_CHILD_FILTERED);
7492 return c;
7493}
7494
7495/*
7496 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
7497 * whichever is non-NULL.
7498 *
7499 * Return NULL if both are NULL.
7500 */
7501BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
7502{
7503 BdrvChild *cow_child = bdrv_cow_child(bs);
7504 BdrvChild *filter_child = bdrv_filter_child(bs);
7505
7506 /* Filter nodes cannot have COW backing files */
7507 assert(!(cow_child && filter_child));
7508
7509 return cow_child ?: filter_child;
7510}
7511
7512/*
7513 * Return the primary child of this node: For filters, that is the
7514 * filtered child. For other nodes, that is usually the child storing
7515 * metadata.
7516 * (A generally more helpful description is that this is (usually) the
7517 * child that has the same filename as @bs.)
7518 *
7519 * Drivers do not necessarily have a primary child; for example quorum
7520 * does not.
7521 */
7522BdrvChild *bdrv_primary_child(BlockDriverState *bs)
7523{
7524 BdrvChild *c, *found = NULL;
7525
7526 QLIST_FOREACH(c, &bs->children, next) {
7527 if (c->role & BDRV_CHILD_PRIMARY) {
7528 assert(!found);
7529 found = c;
7530 }
7531 }
7532
7533 return found;
7534}
Max Reitzd38d7eb2019-06-12 15:06:37 +02007535
7536static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
7537 bool stop_on_explicit_filter)
7538{
7539 BdrvChild *c;
7540
7541 if (!bs) {
7542 return NULL;
7543 }
7544
7545 while (!(stop_on_explicit_filter && !bs->implicit)) {
7546 c = bdrv_filter_child(bs);
7547 if (!c) {
7548 /*
7549 * A filter that is embedded in a working block graph must
7550 * have a child. Assert this here so this function does
7551 * not return a filter node that is not expected by the
7552 * caller.
7553 */
7554 assert(!bs->drv || !bs->drv->is_filter);
7555 break;
7556 }
7557 bs = c->bs;
7558 }
7559 /*
7560 * Note that this treats nodes with bs->drv == NULL as not being
7561 * filters (bs->drv == NULL should be replaced by something else
7562 * anyway).
7563 * The advantage of this behavior is that this function will thus
7564 * always return a non-NULL value (given a non-NULL @bs).
7565 */
7566
7567 return bs;
7568}
7569
7570/*
7571 * Return the first BDS that has not been added implicitly or that
7572 * does not have a filtered child down the chain starting from @bs
7573 * (including @bs itself).
7574 */
7575BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
7576{
7577 return bdrv_do_skip_filters(bs, true);
7578}
7579
7580/*
7581 * Return the first BDS that does not have a filtered child down the
7582 * chain starting from @bs (including @bs itself).
7583 */
7584BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
7585{
7586 return bdrv_do_skip_filters(bs, false);
7587}
7588
7589/*
7590 * For a backing chain, return the first non-filter backing image of
7591 * the first non-filter image.
7592 */
7593BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
7594{
7595 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
7596}