blob: 7207978e53776420058dcdd617c585959b26496e [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"
Markus Armbrustere2c1c342022-12-21 14:35:49 +010030#include "block/dirty-bitmap.h"
Max Reitz0c9b70d2020-10-27 20:05:42 +010031#include "block/fuse.h"
Kevin Wolfcd7fca92016-07-06 11:22:39 +020032#include "block/nbd.h"
Max Reitz609f45e2018-06-14 21:14:28 +020033#include "block/qdict.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010034#include "qemu/error-report.h"
Marc-André Lureau5e5733e2019-08-29 22:34:43 +040035#include "block/module_block.h"
Markus Armbrusterdb725812019-08-12 07:23:50 +020036#include "qemu/main-loop.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010037#include "qemu/module.h"
Markus Armbrustere688df62018-02-01 12:18:31 +010038#include "qapi/error.h"
Daniel P. Berrangé407bc4b2024-11-18 16:12:34 +010039#include "qobject/qdict.h"
40#include "qobject/qjson.h"
41#include "qobject/qnull.h"
42#include "qobject/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010043#include "qapi/qobject-output-visitor.h"
44#include "qapi/qapi-visit-block-core.h"
Philippe Mathieu-Daudé32cad1f2024-12-03 15:20:13 +010045#include "system/block-backend.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010046#include "qemu/notify.h"
Markus Armbruster922a01a2018-02-01 12:18:46 +010047#include "qemu/option.h"
Daniel P. Berrange10817bf2015-09-01 14:48:02 +010048#include "qemu/coroutine.h"
Benoît Canetc13163f2014-01-23 21:31:34 +010049#include "block/qapi.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010050#include "qemu/timer.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020051#include "qemu/cutils.h"
52#include "qemu/id.h"
Hanna Reitz0bc329f2021-08-12 10:41:44 +020053#include "qemu/range.h"
54#include "qemu/rcu.h"
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +030055#include "block/coroutines.h"
bellardfc01f7e2003-06-30 10:03:06 +000056
Juan Quintela71e72a12009-07-27 16:12:56 +020057#ifdef CONFIG_BSD
bellard7674e7b2005-04-26 21:59:26 +000058#include <sys/ioctl.h>
Blue Swirl72cf2d42009-09-12 07:36:22 +000059#include <sys/queue.h>
Joelle van Dynefeccdce2021-03-15 11:03:39 -070060#if defined(HAVE_SYS_DISK_H)
bellard7674e7b2005-04-26 21:59:26 +000061#include <sys/disk.h>
62#endif
blueswir1c5e97232009-03-07 20:06:23 +000063#endif
bellard7674e7b2005-04-26 21:59:26 +000064
aliguori49dc7682009-03-08 16:26:59 +000065#ifdef _WIN32
66#include <windows.h>
67#endif
68
Stefan Hajnoczi1c9805a2011-10-13 13:08:22 +010069#define NOT_DONE 0x7fffffff /* used while emulated sync operation in progress */
70
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050071/* Protected by BQL */
Benoît Canetdc364f42014-01-23 21:31:32 +010072static QTAILQ_HEAD(, BlockDriverState) graph_bdrv_states =
73 QTAILQ_HEAD_INITIALIZER(graph_bdrv_states);
74
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050075/* Protected by BQL */
Max Reitz2c1d04e2016-01-29 16:36:11 +010076static QTAILQ_HEAD(, BlockDriverState) all_bdrv_states =
77 QTAILQ_HEAD_INITIALIZER(all_bdrv_states);
78
Emanuele Giuseppe Esposito3b491a92022-03-03 10:15:48 -050079/* Protected by BQL */
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +010080static QLIST_HEAD(, BlockDriver) bdrv_drivers =
81 QLIST_HEAD_INITIALIZER(bdrv_drivers);
bellardea2384d2004-08-01 21:59:26 +000082
Max Reitz5b363932016-05-17 16:41:31 +020083static BlockDriverState *bdrv_open_inherit(const char *filename,
84 const char *reference,
85 QDict *options, int flags,
86 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +020087 const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +020088 BdrvChildRole child_role,
Kevin Wolf7ead9462024-04-25 14:56:02 +020089 bool parse_filename,
Max Reitz5b363932016-05-17 16:41:31 +020090 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020091
Kevin Wolfbfb8aa62021-10-18 15:47:14 +020092static bool bdrv_recurse_has_child(BlockDriverState *bs,
93 BlockDriverState *child);
94
Kevin Wolfad29eb32023-09-11 11:46:07 +020095static void GRAPH_WRLOCK
96bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs);
97
Kevin Wolf2f64e1f2023-09-11 11:46:08 +020098static void GRAPH_WRLOCK
99bdrv_remove_child(BdrvChild *child, Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +0300100
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +0300101static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
102 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +0300103 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300104static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
105static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
106
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -0500107static bool bdrv_backing_overridden(BlockDriverState *bs);
108
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400109static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -0400110 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400111 Error **errp);
112
Markus Armbrustereb852012009-10-27 18:41:44 +0100113/* If non-zero, use only whitelisted block drivers */
114static int use_bdrv_whitelist;
115
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000116#ifdef _WIN32
117static int is_windows_drive_prefix(const char *filename)
118{
119 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
120 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
121 filename[1] == ':');
122}
123
124int is_windows_drive(const char *filename)
125{
126 if (is_windows_drive_prefix(filename) &&
127 filename[2] == '\0')
128 return 1;
129 if (strstart(filename, "\\\\.\\", NULL) ||
130 strstart(filename, "//./", NULL))
131 return 1;
132 return 0;
133}
134#endif
135
Kevin Wolf339064d2013-11-28 10:23:32 +0100136size_t bdrv_opt_mem_align(BlockDriverState *bs)
137{
138 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300139 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400140 return MAX(4096, qemu_real_host_page_size());
Kevin Wolf339064d2013-11-28 10:23:32 +0100141 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500142 IO_CODE();
Kevin Wolf339064d2013-11-28 10:23:32 +0100143
144 return bs->bl.opt_mem_alignment;
145}
146
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300147size_t bdrv_min_mem_align(BlockDriverState *bs)
148{
149 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300150 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400151 return MAX(4096, qemu_real_host_page_size());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300152 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500153 IO_CODE();
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300154
155 return bs->bl.min_mem_alignment;
156}
157
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000158/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100159int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000160{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200161 const char *p;
162
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000163#ifdef _WIN32
164 if (is_windows_drive(path) ||
165 is_windows_drive_prefix(path)) {
166 return 0;
167 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200168 p = path + strcspn(path, ":/\\");
169#else
170 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000171#endif
172
Paolo Bonzini947995c2012-05-08 16:51:48 +0200173 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000174}
175
bellard83f64092006-08-01 16:21:11 +0000176int path_is_absolute(const char *path)
177{
bellard21664422007-01-07 18:22:37 +0000178#ifdef _WIN32
179 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200180 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000181 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200182 }
183 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000184#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200185 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000186#endif
bellard83f64092006-08-01 16:21:11 +0000187}
188
Max Reitz009b03a2019-02-01 20:29:13 +0100189/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000190 path to it by considering it is relative to base_path. URL are
191 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100192char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000193{
Max Reitz009b03a2019-02-01 20:29:13 +0100194 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000195 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100196 char *result;
bellard83f64092006-08-01 16:21:11 +0000197 int len;
198
bellard83f64092006-08-01 16:21:11 +0000199 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100200 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000201 }
Max Reitz009b03a2019-02-01 20:29:13 +0100202
203 if (path_has_protocol(base_path)) {
204 protocol_stripped = strchr(base_path, ':');
205 if (protocol_stripped) {
206 protocol_stripped++;
207 }
208 }
209 p = protocol_stripped ?: base_path;
210
211 p1 = strrchr(base_path, '/');
212#ifdef _WIN32
213 {
214 const char *p2;
215 p2 = strrchr(base_path, '\\');
216 if (!p1 || p2 > p1) {
217 p1 = p2;
218 }
219 }
220#endif
221 if (p1) {
222 p1++;
223 } else {
224 p1 = base_path;
225 }
226 if (p1 > p) {
227 p = p1;
228 }
229 len = p - base_path;
230
231 result = g_malloc(len + strlen(filename) + 1);
232 memcpy(result, base_path, len);
233 strcpy(result + len, filename);
234
235 return result;
236}
237
Max Reitz03c320d2017-05-22 21:52:16 +0200238/*
239 * Helper function for bdrv_parse_filename() implementations to remove optional
240 * protocol prefixes (especially "file:") from a filename and for putting the
241 * stripped filename into the options QDict if there is such a prefix.
242 */
243void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
244 QDict *options)
245{
246 if (strstart(filename, prefix, &filename)) {
247 /* Stripping the explicit protocol prefix may result in a protocol
248 * prefix being (wrongly) detected (if the filename contains a colon) */
249 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100250 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200251
252 /* This means there is some colon before the first slash; therefore,
253 * this cannot be an absolute path */
254 assert(!path_is_absolute(filename));
255
256 /* And we can thus fix the protocol detection issue by prefixing it
257 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100258 fat_filename = g_string_new("./");
259 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200260
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100261 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200262
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100263 qdict_put(options, "filename",
264 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200265 } else {
266 /* If no protocol prefix was detected, we can use the shortened
267 * filename as-is */
268 qdict_put_str(options, "filename", filename);
269 }
270 }
271}
272
273
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200274/* Returns whether the image file is opened as read-only. Note that this can
275 * return false and writing to the image file is still not possible because the
276 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400277bool bdrv_is_read_only(BlockDriverState *bs)
278{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500279 IO_CODE();
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300280 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400281}
282
Kevin Wolf4026f1c2023-09-29 16:51:47 +0200283static int GRAPH_RDLOCK
284bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
285 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400286{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500287 IO_CODE();
288
Jeff Codye2b82472017-04-07 16:55:26 -0400289 /* Do not set read_only if copy_on_read is enabled */
290 if (bs->copy_on_read && read_only) {
291 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
292 bdrv_get_device_or_node_name(bs));
293 return -EINVAL;
294 }
295
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400296 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200297 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
298 !ignore_allow_rdw)
299 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400300 error_setg(errp, "Node '%s' is read only",
301 bdrv_get_device_or_node_name(bs));
302 return -EPERM;
303 }
304
Jeff Cody45803a02017-04-07 16:55:29 -0400305 return 0;
306}
307
Kevin Wolfeaa24102018-10-12 11:27:41 +0200308/*
309 * Called by a driver that can only provide a read-only image.
310 *
311 * Returns 0 if the node is already read-only or it could switch the node to
312 * read-only because BDRV_O_AUTO_RDONLY is set.
313 *
314 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
315 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
316 * is not NULL, it is used as the error message for the Error object.
317 */
318int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
319 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400320{
321 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500322 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400323
Kevin Wolfeaa24102018-10-12 11:27:41 +0200324 if (!(bs->open_flags & BDRV_O_RDWR)) {
325 return 0;
326 }
327 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
328 goto fail;
329 }
330
331 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400332 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200333 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400334 }
335
Kevin Wolfeaa24102018-10-12 11:27:41 +0200336 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200337
Jeff Codye2b82472017-04-07 16:55:26 -0400338 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200339
340fail:
341 error_setg(errp, "%s", errmsg ?: "Image is read-only");
342 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400343}
344
Max Reitz645ae7d2019-02-01 20:29:14 +0100345/*
346 * If @backing is empty, this function returns NULL without setting
347 * @errp. In all other cases, NULL will only be returned with @errp
348 * set.
349 *
350 * Therefore, a return value of NULL without @errp set means that
351 * there is no backing file; if @errp is set, there is one but its
352 * absolute filename cannot be generated.
353 */
354char *bdrv_get_full_backing_filename_from_filename(const char *backed,
355 const char *backing,
356 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100357{
Max Reitz645ae7d2019-02-01 20:29:14 +0100358 if (backing[0] == '\0') {
359 return NULL;
360 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
361 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100362 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
363 error_setg(errp, "Cannot use relative backing file names for '%s'",
364 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100365 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100366 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100367 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100368 }
369}
370
Max Reitz9f4793d2019-02-01 20:29:16 +0100371/*
372 * If @filename is empty or NULL, this function returns NULL without
373 * setting @errp. In all other cases, NULL will only be returned with
374 * @errp set.
375 */
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +0200376static char * GRAPH_RDLOCK
377bdrv_make_absolute_filename(BlockDriverState *relative_to,
378 const char *filename, Error **errp)
Max Reitz9f4793d2019-02-01 20:29:16 +0100379{
Max Reitz8df68612019-02-01 20:29:23 +0100380 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100381
Max Reitz8df68612019-02-01 20:29:23 +0100382 if (!filename || filename[0] == '\0') {
383 return NULL;
384 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
385 return g_strdup(filename);
386 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100387
Max Reitz8df68612019-02-01 20:29:23 +0100388 dir = bdrv_dirname(relative_to, errp);
389 if (!dir) {
390 return NULL;
391 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100392
Max Reitz8df68612019-02-01 20:29:23 +0100393 full_name = g_strconcat(dir, filename, NULL);
394 g_free(dir);
395 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100396}
397
Max Reitz6b6833c2019-02-01 20:29:15 +0100398char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200399{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500400 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100401 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200402}
403
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100404void bdrv_register(BlockDriver *bdrv)
405{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100406 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500407 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100408 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000409}
bellardb3380822004-03-14 21:38:54 +0000410
Markus Armbrustere4e99862014-10-07 13:59:03 +0200411BlockDriverState *bdrv_new(void)
412{
413 BlockDriverState *bs;
414 int i;
415
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500416 GLOBAL_STATE_CODE();
417
Markus Armbruster5839e532014-08-19 10:31:08 +0200418 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800419 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800420 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
421 QLIST_INIT(&bs->op_blockers[i]);
422 }
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -0400423 qemu_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200424 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800425 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200426 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200427
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300428 qemu_co_queue_init(&bs->flush_queue);
429
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200430 qemu_co_mutex_init(&bs->bsc_modify_lock);
431 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
432
Kevin Wolf0f122642018-03-28 18:29:18 +0200433 for (i = 0; i < bdrv_drain_all_count; i++) {
434 bdrv_drained_begin(bs);
435 }
436
Max Reitz2c1d04e2016-01-29 16:36:11 +0100437 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
438
bellardb3380822004-03-14 21:38:54 +0000439 return bs;
440}
441
Marc Mari88d88792016-08-12 09:27:03 -0400442static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000443{
444 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500445 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400446
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100447 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
448 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000449 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100450 }
bellardea2384d2004-08-01 21:59:26 +0000451 }
Marc Mari88d88792016-08-12 09:27:03 -0400452
bellardea2384d2004-08-01 21:59:26 +0000453 return NULL;
454}
455
Marc Mari88d88792016-08-12 09:27:03 -0400456BlockDriver *bdrv_find_format(const char *format_name)
457{
458 BlockDriver *drv1;
459 int i;
460
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500461 GLOBAL_STATE_CODE();
462
Marc Mari88d88792016-08-12 09:27:03 -0400463 drv1 = bdrv_do_find_format(format_name);
464 if (drv1) {
465 return drv1;
466 }
467
468 /* The driver isn't registered, maybe we need to load a module */
469 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
470 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200471 Error *local_err = NULL;
472 int rv = block_module_load(block_driver_modules[i].library_name,
473 &local_err);
474 if (rv > 0) {
475 return bdrv_do_find_format(format_name);
476 } else if (rv < 0) {
477 error_report_err(local_err);
478 }
Marc Mari88d88792016-08-12 09:27:03 -0400479 break;
480 }
481 }
Claudio Fontanac551fb02022-09-29 11:30:33 +0200482 return NULL;
Marc Mari88d88792016-08-12 09:27:03 -0400483}
484
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300485static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100486{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800487 static const char *whitelist_rw[] = {
488 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200489 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800490 };
491 static const char *whitelist_ro[] = {
492 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200493 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100494 };
495 const char **p;
496
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800497 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100498 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800499 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100500
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800501 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300502 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100503 return 1;
504 }
505 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800506 if (read_only) {
507 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300508 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800509 return 1;
510 }
511 }
512 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100513 return 0;
514}
515
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300516int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
517{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500518 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300519 return bdrv_format_is_whitelisted(drv->format_name, read_only);
520}
521
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000522bool bdrv_uses_whitelist(void)
523{
524 return use_bdrv_whitelist;
525}
526
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800527typedef struct CreateCo {
528 BlockDriver *drv;
529 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800530 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800531 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200532 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800533} CreateCo;
534
Emanuele Giuseppe Esposito741443e2022-11-28 09:23:36 -0500535int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
536 QemuOpts *opts, Error **errp)
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500537{
Zhao Liu46ff64a2024-03-12 14:03:37 +0800538 ERRP_GUARD();
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500539 int ret;
540 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500541
542 if (!drv->bdrv_co_create_opts) {
543 error_setg(errp, "Driver '%s' does not support image creation",
544 drv->format_name);
545 return -ENOTSUP;
546 }
547
548 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
549 if (ret < 0 && !*errp) {
550 error_setg_errno(errp, -ret, "Could not create image");
551 }
552
553 return ret;
554}
555
Max Reitzfd171462020-01-22 17:45:29 +0100556/**
557 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
558 * least the given @minimum_size.
559 *
560 * On success, return @blk's actual length.
561 * Otherwise, return -errno.
562 */
Paolo Bonzini84569a72023-06-01 13:51:38 +0200563static int64_t coroutine_fn GRAPH_UNLOCKED
564create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size,
565 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100566{
567 Error *local_err = NULL;
568 int64_t size;
569 int ret;
570
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500571 GLOBAL_STATE_CODE();
572
Paolo Bonzini84569a72023-06-01 13:51:38 +0200573 ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
574 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100575 if (ret < 0 && ret != -ENOTSUP) {
576 error_propagate(errp, local_err);
577 return ret;
578 }
579
Paolo Bonzini84569a72023-06-01 13:51:38 +0200580 size = blk_co_getlength(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100581 if (size < 0) {
582 error_free(local_err);
583 error_setg_errno(errp, -size,
584 "Failed to inquire the new image file's length");
585 return size;
586 }
587
588 if (size < minimum_size) {
589 /* Need to grow the image, but we failed to do that */
590 error_propagate(errp, local_err);
591 return -ENOTSUP;
592 }
593
594 error_free(local_err);
595 local_err = NULL;
596
597 return size;
598}
599
600/**
601 * Helper function for bdrv_create_file_fallback(): Zero the first
602 * sector to remove any potentially pre-existing image header.
603 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200604static int coroutine_fn
605create_file_fallback_zero_first_sector(BlockBackend *blk,
606 int64_t current_size,
607 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100608{
609 int64_t bytes_to_clear;
610 int ret;
611
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500612 GLOBAL_STATE_CODE();
613
Max Reitzfd171462020-01-22 17:45:29 +0100614 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
615 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200616 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100617 if (ret < 0) {
618 error_setg_errno(errp, -ret,
619 "Failed to clear the new image's first sector");
620 return ret;
621 }
622 }
623
624 return 0;
625}
626
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200627/**
628 * Simple implementation of bdrv_co_create_opts for protocol drivers
629 * which only support creation via opening a file
630 * (usually existing raw storage device)
631 */
632int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
633 const char *filename,
634 QemuOpts *opts,
635 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100636{
Zhao Liu7b22e052024-03-11 11:37:56 +0800637 ERRP_GUARD();
Max Reitzfd171462020-01-22 17:45:29 +0100638 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100639 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100640 int64_t size = 0;
641 char *buf = NULL;
642 PreallocMode prealloc;
643 Error *local_err = NULL;
644 int ret;
645
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500646 GLOBAL_STATE_CODE();
647
Max Reitzfd171462020-01-22 17:45:29 +0100648 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
649 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
650 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
651 PREALLOC_MODE_OFF, &local_err);
652 g_free(buf);
653 if (local_err) {
654 error_propagate(errp, local_err);
655 return -EINVAL;
656 }
657
658 if (prealloc != PREALLOC_MODE_OFF) {
659 error_setg(errp, "Unsupported preallocation mode '%s'",
660 PreallocMode_str(prealloc));
661 return -ENOTSUP;
662 }
663
Max Reitzeeea1fa2020-02-25 16:56:18 +0100664 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100665 qdict_put_str(options, "driver", drv->format_name);
666
Kevin Wolfbe1a7322023-01-26 18:24:31 +0100667 blk = blk_co_new_open(filename, NULL, options,
668 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
Max Reitzfd171462020-01-22 17:45:29 +0100669 if (!blk) {
Hanna Czenczek81624862023-07-20 16:00:24 +0200670 error_prepend(errp, "Protocol driver '%s' does not support creating "
671 "new images, so an existing image must be selected as "
672 "the target; however, opening the given target as an "
673 "existing image failed: ",
Max Reitzfd171462020-01-22 17:45:29 +0100674 drv->format_name);
675 return -EINVAL;
676 }
677
678 size = create_file_fallback_truncate(blk, size, errp);
679 if (size < 0) {
680 ret = size;
681 goto out;
682 }
683
684 ret = create_file_fallback_zero_first_sector(blk, size, errp);
685 if (ret < 0) {
686 goto out;
687 }
688
689 ret = 0;
690out:
Kevin Wolfb2ab5f52023-05-04 13:57:33 +0200691 blk_co_unref(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100692 return ret;
693}
694
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500695int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
696 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100698 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200699 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100700 QDict *qdict;
701 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200702
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500703 GLOBAL_STATE_CODE();
704
Max Reitzb65a5e12015-02-05 13:58:12 -0500705 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200706 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000707 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200708 }
709
Stefano Garzarella729222a2021-03-08 17:12:32 +0100710 if (!drv->create_opts) {
711 error_setg(errp, "Driver '%s' does not support image creation",
712 drv->format_name);
713 return -ENOTSUP;
714 }
715
716 /*
717 * 'opts' contains a QemuOptsList with a combination of format and protocol
718 * default values.
719 *
720 * The format properly removes its options, but the default values remain
721 * in 'opts->list'. So if the protocol has options with the same name
722 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
723 * of the format, since for overlapping options, the format wins.
724 *
725 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
726 * only the set options, and then convert it back to QemuOpts, using the
727 * create_opts of the protocol. So the new QemuOpts, will contain only the
728 * protocol defaults.
729 */
730 qdict = qemu_opts_to_qdict(opts, NULL);
731 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
732 if (protocol_opts == NULL) {
733 ret = -EINVAL;
734 goto out;
735 }
736
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500737 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100738out:
739 qemu_opts_del(protocol_opts);
740 qobject_unref(qdict);
741 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200742}
743
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300744int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
745{
746 Error *local_err = NULL;
747 int ret;
748
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500749 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300750 assert(bs != NULL);
Kevin Wolf48aef792023-02-03 16:22:00 +0100751 assert_bdrv_graph_readable();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300752
753 if (!bs->drv) {
754 error_setg(errp, "Block node '%s' is not opened", bs->filename);
755 return -ENOMEDIUM;
756 }
757
758 if (!bs->drv->bdrv_co_delete_file) {
759 error_setg(errp, "Driver '%s' does not support image deletion",
760 bs->drv->format_name);
761 return -ENOTSUP;
762 }
763
764 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
765 if (ret < 0) {
766 error_propagate(errp, local_err);
767 }
768
769 return ret;
770}
771
Maxim Levitskya890f082020-12-17 19:09:03 +0200772void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
773{
774 Error *local_err = NULL;
775 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500776 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200777
778 if (!bs) {
779 return;
780 }
781
782 ret = bdrv_co_delete_file(bs, &local_err);
783 /*
784 * ENOTSUP will happen if the block driver doesn't support
785 * the 'bdrv_co_delete_file' interface. This is a predictable
786 * scenario and shouldn't be reported back to the user.
787 */
788 if (ret == -ENOTSUP) {
789 error_free(local_err);
790 } else if (ret < 0) {
791 error_report_err(local_err);
792 }
793}
794
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100795/**
796 * Try to get @bs's logical and physical block size.
797 * On success, store them in @bsz struct and return 0.
798 * On failure return -errno.
799 * @bs must not be empty.
800 */
801int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
802{
803 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200804 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500805 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100806
807 if (drv && drv->bdrv_probe_blocksizes) {
808 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200809 } else if (filtered) {
810 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100811 }
812
813 return -ENOTSUP;
814}
815
816/**
817 * Try to get @bs's geometry (cyls, heads, sectors).
818 * On success, store them in @geo struct and return 0.
819 * On failure return -errno.
820 * @bs must not be empty.
821 */
822int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
823{
824 BlockDriver *drv = bs->drv;
Kevin Wolff5a3a272023-10-27 17:53:12 +0200825 BlockDriverState *filtered;
826
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500827 GLOBAL_STATE_CODE();
Kevin Wolff5a3a272023-10-27 17:53:12 +0200828 GRAPH_RDLOCK_GUARD_MAINLOOP();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100829
830 if (drv && drv->bdrv_probe_geometry) {
831 return drv->bdrv_probe_geometry(bs, geo);
Kevin Wolff5a3a272023-10-27 17:53:12 +0200832 }
833
834 filtered = bdrv_filter_bs(bs);
835 if (filtered) {
Max Reitz93393e62019-06-12 17:03:38 +0200836 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100837 }
838
839 return -ENOTSUP;
840}
841
Jim Meyeringeba25052012-05-28 09:27:54 +0200842/*
843 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800844 * Return the actual file name used upon success, otherwise NULL.
845 * This string should be freed with g_free() when not needed any longer.
846 *
847 * Note: creating a temporary file for the caller to (re)open is
848 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200849 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800850char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200851{
bellardea2384d2004-08-01 21:59:26 +0000852 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000853 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800854 g_autofree char *filename = NULL;
855
856 tmpdir = g_get_tmp_dir();
857#ifndef _WIN32
858 /*
859 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
860 *
861 * This function is used to create temporary disk images (like -snapshot),
862 * so the files can become very large. /tmp is often a tmpfs where as
863 * /var/tmp is usually on a disk, so more appropriate for disk images.
864 */
865 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530866 tmpdir = "/var/tmp";
867 }
bellardd5249392004-08-03 21:14:23 +0000868#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800869
870 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
871 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000872 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800873 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
874 filename);
875 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000876 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800877 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800878
879 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200880}
bellardea2384d2004-08-01 21:59:26 +0000881
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200882/*
883 * Detect host devices. By convention, /dev/cdrom[N] is always
884 * recognized as a host CDROM.
885 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200886static BlockDriver *find_hdev_driver(const char *filename)
887{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200888 int score_max = 0, score;
889 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500890 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200891
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100892 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200893 if (d->bdrv_probe_device) {
894 score = d->bdrv_probe_device(filename);
895 if (score > score_max) {
896 score_max = score;
897 drv = d;
898 }
899 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200900 }
901
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200902 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200903}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200904
Marc Mari88d88792016-08-12 09:27:03 -0400905static BlockDriver *bdrv_do_find_protocol(const char *protocol)
906{
907 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500908 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400909
910 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
911 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
912 return drv1;
913 }
914 }
915
916 return NULL;
917}
918
Kevin Wolf98289622013-07-10 15:47:39 +0200919BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500920 bool allow_protocol_prefix,
921 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200922{
923 BlockDriver *drv1;
924 char protocol[128];
925 int len;
926 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400927 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200928
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500929 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200930
Christoph Hellwig39508e72010-06-23 12:25:17 +0200931 /*
932 * XXX(hch): we really should not let host device detection
933 * override an explicit protocol specification, but moving this
934 * later breaks access to device names with colons in them.
935 * Thanks to the brain-dead persistent naming schemes on udev-
936 * based Linux systems those actually are quite common.
937 */
938 drv1 = find_hdev_driver(filename);
939 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200940 return drv1;
941 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200942
Kevin Wolf98289622013-07-10 15:47:39 +0200943 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100944 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200945 }
Kevin Wolf98289622013-07-10 15:47:39 +0200946
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000947 p = strchr(filename, ':');
948 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200949 len = p - filename;
950 if (len > sizeof(protocol) - 1)
951 len = sizeof(protocol) - 1;
952 memcpy(protocol, filename, len);
953 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400954
955 drv1 = bdrv_do_find_protocol(protocol);
956 if (drv1) {
957 return drv1;
958 }
959
960 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
961 if (block_driver_modules[i].protocol_name &&
962 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200963 int rv = block_module_load(block_driver_modules[i].library_name, errp);
964 if (rv > 0) {
965 drv1 = bdrv_do_find_protocol(protocol);
966 } else if (rv < 0) {
967 return NULL;
968 }
Marc Mari88d88792016-08-12 09:27:03 -0400969 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200970 }
971 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500972
Marc Mari88d88792016-08-12 09:27:03 -0400973 if (!drv1) {
974 error_setg(errp, "Unknown protocol '%s'", protocol);
975 }
976 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200977}
978
Markus Armbrusterc6684242014-11-20 16:27:10 +0100979/*
980 * Guess image format by probing its contents.
981 * This is not a good idea when your image is raw (CVE-2008-2004), but
982 * we do it anyway for backward compatibility.
983 *
984 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100985 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
986 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100987 * @filename is its filename.
988 *
989 * For all block drivers, call the bdrv_probe() method to get its
990 * probing score.
991 * Return the first block driver with the highest probing score.
992 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100993BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
994 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100995{
996 int score_max = 0, score;
997 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500998 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100999
1000 QLIST_FOREACH(d, &bdrv_drivers, list) {
1001 if (d->bdrv_probe) {
1002 score = d->bdrv_probe(buf, buf_size, filename);
1003 if (score > score_max) {
1004 score_max = score;
1005 drv = d;
1006 }
1007 }
1008 }
1009
1010 return drv;
1011}
1012
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001013static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001014 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001015{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001016 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001017 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001018 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001019
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001020 GLOBAL_STATE_CODE();
1021
Kevin Wolf08a00552010-06-01 18:37:31 +02001022 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001023 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001024 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001025 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001026 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001027
Alberto Fariaa9262f52022-07-05 17:15:11 +01001028 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001029 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001030 error_setg_errno(errp, -ret, "Could not read image for determining its "
1031 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001032 *pdrv = NULL;
1033 return ret;
bellard83f64092006-08-01 16:21:11 +00001034 }
1035
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001036 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001037 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001038 error_setg(errp, "Could not determine image format: No compatible "
1039 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001040 *pdrv = NULL;
1041 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001042 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001043
Stefan Weilc98ac352010-07-21 21:51:51 +02001044 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001045 return 0;
bellardea2384d2004-08-01 21:59:26 +00001046}
1047
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001048/**
1049 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001050 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001051 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001052int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1053 int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001054{
1055 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001056 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01001057 assert_bdrv_graph_readable();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001058
Max Reitzd470ad42017-11-10 21:31:09 +01001059 if (!drv) {
1060 return -ENOMEDIUM;
1061 }
1062
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001063 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001064 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001065 return 0;
1066
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001067 /* query actual device if possible, otherwise just trust the hint */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001068 if (drv->bdrv_co_getlength) {
1069 int64_t length = drv->bdrv_co_getlength(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001070 if (length < 0) {
1071 return length;
1072 }
Fam Zheng7e382002013-11-06 19:48:06 +08001073 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001074 }
1075
1076 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001077
1078 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1079 return -EFBIG;
1080 }
1081
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001082 return 0;
1083}
1084
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001085/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001086 * Combines a QDict of new block driver @options with any missing options taken
1087 * from @old_options, so that leaving out an option defaults to its old value.
1088 */
1089static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1090 QDict *old_options)
1091{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001092 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001093 if (bs->drv && bs->drv->bdrv_join_options) {
1094 bs->drv->bdrv_join_options(options, old_options);
1095 } else {
1096 qdict_join(options, old_options, false);
1097 }
1098}
1099
Alberto Garcia543770b2018-09-06 12:37:09 +03001100static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1101 int open_flags,
1102 Error **errp)
1103{
1104 Error *local_err = NULL;
1105 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1106 BlockdevDetectZeroesOptions detect_zeroes =
1107 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1108 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001109 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001110 g_free(value);
1111 if (local_err) {
1112 error_propagate(errp, local_err);
1113 return detect_zeroes;
1114 }
1115
1116 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1117 !(open_flags & BDRV_O_UNMAP))
1118 {
1119 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1120 "without setting discard operation to unmap");
1121 }
1122
1123 return detect_zeroes;
1124}
1125
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001126/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001127 * Set open flags for aio engine
1128 *
1129 * Return 0 on success, -1 if the engine specified is invalid
1130 */
1131int bdrv_parse_aio(const char *mode, int *flags)
1132{
1133 if (!strcmp(mode, "threads")) {
1134 /* do nothing, default */
1135 } else if (!strcmp(mode, "native")) {
1136 *flags |= BDRV_O_NATIVE_AIO;
1137#ifdef CONFIG_LINUX_IO_URING
1138 } else if (!strcmp(mode, "io_uring")) {
1139 *flags |= BDRV_O_IO_URING;
1140#endif
1141 } else {
1142 return -1;
1143 }
1144
1145 return 0;
1146}
1147
1148/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001149 * Set open flags for a given discard mode
1150 *
1151 * Return 0 on success, -1 if the discard mode was invalid.
1152 */
1153int bdrv_parse_discard_flags(const char *mode, int *flags)
1154{
1155 *flags &= ~BDRV_O_UNMAP;
1156
1157 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1158 /* do nothing */
1159 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1160 *flags |= BDRV_O_UNMAP;
1161 } else {
1162 return -1;
1163 }
1164
1165 return 0;
1166}
1167
1168/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001169 * Set open flags for a given cache mode
1170 *
1171 * Return 0 on success, -1 if the cache mode was invalid.
1172 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001173int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001174{
1175 *flags &= ~BDRV_O_CACHE_MASK;
1176
1177 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001178 *writethrough = false;
1179 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001180 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001181 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001182 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001183 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001184 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001185 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001186 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001187 *flags |= BDRV_O_NO_FLUSH;
1188 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001189 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001190 } else {
1191 return -1;
1192 }
1193
1194 return 0;
1195}
1196
Kevin Wolfb5411552017-01-17 15:56:16 +01001197static char *bdrv_child_get_parent_desc(BdrvChild *c)
1198{
1199 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001200 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001201}
1202
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001203static void GRAPH_RDLOCK bdrv_child_cb_drained_begin(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001204{
1205 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001206 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001207}
1208
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001209static bool GRAPH_RDLOCK bdrv_child_cb_drained_poll(BdrvChild *child)
Kevin Wolf89bd0302018-03-22 14:11:20 +01001210{
1211 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001212 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001213}
1214
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001215static void GRAPH_RDLOCK bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001216{
1217 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001218 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001219}
1220
Kevin Wolf38701b62017-05-04 18:52:39 +02001221static int bdrv_child_cb_inactivate(BdrvChild *child)
1222{
1223 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001224 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001225 assert(bs->open_flags & BDRV_O_INACTIVE);
1226 return 0;
1227}
1228
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001229static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1230 GHashTable *visited, Transaction *tran,
1231 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001232{
1233 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001234 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001235}
1236
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001237/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001238 * Returns the options and flags that a temporary snapshot should get, based on
1239 * the originally requested flags (the originally requested image will have
1240 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001241 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001242static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1243 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001244{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001245 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001246 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1247
1248 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001249 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1250 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001251
Kevin Wolf3f486862019-04-04 17:04:43 +02001252 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001253 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001254 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001255
Kevin Wolf41869042016-06-16 12:59:30 +02001256 /* aio=native doesn't work for cache.direct=off, so disable it for the
1257 * temporary snapshot */
1258 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001259}
1260
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001261static void GRAPH_WRLOCK bdrv_backing_attach(BdrvChild *c)
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001262{
1263 BlockDriverState *parent = c->opaque;
1264 BlockDriverState *backing_hd = c->bs;
1265
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001266 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001267 assert(!parent->backing_blocker);
1268 error_setg(&parent->backing_blocker,
1269 "node is used as backing hd of '%s'",
1270 bdrv_get_device_or_node_name(parent));
1271
Max Reitzf30c66b2019-02-01 20:29:05 +01001272 bdrv_refresh_filename(backing_hd);
1273
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001274 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001275
1276 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1277 /* Otherwise we won't be able to commit or stream */
1278 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1279 parent->backing_blocker);
1280 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1281 parent->backing_blocker);
1282 /*
1283 * We do backup in 3 ways:
1284 * 1. drive backup
1285 * The target bs is new opened, and the source is top BDS
1286 * 2. blockdev backup
1287 * Both the source and the target are top BDSes.
1288 * 3. internal backup(used for block replication)
1289 * Both the source and the target are backing file
1290 *
1291 * In case 1 and 2, neither the source nor the target is the backing file.
1292 * In case 3, we will block the top BDS, so there is only one block job
1293 * for the top BDS and its backing chain.
1294 */
1295 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1296 parent->backing_blocker);
1297 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1298 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001299}
Kevin Wolfd736f112017-12-18 16:05:48 +01001300
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001301static void bdrv_backing_detach(BdrvChild *c)
1302{
1303 BlockDriverState *parent = c->opaque;
1304
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001305 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001306 assert(parent->backing_blocker);
1307 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1308 error_free(parent->backing_blocker);
1309 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001310}
Kevin Wolfd736f112017-12-18 16:05:48 +01001311
Kevin Wolf6858eba2017-06-29 19:32:21 +02001312static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
Peter Krempa4b028cb2023-12-05 18:14:41 +01001313 const char *filename,
1314 bool backing_mask_protocol,
1315 Error **errp)
Kevin Wolf6858eba2017-06-29 19:32:21 +02001316{
1317 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001318 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001319 int ret;
Peter Krempa4b028cb2023-12-05 18:14:41 +01001320 const char *format_name;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001321 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001322
Alberto Garciae94d3db2018-11-12 16:00:34 +02001323 if (read_only) {
1324 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001325 if (ret < 0) {
1326 return ret;
1327 }
1328 }
1329
Peter Krempa4b028cb2023-12-05 18:14:41 +01001330 if (base->drv) {
1331 /*
1332 * If the new base image doesn't have a format driver layer, which we
1333 * detect by the fact that @base is a protocol driver, we record
1334 * 'raw' as the format instead of putting the protocol name as the
1335 * backing format
1336 */
1337 if (backing_mask_protocol && base->drv->protocol_name) {
1338 format_name = "raw";
1339 } else {
1340 format_name = base->drv->format_name;
1341 }
1342 } else {
1343 format_name = "";
1344 }
1345
1346 ret = bdrv_change_backing_file(parent, filename, format_name, false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001347 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001348 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001349 }
1350
Alberto Garciae94d3db2018-11-12 16:00:34 +02001351 if (read_only) {
1352 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001353 }
1354
Kevin Wolf6858eba2017-06-29 19:32:21 +02001355 return ret;
1356}
1357
Max Reitzfae8bd32020-05-13 13:05:20 +02001358/*
1359 * Returns the options and flags that a generic child of a BDS should
1360 * get, based on the given options and flags for the parent BDS.
1361 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001362static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1363 int *child_flags, QDict *child_options,
1364 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001365{
1366 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001367 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001368
1369 /*
1370 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1371 * Generally, the question to answer is: Should this child be
1372 * format-probed by default?
1373 */
1374
1375 /*
1376 * Pure and non-filtered data children of non-format nodes should
1377 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1378 * set). This only affects a very limited set of drivers (namely
1379 * quorum and blkverify when this comment was written).
1380 * Force-clear BDRV_O_PROTOCOL then.
1381 */
1382 if (!parent_is_format &&
1383 (role & BDRV_CHILD_DATA) &&
1384 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1385 {
1386 flags &= ~BDRV_O_PROTOCOL;
1387 }
1388
1389 /*
1390 * All children of format nodes (except for COW children) and all
1391 * metadata children in general should never be format-probed.
1392 * Force-set BDRV_O_PROTOCOL then.
1393 */
1394 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1395 (role & BDRV_CHILD_METADATA))
1396 {
1397 flags |= BDRV_O_PROTOCOL;
1398 }
1399
1400 /*
1401 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1402 * the parent.
1403 */
1404 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1405 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1406 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1407
1408 if (role & BDRV_CHILD_COW) {
1409 /* backing files are opened read-only by default */
1410 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1411 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1412 } else {
1413 /* Inherit the read-only option from the parent if it's not set */
1414 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1415 qdict_copy_default(child_options, parent_options,
1416 BDRV_OPT_AUTO_READ_ONLY);
1417 }
1418
1419 /*
1420 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1421 * can default to enable it on lower layers regardless of the
1422 * parent option.
1423 */
1424 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1425
1426 /* Clear flags that only apply to the top layer */
1427 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1428
1429 if (role & BDRV_CHILD_METADATA) {
1430 flags &= ~BDRV_O_NO_IO;
1431 }
1432 if (role & BDRV_CHILD_COW) {
1433 flags &= ~BDRV_O_TEMPORARY;
1434 }
1435
1436 *child_flags = flags;
1437}
1438
Kevin Wolf303de472022-12-07 14:18:35 +01001439static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
Max Reitzca2f1232020-05-13 13:05:22 +02001440{
1441 BlockDriverState *bs = child->opaque;
1442
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001443 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001444 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001445 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1446 /*
1447 * Here we handle filters and block/raw-format.c when it behave like
1448 * filter. They generally have a single PRIMARY child, which is also the
1449 * FILTERED child, and that they may have multiple more children, which
1450 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1451 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1452 * into bs->backing on exceptional cases; and bs->backing will be
1453 * nothing else.
1454 */
1455 assert(!(child->role & BDRV_CHILD_COW));
1456 if (child->role & BDRV_CHILD_PRIMARY) {
1457 assert(child->role & BDRV_CHILD_FILTERED);
1458 assert(!bs->backing);
1459 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001460
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001461 if (bs->drv->filtered_child_is_backing) {
1462 bs->backing = child;
1463 } else {
1464 bs->file = child;
1465 }
1466 } else {
1467 assert(!(child->role & BDRV_CHILD_FILTERED));
1468 }
1469 } else if (child->role & BDRV_CHILD_COW) {
1470 assert(bs->drv->supports_backing);
1471 assert(!(child->role & BDRV_CHILD_PRIMARY));
1472 assert(!bs->backing);
1473 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001474 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001475 } else if (child->role & BDRV_CHILD_PRIMARY) {
1476 assert(!bs->file);
1477 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001478 }
Max Reitzca2f1232020-05-13 13:05:22 +02001479}
1480
Kevin Wolf303de472022-12-07 14:18:35 +01001481static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
Max Reitz48e08282020-05-13 13:05:23 +02001482{
1483 BlockDriverState *bs = child->opaque;
1484
1485 if (child->role & BDRV_CHILD_COW) {
1486 bdrv_backing_detach(child);
1487 }
1488
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001489 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001490 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001491 if (child == bs->backing) {
1492 assert(child != bs->file);
1493 bs->backing = NULL;
1494 } else if (child == bs->file) {
1495 bs->file = NULL;
1496 }
Max Reitz48e08282020-05-13 13:05:23 +02001497}
1498
Max Reitz43483552020-05-13 13:05:24 +02001499static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
Peter Krempa4b028cb2023-12-05 18:14:41 +01001500 const char *filename,
1501 bool backing_mask_protocol,
1502 Error **errp)
Max Reitz43483552020-05-13 13:05:24 +02001503{
1504 if (c->role & BDRV_CHILD_COW) {
Peter Krempa4b028cb2023-12-05 18:14:41 +01001505 return bdrv_backing_update_filename(c, base, filename,
1506 backing_mask_protocol,
1507 errp);
Max Reitz43483552020-05-13 13:05:24 +02001508 }
1509 return 0;
1510}
1511
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001512AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001513{
1514 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001515 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001516
1517 return bdrv_get_aio_context(bs);
1518}
1519
Max Reitz43483552020-05-13 13:05:24 +02001520const BdrvChildClass child_of_bds = {
1521 .parent_is_bds = true,
1522 .get_parent_desc = bdrv_child_get_parent_desc,
1523 .inherit_options = bdrv_inherited_options,
1524 .drained_begin = bdrv_child_cb_drained_begin,
1525 .drained_poll = bdrv_child_cb_drained_poll,
1526 .drained_end = bdrv_child_cb_drained_end,
1527 .attach = bdrv_child_cb_attach,
1528 .detach = bdrv_child_cb_detach,
1529 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001530 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001531 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001532 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001533};
1534
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001535AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1536{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001537 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001538 return c->klass->get_parent_aio_context(c);
1539}
1540
Kevin Wolf7b272452012-11-12 17:05:39 +01001541static int bdrv_open_flags(BlockDriverState *bs, int flags)
1542{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001543 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001544 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001545
1546 /*
1547 * Clear flags that are internal to the block layer before opening the
1548 * image.
1549 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001550 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001551
Kevin Wolf7b272452012-11-12 17:05:39 +01001552 return open_flags;
1553}
1554
Kevin Wolf91a097e2015-05-08 17:49:53 +02001555static void update_flags_from_options(int *flags, QemuOpts *opts)
1556{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001557 GLOBAL_STATE_CODE();
1558
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001559 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001560
Alberto Garcia57f9db92018-09-06 12:37:06 +03001561 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001562 *flags |= BDRV_O_NO_FLUSH;
1563 }
1564
Alberto Garcia57f9db92018-09-06 12:37:06 +03001565 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001566 *flags |= BDRV_O_NOCACHE;
1567 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001568
Alberto Garcia57f9db92018-09-06 12:37:06 +03001569 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001570 *flags |= BDRV_O_RDWR;
1571 }
1572
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001573 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1574 *flags |= BDRV_O_AUTO_RDONLY;
1575 }
Kevin Wolffaecd162025-02-04 22:13:58 +01001576
1577 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_ACTIVE, true)) {
1578 *flags |= BDRV_O_INACTIVE;
1579 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001580}
1581
1582static void update_options_from_flags(QDict *options, int flags)
1583{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001584 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001585 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001586 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001587 }
1588 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001589 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1590 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001591 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001592 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001593 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001594 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001595 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1596 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1597 flags & BDRV_O_AUTO_RDONLY);
1598 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001599}
1600
Kevin Wolf636ea372014-01-24 14:11:52 +01001601static void bdrv_assign_node_name(BlockDriverState *bs,
1602 const char *node_name,
1603 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001604{
Jeff Cody15489c72015-10-12 19:36:50 -04001605 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001606 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001607
Jeff Cody15489c72015-10-12 19:36:50 -04001608 if (!node_name) {
1609 node_name = gen_node_name = id_generate(ID_BLOCK);
1610 } else if (!id_wellformed(node_name)) {
1611 /*
1612 * Check for empty string or invalid characters, but not if it is
1613 * generated (generated names use characters not available to the user)
1614 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001615 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001616 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001617 }
1618
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001619 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001620 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001621 error_setg(errp, "node-name=%s is conflicting with a device id",
1622 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001623 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001624 }
1625
Benoît Canet6913c0c2014-01-23 21:31:33 +01001626 /* takes care of avoiding duplicates node names */
1627 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001628 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001629 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001630 }
1631
Kevin Wolf824808d2018-07-04 13:28:29 +02001632 /* Make sure that the node name isn't truncated */
1633 if (strlen(node_name) >= sizeof(bs->node_name)) {
1634 error_setg(errp, "Node name too long");
1635 goto out;
1636 }
1637
Benoît Canet6913c0c2014-01-23 21:31:33 +01001638 /* copy node name into the bs and insert it into the graph list */
1639 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1640 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001641out:
1642 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001643}
1644
Kevin Wolf1a30b0f2023-05-04 13:57:38 +02001645static int no_coroutine_fn GRAPH_UNLOCKED
1646bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1647 QDict *options, int open_flags, Error **errp)
Kevin Wolf01a56502017-01-18 15:51:56 +01001648{
1649 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001650 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001651 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001652
1653 bdrv_assign_node_name(bs, node_name, &local_err);
1654 if (local_err) {
1655 error_propagate(errp, local_err);
1656 return -EINVAL;
1657 }
1658
1659 bs->drv = drv;
1660 bs->opaque = g_malloc0(drv->instance_size);
1661
Paolo Bonziniae8b45d2022-11-24 16:29:06 +01001662 assert(!drv->bdrv_needs_filename || bs->filename[0]);
Paolo Bonzini44b424d2022-11-24 16:22:22 +01001663 if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001664 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001665 } else {
1666 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001667 }
1668
1669 if (ret < 0) {
1670 if (local_err) {
1671 error_propagate(errp, local_err);
1672 } else if (bs->filename[0]) {
1673 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1674 } else {
1675 error_setg_errno(errp, -ret, "Could not open image");
1676 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001677 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001678 }
1679
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001680 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1681 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1682
1683 /*
1684 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1685 * drivers that pass read/write requests through to a child the trouble of
1686 * declaring support explicitly.
1687 *
1688 * Drivers must not propagate this flag accidentally when they initiate I/O
1689 * to a bounce buffer. That case should be rare though.
1690 */
1691 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1692 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1693
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01001694 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf01a56502017-01-18 15:51:56 +01001695 if (ret < 0) {
1696 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001697 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001698 }
1699
Kevin Wolfe19b1572023-05-04 13:57:50 +02001700 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001701 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001702 bdrv_graph_rdunlock_main_loop();
1703
Kevin Wolf01a56502017-01-18 15:51:56 +01001704 if (local_err) {
1705 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001706 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001707 }
1708
1709 assert(bdrv_opt_mem_align(bs) != 0);
1710 assert(bdrv_min_mem_align(bs) != 0);
1711 assert(is_power_of_2(bs->bl.request_alignment));
1712
Kevin Wolf0f122642018-03-28 18:29:18 +02001713 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001714 if (drv->bdrv_drain_begin) {
1715 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001716 }
1717 }
1718
Kevin Wolf01a56502017-01-18 15:51:56 +01001719 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001720open_failed:
1721 bs->drv = NULL;
Kevin Wolf1f051dc2023-10-27 17:53:33 +02001722
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05001723 bdrv_graph_wrlock();
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001724 if (bs->file != NULL) {
1725 bdrv_unref_child(bs, bs->file);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001726 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001727 }
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05001728 bdrv_graph_wrunlock();
Kevin Wolf1f051dc2023-10-27 17:53:33 +02001729
Kevin Wolf01a56502017-01-18 15:51:56 +01001730 g_free(bs->opaque);
1731 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001732 return ret;
1733}
1734
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001735/*
1736 * Create and open a block node.
1737 *
1738 * @options is a QDict of options to pass to the block drivers, or NULL for an
1739 * empty set of options. The reference to the QDict belongs to the block layer
1740 * after the call (even on failure), so if the caller intends to reuse the
1741 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1742 */
1743BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1744 const char *node_name,
1745 QDict *options, int flags,
1746 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001747{
1748 BlockDriverState *bs;
1749 int ret;
1750
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001751 GLOBAL_STATE_CODE();
1752
Kevin Wolf680c7f92017-01-18 17:16:41 +01001753 bs = bdrv_new();
1754 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001755 bs->options = options ?: qdict_new();
1756 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001757 bs->opaque = NULL;
1758
1759 update_options_from_flags(bs->options, flags);
1760
1761 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1762 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001763 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001764 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001765 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001766 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001767 bdrv_unref(bs);
1768 return NULL;
1769 }
1770
1771 return bs;
1772}
1773
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001774/* Create and open a block node. */
1775BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1776 int flags, Error **errp)
1777{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001778 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001779 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1780}
1781
Kevin Wolfc5f30142016-10-06 11:33:17 +02001782QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001783 .name = "bdrv_common",
1784 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1785 .desc = {
1786 {
1787 .name = "node-name",
1788 .type = QEMU_OPT_STRING,
1789 .help = "Node name of the block device node",
1790 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001791 {
1792 .name = "driver",
1793 .type = QEMU_OPT_STRING,
1794 .help = "Block driver to use for the node",
1795 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001796 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001797 .name = BDRV_OPT_CACHE_DIRECT,
1798 .type = QEMU_OPT_BOOL,
1799 .help = "Bypass software writeback cache on the host",
1800 },
1801 {
1802 .name = BDRV_OPT_CACHE_NO_FLUSH,
1803 .type = QEMU_OPT_BOOL,
1804 .help = "Ignore flush requests",
1805 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001806 {
Kevin Wolffaecd162025-02-04 22:13:58 +01001807 .name = BDRV_OPT_ACTIVE,
1808 .type = QEMU_OPT_BOOL,
1809 .help = "Node is activated",
1810 },
1811 {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001812 .name = BDRV_OPT_READ_ONLY,
1813 .type = QEMU_OPT_BOOL,
1814 .help = "Node is opened in read-only mode",
1815 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001816 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001817 .name = BDRV_OPT_AUTO_READ_ONLY,
1818 .type = QEMU_OPT_BOOL,
1819 .help = "Node can become read-only if opening read-write fails",
1820 },
1821 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001822 .name = "detect-zeroes",
1823 .type = QEMU_OPT_STRING,
1824 .help = "try to optimize zero writes (off, on, unmap)",
1825 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001826 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001827 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001828 .type = QEMU_OPT_STRING,
1829 .help = "discard operation (ignore/off, unmap/on)",
1830 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001831 {
1832 .name = BDRV_OPT_FORCE_SHARE,
1833 .type = QEMU_OPT_BOOL,
1834 .help = "always accept other writers (default: off)",
1835 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001836 { /* end of list */ }
1837 },
1838};
1839
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001840QemuOptsList bdrv_create_opts_simple = {
1841 .name = "simple-create-opts",
1842 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001843 .desc = {
1844 {
1845 .name = BLOCK_OPT_SIZE,
1846 .type = QEMU_OPT_SIZE,
1847 .help = "Virtual disk size"
1848 },
1849 {
1850 .name = BLOCK_OPT_PREALLOC,
1851 .type = QEMU_OPT_STRING,
1852 .help = "Preallocation mode (allowed values: off)"
1853 },
1854 { /* end of list */ }
1855 }
1856};
1857
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001858/*
Kevin Wolf57915332010-04-14 15:24:50 +02001859 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001860 *
1861 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001862 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001863static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001864 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001865{
1866 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001867 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001868 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001869 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001870 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001871 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001872 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001873 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001874 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001875
Kevin Wolf1f051dc2023-10-27 17:53:33 +02001876 GLOBAL_STATE_CODE();
1877
1878 bdrv_graph_rdlock_main_loop();
Paolo Bonzini64058752012-05-08 16:51:49 +02001879 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001880 assert(options != NULL && bs->options != options);
Kevin Wolf1f051dc2023-10-27 17:53:33 +02001881 bdrv_graph_rdunlock_main_loop();
Kevin Wolf57915332010-04-14 15:24:50 +02001882
Kevin Wolf62392eb2015-04-24 16:38:02 +02001883 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001884 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001885 ret = -EINVAL;
1886 goto fail_opts;
1887 }
1888
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001889 update_flags_from_options(&bs->open_flags, opts);
1890
Kevin Wolf62392eb2015-04-24 16:38:02 +02001891 driver_name = qemu_opt_get(opts, "driver");
1892 drv = bdrv_find_format(driver_name);
1893 assert(drv != NULL);
1894
Fam Zheng5a9347c2017-05-03 00:35:37 +08001895 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1896
1897 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1898 error_setg(errp,
1899 BDRV_OPT_FORCE_SHARE
1900 "=on can only be used with read-only images");
1901 ret = -EINVAL;
1902 goto fail_opts;
1903 }
1904
Kevin Wolf45673672013-04-22 17:48:40 +02001905 if (file != NULL) {
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001906 bdrv_graph_rdlock_main_loop();
Max Reitzf30c66b2019-02-01 20:29:05 +01001907 bdrv_refresh_filename(blk_bs(file));
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001908 bdrv_graph_rdunlock_main_loop();
1909
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001910 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001911 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001912 /*
1913 * Caution: while qdict_get_try_str() is fine, getting
1914 * non-string types would require more care. When @options
1915 * come from -blockdev or blockdev_add, its members are typed
1916 * according to the QAPI schema, but when they come from
1917 * -drive, they're all QString.
1918 */
Kevin Wolf45673672013-04-22 17:48:40 +02001919 filename = qdict_get_try_str(options, "filename");
1920 }
1921
Max Reitz4a008242017-04-13 18:06:24 +02001922 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001923 error_setg(errp, "The '%s' block driver requires a file name",
1924 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001925 ret = -EINVAL;
1926 goto fail_opts;
1927 }
1928
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001929 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1930 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001931
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001932 ro = bdrv_is_read_only(bs);
1933
1934 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1935 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf018f9de2023-09-29 16:51:53 +02001936 bdrv_graph_rdlock_main_loop();
Kevin Wolf8be25de2019-01-22 13:15:31 +01001937 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
Kevin Wolf018f9de2023-09-29 16:51:53 +02001938 bdrv_graph_rdunlock_main_loop();
Kevin Wolf8be25de2019-01-22 13:15:31 +01001939 } else {
1940 ret = -ENOTSUP;
1941 }
1942 if (ret < 0) {
1943 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001944 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001945 ? "Driver '%s' can only be used for read-only devices"
1946 : "Driver '%s' is not whitelisted",
1947 drv->format_name);
1948 goto fail_opts;
1949 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001950 }
Kevin Wolf57915332010-04-14 15:24:50 +02001951
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001952 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001953 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001954
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001955 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001956 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001957 bdrv_enable_copy_on_read(bs);
1958 } else {
1959 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001960 ret = -EINVAL;
1961 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001962 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001963 }
1964
Alberto Garcia415bbca2018-10-03 13:23:13 +03001965 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001966 if (discard != NULL) {
1967 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1968 error_setg(errp, "Invalid discard option");
1969 ret = -EINVAL;
1970 goto fail_opts;
1971 }
1972 }
1973
Alberto Garcia543770b2018-09-06 12:37:09 +03001974 bs->detect_zeroes =
1975 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1976 if (local_err) {
1977 error_propagate(errp, local_err);
1978 ret = -EINVAL;
1979 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001980 }
1981
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001982 if (filename != NULL) {
1983 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1984 } else {
1985 bs->filename[0] = '\0';
1986 }
Max Reitz91af7012014-07-18 20:24:56 +02001987 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001988
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001989 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001990 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001991 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001992
Paolo Bonzini41770f62022-11-24 16:21:18 +01001993 assert(!drv->protocol_name || file == NULL);
Kevin Wolf01a56502017-01-18 15:51:56 +01001994 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001995 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001996 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001997 }
1998
Kevin Wolf18edf282015-04-07 17:12:56 +02001999 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02002000 return 0;
2001
Kevin Wolf18edf282015-04-07 17:12:56 +02002002fail_opts:
2003 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02002004 return ret;
2005}
2006
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002007static QDict *parse_json_filename(const char *filename, Error **errp)
2008{
Zhao Liu7b22e052024-03-11 11:37:56 +08002009 ERRP_GUARD();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002010 QObject *options_obj;
2011 QDict *options;
2012 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002013 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002014
2015 ret = strstart(filename, "json:", &filename);
2016 assert(ret);
2017
Markus Armbruster5577fff2017-02-28 22:26:59 +01002018 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002019 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01002020 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002021 return NULL;
2022 }
2023
Max Reitz7dc847e2018-02-24 16:40:29 +01002024 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01002025 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002026 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002027 error_setg(errp, "Invalid JSON object given");
2028 return NULL;
2029 }
2030
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002031 qdict_flatten(options);
2032
2033 return options;
2034}
2035
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002036static void parse_json_protocol(QDict *options, const char **pfilename,
2037 Error **errp)
2038{
2039 QDict *json_options;
2040 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002041 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002042
2043 /* Parse json: pseudo-protocol */
2044 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
2045 return;
2046 }
2047
2048 json_options = parse_json_filename(*pfilename, &local_err);
2049 if (local_err) {
2050 error_propagate(errp, local_err);
2051 return;
2052 }
2053
2054 /* Options given in the filename have lower priority than options
2055 * specified directly */
2056 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002057 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002058 *pfilename = NULL;
2059}
2060
Kevin Wolf57915332010-04-14 15:24:50 +02002061/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002062 * Fills in default options for opening images and converts the legacy
2063 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002064 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2065 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002066 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002067static int bdrv_fill_options(QDict **options, const char *filename,
Kevin Wolf7ead9462024-04-25 14:56:02 +02002068 int *flags, bool allow_parse_filename,
2069 Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002070{
2071 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002072 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002073 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002074 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002075 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002076
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002077 GLOBAL_STATE_CODE();
2078
Markus Armbruster129c7d12017-03-30 19:43:12 +02002079 /*
2080 * Caution: while qdict_get_try_str() is fine, getting non-string
2081 * types would require more care. When @options come from
2082 * -blockdev or blockdev_add, its members are typed according to
2083 * the QAPI schema, but when they come from -drive, they're all
2084 * QString.
2085 */
Max Reitz53a29512015-03-19 14:53:16 -04002086 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002087 if (drvname) {
2088 drv = bdrv_find_format(drvname);
2089 if (!drv) {
2090 error_setg(errp, "Unknown driver '%s'", drvname);
2091 return -ENOENT;
2092 }
2093 /* If the user has explicitly specified the driver, this choice should
2094 * override the BDRV_O_PROTOCOL flag */
Paolo Bonzini41770f62022-11-24 16:21:18 +01002095 protocol = drv->protocol_name;
Max Reitz53a29512015-03-19 14:53:16 -04002096 }
2097
2098 if (protocol) {
2099 *flags |= BDRV_O_PROTOCOL;
2100 } else {
2101 *flags &= ~BDRV_O_PROTOCOL;
2102 }
2103
Kevin Wolf91a097e2015-05-08 17:49:53 +02002104 /* Translate cache options from flags into options */
2105 update_options_from_flags(*options, *flags);
2106
Kevin Wolff54120f2014-05-26 11:09:59 +02002107 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002108 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002109 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002110 qdict_put_str(*options, "filename", filename);
Kevin Wolf7ead9462024-04-25 14:56:02 +02002111 parse_filename = allow_parse_filename;
Kevin Wolff54120f2014-05-26 11:09:59 +02002112 } else {
2113 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2114 "the same time");
2115 return -EINVAL;
2116 }
2117 }
2118
2119 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002120 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002121 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002122
Max Reitz053e1572015-08-26 19:47:51 +02002123 if (!drvname && protocol) {
2124 if (filename) {
2125 drv = bdrv_find_protocol(filename, parse_filename, errp);
2126 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002127 return -EINVAL;
2128 }
Max Reitz053e1572015-08-26 19:47:51 +02002129
2130 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002131 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002132 } else {
2133 error_setg(errp, "Must specify either driver or file");
2134 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002135 }
2136 }
2137
Kevin Wolf17b005f2014-05-27 10:50:29 +02002138 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002139
2140 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002141 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002142 drv->bdrv_parse_filename(filename, *options, &local_err);
2143 if (local_err) {
2144 error_propagate(errp, local_err);
2145 return -EINVAL;
2146 }
2147
2148 if (!drv->bdrv_needs_filename) {
2149 qdict_del(*options, "filename");
2150 }
2151 }
2152
2153 return 0;
2154}
2155
Kevin Wolf148eb132017-09-14 14:32:04 +02002156typedef struct BlockReopenQueueEntry {
2157 bool prepared;
2158 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002159 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002160} BlockReopenQueueEntry;
2161
2162/*
2163 * Return the flags that @bs will have after the reopens in @q have
2164 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2165 * return the current flags.
2166 */
2167static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2168{
2169 BlockReopenQueueEntry *entry;
2170
2171 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002172 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002173 if (entry->state.bs == bs) {
2174 return entry->state.flags;
2175 }
2176 }
2177 }
2178
2179 return bs->open_flags;
2180}
2181
2182/* Returns whether the image file can be written to after the reopen queue @q
2183 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002184static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2185 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002186{
2187 int flags = bdrv_reopen_get_flags(q, bs);
2188
2189 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2190}
2191
Max Reitzcc022142018-06-06 21:37:00 +02002192/*
2193 * Return whether the BDS can be written to. This is not necessarily
2194 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2195 * be written to but do not count as read-only images.
2196 */
2197bool bdrv_is_writable(BlockDriverState *bs)
2198{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002199 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002200 return bdrv_is_writable_after_reopen(bs, NULL);
2201}
2202
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002203static char *bdrv_child_user_desc(BdrvChild *c)
2204{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002205 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002206 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002207}
2208
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002209/*
2210 * Check that @a allows everything that @b needs. @a and @b must reference same
2211 * child node.
2212 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002213static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2214{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002215 const char *child_bs_name;
2216 g_autofree char *a_user = NULL;
2217 g_autofree char *b_user = NULL;
2218 g_autofree char *perms = NULL;
2219
2220 assert(a->bs);
2221 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002222 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002223
2224 if ((b->perm & a->shared_perm) == b->perm) {
2225 return true;
2226 }
2227
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002228 child_bs_name = bdrv_get_node_name(b->bs);
2229 a_user = bdrv_child_user_desc(a);
2230 b_user = bdrv_child_user_desc(b);
2231 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2232
2233 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2234 "both required by %s (uses node '%s' as '%s' child) and "
2235 "unshared by %s (uses node '%s' as '%s' child).",
2236 child_bs_name, perms,
2237 b_user, child_bs_name, b->name,
2238 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002239
2240 return false;
2241}
2242
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002243static bool GRAPH_RDLOCK
2244bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002245{
2246 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002247 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002248
2249 /*
2250 * During the loop we'll look at each pair twice. That's correct because
2251 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2252 * directions.
2253 */
2254 QLIST_FOREACH(a, &bs->parents, next_parent) {
2255 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002256 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002257 continue;
2258 }
2259
2260 if (!bdrv_a_allow_b(a, b, errp)) {
2261 return true;
2262 }
2263 }
2264 }
2265
2266 return false;
2267}
2268
Kevin Wolfc629b6d2023-09-11 11:46:14 +02002269static void GRAPH_RDLOCK
2270bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2271 BdrvChild *c, BdrvChildRole role,
2272 BlockReopenQueue *reopen_queue,
2273 uint64_t parent_perm, uint64_t parent_shared,
2274 uint64_t *nperm, uint64_t *nshared)
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002275{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002276 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002277 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002278 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002279 parent_perm, parent_shared,
2280 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002281 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002282 if (child_bs && child_bs->force_share) {
2283 *nshared = BLK_PERM_ALL;
2284 }
2285}
2286
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002287/*
2288 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2289 * nodes that are already in the @list, of course) so that final list is
2290 * topologically sorted. Return the result (GSList @list object is updated, so
2291 * don't use old reference after function call).
2292 *
2293 * On function start @list must be already topologically sorted and for any node
2294 * in the @list the whole subtree of the node must be in the @list as well. The
2295 * simplest way to satisfy this criteria: use only result of
2296 * bdrv_topological_dfs() or NULL as @list parameter.
2297 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002298static GSList * GRAPH_RDLOCK
2299bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002300{
2301 BdrvChild *child;
2302 g_autoptr(GHashTable) local_found = NULL;
2303
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002304 GLOBAL_STATE_CODE();
2305
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002306 if (!found) {
2307 assert(!list);
2308 found = local_found = g_hash_table_new(NULL, NULL);
2309 }
2310
2311 if (g_hash_table_contains(found, bs)) {
2312 return list;
2313 }
2314 g_hash_table_add(found, bs);
2315
2316 QLIST_FOREACH(child, &bs->children, next) {
2317 list = bdrv_topological_dfs(list, found, child->bs);
2318 }
2319
2320 return g_slist_prepend(list, bs);
2321}
2322
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002323typedef struct BdrvChildSetPermState {
2324 BdrvChild *child;
2325 uint64_t old_perm;
2326 uint64_t old_shared_perm;
2327} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002328
2329static void bdrv_child_set_perm_abort(void *opaque)
2330{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002331 BdrvChildSetPermState *s = opaque;
2332
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002333 GLOBAL_STATE_CODE();
2334
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002335 s->child->perm = s->old_perm;
2336 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002337}
2338
2339static TransactionActionDrv bdrv_child_set_pem_drv = {
2340 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002341 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002342};
2343
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002344static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2345 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002346{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002347 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002348 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002349
2350 *s = (BdrvChildSetPermState) {
2351 .child = c,
2352 .old_perm = c->perm,
2353 .old_shared_perm = c->shared_perm,
2354 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002355
2356 c->perm = perm;
2357 c->shared_perm = shared;
2358
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002359 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002360}
2361
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002362static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002363{
2364 BlockDriverState *bs = opaque;
2365 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002366 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002367
2368 if (bs->drv->bdrv_set_perm) {
2369 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2370 &cumulative_shared_perms);
2371 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2372 }
2373}
2374
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002375static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002376{
2377 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002378 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002379
2380 if (bs->drv->bdrv_abort_perm_update) {
2381 bs->drv->bdrv_abort_perm_update(bs);
2382 }
2383}
2384
2385TransactionActionDrv bdrv_drv_set_perm_drv = {
2386 .abort = bdrv_drv_set_perm_abort,
2387 .commit = bdrv_drv_set_perm_commit,
2388};
2389
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002390/*
2391 * After calling this function, the transaction @tran may only be completed
2392 * while holding a reader lock for the graph.
2393 */
2394static int GRAPH_RDLOCK
2395bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm,
2396 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002397{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002398 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002399 if (!bs->drv) {
2400 return 0;
2401 }
2402
2403 if (bs->drv->bdrv_check_perm) {
2404 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2405 if (ret < 0) {
2406 return ret;
2407 }
2408 }
2409
2410 if (tran) {
2411 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2412 }
2413
2414 return 0;
2415}
2416
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002417typedef struct BdrvReplaceChildState {
2418 BdrvChild *child;
2419 BlockDriverState *old_bs;
2420} BdrvReplaceChildState;
2421
Kevin Wolf5661a002023-09-11 11:46:10 +02002422static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002423{
2424 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002425 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002426
Kevin Wolf5661a002023-09-11 11:46:10 +02002427 bdrv_schedule_unref(s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002428}
2429
Kevin Wolf5661a002023-09-11 11:46:10 +02002430static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002431{
2432 BdrvReplaceChildState *s = opaque;
2433 BlockDriverState *new_bs = s->child->bs;
2434
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002435 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02002436 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02002437
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002438 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002439 if (!s->child->bs) {
2440 /*
2441 * The parents were undrained when removing old_bs from the child. New
2442 * requests can't have been made, though, because the child was empty.
2443 *
2444 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2445 * undraining the parent in the first place. Once this is done, having
2446 * new_bs drained when calling bdrv_replace_child_tran() is not a
2447 * requirement any more.
2448 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002449 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002450 assert(!bdrv_parent_drained_poll_single(s->child));
2451 }
2452 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002453 bdrv_replace_child_noperm(s->child, s->old_bs);
Kevin Wolfad29eb32023-09-11 11:46:07 +02002454
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002455 bdrv_unref(new_bs);
2456}
2457
2458static TransactionActionDrv bdrv_replace_child_drv = {
2459 .commit = bdrv_replace_child_commit,
2460 .abort = bdrv_replace_child_abort,
2461 .clean = g_free,
2462};
2463
2464/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002465 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002466 *
2467 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002468 *
Kevin Wolf23987472022-11-18 18:41:09 +01002469 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2470 * kept drained until the transaction is completed.
2471 *
Kevin Wolf5661a002023-09-11 11:46:10 +02002472 * After calling this function, the transaction @tran may only be completed
2473 * while holding a writer lock for the graph.
2474 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002475 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002476 */
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02002477static void GRAPH_WRLOCK
2478bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2479 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002480{
2481 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002482
2483 assert(child->quiesced_parent);
2484 assert(!new_bs || new_bs->quiesce_counter);
2485
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002486 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002487 .child = child,
2488 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002489 };
2490 tran_add(tran, &bdrv_replace_child_drv, s);
2491
2492 if (new_bs) {
2493 bdrv_ref(new_bs);
2494 }
Kevin Wolfad29eb32023-09-11 11:46:07 +02002495
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002496 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002497 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002498}
2499
Kevin Wolf33a610c2016-12-15 13:04:20 +01002500/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002501 * Refresh permissions in @bs subtree. The function is intended to be called
2502 * after some graph modification that was done without permission update.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002503 *
2504 * After calling this function, the transaction @tran may only be completed
2505 * while holding a reader lock for the graph.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002506 */
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002507static int GRAPH_RDLOCK
2508bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2509 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002510{
2511 BlockDriver *drv = bs->drv;
2512 BdrvChild *c;
2513 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002514 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002515 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002516
2517 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002518
2519 /* Write permissions never work with read-only images */
2520 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002521 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002522 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002523 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2524 error_setg(errp, "Block node is read-only");
2525 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002526 error_setg(errp, "Read-only block node '%s' cannot support "
2527 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002528 }
2529
Kevin Wolf33a610c2016-12-15 13:04:20 +01002530 return -EPERM;
2531 }
2532
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002533 /*
2534 * Unaligned requests will automatically be aligned to bl.request_alignment
2535 * and without RESIZE we can't extend requests to write to space beyond the
2536 * end of the image, so it's required that the image size is aligned.
2537 */
2538 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2539 !(cumulative_perms & BLK_PERM_RESIZE))
2540 {
2541 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2542 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2543 "Image size is not a multiple of request "
2544 "alignment");
2545 return -EPERM;
2546 }
2547 }
2548
Kevin Wolf33a610c2016-12-15 13:04:20 +01002549 /* Check this node */
2550 if (!drv) {
2551 return 0;
2552 }
2553
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002554 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002555 errp);
2556 if (ret < 0) {
2557 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002558 }
2559
Kevin Wolf78e421c2016-12-20 23:25:12 +01002560 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002561 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002562 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002563 return 0;
2564 }
2565
2566 /* Check all children */
2567 QLIST_FOREACH(c, &bs->children, next) {
2568 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002569
Max Reitze5d8a402020-05-13 13:05:44 +02002570 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002571 cumulative_perms, cumulative_shared_perms,
2572 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002573 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002574 }
2575
2576 return 0;
2577}
2578
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002579/*
2580 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2581 * a topologically sorted subgraph.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002582 *
2583 * After calling this function, the transaction @tran may only be completed
2584 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002585 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002586static int GRAPH_RDLOCK
2587bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2588 Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002589{
2590 int ret;
2591 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002592 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002593
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002594 for ( ; list; list = list->next) {
2595 bs = list->data;
2596
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002597 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002598 return -EINVAL;
2599 }
2600
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002601 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002602 if (ret < 0) {
2603 return ret;
2604 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002605 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002606
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002607 return 0;
2608}
2609
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002610/*
2611 * @list is any list of nodes. List is completed by all subtrees and
2612 * topologically sorted. It's not a problem if some node occurs in the @list
2613 * several times.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002614 *
2615 * After calling this function, the transaction @tran may only be completed
2616 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002617 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002618static int GRAPH_RDLOCK
2619bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2620 Error **errp)
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002621{
2622 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2623 g_autoptr(GSList) refresh_list = NULL;
2624
2625 for ( ; list; list = list->next) {
2626 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2627 }
2628
2629 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2630}
2631
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002632void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2633 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002634{
2635 BdrvChild *c;
2636 uint64_t cumulative_perms = 0;
2637 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2638
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002639 GLOBAL_STATE_CODE();
2640
Kevin Wolf33a610c2016-12-15 13:04:20 +01002641 QLIST_FOREACH(c, &bs->parents, next_parent) {
2642 cumulative_perms |= c->perm;
2643 cumulative_shared_perms &= c->shared_perm;
2644 }
2645
2646 *perm = cumulative_perms;
2647 *shared_perm = cumulative_shared_perms;
2648}
2649
Fam Zheng51761962017-05-03 00:35:36 +08002650char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002651{
2652 struct perm_name {
2653 uint64_t perm;
2654 const char *name;
2655 } permissions[] = {
2656 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2657 { BLK_PERM_WRITE, "write" },
2658 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2659 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002660 { 0, NULL }
2661 };
2662
Alberto Garciae2a74232020-01-10 18:15:18 +01002663 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002664 struct perm_name *p;
2665
2666 for (p = permissions; p->name; p++) {
2667 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002668 if (result->len > 0) {
2669 g_string_append(result, ", ");
2670 }
2671 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002672 }
2673 }
2674
Alberto Garciae2a74232020-01-10 18:15:18 +01002675 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002676}
2677
Kevin Wolf33a610c2016-12-15 13:04:20 +01002678
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002679/*
2680 * @tran is allowed to be NULL. In this case no rollback is possible.
2681 *
2682 * After calling this function, the transaction @tran may only be completed
2683 * while holding a reader lock for the graph.
2684 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002685static int GRAPH_RDLOCK
2686bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002687{
2688 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002689 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002690 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002691 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002692
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002693 if (!tran) {
2694 tran = local_tran = tran_new();
2695 }
2696
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002697 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002698
2699 if (local_tran) {
2700 tran_finalize(local_tran, ret);
2701 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002702
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002703 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002704}
2705
Kevin Wolf33a610c2016-12-15 13:04:20 +01002706int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2707 Error **errp)
2708{
Max Reitz10467792019-05-22 19:03:51 +02002709 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002710 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002711 int ret;
2712
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002713 GLOBAL_STATE_CODE();
2714
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002715 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002716
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002717 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002718
2719 tran_finalize(tran, ret);
2720
Kevin Wolf33a610c2016-12-15 13:04:20 +01002721 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002722 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2723 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002724 error_propagate(errp, local_err);
2725 } else {
2726 /*
2727 * Our caller may intend to only loosen restrictions and
2728 * does not expect this function to fail. Errors are not
2729 * fatal in such a case, so we can just hide them from our
2730 * caller.
2731 */
2732 error_free(local_err);
2733 ret = 0;
2734 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002735 }
2736
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002737 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002738}
2739
Max Reitzc1087f12019-05-22 19:03:46 +02002740int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2741{
2742 uint64_t parent_perms, parent_shared;
2743 uint64_t perms, shared;
2744
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002745 GLOBAL_STATE_CODE();
2746
Max Reitzc1087f12019-05-22 19:03:46 +02002747 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002748 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002749 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002750
2751 return bdrv_child_try_set_perm(c, perms, shared, errp);
2752}
2753
Max Reitz87278af2020-05-13 13:05:40 +02002754/*
2755 * Default implementation for .bdrv_child_perm() for block filters:
2756 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2757 * filtered child.
2758 */
2759static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002760 BdrvChildRole role,
2761 BlockReopenQueue *reopen_queue,
2762 uint64_t perm, uint64_t shared,
2763 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002764{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002765 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002766 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2767 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002768}
2769
Max Reitz70082db2020-05-13 13:05:26 +02002770static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002771 BdrvChildRole role,
2772 BlockReopenQueue *reopen_queue,
2773 uint64_t perm, uint64_t shared,
2774 uint64_t *nperm, uint64_t *nshared)
2775{
Max Reitze5d8a402020-05-13 13:05:44 +02002776 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002777 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002778
2779 /*
2780 * We want consistent read from backing files if the parent needs it.
2781 * No other operations are performed on backing files.
2782 */
2783 perm &= BLK_PERM_CONSISTENT_READ;
2784
2785 /*
2786 * If the parent can deal with changing data, we're okay with a
2787 * writable and resizable backing file.
2788 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2789 */
2790 if (shared & BLK_PERM_WRITE) {
2791 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2792 } else {
2793 shared = 0;
2794 }
2795
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002796 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002797
2798 if (bs->open_flags & BDRV_O_INACTIVE) {
2799 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2800 }
2801
2802 *nperm = perm;
2803 *nshared = shared;
2804}
2805
Max Reitz6f838a42020-05-13 13:05:27 +02002806static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002807 BdrvChildRole role,
2808 BlockReopenQueue *reopen_queue,
2809 uint64_t perm, uint64_t shared,
2810 uint64_t *nperm, uint64_t *nshared)
2811{
2812 int flags;
2813
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002814 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002815 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002816
2817 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2818
2819 /*
2820 * Apart from the modifications below, the same permissions are
2821 * forwarded and left alone as for filters
2822 */
Max Reitze5d8a402020-05-13 13:05:44 +02002823 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002824 perm, shared, &perm, &shared);
2825
Max Reitzf8890542020-05-13 13:05:28 +02002826 if (role & BDRV_CHILD_METADATA) {
2827 /* Format drivers may touch metadata even if the guest doesn't write */
2828 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2829 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2830 }
2831
2832 /*
2833 * bs->file always needs to be consistent because of the
2834 * metadata. We can never allow other users to resize or write
2835 * to it.
2836 */
2837 if (!(flags & BDRV_O_NO_IO)) {
2838 perm |= BLK_PERM_CONSISTENT_READ;
2839 }
2840 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002841 }
2842
Max Reitzf8890542020-05-13 13:05:28 +02002843 if (role & BDRV_CHILD_DATA) {
2844 /*
2845 * Technically, everything in this block is a subset of the
2846 * BDRV_CHILD_METADATA path taken above, and so this could
2847 * be an "else if" branch. However, that is not obvious, and
2848 * this function is not performance critical, therefore we let
2849 * this be an independent "if".
2850 */
2851
2852 /*
2853 * We cannot allow other users to resize the file because the
2854 * format driver might have some assumptions about the size
2855 * (e.g. because it is stored in metadata, or because the file
2856 * is split into fixed-size data files).
2857 */
2858 shared &= ~BLK_PERM_RESIZE;
2859
2860 /*
2861 * WRITE_UNCHANGED often cannot be performed as such on the
2862 * data file. For example, the qcow2 driver may still need to
2863 * write copied clusters on copy-on-read.
2864 */
2865 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2866 perm |= BLK_PERM_WRITE;
2867 }
2868
2869 /*
2870 * If the data file is written to, the format driver may
2871 * expect to be able to resize it by writing beyond the EOF.
2872 */
2873 if (perm & BLK_PERM_WRITE) {
2874 perm |= BLK_PERM_RESIZE;
2875 }
Max Reitz6f838a42020-05-13 13:05:27 +02002876 }
Max Reitz6f838a42020-05-13 13:05:27 +02002877
2878 if (bs->open_flags & BDRV_O_INACTIVE) {
2879 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2880 }
2881
2882 *nperm = perm;
2883 *nshared = shared;
2884}
2885
Max Reitz2519f542020-05-13 13:05:29 +02002886void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002887 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002888 uint64_t perm, uint64_t shared,
2889 uint64_t *nperm, uint64_t *nshared)
2890{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002891 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002892 if (role & BDRV_CHILD_FILTERED) {
2893 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2894 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002895 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002896 perm, shared, nperm, nshared);
2897 } else if (role & BDRV_CHILD_COW) {
2898 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002899 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002900 perm, shared, nperm, nshared);
2901 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002902 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002903 perm, shared, nperm, nshared);
2904 } else {
2905 g_assert_not_reached();
2906 }
2907}
2908
Max Reitz7b1d9c42019-11-08 13:34:51 +01002909uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2910{
2911 static const uint64_t permissions[] = {
2912 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2913 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2914 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2915 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002916 };
2917
2918 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2919 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2920
2921 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2922
2923 return permissions[qapi_perm];
2924}
2925
Kevin Wolf23987472022-11-18 18:41:09 +01002926/*
2927 * Replaces the node that a BdrvChild points to without updating permissions.
2928 *
2929 * If @new_bs is non-NULL, the parent of @child must already be drained through
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05002930 * @child.
Kevin Wolf23987472022-11-18 18:41:09 +01002931 */
Kevin Wolfad29eb32023-09-11 11:46:07 +02002932static void GRAPH_WRLOCK
2933bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002934{
2935 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002936 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002937
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002938 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002939
2940 /*
2941 * If we want to change the BdrvChild to point to a drained node as its new
2942 * child->bs, we need to make sure that its new parent is drained, too. In
2943 * other words, either child->quiesce_parent must already be true or we must
2944 * be able to set it and keep the parent's quiesce_counter consistent with
2945 * that, but without polling or starting new requests (this function
2946 * guarantees that it doesn't poll, and starting new requests would be
2947 * against the invariants of drain sections).
2948 *
2949 * To keep things simple, we pick the first option (child->quiesce_parent
2950 * must already be true). We also generalise the rule a bit to make it
2951 * easier to verify in callers and more likely to be covered in test cases:
2952 * The parent must be quiesced through this child even if new_bs isn't
2953 * currently drained.
2954 *
2955 * The only exception is for callers that always pass new_bs == NULL. In
2956 * this case, we obviously never need to consider the case of a drained
2957 * new_bs, so we can keep the callers simpler by allowing them not to drain
2958 * the parent.
2959 */
2960 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002961 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002962 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002963
Fam Zhengbb2614e2017-04-07 14:54:10 +08002964 if (old_bs && new_bs) {
2965 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2966 }
Max Reitzdebc2922019-07-22 15:33:44 +02002967
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002968 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002969 if (child->klass->detach) {
2970 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002971 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002972 QLIST_REMOVE(child, next_parent);
2973 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002974
2975 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002976
2977 if (new_bs) {
2978 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002979 if (child->klass->attach) {
2980 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002981 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002982 }
Max Reitzdebc2922019-07-22 15:33:44 +02002983
2984 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002985 * If the parent was drained through this BdrvChild previously, but new_bs
2986 * is not drained, allow requests to come in only after the new node has
2987 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002988 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002989 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2990 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002991 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002992 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002993}
2994
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002995/**
2996 * Free the given @child.
2997 *
2998 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2999 * unused (i.e. not in a children list).
3000 */
3001static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003002{
3003 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003004 GLOBAL_STATE_CODE();
Kevin Wolf680e0cc2023-09-29 16:51:56 +02003005 GRAPH_RDLOCK_GUARD_MAINLOOP();
3006
Hanna Reitza2253692021-11-15 15:53:58 +01003007 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003008
3009 g_free(child->name);
3010 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003011}
3012
3013typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003014 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003015 AioContext *old_parent_ctx;
3016 AioContext *old_child_ctx;
3017} BdrvAttachChildCommonState;
3018
Kevin Wolf5661a002023-09-11 11:46:10 +02003019static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003020{
3021 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003022 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003023
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003024 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02003025 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02003026
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003027 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003028
3029 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003030 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003031 }
3032
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003033 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003034 Transaction *tran;
3035 GHashTable *visited;
3036 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003037
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003038 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003039
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003040 /* No need to visit `child`, because it has been detached already */
3041 visited = g_hash_table_new(NULL, NULL);
3042 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
3043 visited, tran, &error_abort);
3044 g_hash_table_destroy(visited);
3045
3046 /* transaction is supposed to always succeed */
3047 assert(ret == true);
3048 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003049 }
3050
Kevin Wolf5661a002023-09-11 11:46:10 +02003051 bdrv_schedule_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003052 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003053}
3054
3055static TransactionActionDrv bdrv_attach_child_common_drv = {
3056 .abort = bdrv_attach_child_common_abort,
3057 .clean = g_free,
3058};
3059
3060/*
3061 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003062 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003063 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003064 *
Kevin Wolf5661a002023-09-11 11:46:10 +02003065 * After calling this function, the transaction @tran may only be completed
3066 * while holding a writer lock for the graph.
3067 *
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003068 * Returns new created child.
Kevin Wolfc066e802023-06-05 10:57:05 +02003069 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003070 * Both @parent_bs and @child_bs can move to a different AioContext in this
3071 * function.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003072 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003073static BdrvChild * GRAPH_WRLOCK
3074bdrv_attach_child_common(BlockDriverState *child_bs,
3075 const char *child_name,
3076 const BdrvChildClass *child_class,
3077 BdrvChildRole child_role,
3078 uint64_t perm, uint64_t shared_perm,
3079 void *opaque,
3080 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003081{
3082 BdrvChild *new_child;
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05003083 AioContext *parent_ctx;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003084 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3085
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03003086 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003087 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003088
Kevin Wolf8c2c72a2025-02-04 22:13:57 +01003089 if (bdrv_is_inactive(child_bs) && (perm & ~BLK_PERM_CONSISTENT_READ)) {
3090 g_autofree char *perm_names = bdrv_perm_names(perm);
3091 error_setg(errp, "Permission '%s' unavailable on inactive node",
3092 perm_names);
3093 return NULL;
3094 }
3095
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003096 new_child = g_new(BdrvChild, 1);
3097 *new_child = (BdrvChild) {
3098 .bs = NULL,
3099 .name = g_strdup(child_name),
3100 .klass = child_class,
3101 .role = child_role,
3102 .perm = perm,
3103 .shared_perm = shared_perm,
3104 .opaque = opaque,
3105 };
3106
3107 /*
3108 * If the AioContexts don't match, first try to move the subtree of
3109 * child_bs into the AioContext of the new parent. If this doesn't work,
3110 * try moving the parent into the AioContext of child_bs instead.
3111 */
3112 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3113 if (child_ctx != parent_ctx) {
3114 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003115 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3116 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003117
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003118 if (ret < 0 && child_class->change_aio_ctx) {
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003119 Transaction *aio_ctx_tran = tran_new();
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003120 GHashTable *visited = g_hash_table_new(NULL, NULL);
3121 bool ret_child;
3122
3123 g_hash_table_add(visited, new_child);
3124 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003125 visited, aio_ctx_tran,
3126 NULL);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003127 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003128 error_free(local_err);
3129 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003130 }
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003131 tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003132 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003133 }
3134
3135 if (ret < 0) {
3136 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003137 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003138 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003139 }
3140 }
3141
3142 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003143 /*
3144 * Let every new BdrvChild start with a drained parent. Inserting the child
3145 * in the graph with bdrv_replace_child_noperm() will undrain it if
3146 * @child_bs is not drained.
3147 *
3148 * The child was only just created and is not yet visible in global state
3149 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3150 * could have sent requests and polling is not necessary.
3151 *
3152 * Note that this means that the parent isn't fully drained yet, we only
3153 * stop new requests from coming in. This is fine, we don't care about the
3154 * old requests here, they are not for this child. If another place enters a
3155 * drain section for the same parent, but wants it to be fully quiesced, it
Michael Tokarev8c3edfa2025-05-07 20:03:13 +03003156 * will not run most of the code in .drained_begin() again (which is not
Kevin Wolf23987472022-11-18 18:41:09 +01003157 * a problem, we already did this), but it will still poll until the parent
3158 * is fully quiesced, so it will not be negatively affected either.
3159 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003160 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003161 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003162
3163 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3164 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003165 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003166 .old_parent_ctx = parent_ctx,
3167 .old_child_ctx = child_ctx,
3168 };
3169 tran_add(tran, &bdrv_attach_child_common_drv, s);
3170
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003171 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003172}
3173
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003174/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003175 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolfc066e802023-06-05 10:57:05 +02003176 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003177 * Both @parent_bs and @child_bs can move to a different AioContext in this
3178 * function.
Kevin Wolf5661a002023-09-11 11:46:10 +02003179 *
3180 * After calling this function, the transaction @tran may only be completed
3181 * while holding a writer lock for the graph.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003182 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003183static BdrvChild * GRAPH_WRLOCK
3184bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3185 BlockDriverState *child_bs,
3186 const char *child_name,
3187 const BdrvChildClass *child_class,
3188 BdrvChildRole child_role,
3189 Transaction *tran,
3190 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003191{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003192 uint64_t perm, shared_perm;
3193
3194 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003195 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003196
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003197 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3198 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3199 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003200 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003201 }
Kevin Wolf9b813612025-02-04 22:13:56 +01003202 if (bdrv_is_inactive(child_bs) && !bdrv_is_inactive(parent_bs)) {
3203 error_setg(errp, "Inactive '%s' can't be a %s child of active '%s'",
3204 child_bs->node_name, child_name, parent_bs->node_name);
3205 return NULL;
3206 }
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003207
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003208 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3209 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3210 perm, shared_perm, &perm, &shared_perm);
3211
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003212 return bdrv_attach_child_common(child_bs, child_name, child_class,
3213 child_role, perm, shared_perm, parent_bs,
3214 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003215}
3216
Alberto Garciab441dc72019-05-13 16:46:18 +03003217/*
3218 * This function steals the reference to child_bs from the caller.
3219 * That reference is later dropped by bdrv_root_unref_child().
3220 *
3221 * On failure NULL is returned, errp is set and the reference to
3222 * child_bs is also dropped.
3223 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003224BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3225 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003226 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003227 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003228 uint64_t perm, uint64_t shared_perm,
3229 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003230{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003231 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003232 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003233 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003234
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003235 GLOBAL_STATE_CODE();
3236
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003237 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003238 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003239 tran, errp);
3240 if (!child) {
3241 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003242 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003243 }
3244
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003245 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003246
Kevin Wolfe878bb12021-05-03 13:05:54 +02003247out:
3248 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003249
Kevin Wolf03b9eac2023-10-27 17:53:13 +02003250 bdrv_schedule_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003251
3252 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003253}
3254
Alberto Garciab441dc72019-05-13 16:46:18 +03003255/*
3256 * This function transfers the reference to child_bs from the caller
3257 * to parent_bs. That reference is later dropped by parent_bs on
3258 * bdrv_close() or if someone calls bdrv_unref_child().
3259 *
3260 * On failure NULL is returned, errp is set and the reference to
3261 * child_bs is also dropped.
3262 */
Wen Congyang98292c62016-05-10 15:36:38 +08003263BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3264 BlockDriverState *child_bs,
3265 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003266 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003267 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003268 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003269{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003270 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003271 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003272 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003273
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003274 GLOBAL_STATE_CODE();
3275
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003276 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3277 child_class, child_role, tran, errp);
3278 if (!child) {
3279 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003280 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003281 }
3282
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003283 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003284 if (ret < 0) {
3285 goto out;
3286 }
3287
3288out:
3289 tran_finalize(tran, ret);
3290
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003291 bdrv_schedule_unref(child_bs);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003292
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003293 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003294}
3295
Max Reitz7b99a262019-06-12 16:07:11 +02003296/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003297void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003298{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003299 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003300
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003301 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003302 bdrv_replace_child_noperm(child, NULL);
3303 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003304
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003305 if (child_bs) {
3306 /*
3307 * Update permissions for old node. We're just taking a parent away, so
3308 * we're loosening restrictions. Errors of permission update are not
3309 * fatal in this case, ignore them.
3310 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003311 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003312
3313 /*
3314 * When the parent requiring a non-default AioContext is removed, the
3315 * node moves back to the main AioContext
3316 */
3317 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3318 NULL);
3319 }
3320
Kevin Wolfede01e42023-09-11 11:46:18 +02003321 bdrv_schedule_unref(child_bs);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003322}
3323
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003324typedef struct BdrvSetInheritsFrom {
3325 BlockDriverState *bs;
3326 BlockDriverState *old_inherits_from;
3327} BdrvSetInheritsFrom;
3328
3329static void bdrv_set_inherits_from_abort(void *opaque)
3330{
3331 BdrvSetInheritsFrom *s = opaque;
3332
3333 s->bs->inherits_from = s->old_inherits_from;
3334}
3335
3336static TransactionActionDrv bdrv_set_inherits_from_drv = {
3337 .abort = bdrv_set_inherits_from_abort,
3338 .clean = g_free,
3339};
3340
3341/* @tran is allowed to be NULL. In this case no rollback is possible */
3342static void bdrv_set_inherits_from(BlockDriverState *bs,
3343 BlockDriverState *new_inherits_from,
3344 Transaction *tran)
3345{
3346 if (tran) {
3347 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3348
3349 *s = (BdrvSetInheritsFrom) {
3350 .bs = bs,
3351 .old_inherits_from = bs->inherits_from,
3352 };
3353
3354 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3355 }
3356
3357 bs->inherits_from = new_inherits_from;
3358}
3359
Max Reitz3cf746b2019-07-03 19:28:07 +02003360/**
3361 * Clear all inherits_from pointers from children and grandchildren of
3362 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003363 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003364 */
Kevin Wolf32a8aba2023-09-11 11:46:19 +02003365static void GRAPH_WRLOCK
3366bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3367 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003368{
Max Reitz3cf746b2019-07-03 19:28:07 +02003369 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003370
Max Reitz3cf746b2019-07-03 19:28:07 +02003371 if (child->bs->inherits_from == root) {
3372 /*
3373 * Remove inherits_from only when the last reference between root and
3374 * child->bs goes away.
3375 */
3376 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003377 if (c != child && c->bs == child->bs) {
3378 break;
3379 }
3380 }
3381 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003382 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003383 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003384 }
3385
Max Reitz3cf746b2019-07-03 19:28:07 +02003386 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003387 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003388 }
3389}
3390
Max Reitz7b99a262019-06-12 16:07:11 +02003391/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003392void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3393{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003394 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003395 if (child == NULL) {
3396 return;
3397 }
3398
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003399 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003400 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003401}
3402
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003403
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003404static void GRAPH_RDLOCK
3405bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003406{
3407 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003408 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003409 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003410 if (c->klass->change_media) {
3411 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003412 }
3413 }
3414}
3415
Alberto Garcia0065c452018-10-31 18:16:37 +02003416/* Return true if you can reach parent going through child->inherits_from
3417 * recursively. If parent or child are NULL, return false */
3418static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3419 BlockDriverState *parent)
3420{
3421 while (child && child != parent) {
3422 child = child->inherits_from;
3423 }
3424
3425 return child != NULL;
3426}
3427
Kevin Wolf5db15a52015-09-14 15:33:33 +02003428/*
Max Reitz25191e52020-05-13 13:05:33 +02003429 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3430 * mostly used for COW backing children (role = COW), but also for
3431 * filtered children (role = FILTERED | PRIMARY).
3432 */
3433static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3434{
3435 if (bs->drv && bs->drv->is_filter) {
3436 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3437 } else {
3438 return BDRV_CHILD_COW;
3439 }
3440}
3441
3442/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003443 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3444 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003445 *
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003446 * If the respective child is already present (i.e. we're detaching a node),
3447 * that child node must be drained.
3448 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003449 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf4b408662023-06-05 10:57:06 +02003450 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003451 * Both @parent_bs and @child_bs can move to a different AioContext in this
3452 * function.
Kevin Wolf5661a002023-09-11 11:46:10 +02003453 *
3454 * After calling this function, the transaction @tran may only be completed
3455 * while holding a writer lock for the graph.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003456 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003457static int GRAPH_WRLOCK
3458bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3459 BlockDriverState *child_bs,
3460 bool is_backing,
3461 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003462{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003463 bool update_inherits_from =
3464 bdrv_inherits_from_recursive(child_bs, parent_bs);
3465 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3466 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003467
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003468 GLOBAL_STATE_CODE();
3469
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003470 if (!parent_bs->drv) {
3471 /*
3472 * Node without drv is an object without a class :/. TODO: finally fix
3473 * qcow2 driver to never clear bs->drv and implement format corruption
3474 * handling in other way.
3475 */
3476 error_setg(errp, "Node corrupted");
3477 return -EINVAL;
3478 }
3479
3480 if (child && child->frozen) {
3481 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3482 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003483 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003484 }
3485
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003486 if (is_backing && !parent_bs->drv->is_filter &&
3487 !parent_bs->drv->supports_backing)
3488 {
3489 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3490 "files", parent_bs->drv->format_name, parent_bs->node_name);
3491 return -EINVAL;
3492 }
3493
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003494 if (parent_bs->drv->is_filter) {
3495 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3496 } else if (is_backing) {
3497 role = BDRV_CHILD_COW;
3498 } else {
3499 /*
3500 * We only can use same role as it is in existing child. We don't have
3501 * infrastructure to determine role of file child in generic way
3502 */
3503 if (!child) {
3504 error_setg(errp, "Cannot set file child to format node without "
3505 "file child");
3506 return -EINVAL;
3507 }
3508 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003509 }
3510
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003511 if (child) {
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003512 assert(child->bs->quiesce_counter);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003513 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003514 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003515 }
3516
3517 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003518 goto out;
3519 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003520
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003521 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3522 is_backing ? "backing" : "file",
3523 &child_of_bds, role,
3524 tran, errp);
3525 if (!child) {
3526 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003527 }
3528
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003529
3530 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003531 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003532 * point directly to bs (else it will become NULL).
3533 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003534 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003535 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003536 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003537
Fam Zheng8d24cce2014-05-23 21:29:45 +08003538out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003539 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003540
3541 return 0;
3542}
3543
Kevin Wolf4b408662023-06-05 10:57:06 +02003544/*
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003545 * Both @bs and @backing_hd can move to a different AioContext in this
3546 * function.
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003547 *
3548 * If a backing child is already present (i.e. we're detaching a node), that
3549 * child node must be drained.
Kevin Wolf4b408662023-06-05 10:57:06 +02003550 */
Kevin Wolf92140b92022-11-18 18:41:04 +01003551int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3552 BlockDriverState *backing_hd,
3553 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003554{
3555 int ret;
3556 Transaction *tran = tran_new();
3557
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003558 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003559 assert(bs->quiesce_counter > 0);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003560 if (bs->backing) {
3561 assert(bs->backing->bs->quiesce_counter > 0);
3562 }
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003563
Kevin Wolf3204c2e2023-10-27 17:53:23 +02003564 ret = bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003565 if (ret < 0) {
3566 goto out;
3567 }
3568
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003569 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003570out:
3571 tran_finalize(tran, ret);
Kevin Wolf92140b92022-11-18 18:41:04 +01003572 return ret;
3573}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003574
Kevin Wolf92140b92022-11-18 18:41:04 +01003575int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3576 Error **errp)
3577{
Kevin Wolf004915a2023-10-27 17:53:26 +02003578 BlockDriverState *drain_bs;
Kevin Wolf92140b92022-11-18 18:41:04 +01003579 int ret;
3580 GLOBAL_STATE_CODE();
3581
Kevin Wolf004915a2023-10-27 17:53:26 +02003582 bdrv_graph_rdlock_main_loop();
3583 drain_bs = bs->backing ? bs->backing->bs : bs;
3584 bdrv_graph_rdunlock_main_loop();
3585
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003586 bdrv_ref(drain_bs);
3587 bdrv_drained_begin(drain_bs);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05003588 bdrv_graph_wrlock();
Kevin Wolf92140b92022-11-18 18:41:04 +01003589 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05003590 bdrv_graph_wrunlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003591 bdrv_drained_end(drain_bs);
3592 bdrv_unref(drain_bs);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003593
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003594 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003595}
3596
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003597/*
3598 * Opens the backing file for a BlockDriverState if not yet open
3599 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003600 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3601 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3602 * itself, all options starting with "${bdref_key}." are considered part of the
3603 * BlockdevRef.
3604 *
3605 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003606 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003607int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3608 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003609{
Zhao Liu7b22e052024-03-11 11:37:56 +08003610 ERRP_GUARD();
Max Reitz6b6833c2019-02-01 20:29:15 +01003611 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003612 char *bdref_key_dot;
3613 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003614 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003615 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003616 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003617 QDict *options;
3618 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003619 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003620
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003621 GLOBAL_STATE_CODE();
Kevin Wolf004915a2023-10-27 17:53:26 +02003622 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003623
Kevin Wolf760e0062015-06-17 14:55:21 +02003624 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003625 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003626 }
3627
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003628 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003629 if (parent_options == NULL) {
3630 tmp_parent_options = qdict_new();
3631 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003632 }
3633
Paolo Bonzini9156df12012-10-18 16:49:17 +02003634 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003635
3636 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3637 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3638 g_free(bdref_key_dot);
3639
Markus Armbruster129c7d12017-03-30 19:43:12 +02003640 /*
3641 * Caution: while qdict_get_try_str() is fine, getting non-string
3642 * types would require more care. When @parent_options come from
3643 * -blockdev or blockdev_add, its members are typed according to
3644 * the QAPI schema, but when they come from -drive, they're all
3645 * QString.
3646 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003647 reference = qdict_get_try_str(parent_options, bdref_key);
3648 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003649 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003650 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003651 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003652 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003653 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003654 if (qdict_size(options) == 0) {
3655 /* If the user specifies options that do not modify the
3656 * backing file's behavior, we might still consider it the
3657 * implicit backing file. But it's easier this way, and
3658 * just specifying some of the backing BDS's options is
3659 * only possible with -drive anyway (otherwise the QAPI
3660 * schema forces the user to specify everything). */
3661 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3662 }
3663
Max Reitz6b6833c2019-02-01 20:29:15 +01003664 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003665 if (local_err) {
3666 ret = -EINVAL;
3667 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003668 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003669 goto free_exit;
3670 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003671 }
3672
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003673 if (!bs->drv || !bs->drv->supports_backing) {
3674 ret = -EINVAL;
3675 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003676 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003677 goto free_exit;
3678 }
3679
Peter Krempa6bff5972017-10-12 16:14:10 +02003680 if (!reference &&
3681 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003682 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003683 }
3684
Max Reitz6b6833c2019-02-01 20:29:15 +01003685 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Kevin Wolf7ead9462024-04-25 14:56:02 +02003686 &child_of_bds, bdrv_backing_role(bs), true,
3687 errp);
Max Reitz5b363932016-05-17 16:41:31 +02003688 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003689 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003690 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003691 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003692 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003693 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003694
Max Reitz998c2012019-02-01 20:29:08 +01003695 if (implicit_backing) {
3696 bdrv_refresh_filename(backing_hd);
3697 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3698 backing_hd->filename);
3699 }
3700
Kevin Wolf5db15a52015-09-14 15:33:33 +02003701 /* Hook up the backing file link; drop our reference, bs owns the
3702 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003703 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003704 bdrv_unref(backing_hd);
Kevin Wolf8aa04542023-06-05 10:57:08 +02003705
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003706 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003707 goto free_exit;
3708 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003709
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003710 qdict_del(parent_options, bdref_key);
3711
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003712free_exit:
3713 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003714 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003715 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003716}
3717
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003718static BlockDriverState *
3719bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003720 BlockDriverState *parent, const BdrvChildClass *child_class,
Kevin Wolf7ead9462024-04-25 14:56:02 +02003721 BdrvChildRole child_role, bool allow_none,
3722 bool parse_filename, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003723{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003724 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003725 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003726 char *bdref_key_dot;
3727 const char *reference;
3728
Max Reitzbd86fb92020-05-13 13:05:13 +02003729 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003730
Max Reitzda557aa2013-12-20 19:28:11 +01003731 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3732 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3733 g_free(bdref_key_dot);
3734
Markus Armbruster129c7d12017-03-30 19:43:12 +02003735 /*
3736 * Caution: while qdict_get_try_str() is fine, getting non-string
3737 * types would require more care. When @options come from
3738 * -blockdev or blockdev_add, its members are typed according to
3739 * the QAPI schema, but when they come from -drive, they're all
3740 * QString.
3741 */
Max Reitzda557aa2013-12-20 19:28:11 +01003742 reference = qdict_get_try_str(options, bdref_key);
3743 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003744 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003745 error_setg(errp, "A block device must be specified for \"%s\"",
3746 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003747 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003748 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003749 goto done;
3750 }
3751
Max Reitz5b363932016-05-17 16:41:31 +02003752 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Kevin Wolf7ead9462024-04-25 14:56:02 +02003753 parent, child_class, child_role, parse_filename,
3754 errp);
Max Reitz5b363932016-05-17 16:41:31 +02003755 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003756 goto done;
3757 }
3758
Max Reitzda557aa2013-12-20 19:28:11 +01003759done:
3760 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003761 return bs;
3762}
3763
Kevin Wolf7ead9462024-04-25 14:56:02 +02003764static BdrvChild *bdrv_open_child_common(const char *filename,
3765 QDict *options, const char *bdref_key,
3766 BlockDriverState *parent,
3767 const BdrvChildClass *child_class,
3768 BdrvChildRole child_role,
3769 bool allow_none, bool parse_filename,
3770 Error **errp)
3771{
3772 BlockDriverState *bs;
3773 BdrvChild *child;
3774
3775 GLOBAL_STATE_CODE();
3776
3777 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
3778 child_role, allow_none, parse_filename, errp);
3779 if (bs == NULL) {
3780 return NULL;
3781 }
3782
3783 bdrv_graph_wrlock();
3784 child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3785 errp);
3786 bdrv_graph_wrunlock();
3787
3788 return child;
3789}
3790
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003791/*
3792 * Opens a disk image whose options are given as BlockdevRef in another block
3793 * device's options.
3794 *
3795 * If allow_none is true, no image will be opened if filename is false and no
3796 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3797 *
3798 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3799 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3800 * itself, all options starting with "${bdref_key}." are considered part of the
3801 * BlockdevRef.
3802 *
3803 * The BlockdevRef will be removed from the options QDict.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003804 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003805 * @parent can move to a different AioContext in this function.
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003806 */
3807BdrvChild *bdrv_open_child(const char *filename,
3808 QDict *options, const char *bdref_key,
3809 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003810 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003811 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003812 bool allow_none, Error **errp)
3813{
Kevin Wolf7ead9462024-04-25 14:56:02 +02003814 return bdrv_open_child_common(filename, options, bdref_key, parent,
3815 child_class, child_role, allow_none, false,
3816 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003817}
3818
Max Reitzbd86fb92020-05-13 13:05:13 +02003819/*
Kevin Wolf7ead9462024-04-25 14:56:02 +02003820 * This does mostly the same as bdrv_open_child(), but for opening the primary
3821 * child of a node. A notable difference from bdrv_open_child() is that it
3822 * enables filename parsing for protocol names (including json:).
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003823 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05003824 * @parent can move to a different AioContext in this function.
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003825 */
3826int bdrv_open_file_child(const char *filename,
3827 QDict *options, const char *bdref_key,
3828 BlockDriverState *parent, Error **errp)
3829{
3830 BdrvChildRole role;
3831
3832 /* commit_top and mirror_top don't use this function */
3833 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003834 role = parent->drv->is_filter ?
3835 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3836
Kevin Wolf7ead9462024-04-25 14:56:02 +02003837 if (!bdrv_open_child_common(filename, options, bdref_key, parent,
3838 &child_of_bds, role, false, true, errp))
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003839 {
3840 return -EINVAL;
3841 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003842
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003843 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003844}
3845
3846/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003847 * TODO Future callers may need to specify parent/child_class in order for
3848 * option inheritance to work. Existing callers use it for the root node.
3849 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003850BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3851{
3852 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003853 QObject *obj = NULL;
3854 QDict *qdict = NULL;
3855 const char *reference = NULL;
3856 Visitor *v = NULL;
3857
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003858 GLOBAL_STATE_CODE();
3859
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003860 if (ref->type == QTYPE_QSTRING) {
3861 reference = ref->u.reference;
3862 } else {
3863 BlockdevOptions *options = &ref->u.definition;
3864 assert(ref->type == QTYPE_QDICT);
3865
3866 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003867 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003868 visit_complete(v, &obj);
3869
Max Reitz7dc847e2018-02-24 16:40:29 +01003870 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003871 qdict_flatten(qdict);
3872
3873 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3874 * compatibility with other callers) rather than what we want as the
3875 * real defaults. Apply the defaults here instead. */
3876 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3877 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3878 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003879 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3880
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003881 }
3882
Kevin Wolf7ead9462024-04-25 14:56:02 +02003883 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, false,
3884 errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003885 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003886 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003887 visit_free(v);
3888 return bs;
3889}
3890
Max Reitz66836182016-05-17 16:41:27 +02003891static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3892 int flags,
3893 QDict *snapshot_options,
3894 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003895{
Zhao Liu7b22e052024-03-11 11:37:56 +08003896 ERRP_GUARD();
Bin Meng69fbfff2022-10-10 12:04:31 +08003897 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003898 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003899 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003900 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003901 int ret;
3902
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003903 GLOBAL_STATE_CODE();
3904
Kevin Wolfb9988752014-04-03 12:09:34 +02003905 /* if snapshot, we create a temporary backing file and open it
3906 instead of opening 'filename' directly */
3907
3908 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003909 total_size = bdrv_getlength(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02003910
Kevin Wolff1877432014-04-04 17:07:19 +02003911 if (total_size < 0) {
3912 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003913 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003914 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003915
3916 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003917 tmp_filename = create_tmp_file(errp);
3918 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003919 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003920 }
3921
Max Reitzef810432014-12-02 18:32:42 +01003922 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003923 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003924 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003925 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003926 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003927 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003928 error_prepend(errp, "Could not create temporary overlay '%s': ",
3929 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003930 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003931 }
3932
Kevin Wolf73176be2016-03-07 13:02:15 +01003933 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003934 qdict_put_str(snapshot_options, "file.driver", "file");
3935 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3936 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003937
Max Reitz5b363932016-05-17 16:41:31 +02003938 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003939 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003940 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003941 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003942 }
3943
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003944 ret = bdrv_append(bs_snapshot, bs, errp);
3945 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003946 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003947 goto out;
3948 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003949
3950out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003951 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003952 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003953}
3954
Max Reitzda557aa2013-12-20 19:28:11 +01003955/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003956 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003957 *
3958 * options is a QDict of options to pass to the block drivers, or NULL for an
3959 * empty set of options. The reference to the QDict belongs to the block layer
3960 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003961 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003962 *
3963 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3964 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003965 *
3966 * The reference parameter may be used to specify an existing block device which
3967 * should be opened. If specified, neither options nor a filename may be given,
3968 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003969 */
Kevin Wolf32192302023-01-26 18:24:32 +01003970static BlockDriverState * no_coroutine_fn
3971bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3972 int flags, BlockDriverState *parent,
3973 const BdrvChildClass *child_class, BdrvChildRole child_role,
Kevin Wolf7ead9462024-04-25 14:56:02 +02003974 bool parse_filename, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003975{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003976 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003977 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003978 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003979 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003980 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003981 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003982 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003983 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003984 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003985 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003986
Max Reitzbd86fb92020-05-13 13:05:13 +02003987 assert(!child_class || !flags);
3988 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003989 GLOBAL_STATE_CODE();
Kevin Wolf32192302023-01-26 18:24:32 +01003990 assert(!qemu_in_coroutine());
Max Reitzf67503e2014-02-18 18:33:05 +01003991
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003992 /* TODO We'll eventually have to take a writer lock in this function */
3993 GRAPH_RDLOCK_GUARD_MAINLOOP();
3994
Max Reitzddf56362014-02-18 18:33:06 +01003995 if (reference) {
3996 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003997 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003998
Max Reitzddf56362014-02-18 18:33:06 +01003999 if (filename || options_non_empty) {
4000 error_setg(errp, "Cannot reference an existing block device with "
4001 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02004002 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01004003 }
4004
4005 bs = bdrv_lookup_bs(reference, reference, errp);
4006 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02004007 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01004008 }
Kevin Wolf76b22322016-04-04 17:11:13 +02004009
Max Reitzddf56362014-02-18 18:33:06 +01004010 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02004011 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01004012 }
4013
Max Reitz5b363932016-05-17 16:41:31 +02004014 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01004015
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004016 /* NULL means an empty set of options */
4017 if (options == NULL) {
4018 options = qdict_new();
4019 }
4020
Kevin Wolf145f5982015-05-08 16:15:03 +02004021 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolf7ead9462024-04-25 14:56:02 +02004022 if (parse_filename) {
4023 parse_json_protocol(options, &filename, &local_err);
4024 if (local_err) {
4025 goto fail;
4026 }
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004027 }
4028
Kevin Wolf145f5982015-05-08 16:15:03 +02004029 bs->explicit_options = qdict_clone_shallow(options);
4030
Max Reitzbd86fb92020-05-13 13:05:13 +02004031 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02004032 bool parent_is_format;
4033
4034 if (parent->drv) {
4035 parent_is_format = parent->drv->is_format;
4036 } else {
4037 /*
4038 * parent->drv is not set yet because this node is opened for
4039 * (potential) format probing. That means that @parent is going
4040 * to be a format node.
4041 */
4042 parent_is_format = true;
4043 }
4044
Kevin Wolfbddcec32015-04-09 18:47:50 +02004045 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004046 child_class->inherit_options(child_role, parent_is_format,
4047 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004048 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004049 }
4050
Kevin Wolf7ead9462024-04-25 14:56:02 +02004051 ret = bdrv_fill_options(&options, filename, &flags, parse_filename,
4052 &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02004053 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02004054 goto fail;
4055 }
4056
Markus Armbruster129c7d12017-03-30 19:43:12 +02004057 /*
4058 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
4059 * Caution: getting a boolean member of @options requires care.
4060 * When @options come from -blockdev or blockdev_add, members are
4061 * typed according to the QAPI schema, but when they come from
4062 * -drive, they're all QString.
4063 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004064 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
4065 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
4066 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
4067 } else {
4068 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03004069 }
4070
4071 if (flags & BDRV_O_SNAPSHOT) {
4072 snapshot_options = qdict_new();
4073 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
4074 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004075 /* Let bdrv_backing_options() override "read-only" */
4076 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02004077 bdrv_inherited_options(BDRV_CHILD_COW, true,
4078 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03004079 }
4080
Kevin Wolf62392eb2015-04-24 16:38:02 +02004081 bs->open_flags = flags;
4082 bs->options = options;
4083 options = qdict_clone_shallow(options);
4084
Kevin Wolf76c591b2014-06-04 14:19:44 +02004085 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02004086 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02004087 drvname = qdict_get_try_str(options, "driver");
4088 if (drvname) {
4089 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004090 if (!drv) {
4091 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004092 goto fail;
4093 }
4094 }
4095
4096 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02004097
Markus Armbruster129c7d12017-03-30 19:43:12 +02004098 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004099 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01004100 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
4101 (backing && *backing == '\0'))
4102 {
Max Reitz4f7be282018-02-24 16:40:33 +01004103 if (backing) {
4104 warn_report("Use of \"backing\": \"\" is deprecated; "
4105 "use \"backing\": null instead");
4106 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004107 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01004108 qdict_del(bs->explicit_options, "backing");
4109 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004110 qdict_del(options, "backing");
4111 }
4112
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004113 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004114 * probing, the block drivers will do their own bdrv_open_child() for the
4115 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02004116 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004117 BlockDriverState *file_bs;
4118
4119 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02004120 &child_of_bds, BDRV_CHILD_IMAGE,
Kevin Wolf7ead9462024-04-25 14:56:02 +02004121 true, true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02004122 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01004123 goto fail;
4124 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004125 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01004126 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4127 * looking at the header to guess the image format. This works even
4128 * in cases where a guest would not see a consistent state. */
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05004129 AioContext *ctx = bdrv_get_aio_context(file_bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004130 file = blk_new(ctx, 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01004131 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004132 bdrv_unref(file_bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004133
Kevin Wolfd7086422017-01-13 19:02:32 +01004134 if (local_err) {
4135 goto fail;
4136 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004137
Eric Blake46f5ac22017-04-27 16:58:17 -05004138 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004139 }
Max Reitz5469a2a2014-02-18 18:33:10 +01004140 }
4141
Kevin Wolf76c591b2014-06-04 14:19:44 +02004142 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01004143 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02004144 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02004145 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02004146 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004147 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01004148 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02004149 /*
4150 * This option update would logically belong in bdrv_fill_options(),
4151 * but we first need to open bs->file for the probing to work, while
4152 * opening bs->file already requires the (mostly) final set of options
4153 * so that cache mode etc. can be inherited.
4154 *
4155 * Adding the driver later is somewhat ugly, but it's not an option
4156 * that would ever be inherited, so it's correct. We just need to make
4157 * sure to update both bs->options (which has the full effective
4158 * options for bs) and options (which has file.* already removed).
4159 */
Eric Blake46f5ac22017-04-27 16:58:17 -05004160 qdict_put_str(bs->options, "driver", drv->format_name);
4161 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004162 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02004163 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02004164 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01004165 }
4166
Max Reitz53a29512015-03-19 14:53:16 -04004167 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
Paolo Bonzini41770f62022-11-24 16:21:18 +01004168 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->protocol_name);
Max Reitz53a29512015-03-19 14:53:16 -04004169 /* file must be NULL if a protocol BDS is about to be created
4170 * (the inverse results in an error message from bdrv_open_common()) */
4171 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4172
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004173 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01004174 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004175 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004176 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004177 }
4178
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004179 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004180 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004181 file = NULL;
4182 }
4183
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004184 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004185 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004186 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004187 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004188 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004189 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004190 }
4191
Alberto Garcia50196d72018-09-06 12:37:03 +03004192 /* Remove all children options and references
4193 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004194 QLIST_FOREACH(child, &bs->children, next) {
4195 char *child_key_dot;
4196 child_key_dot = g_strdup_printf("%s.", child->name);
4197 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4198 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004199 qdict_del(bs->explicit_options, child->name);
4200 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004201 g_free(child_key_dot);
4202 }
4203
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004204 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004205 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004206 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004207 if (flags & BDRV_O_PROTOCOL) {
4208 error_setg(errp, "Block protocol '%s' doesn't support the option "
4209 "'%s'", drv->format_name, entry->key);
4210 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004211 error_setg(errp,
4212 "Block format '%s' does not support the option '%s'",
4213 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004214 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004215
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004216 goto close_and_fail;
4217 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004218
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004219 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004220
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004221 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004222 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004223
4224 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4225 * temporary snapshot afterwards. */
4226 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004227 BlockDriverState *snapshot_bs;
4228 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4229 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004230 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004231 if (local_err) {
4232 goto close_and_fail;
4233 }
Max Reitz5b363932016-05-17 16:41:31 +02004234 /* We are not going to return bs but the overlay on top of it
4235 * (snapshot_bs); thus, we have to drop the strong reference to bs
4236 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4237 * though, because the overlay still has a reference to it. */
4238 bdrv_unref(bs);
4239 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004240 }
4241
Max Reitz5b363932016-05-17 16:41:31 +02004242 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004243
Kevin Wolf8bfea152014-04-11 19:16:36 +02004244fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004245 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004246 qobject_unref(snapshot_options);
4247 qobject_unref(bs->explicit_options);
4248 qobject_unref(bs->options);
4249 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004250 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004251 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004252 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004253 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004254 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004255
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004256close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02004257 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004258 qobject_unref(snapshot_options);
4259 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004260 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004261 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004262}
4263
Max Reitz5b363932016-05-17 16:41:31 +02004264BlockDriverState *bdrv_open(const char *filename, const char *reference,
4265 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004266{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004267 GLOBAL_STATE_CODE();
4268
Max Reitz5b363932016-05-17 16:41:31 +02004269 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Kevin Wolf7ead9462024-04-25 14:56:02 +02004270 NULL, 0, true, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004271}
4272
Alberto Garciafaf116b2019-03-12 18:48:49 +02004273/* Return true if the NULL-terminated @list contains @str */
4274static bool is_str_in_list(const char *str, const char *const *list)
4275{
4276 if (str && list) {
4277 int i;
4278 for (i = 0; list[i] != NULL; i++) {
4279 if (!strcmp(str, list[i])) {
4280 return true;
4281 }
4282 }
4283 }
4284 return false;
4285}
4286
4287/*
4288 * Check that every option set in @bs->options is also set in
4289 * @new_opts.
4290 *
4291 * Options listed in the common_options list and in
4292 * @bs->drv->mutable_opts are skipped.
4293 *
4294 * Return 0 on success, otherwise return -EINVAL and set @errp.
4295 */
4296static int bdrv_reset_options_allowed(BlockDriverState *bs,
4297 const QDict *new_opts, Error **errp)
4298{
4299 const QDictEntry *e;
4300 /* These options are common to all block drivers and are handled
4301 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4302 const char *const common_options[] = {
4303 "node-name", "discard", "cache.direct", "cache.no-flush",
4304 "read-only", "auto-read-only", "detect-zeroes", NULL
4305 };
4306
4307 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4308 if (!qdict_haskey(new_opts, e->key) &&
4309 !is_str_in_list(e->key, common_options) &&
4310 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4311 error_setg(errp, "Option '%s' cannot be reset "
4312 "to its default value", e->key);
4313 return -EINVAL;
4314 }
4315 }
4316
4317 return 0;
4318}
4319
Jeff Codye971aa12012-09-20 15:13:19 -04004320/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004321 * Returns true if @child can be reached recursively from @bs
4322 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004323static bool GRAPH_RDLOCK
4324bdrv_recurse_has_child(BlockDriverState *bs, BlockDriverState *child)
Alberto Garciacb828c32019-03-12 18:48:47 +02004325{
4326 BdrvChild *c;
4327
4328 if (bs == child) {
4329 return true;
4330 }
4331
4332 QLIST_FOREACH(c, &bs->children, next) {
4333 if (bdrv_recurse_has_child(c->bs, child)) {
4334 return true;
4335 }
4336 }
4337
4338 return false;
4339}
4340
4341/*
Jeff Codye971aa12012-09-20 15:13:19 -04004342 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4343 * reopen of multiple devices.
4344 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004345 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004346 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4347 * be created and initialized. This newly created BlockReopenQueue should be
4348 * passed back in for subsequent calls that are intended to be of the same
4349 * atomic 'set'.
4350 *
4351 * bs is the BlockDriverState to add to the reopen queue.
4352 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004353 * options contains the changed options for the associated bs
4354 * (the BlockReopenQueue takes ownership)
4355 *
Jeff Codye971aa12012-09-20 15:13:19 -04004356 * flags contains the open flags for the associated bs
4357 *
4358 * returns a pointer to bs_queue, which is either the newly allocated
4359 * bs_queue, or the existing bs_queue being used.
4360 *
Fiona Ebnere1d681b2025-05-30 17:10:39 +02004361 * bs must be drained.
Jeff Codye971aa12012-09-20 15:13:19 -04004362 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004363static BlockReopenQueue * GRAPH_RDLOCK
4364bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, BlockDriverState *bs,
4365 QDict *options, const BdrvChildClass *klass,
4366 BdrvChildRole role, bool parent_is_format,
4367 QDict *parent_options, int parent_flags,
4368 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004369{
4370 assert(bs != NULL);
4371
4372 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004373 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004374 QDict *old_options, *explicit_options, *options_copy;
4375 int flags;
4376 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004377
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004378 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004379
Fiona Ebnere1d681b2025-05-30 17:10:39 +02004380 assert(bs->quiesce_counter > 0);
Kevin Wolfd22933a2022-11-18 18:41:02 +01004381
Jeff Codye971aa12012-09-20 15:13:19 -04004382 if (bs_queue == NULL) {
4383 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004384 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004385 }
4386
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004387 if (!options) {
4388 options = qdict_new();
4389 }
4390
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004391 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004392 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004393 if (bs == bs_entry->state.bs) {
4394 break;
4395 }
4396 }
4397
Kevin Wolf28518102015-05-08 17:07:31 +02004398 /*
4399 * Precedence of options:
4400 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004401 * 2. Retained from explicitly set options of bs
4402 * 3. Inherited from parent node
4403 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004404 */
4405
Kevin Wolf145f5982015-05-08 16:15:03 +02004406 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004407 if (bs_entry || keep_old_opts) {
4408 old_options = qdict_clone_shallow(bs_entry ?
4409 bs_entry->state.explicit_options :
4410 bs->explicit_options);
4411 bdrv_join_options(bs, options, old_options);
4412 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004413 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004414
4415 explicit_options = qdict_clone_shallow(options);
4416
Kevin Wolf28518102015-05-08 17:07:31 +02004417 /* Inherit from parent node */
4418 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004419 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004420 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004421 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004422 } else {
4423 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004424 }
4425
Alberto Garcia077e8e22019-03-12 18:48:44 +02004426 if (keep_old_opts) {
4427 /* Old values are used for options that aren't set yet */
4428 old_options = qdict_clone_shallow(bs->options);
4429 bdrv_join_options(bs, options, old_options);
4430 qobject_unref(old_options);
4431 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004432
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004433 /* We have the final set of options so let's update the flags */
4434 options_copy = qdict_clone_shallow(options);
4435 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4436 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4437 update_flags_from_options(&flags, opts);
4438 qemu_opts_del(opts);
4439 qobject_unref(options_copy);
4440
Kevin Wolffd452022017-08-03 17:02:59 +02004441 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004442 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004443 if (flags & BDRV_O_RDWR) {
4444 flags |= BDRV_O_ALLOW_RDWR;
4445 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004446
Kevin Wolf1857c972017-09-14 14:53:46 +02004447 if (!bs_entry) {
4448 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004449 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004450 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004451 qobject_unref(bs_entry->state.options);
4452 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004453 }
4454
4455 bs_entry->state.bs = bs;
4456 bs_entry->state.options = options;
4457 bs_entry->state.explicit_options = explicit_options;
4458 bs_entry->state.flags = flags;
4459
Alberto Garcia85466322019-03-12 18:48:45 +02004460 /*
4461 * If keep_old_opts is false then it means that unspecified
4462 * options must be reset to their original value. We don't allow
4463 * resetting 'backing' but we need to know if the option is
4464 * missing in order to decide if we have to return an error.
4465 */
4466 if (!keep_old_opts) {
4467 bs_entry->state.backing_missing =
4468 !qdict_haskey(options, "backing") &&
4469 !qdict_haskey(options, "backing.driver");
4470 }
4471
Kevin Wolf67251a32015-04-09 18:54:04 +02004472 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004473 QDict *new_child_options = NULL;
4474 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004475
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004476 /* reopen can only change the options of block devices that were
4477 * implicitly created and inherited options. For other (referenced)
4478 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004479 if (child->bs->inherits_from != bs) {
4480 continue;
4481 }
4482
Alberto Garcia85466322019-03-12 18:48:45 +02004483 /* Check if the options contain a child reference */
4484 if (qdict_haskey(options, child->name)) {
4485 const char *childref = qdict_get_try_str(options, child->name);
4486 /*
4487 * The current child must not be reopened if the child
4488 * reference is null or points to a different node.
4489 */
4490 if (g_strcmp0(childref, child->bs->node_name)) {
4491 continue;
4492 }
4493 /*
4494 * If the child reference points to the current child then
4495 * reopen it with its existing set of options (note that
4496 * it can still inherit new options from the parent).
4497 */
4498 child_keep_old = true;
4499 } else {
4500 /* Extract child options ("child-name.*") */
4501 char *child_key_dot = g_strdup_printf("%s.", child->name);
4502 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4503 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4504 g_free(child_key_dot);
4505 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004506
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004507 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004508 child->klass, child->role, bs->drv->is_format,
4509 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004510 }
4511
Jeff Codye971aa12012-09-20 15:13:19 -04004512 return bs_queue;
4513}
4514
Kevin Wolf28518102015-05-08 17:07:31 +02004515BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4516 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004517 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004518{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004519 GLOBAL_STATE_CODE();
Fiona Ebnere1d681b2025-05-30 17:10:39 +02004520
4521 if (bs_queue == NULL) {
4522 /* Paired with bdrv_drain_all_end() in bdrv_reopen_queue_free(). */
4523 bdrv_drain_all_begin();
4524 }
4525
Kevin Wolfce433d22023-09-29 16:51:43 +02004526 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004527
Max Reitz3cdc69d2020-05-13 13:05:18 +02004528 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4529 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004530}
4531
Alberto Garciaab5b52282021-07-08 13:47:05 +02004532void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4533{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004534 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004535 if (bs_queue) {
4536 BlockReopenQueueEntry *bs_entry, *next;
4537 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
4538 qobject_unref(bs_entry->state.explicit_options);
4539 qobject_unref(bs_entry->state.options);
4540 g_free(bs_entry);
4541 }
4542 g_free(bs_queue);
Fiona Ebnere1d681b2025-05-30 17:10:39 +02004543
4544 /* Paired with bdrv_drain_all_begin() in bdrv_reopen_queue(). */
4545 bdrv_drain_all_end();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004546 }
4547}
4548
Jeff Codye971aa12012-09-20 15:13:19 -04004549/*
4550 * Reopen multiple BlockDriverStates atomically & transactionally.
4551 *
4552 * The queue passed in (bs_queue) must have been built up previous
4553 * via bdrv_reopen_queue().
4554 *
4555 * Reopens all BDS specified in the queue, with the appropriate
4556 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004557 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004558 * data cleaned up.
4559 *
4560 * If all devices prepare successfully, then the changes are committed
4561 * to all devices.
4562 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004563 * All affected nodes must be drained between bdrv_reopen_queue() and
4564 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004565 *
4566 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004567 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004568int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004569{
4570 int ret = -1;
4571 BlockReopenQueueEntry *bs_entry, *next;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004572 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004573 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004574
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004575 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004576 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004577 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004578
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004579 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004580 ret = bdrv_flush(bs_entry->state.bs);
4581 if (ret < 0) {
4582 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004583 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004584 }
4585 }
4586
4587 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004588 assert(bs_entry->state.bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004589 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
4590 if (ret < 0) {
4591 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004592 }
4593 bs_entry->prepared = true;
4594 }
4595
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004596 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004597 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004598
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004599 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004600 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004601 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004602 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004603 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004604 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004605 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004606 }
4607
4608 /*
4609 * Note that file-posix driver rely on permission update done during reopen
4610 * (even if no permission changed), because it wants "new" permissions for
4611 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4612 * in raw_reopen_prepare() which is called with "old" permissions.
4613 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004614 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004615 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004616 bdrv_graph_rdunlock_main_loop();
4617
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004618 if (ret < 0) {
4619 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004620 }
4621
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004622 /*
4623 * If we reach this point, we have success and just need to apply the
4624 * changes.
4625 *
4626 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4627 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4628 * children are usually goes after parents in reopen-queue, so go from last
4629 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004630 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004631 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Jeff Codye971aa12012-09-20 15:13:19 -04004632 bdrv_reopen_commit(&bs_entry->state);
4633 }
4634
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004635 bdrv_graph_wrlock();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004636 tran_commit(tran);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004637 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004638
4639 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4640 BlockDriverState *bs = bs_entry->state.bs;
4641
4642 if (bs->drv->bdrv_reopen_commit_post) {
4643 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
4644 }
4645 }
4646
Jeff Codye971aa12012-09-20 15:13:19 -04004647 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004648 goto cleanup;
4649
4650abort:
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004651 bdrv_graph_wrlock();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004652 tran_abort(tran);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004653 bdrv_graph_wrunlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004654
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004655 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004656 if (bs_entry->prepared) {
4657 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004658 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004659 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004660
Jeff Codye971aa12012-09-20 15:13:19 -04004661cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004662 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004663
Jeff Codye971aa12012-09-20 15:13:19 -04004664 return ret;
4665}
4666
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004667int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4668 Error **errp)
4669{
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004670 BlockReopenQueue *queue;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004671
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004672 GLOBAL_STATE_CODE();
4673
Kevin Wolf2e117862022-11-18 18:41:01 +01004674 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4675
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05004676 return bdrv_reopen_multiple(queue, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004677}
4678
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004679int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4680 Error **errp)
4681{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004682 QDict *opts = qdict_new();
4683
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004684 GLOBAL_STATE_CODE();
4685
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004686 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4687
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004688 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004689}
4690
Jeff Codye971aa12012-09-20 15:13:19 -04004691/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004692 * Take a BDRVReopenState and check if the value of 'backing' in the
4693 * reopen_state->options QDict is valid or not.
4694 *
4695 * If 'backing' is missing from the QDict then return 0.
4696 *
4697 * If 'backing' contains the node name of the backing file of
4698 * reopen_state->bs then return 0.
4699 *
4700 * If 'backing' contains a different node name (or is null) then check
4701 * whether the current backing file can be replaced with the new one.
4702 * If that's the case then reopen_state->replace_backing_bs is set to
4703 * true and reopen_state->new_backing_bs contains a pointer to the new
4704 * backing BlockDriverState (or NULL).
4705 *
Kevin Wolf5661a002023-09-11 11:46:10 +02004706 * After calling this function, the transaction @tran may only be completed
4707 * while holding a writer lock for the graph.
4708 *
Alberto Garciacb828c32019-03-12 18:48:47 +02004709 * Return 0 on success, otherwise return < 0 and set @errp.
Kevin Wolf4b408662023-06-05 10:57:06 +02004710 *
Kevin Wolf4b408662023-06-05 10:57:06 +02004711 * @reopen_state->bs can move to a different AioContext in this function.
Alberto Garciacb828c32019-03-12 18:48:47 +02004712 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004713static int GRAPH_UNLOCKED
4714bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4715 bool is_backing, Transaction *tran,
4716 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004717{
4718 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004719 BlockDriverState *new_child_bs;
Kevin Wolf004915a2023-10-27 17:53:26 +02004720 BlockDriverState *old_child_bs;
4721
Alberto Garciaecd30d22021-06-10 15:05:36 +03004722 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004723 QObject *value;
4724 const char *str;
Kevin Wolfce433d22023-09-29 16:51:43 +02004725 bool has_child;
Kevin Wolf4b408662023-06-05 10:57:06 +02004726 int ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004727
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004728 GLOBAL_STATE_CODE();
4729
Alberto Garciaecd30d22021-06-10 15:05:36 +03004730 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004731 if (value == NULL) {
4732 return 0;
4733 }
4734
Kevin Wolf430da832023-10-27 17:53:16 +02004735 bdrv_graph_rdlock_main_loop();
4736
Alberto Garciacb828c32019-03-12 18:48:47 +02004737 switch (qobject_type(value)) {
4738 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004739 assert(is_backing); /* The 'file' option does not allow a null value */
4740 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004741 break;
4742 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004743 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004744 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4745 if (new_child_bs == NULL) {
Kevin Wolf430da832023-10-27 17:53:16 +02004746 ret = -EINVAL;
4747 goto out_rdlock;
Kevin Wolfce433d22023-09-29 16:51:43 +02004748 }
4749
Kevin Wolfce433d22023-09-29 16:51:43 +02004750 has_child = bdrv_recurse_has_child(new_child_bs, bs);
Kevin Wolfce433d22023-09-29 16:51:43 +02004751 if (has_child) {
Alberto Garciaecd30d22021-06-10 15:05:36 +03004752 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4753 "cycle", str, child_name, bs->node_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004754 ret = -EINVAL;
4755 goto out_rdlock;
Alberto Garciacb828c32019-03-12 18:48:47 +02004756 }
4757 break;
4758 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004759 /*
4760 * The options QDict has been flattened, so 'backing' and 'file'
4761 * do not allow any other data type here.
4762 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004763 g_assert_not_reached();
4764 }
4765
Kevin Wolf004915a2023-10-27 17:53:26 +02004766 old_child_bs = is_backing ? child_bs(bs->backing) : child_bs(bs->file);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004767 if (old_child_bs == new_child_bs) {
Kevin Wolf430da832023-10-27 17:53:16 +02004768 ret = 0;
4769 goto out_rdlock;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004770 }
4771
4772 if (old_child_bs) {
4773 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Kevin Wolf430da832023-10-27 17:53:16 +02004774 ret = 0;
4775 goto out_rdlock;
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004776 }
4777
Alberto Garciaecd30d22021-06-10 15:05:36 +03004778 if (old_child_bs->implicit) {
4779 error_setg(errp, "Cannot replace implicit %s child of %s",
4780 child_name, bs->node_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004781 ret = -EPERM;
4782 goto out_rdlock;
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004783 }
4784 }
4785
Alberto Garciaecd30d22021-06-10 15:05:36 +03004786 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004787 /*
4788 * Filters always have a file or a backing child, so we are trying to
4789 * change wrong child
4790 */
4791 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004792 "%s child", bs->node_name, bs->drv->format_name, child_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004793 ret = -EINVAL;
4794 goto out_rdlock;
Max Reitz1d42f482019-06-12 17:24:39 +02004795 }
4796
Alberto Garciaecd30d22021-06-10 15:05:36 +03004797 if (is_backing) {
4798 reopen_state->old_backing_bs = old_child_bs;
4799 } else {
4800 reopen_state->old_file_bs = old_child_bs;
4801 }
4802
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004803 if (old_child_bs) {
4804 bdrv_ref(old_child_bs);
4805 bdrv_drained_begin(old_child_bs);
4806 }
4807
Kevin Wolf430da832023-10-27 17:53:16 +02004808 bdrv_graph_rdunlock_main_loop();
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004809 bdrv_graph_wrlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004810
Kevin Wolf4b408662023-06-05 10:57:06 +02004811 ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4812 tran, errp);
4813
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05004814 bdrv_graph_wrunlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004815
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004816 if (old_child_bs) {
4817 bdrv_drained_end(old_child_bs);
4818 bdrv_unref(old_child_bs);
4819 }
4820
Kevin Wolf4b408662023-06-05 10:57:06 +02004821 return ret;
Kevin Wolf430da832023-10-27 17:53:16 +02004822
4823out_rdlock:
4824 bdrv_graph_rdunlock_main_loop();
4825 return ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004826}
4827
4828/*
Jeff Codye971aa12012-09-20 15:13:19 -04004829 * Prepares a BlockDriverState for reopen. All changes are staged in the
4830 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4831 * the block driver layer .bdrv_reopen_prepare()
4832 *
4833 * bs is the BlockDriverState to reopen
4834 * flags are the new open flags
4835 * queue is the reopen queue
4836 *
4837 * Returns 0 on success, non-zero on error. On error errp will be set
4838 * as well.
4839 *
4840 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4841 * It is the responsibility of the caller to then call the abort() or
4842 * commit() for any other BDS that have been left in a prepare() state
4843 *
Kevin Wolf5661a002023-09-11 11:46:10 +02004844 * After calling this function, the transaction @change_child_tran may only be
4845 * completed while holding a writer lock for the graph.
Jeff Codye971aa12012-09-20 15:13:19 -04004846 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004847static int GRAPH_UNLOCKED
4848bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4849 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004850{
4851 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004852 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004853 Error *local_err = NULL;
4854 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004855 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004856 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004857 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004858 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004859 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004860
4861 assert(reopen_state != NULL);
4862 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004863 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004864 drv = reopen_state->bs->drv;
4865
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004866 /* This function and each driver's bdrv_reopen_prepare() remove
4867 * entries from reopen_state->options as they are processed, so
4868 * we need to make a copy of the original QDict. */
4869 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4870
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004871 /* Process generic block layer options */
4872 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004873 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004874 ret = -EINVAL;
4875 goto error;
4876 }
4877
Alberto Garciae6d79c42018-11-12 16:00:47 +02004878 /* This was already called in bdrv_reopen_queue_child() so the flags
4879 * are up-to-date. This time we simply want to remove the options from
4880 * QemuOpts in order to indicate that they have been processed. */
4881 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004882 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004883 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004884
Alberto Garcia415bbca2018-10-03 13:23:13 +03004885 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004886 if (discard != NULL) {
4887 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4888 error_setg(errp, "Invalid discard option");
4889 ret = -EINVAL;
4890 goto error;
4891 }
4892 }
4893
Alberto Garcia543770b2018-09-06 12:37:09 +03004894 reopen_state->detect_zeroes =
4895 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4896 if (local_err) {
4897 error_propagate(errp, local_err);
4898 ret = -EINVAL;
4899 goto error;
4900 }
4901
Alberto Garcia57f9db92018-09-06 12:37:06 +03004902 /* All other options (including node-name and driver) must be unchanged.
4903 * Put them back into the QDict, so that they are checked at the end
4904 * of this function. */
4905 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004906
Jeff Cody3d8ce172017-04-07 16:55:30 -04004907 /* If we are to stay read-only, do not allow permission change
4908 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4909 * not set, or if the BDS still has copy_on_read enabled */
4910 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004911
4912 bdrv_graph_rdlock_main_loop();
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004913 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004914 bdrv_graph_rdunlock_main_loop();
Jeff Cody3d8ce172017-04-07 16:55:30 -04004915 if (local_err) {
4916 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004917 goto error;
4918 }
4919
Jeff Codye971aa12012-09-20 15:13:19 -04004920 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004921 /*
4922 * If a driver-specific option is missing, it means that we
4923 * should reset it to its default value.
4924 * But not all options allow that, so we need to check it first.
4925 */
4926 ret = bdrv_reset_options_allowed(reopen_state->bs,
4927 reopen_state->options, errp);
4928 if (ret) {
4929 goto error;
4930 }
4931
Jeff Codye971aa12012-09-20 15:13:19 -04004932 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4933 if (ret) {
4934 if (local_err != NULL) {
4935 error_propagate(errp, local_err);
4936 } else {
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02004937 bdrv_graph_rdlock_main_loop();
Max Reitzf30c66b2019-02-01 20:29:05 +01004938 bdrv_refresh_filename(reopen_state->bs);
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02004939 bdrv_graph_rdunlock_main_loop();
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004940 error_setg(errp, "failed while preparing to reopen image '%s'",
4941 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004942 }
4943 goto error;
4944 }
4945 } else {
4946 /* It is currently mandatory to have a bdrv_reopen_prepare()
4947 * handler for each supported drv. */
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004948 bdrv_graph_rdlock_main_loop();
Alberto Garcia81e5f782015-04-08 12:29:19 +03004949 error_setg(errp, "Block format '%s' used by node '%s' "
4950 "does not support reopening files", drv->format_name,
4951 bdrv_get_device_or_node_name(reopen_state->bs));
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004952 bdrv_graph_rdunlock_main_loop();
Jeff Codye971aa12012-09-20 15:13:19 -04004953 ret = -1;
4954 goto error;
4955 }
4956
Max Reitz9ad08c42018-11-16 17:45:24 +01004957 drv_prepared = true;
4958
Alberto Garciabacd9b82019-03-12 18:48:46 +02004959 /*
4960 * We must provide the 'backing' option if the BDS has a backing
4961 * file or if the image file has a backing file name as part of
4962 * its metadata. Otherwise the 'backing' option can be omitted.
4963 */
Kevin Wolf004915a2023-10-27 17:53:26 +02004964 bdrv_graph_rdlock_main_loop();
Alberto Garciabacd9b82019-03-12 18:48:46 +02004965 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004966 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004967 error_setg(errp, "backing is missing for '%s'",
4968 reopen_state->bs->node_name);
Kevin Wolf004915a2023-10-27 17:53:26 +02004969 bdrv_graph_rdunlock_main_loop();
Alberto Garcia85466322019-03-12 18:48:45 +02004970 ret = -EINVAL;
4971 goto error;
4972 }
Kevin Wolf004915a2023-10-27 17:53:26 +02004973 bdrv_graph_rdunlock_main_loop();
Alberto Garcia85466322019-03-12 18:48:45 +02004974
Alberto Garciacb828c32019-03-12 18:48:47 +02004975 /*
4976 * Allow changing the 'backing' option. The new value can be
4977 * either a reference to an existing node (using its node name)
4978 * or NULL to simply detach the current backing file.
4979 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004980 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4981 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004982 if (ret < 0) {
4983 goto error;
4984 }
4985 qdict_del(reopen_state->options, "backing");
4986
Alberto Garciaecd30d22021-06-10 15:05:36 +03004987 /* Allow changing the 'file' option. In this case NULL is not allowed */
4988 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4989 change_child_tran, errp);
4990 if (ret < 0) {
4991 goto error;
4992 }
4993 qdict_del(reopen_state->options, "file");
4994
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004995 /* Options that are not handled are only okay if they are unchanged
4996 * compared to the old state. It is expected that some options are only
4997 * used for the initial open, but not reopen (e.g. filename) */
4998 if (qdict_size(reopen_state->options)) {
4999 const QDictEntry *entry = qdict_first(reopen_state->options);
5000
Kevin Wolfce433d22023-09-29 16:51:43 +02005001 GRAPH_RDLOCK_GUARD_MAINLOOP();
5002
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005003 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01005004 QObject *new = entry->value;
5005 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005006
Alberto Garciadb905282018-09-06 12:37:05 +03005007 /* Allow child references (child_name=node_name) as long as they
5008 * point to the current child (i.e. everything stays the same). */
5009 if (qobject_type(new) == QTYPE_QSTRING) {
5010 BdrvChild *child;
5011 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
5012 if (!strcmp(child->name, entry->key)) {
5013 break;
5014 }
5015 }
5016
5017 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01005018 if (!strcmp(child->bs->node_name,
5019 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03005020 continue; /* Found child with this name, skip option */
5021 }
5022 }
5023 }
5024
Max Reitz54fd1b02017-11-14 19:01:26 +01005025 /*
5026 * TODO: When using -drive to specify blockdev options, all values
5027 * will be strings; however, when using -blockdev, blockdev-add or
5028 * filenames using the json:{} pseudo-protocol, they will be
5029 * correctly typed.
5030 * In contrast, reopening options are (currently) always strings
5031 * (because you can only specify them through qemu-io; all other
5032 * callers do not specify any options).
5033 * Therefore, when using anything other than -drive to create a BDS,
5034 * this cannot detect non-string options as unchanged, because
5035 * qobject_is_equal() always returns false for objects of different
5036 * type. In the future, this should be remedied by correctly typing
5037 * all options. For now, this is not too big of an issue because
5038 * the user can simply omit options which cannot be changed anyway,
5039 * so they will stay unchanged.
5040 */
5041 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005042 error_setg(errp, "Cannot change the option '%s'", entry->key);
5043 ret = -EINVAL;
5044 goto error;
5045 }
5046 } while ((entry = qdict_next(reopen_state->options, entry)));
5047 }
5048
Jeff Codye971aa12012-09-20 15:13:19 -04005049 ret = 0;
5050
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005051 /* Restore the original reopen_state->options QDict */
5052 qobject_unref(reopen_state->options);
5053 reopen_state->options = qobject_ref(orig_reopen_opts);
5054
Jeff Codye971aa12012-09-20 15:13:19 -04005055error:
Max Reitz9ad08c42018-11-16 17:45:24 +01005056 if (ret < 0 && drv_prepared) {
5057 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
5058 * call drv->bdrv_reopen_abort() before signaling an error
5059 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
5060 * when the respective bdrv_reopen_prepare() has failed) */
5061 if (drv->bdrv_reopen_abort) {
5062 drv->bdrv_reopen_abort(reopen_state);
5063 }
5064 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02005065 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005066 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03005067 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04005068 return ret;
5069}
5070
5071/*
5072 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
5073 * makes them final by swapping the staging BlockDriverState contents into
5074 * the active BlockDriverState contents.
5075 */
Kevin Wolfce433d22023-09-29 16:51:43 +02005076static void GRAPH_UNLOCKED bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005077{
5078 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005079 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03005080 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04005081
5082 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005083 bs = reopen_state->bs;
5084 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04005085 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005086 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005087
5088 /* If there are any driver level actions to take */
5089 if (drv->bdrv_reopen_commit) {
5090 drv->bdrv_reopen_commit(reopen_state);
5091 }
5092
Kevin Wolfce433d22023-09-29 16:51:43 +02005093 GRAPH_RDLOCK_GUARD_MAINLOOP();
5094
Jeff Codye971aa12012-09-20 15:13:19 -04005095 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005096 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005097 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02005098 qobject_ref(reopen_state->explicit_options);
5099 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02005100
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005101 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005102 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005103 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03005104 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01005105
Alberto Garcia50196d72018-09-06 12:37:03 +03005106 /* Remove child references from bs->options and bs->explicit_options.
5107 * Child options were already removed in bdrv_reopen_queue_child() */
5108 QLIST_FOREACH(child, &bs->children, next) {
5109 qdict_del(bs->explicit_options, child->name);
5110 qdict_del(bs->options, child->name);
5111 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03005112 /* backing is probably removed, so it's not handled by previous loop */
5113 qdict_del(bs->explicit_options, "backing");
5114 qdict_del(bs->options, "backing");
5115
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005116 bdrv_refresh_limits(bs, NULL, NULL);
Paolo Bonzini439cc332023-04-07 17:32:58 +02005117 bdrv_refresh_total_sectors(bs, bs->total_sectors);
Jeff Codye971aa12012-09-20 15:13:19 -04005118}
5119
5120/*
5121 * Abort the reopen, and delete and free the staged changes in
5122 * reopen_state
5123 */
Kevin Wolfce433d22023-09-29 16:51:43 +02005124static void GRAPH_UNLOCKED bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005125{
5126 BlockDriver *drv;
5127
5128 assert(reopen_state != NULL);
5129 drv = reopen_state->bs->drv;
5130 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005131 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005132
5133 if (drv->bdrv_reopen_abort) {
5134 drv->bdrv_reopen_abort(reopen_state);
5135 }
5136}
5137
5138
Max Reitz64dff522016-01-29 16:36:10 +01005139static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00005140{
Max Reitz33384422014-06-20 21:57:33 +02005141 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005142 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02005143
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005144 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02005145 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03005146
Paolo Bonzinifc272912015-12-23 11:48:24 +01005147 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02005148 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08005149 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01005150
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02005151 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005152 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02005153 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005154 bs->drv->bdrv_close(bs);
5155 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005156 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00005157 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08005158
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005159 bdrv_graph_wrlock();
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005160 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03005161 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005162 }
5163
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005164 assert(!bs->backing);
5165 assert(!bs->file);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005166 bdrv_graph_wrunlock();
Kevin Wolf004915a2023-10-27 17:53:26 +02005167
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005168 g_free(bs->opaque);
5169 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01005170 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005171 bs->backing_file[0] = '\0';
5172 bs->backing_format[0] = '\0';
5173 bs->total_sectors = 0;
5174 bs->encrypted = false;
5175 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005176 qobject_unref(bs->options);
5177 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005178 bs->options = NULL;
5179 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005180 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005181 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02005182 g_free(bs->block_status_cache);
5183 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005184
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03005185 bdrv_release_named_dirty_bitmaps(bs);
5186 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
5187
Max Reitz33384422014-06-20 21:57:33 +02005188 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5189 g_free(ban);
5190 }
5191 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01005192 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02005193
5194 /*
5195 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5196 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5197 * gets called.
5198 */
5199 if (bs->quiesce_counter) {
5200 bdrv_drain_all_end_quiesce(bs);
5201 }
bellardb3380822004-03-14 21:38:54 +00005202}
5203
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005204void bdrv_close_all(void)
5205{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005206 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04005207 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005208
Max Reitzca9bd242016-01-29 16:36:14 +01005209 /* Drop references from requests still in flight, such as canceled block
5210 * jobs whose AIO context has not been polled yet */
5211 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005212
Max Reitzca9bd242016-01-29 16:36:14 +01005213 blk_remove_all_bs();
5214 blockdev_close_all_bdrv_states();
5215
Kevin Wolfa1a2af02016-04-08 18:26:37 +02005216 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005217}
5218
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005219static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005220{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005221 GQueue *queue;
5222 GHashTable *found;
5223 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005224
Max Reitzbd86fb92020-05-13 13:05:13 +02005225 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005226 return false;
5227 }
5228
Max Reitzec9f10f2018-06-13 20:18:15 +02005229 /* If the child @c belongs to the BDS @to, replacing the current
5230 * c->bs by @to would mean to create a loop.
5231 *
5232 * Such a case occurs when appending a BDS to a backing chain.
5233 * For instance, imagine the following chain:
5234 *
5235 * guest device -> node A -> further backing chain...
5236 *
5237 * Now we create a new BDS B which we want to put on top of this
5238 * chain, so we first attach A as its backing node:
5239 *
5240 * node B
5241 * |
5242 * v
5243 * guest device -> node A -> further backing chain...
5244 *
5245 * Finally we want to replace A by B. When doing that, we want to
5246 * replace all pointers to A by pointers to B -- except for the
5247 * pointer from B because (1) that would create a loop, and (2)
5248 * that pointer should simply stay intact:
5249 *
5250 * guest device -> node B
5251 * |
5252 * v
5253 * node A -> further backing chain...
5254 *
5255 * In general, when replacing a node A (c->bs) by a node B (@to),
5256 * if A is a child of B, that means we cannot replace A by B there
5257 * because that would create a loop. Silently detaching A from B
5258 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005259 * place there is the most sensible choice.
5260 *
5261 * We would also create a loop in any cases where @c is only
5262 * indirectly referenced by @to. Prevent this by returning false
5263 * if @c is found (by breadth-first search) anywhere in the whole
5264 * subtree of @to.
5265 */
5266
5267 ret = true;
5268 found = g_hash_table_new(NULL, NULL);
5269 g_hash_table_add(found, to);
5270 queue = g_queue_new();
5271 g_queue_push_tail(queue, to);
5272
5273 while (!g_queue_is_empty(queue)) {
5274 BlockDriverState *v = g_queue_pop_head(queue);
5275 BdrvChild *c2;
5276
5277 QLIST_FOREACH(c2, &v->children, next) {
5278 if (c2 == c) {
5279 ret = false;
5280 break;
5281 }
5282
5283 if (g_hash_table_contains(found, c2->bs)) {
5284 continue;
5285 }
5286
5287 g_queue_push_tail(queue, c2->bs);
5288 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005289 }
5290 }
5291
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005292 g_queue_free(queue);
5293 g_hash_table_destroy(found);
5294
5295 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005296}
5297
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005298static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005299{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005300 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005301 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005302}
5303
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005304static TransactionActionDrv bdrv_remove_child_drv = {
5305 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005306};
5307
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005308/*
5309 * Function doesn't update permissions, caller is responsible for this.
5310 *
5311 * @child->bs (if non-NULL) must be drained.
Kevin Wolf5661a002023-09-11 11:46:10 +02005312 *
5313 * After calling this function, the transaction @tran may only be completed
5314 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005315 */
5316static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005317{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005318 if (!child) {
5319 return;
5320 }
5321
5322 if (child->bs) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005323 assert(child->quiesced_parent);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005324 bdrv_replace_child_tran(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005325 }
5326
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005327 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005328}
5329
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005330/*
5331 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5332 * until the transaction is completed.
Kevin Wolf5661a002023-09-11 11:46:10 +02005333 *
5334 * After calling this function, the transaction @tran may only be completed
5335 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005336 */
5337static int GRAPH_WRLOCK
5338bdrv_replace_node_noperm(BlockDriverState *from,
5339 BlockDriverState *to,
5340 bool auto_skip, Transaction *tran,
5341 Error **errp)
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005342{
5343 BdrvChild *c, *next;
5344
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005345 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005346
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005347 assert(from->quiesce_counter);
5348 assert(to->quiesce_counter);
Kevin Wolf23987472022-11-18 18:41:09 +01005349
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005350 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5351 assert(c->bs == from);
5352 if (!should_update_child(c, to)) {
5353 if (auto_skip) {
5354 continue;
5355 }
5356 error_setg(errp, "Should not change '%s' link to '%s'",
5357 c->name, from->node_name);
5358 return -EINVAL;
5359 }
5360 if (c->frozen) {
5361 error_setg(errp, "Cannot change '%s' link to '%s'",
5362 c->name, from->node_name);
5363 return -EPERM;
5364 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005365 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005366 }
5367
5368 return 0;
5369}
5370
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005371/*
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005372 * Switch all parents of @from to point to @to instead. @from and @to must be in
5373 * the same AioContext and both must be drained.
5374 *
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005375 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5376 * if it creates a parent-child relation loop or if parent is block-job.
5377 *
5378 * With auto_skip=false the error is returned if from has a parent which should
5379 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005380 *
5381 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5382 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005383 */
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005384static int GRAPH_WRLOCK
5385bdrv_replace_node_common(BlockDriverState *from, BlockDriverState *to,
5386 bool auto_skip, bool detach_subchain, Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005387{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005388 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005389 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005390 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005391 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005392
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005393 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005394
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005395 assert(from->quiesce_counter);
5396 assert(to->quiesce_counter);
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005397 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005398
Kevin Wolf372b69f2023-10-27 17:53:15 +02005399 if (detach_subchain) {
5400 assert(bdrv_chain_contains(from, to));
5401 assert(from != to);
5402 for (to_cow_parent = from;
5403 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5404 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5405 {
5406 ;
5407 }
5408 }
5409
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005410 /*
5411 * Do the replacement without permission update.
5412 * Replacement may influence the permissions, we should calculate new
5413 * permissions based on new graph. If we fail, we'll roll-back the
5414 * replacement.
5415 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005416 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5417 if (ret < 0) {
5418 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005419 }
5420
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005421 if (detach_subchain) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005422 /* to_cow_parent is already drained because from is drained */
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005423 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005424 }
5425
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005426 refresh_list = g_slist_prepend(refresh_list, to);
5427 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005428
5429 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005430 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005431 goto out;
5432 }
5433
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005434 ret = 0;
5435
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005436out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005437 tran_finalize(tran, ret);
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005438 return ret;
5439}
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005440
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005441int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5442 Error **errp)
5443{
Kevin Wolfccd6a372023-10-27 17:53:25 +02005444 return bdrv_replace_node_common(from, to, true, false, errp);
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005445}
5446
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005447int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5448{
Kevin Wolf372b69f2023-10-27 17:53:15 +02005449 BlockDriverState *child_bs;
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005450 int ret;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005451
Kevin Wolf372b69f2023-10-27 17:53:15 +02005452 GLOBAL_STATE_CODE();
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005453
Kevin Wolf372b69f2023-10-27 17:53:15 +02005454 bdrv_graph_rdlock_main_loop();
5455 child_bs = bdrv_filter_or_cow_bs(bs);
5456 bdrv_graph_rdunlock_main_loop();
5457
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005458 bdrv_drained_begin(child_bs);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005459 bdrv_graph_wrlock();
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005460 ret = bdrv_replace_node_common(bs, child_bs, true, true, errp);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005461 bdrv_graph_wrunlock();
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005462 bdrv_drained_end(child_bs);
5463
5464 return ret;
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005465}
5466
Jeff Cody8802d1f2012-02-28 15:54:06 -05005467/*
5468 * Add new bs contents at the top of an image chain while the chain is
5469 * live, while keeping required fields on the top layer.
5470 *
5471 * This will modify the BlockDriverState fields, and swap contents
5472 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5473 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005474 * bs_new must not be attached to a BlockBackend and must not have backing
5475 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005476 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005477 * This function does not create any image files.
5478 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005479int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5480 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005481{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005482 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005483 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005484 Transaction *tran = tran_new();
5485
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005486 GLOBAL_STATE_CODE();
5487
Kevin Wolf004915a2023-10-27 17:53:26 +02005488 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005489 assert(!bs_new->backing);
Kevin Wolf004915a2023-10-27 17:53:26 +02005490 bdrv_graph_rdunlock_main_loop();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005491
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005492 bdrv_drained_begin(bs_top);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005493 bdrv_drained_begin(bs_new);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005494
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005495 bdrv_graph_wrlock();
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005496
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005497 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5498 &child_of_bds, bdrv_backing_role(bs_new),
5499 tran, errp);
5500 if (!child) {
5501 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005502 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005503 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005504
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005505 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005506 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005507 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005508 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005509
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005510 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005511out:
5512 tran_finalize(tran, ret);
5513
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005514 bdrv_refresh_limits(bs_top, NULL, NULL);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005515 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005516
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005517 bdrv_drained_end(bs_top);
5518 bdrv_drained_end(bs_new);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005519
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005520 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005521}
5522
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005523/* Not for empty child */
5524int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5525 Error **errp)
5526{
5527 int ret;
5528 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005529 g_autoptr(GSList) refresh_list = NULL;
5530 BlockDriverState *old_bs = child->bs;
5531
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005532 GLOBAL_STATE_CODE();
5533
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005534 bdrv_ref(old_bs);
5535 bdrv_drained_begin(old_bs);
5536 bdrv_drained_begin(new_bs);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005537 bdrv_graph_wrlock();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005538
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005539 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005540
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005541 refresh_list = g_slist_prepend(refresh_list, old_bs);
5542 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005543
5544 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5545
5546 tran_finalize(tran, ret);
5547
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005548 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005549 bdrv_drained_end(old_bs);
5550 bdrv_drained_end(new_bs);
5551 bdrv_unref(old_bs);
5552
5553 return ret;
5554}
5555
Fam Zheng4f6fd342013-08-23 09:14:47 +08005556static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005557{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005558 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005559 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005560 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005561
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005562 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005563 if (bs->node_name[0] != '\0') {
5564 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5565 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005566 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5567
Anton Kuchin30c321f2019-05-07 11:12:56 +03005568 bdrv_close(bs);
5569
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -04005570 qemu_mutex_destroy(&bs->reqs_lock);
5571
Anthony Liguori7267c092011-08-20 22:09:37 -05005572 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005573}
5574
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005575
5576/*
5577 * Replace @bs by newly created block node.
5578 *
5579 * @options is a QDict of options to pass to the block drivers, or NULL for an
5580 * empty set of options. The reference to the QDict belongs to the block layer
5581 * after the call (even on failure), so if the caller intends to reuse the
5582 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Kevin Wolf88234072023-05-25 14:47:11 +02005583 *
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05005584 * The caller must make sure that @bs stays in the same AioContext, i.e.
5585 * @options must not refer to nodes in a different AioContext.
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005586 */
5587BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005588 int flags, Error **errp)
5589{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005590 ERRP_GUARD();
5591 int ret;
Kevin Wolf88234072023-05-25 14:47:11 +02005592 AioContext *ctx = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005593 BlockDriverState *new_node_bs = NULL;
5594 const char *drvname, *node_name;
5595 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005596
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005597 drvname = qdict_get_try_str(options, "driver");
5598 if (!drvname) {
5599 error_setg(errp, "driver is not specified");
5600 goto fail;
5601 }
5602
5603 drv = bdrv_find_format(drvname);
5604 if (!drv) {
5605 error_setg(errp, "Unknown driver: '%s'", drvname);
5606 goto fail;
5607 }
5608
5609 node_name = qdict_get_try_str(options, "node-name");
5610
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005611 GLOBAL_STATE_CODE();
5612
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005613 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5614 errp);
Kevin Wolf88234072023-05-25 14:47:11 +02005615 assert(bdrv_get_aio_context(bs) == ctx);
5616
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005617 options = NULL; /* bdrv_new_open_driver() eats options */
5618 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005619 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005620 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005621 }
5622
Kevin Wolfccd6a372023-10-27 17:53:25 +02005623 /*
5624 * Make sure that @bs doesn't go away until we have successfully attached
5625 * all of its parents to @new_node_bs and undrained it again.
5626 */
5627 bdrv_ref(bs);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005628 bdrv_drained_begin(bs);
Kevin Wolfccd6a372023-10-27 17:53:25 +02005629 bdrv_drained_begin(new_node_bs);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005630 bdrv_graph_wrlock();
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005631 ret = bdrv_replace_node(bs, new_node_bs, errp);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005632 bdrv_graph_wrunlock();
Kevin Wolfccd6a372023-10-27 17:53:25 +02005633 bdrv_drained_end(new_node_bs);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005634 bdrv_drained_end(bs);
Kevin Wolfccd6a372023-10-27 17:53:25 +02005635 bdrv_unref(bs);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005636
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005637 if (ret < 0) {
5638 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005639 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005640 }
5641
5642 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005643
5644fail:
5645 qobject_unref(options);
5646 bdrv_unref(new_node_bs);
5647 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005648}
5649
aliguorie97fc192009-04-21 23:11:50 +00005650/*
5651 * Run consistency checks on an image
5652 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005653 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005654 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005655 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005656 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005657int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5658 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005659{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005660 IO_CODE();
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01005661 assert_bdrv_graph_readable();
Max Reitz908bcd52014-08-07 22:47:55 +02005662 if (bs->drv == NULL) {
5663 return -ENOMEDIUM;
5664 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005665 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005666 return -ENOTSUP;
5667 }
5668
Kevin Wolfe076f332010-06-29 11:43:13 +02005669 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005670 return bs->drv->bdrv_co_check(bs, res, fix);
5671}
5672
Kevin Wolf756e6732010-01-12 12:55:17 +01005673/*
5674 * Return values:
5675 * 0 - success
5676 * -EINVAL - backing format specified, but no file
5677 * -ENOSPC - can't update the backing file because no space is left in the
5678 * image file header
5679 * -ENOTSUP - format driver doesn't support changing the backing file
5680 */
Kevin Wolfe2dd2732023-10-27 17:53:28 +02005681int coroutine_fn
5682bdrv_co_change_backing_file(BlockDriverState *bs, const char *backing_file,
5683 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005684{
5685 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005686 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005687
Kevin Wolfe2dd2732023-10-27 17:53:28 +02005688 IO_CODE();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005689
Max Reitzd470ad42017-11-10 21:31:09 +01005690 if (!drv) {
5691 return -ENOMEDIUM;
5692 }
5693
Paolo Bonzini5f377792012-04-12 14:01:01 +02005694 /* Backing file format doesn't make sense without a backing file */
5695 if (backing_fmt && !backing_file) {
5696 return -EINVAL;
5697 }
5698
Eric Blake497a30d2021-05-03 14:36:00 -07005699 if (require && backing_file && !backing_fmt) {
5700 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005701 }
5702
Kevin Wolfe2dd2732023-10-27 17:53:28 +02005703 if (drv->bdrv_co_change_backing_file != NULL) {
5704 ret = drv->bdrv_co_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005705 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005706 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005707 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005708
5709 if (ret == 0) {
5710 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5711 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005712 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5713 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005714 }
5715 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005716}
5717
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005718/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005719 * Finds the first non-filter node above bs in the chain between
5720 * active and bs. The returned node is either an immediate parent of
5721 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005722 *
5723 * Returns NULL if bs is not found in active's image chain,
5724 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005725 *
5726 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005727 */
5728BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5729 BlockDriverState *bs)
5730{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005731
5732 GLOBAL_STATE_CODE();
5733
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005734 bs = bdrv_skip_filters(bs);
5735 active = bdrv_skip_filters(active);
5736
5737 while (active) {
5738 BlockDriverState *next = bdrv_backing_chain_next(active);
5739 if (bs == next) {
5740 return active;
5741 }
5742 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005743 }
5744
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005745 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005746}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005747
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005748/* Given a BDS, searches for the base layer. */
5749BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5750{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005751 GLOBAL_STATE_CODE();
5752
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005753 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005754}
5755
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005756/*
Max Reitz7b99a262019-06-12 16:07:11 +02005757 * Return true if at least one of the COW (backing) and filter links
5758 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005759 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005760 */
Kevin Wolf9275fc72023-10-27 17:53:18 +02005761static bool GRAPH_RDLOCK
5762bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5763 Error **errp)
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005764{
5765 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005766 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005767
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005768 GLOBAL_STATE_CODE();
5769
Max Reitz7b99a262019-06-12 16:07:11 +02005770 for (i = bs; i != base; i = child_bs(child)) {
5771 child = bdrv_filter_or_cow_child(i);
5772
5773 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005774 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005775 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005776 return true;
5777 }
5778 }
5779
5780 return false;
5781}
5782
5783/*
Max Reitz7b99a262019-06-12 16:07:11 +02005784 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005785 * If any of the links is already frozen the operation is aborted and
5786 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005787 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005788 * Returns 0 on success. On failure returns < 0 and sets @errp.
5789 */
5790int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5791 Error **errp)
5792{
5793 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005794 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005795
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005796 GLOBAL_STATE_CODE();
5797
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005798 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5799 return -EPERM;
5800 }
5801
Max Reitz7b99a262019-06-12 16:07:11 +02005802 for (i = bs; i != base; i = child_bs(child)) {
5803 child = bdrv_filter_or_cow_child(i);
5804 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005805 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005806 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005807 return -EPERM;
5808 }
5809 }
5810
Max Reitz7b99a262019-06-12 16:07:11 +02005811 for (i = bs; i != base; i = child_bs(child)) {
5812 child = bdrv_filter_or_cow_child(i);
5813 if (child) {
5814 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005815 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005816 }
5817
5818 return 0;
5819}
5820
5821/*
Max Reitz7b99a262019-06-12 16:07:11 +02005822 * Unfreeze all COW (backing) and filter links between @bs and @base.
5823 * The caller must ensure that all links are frozen before using this
5824 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005825 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005826 */
5827void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5828{
5829 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005830 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005831
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005832 GLOBAL_STATE_CODE();
5833
Max Reitz7b99a262019-06-12 16:07:11 +02005834 for (i = bs; i != base; i = child_bs(child)) {
5835 child = bdrv_filter_or_cow_child(i);
5836 if (child) {
5837 assert(child->frozen);
5838 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005839 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005840 }
5841}
5842
5843/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005844 * Drops images above 'base' up to and including 'top', and sets the image
5845 * above 'top' to have base as its backing file.
5846 *
5847 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5848 * information in 'bs' can be properly updated.
5849 *
5850 * E.g., this will convert the following chain:
5851 * bottom <- base <- intermediate <- top <- active
5852 *
5853 * to
5854 *
5855 * bottom <- base <- active
5856 *
5857 * It is allowed for bottom==base, in which case it converts:
5858 *
5859 * base <- intermediate <- top <- active
5860 *
5861 * to
5862 *
5863 * base <- active
5864 *
Jeff Cody54e26902014-06-25 15:40:10 -04005865 * If backing_file_str is non-NULL, it will be used when modifying top's
5866 * overlay image metadata.
5867 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005868 * Error conditions:
5869 * if active == top, that is considered an error
5870 *
5871 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005872int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
Peter Krempa4b028cb2023-12-05 18:14:41 +01005873 const char *backing_file_str,
5874 bool backing_mask_protocol)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005875{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005876 BlockDriverState *explicit_top = top;
5877 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005878 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005879 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005880 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005881 g_autoptr(GSList) updated_children = NULL;
5882 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005883
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005884 GLOBAL_STATE_CODE();
5885
Kevin Wolf6858eba2017-06-29 19:32:21 +02005886 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005887 bdrv_drained_begin(base);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005888 bdrv_graph_wrlock();
Kevin Wolf6858eba2017-06-29 19:32:21 +02005889
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005890 if (!top->drv || !base->drv) {
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005891 goto exit_wrlock;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005892 }
5893
Kevin Wolf5db15a52015-09-14 15:33:33 +02005894 /* Make sure that base is in the backing chain of top */
5895 if (!bdrv_chain_contains(top, base)) {
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005896 goto exit_wrlock;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005897 }
5898
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005899 /* If 'base' recursively inherits from 'top' then we should set
5900 * base->inherits_from to top->inherits_from after 'top' and all
5901 * other intermediate nodes have been dropped.
5902 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5903 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005904 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005905 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5906
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005907 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005908 if (!backing_file_str) {
5909 bdrv_refresh_filename(base);
5910 backing_file_str = base->filename;
5911 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005912
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005913 QLIST_FOREACH(c, &top->parents, next_parent) {
5914 updated_children = g_slist_prepend(updated_children, c);
5915 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005916
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005917 /*
5918 * It seems correct to pass detach_subchain=true here, but it triggers
5919 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5920 * another drained section, which modify the graph (for example, removing
5921 * the child, which we keep in updated_children list). So, it's a TODO.
5922 *
5923 * Note, bug triggered if pass detach_subchain=true here and run
5924 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5925 * That's a FIXME.
5926 */
5927 bdrv_replace_node_common(top, base, false, false, &local_err);
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005928 bdrv_graph_wrunlock();
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005929
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005930 if (local_err) {
5931 error_report_err(local_err);
5932 goto exit;
5933 }
5934
5935 for (p = updated_children; p; p = p->next) {
5936 c = p->data;
5937
Max Reitzbd86fb92020-05-13 13:05:13 +02005938 if (c->klass->update_filename) {
5939 ret = c->klass->update_filename(c, base, backing_file_str,
Peter Krempa4b028cb2023-12-05 18:14:41 +01005940 backing_mask_protocol,
Max Reitzbd86fb92020-05-13 13:05:13 +02005941 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005942 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005943 /*
5944 * TODO: Actually, we want to rollback all previous iterations
5945 * of this loop, and (which is almost impossible) previous
5946 * bdrv_replace_node()...
5947 *
5948 * Note, that c->klass->update_filename may lead to permission
5949 * update, so it's a bad idea to call it inside permission
5950 * update transaction of bdrv_replace_node.
5951 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005952 error_report_err(local_err);
5953 goto exit;
5954 }
5955 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005956 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005957
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005958 if (update_inherits_from) {
5959 base->inherits_from = explicit_top->inherits_from;
5960 }
5961
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005962 ret = 0;
Kevin Wolf5c0ef492023-10-27 17:53:24 +02005963 goto exit;
5964
5965exit_wrlock:
Stefan Hajnoczi6bc30f12023-12-05 13:20:02 -05005966 bdrv_graph_wrunlock();
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005967exit:
Kevin Wolf631086d2022-11-18 18:41:03 +01005968 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005969 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005970 return ret;
5971}
5972
bellard83f64092006-08-01 16:21:11 +00005973/**
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005974 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
Max Reitz081e4652019-06-12 18:14:13 +02005975 * sums the size of all data-bearing children. (This excludes backing
5976 * children.)
5977 */
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02005978static int64_t coroutine_fn GRAPH_RDLOCK
5979bdrv_sum_allocated_file_size(BlockDriverState *bs)
Max Reitz081e4652019-06-12 18:14:13 +02005980{
5981 BdrvChild *child;
5982 int64_t child_size, sum = 0;
5983
5984 QLIST_FOREACH(child, &bs->children, next) {
5985 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5986 BDRV_CHILD_FILTERED))
5987 {
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005988 child_size = bdrv_co_get_allocated_file_size(child->bs);
Max Reitz081e4652019-06-12 18:14:13 +02005989 if (child_size < 0) {
5990 return child_size;
5991 }
5992 sum += child_size;
5993 }
5994 }
5995
5996 return sum;
5997}
5998
5999/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006000 * Length of a allocated file in bytes. Sparse files are counted by actual
6001 * allocated space. Return < 0 if error or unknown.
6002 */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006003int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006004{
6005 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006006 IO_CODE();
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02006007 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006008
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006009 if (!drv) {
6010 return -ENOMEDIUM;
6011 }
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006012 if (drv->bdrv_co_get_allocated_file_size) {
6013 return drv->bdrv_co_get_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006014 }
Max Reitz081e4652019-06-12 18:14:13 +02006015
Paolo Bonzini41770f62022-11-24 16:21:18 +01006016 if (drv->protocol_name) {
Max Reitz081e4652019-06-12 18:14:13 +02006017 /*
6018 * Protocol drivers default to -ENOTSUP (most of their data is
6019 * not stored in any of their children (if they even have any),
6020 * so there is no generic way to figure it out).
6021 */
6022 return -ENOTSUP;
6023 } else if (drv->is_filter) {
6024 /* Filter drivers default to the size of their filtered child */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006025 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
Max Reitz081e4652019-06-12 18:14:13 +02006026 } else {
6027 /* Other drivers default to summing their children's sizes */
6028 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006029 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006030}
6031
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006032/*
6033 * bdrv_measure:
6034 * @drv: Format driver
6035 * @opts: Creation options for new image
6036 * @in_bs: Existing image containing data for new image (may be NULL)
6037 * @errp: Error object
6038 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
6039 * or NULL on error
6040 *
6041 * Calculate file size required to create a new image.
6042 *
6043 * If @in_bs is given then space for allocated clusters and zero clusters
6044 * from that image are included in the calculation. If @opts contains a
6045 * backing file that is shared by @in_bs then backing clusters may be omitted
6046 * from the calculation.
6047 *
6048 * If @in_bs is NULL then the calculation includes no allocated clusters
6049 * unless a preallocation option is given in @opts.
6050 *
6051 * Note that @in_bs may use a different BlockDriver from @drv.
6052 *
6053 * If an error occurs the @errp pointer is set.
6054 */
6055BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
6056 BlockDriverState *in_bs, Error **errp)
6057{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006058 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006059 if (!drv->bdrv_measure) {
6060 error_setg(errp, "Block driver '%s' does not support size measurement",
6061 drv->format_name);
6062 return NULL;
6063 }
6064
6065 return drv->bdrv_measure(opts, in_bs, errp);
6066}
6067
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006068/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006069 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00006070 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006071int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00006072{
6073 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006074 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006075 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006076
bellard83f64092006-08-01 16:21:11 +00006077 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00006078 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01006079
Paolo Bonzini160a29e2023-04-07 17:32:56 +02006080 if (bs->bl.has_variable_length) {
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006081 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolfb94a2612013-10-29 12:18:58 +01006082 if (ret < 0) {
6083 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01006084 }
bellard83f64092006-08-01 16:21:11 +00006085 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006086 return bs->total_sectors;
6087}
6088
Paolo Bonzini81f730d2023-04-07 17:33:03 +02006089/*
6090 * This wrapper is written by hand because this function is in the hot I/O path,
6091 * via blk_get_geometry.
6092 */
6093int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
6094{
6095 BlockDriver *drv = bs->drv;
6096 IO_CODE();
6097
6098 if (!drv)
6099 return -ENOMEDIUM;
6100
6101 if (bs->bl.has_variable_length) {
6102 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6103 if (ret < 0) {
6104 return ret;
6105 }
6106 }
6107
6108 return bs->total_sectors;
6109}
6110
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006111/**
6112 * Return length in bytes on success, -errno on error.
6113 * The length is always a multiple of BDRV_SECTOR_SIZE.
6114 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006115int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006116{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006117 int64_t ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006118 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006119 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006120
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006121 ret = bdrv_co_nb_sectors(bs);
Eric Blake122860b2020-11-05 09:51:22 -06006122 if (ret < 0) {
6123 return ret;
6124 }
6125 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
6126 return -EFBIG;
6127 }
6128 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00006129}
6130
Eric Blake54115412016-06-23 16:37:26 -06006131bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00006132{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006133 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00006134 return bs->sg;
6135}
6136
Max Reitzae23f782019-06-12 22:57:15 +02006137/**
6138 * Return whether the given node supports compressed writes.
6139 */
6140bool bdrv_supports_compressed_writes(BlockDriverState *bs)
6141{
6142 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006143 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02006144
6145 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
6146 return false;
6147 }
6148
6149 filtered = bdrv_filter_bs(bs);
6150 if (filtered) {
6151 /*
6152 * Filters can only forward compressed writes, so we have to
6153 * check the child.
6154 */
6155 return bdrv_supports_compressed_writes(filtered);
6156 }
6157
6158 return true;
6159}
6160
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006161const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006162{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006163 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006164 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00006165}
6166
Stefan Hajnocziada42402014-08-27 12:08:55 +01006167static int qsort_strcmp(const void *a, const void *b)
6168{
Max Reitzceff5bd2016-10-12 22:49:05 +02006169 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01006170}
6171
ths5fafdf22007-09-16 21:08:06 +00006172void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006173 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00006174{
6175 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04006176 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01006177 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04006178 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00006179
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006180 GLOBAL_STATE_CODE();
6181
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01006182 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04006183 if (drv->format_name) {
6184 bool found = false;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006185
6186 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
6187 continue;
6188 }
6189
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02006190 i = count;
Jeff Codye855e4f2014-04-28 18:29:54 -04006191 while (formats && i && !found) {
6192 found = !strcmp(formats[--i], drv->format_name);
6193 }
6194
6195 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02006196 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04006197 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04006198 }
6199 }
bellardea2384d2004-08-01 21:59:26 +00006200 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01006201
Max Reitzeb0df692016-10-12 22:49:06 +02006202 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
6203 const char *format_name = block_driver_modules[i].format_name;
6204
6205 if (format_name) {
6206 bool found = false;
6207 int j = count;
6208
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006209 if (use_bdrv_whitelist &&
6210 !bdrv_format_is_whitelisted(format_name, read_only)) {
6211 continue;
6212 }
6213
Max Reitzeb0df692016-10-12 22:49:06 +02006214 while (formats && j && !found) {
6215 found = !strcmp(formats[--j], format_name);
6216 }
6217
6218 if (!found) {
6219 formats = g_renew(const char *, formats, count + 1);
6220 formats[count++] = format_name;
6221 }
6222 }
6223 }
6224
Stefan Hajnocziada42402014-08-27 12:08:55 +01006225 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6226
6227 for (i = 0; i < count; i++) {
6228 it(opaque, formats[i]);
6229 }
6230
Jeff Codye855e4f2014-04-28 18:29:54 -04006231 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00006232}
6233
Benoît Canetdc364f42014-01-23 21:31:32 +01006234/* This function is to find a node in the bs graph */
6235BlockDriverState *bdrv_find_node(const char *node_name)
6236{
6237 BlockDriverState *bs;
6238
6239 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006240 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006241
6242 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6243 if (!strcmp(node_name, bs->node_name)) {
6244 return bs;
6245 }
6246 }
6247 return NULL;
6248}
6249
Benoît Canetc13163f2014-01-23 21:31:34 +01006250/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006251BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6252 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006253{
Eric Blake9812e712020-10-27 00:05:47 -05006254 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006255 BlockDriverState *bs;
6256
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006257 GLOBAL_STATE_CODE();
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02006258 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006259
Benoît Canetc13163f2014-01-23 21:31:34 +01006260 list = NULL;
6261 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006262 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006263 if (!info) {
6264 qapi_free_BlockDeviceInfoList(list);
6265 return NULL;
6266 }
Eric Blake9812e712020-10-27 00:05:47 -05006267 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006268 }
6269
6270 return list;
6271}
6272
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006273typedef struct XDbgBlockGraphConstructor {
6274 XDbgBlockGraph *graph;
6275 GHashTable *graph_nodes;
6276} XDbgBlockGraphConstructor;
6277
6278static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6279{
6280 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6281
6282 gr->graph = g_new0(XDbgBlockGraph, 1);
6283 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6284
6285 return gr;
6286}
6287
6288static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6289{
6290 XDbgBlockGraph *graph = gr->graph;
6291
6292 g_hash_table_destroy(gr->graph_nodes);
6293 g_free(gr);
6294
6295 return graph;
6296}
6297
6298static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6299{
6300 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6301
6302 if (ret != 0) {
6303 return ret;
6304 }
6305
6306 /*
6307 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6308 * answer of g_hash_table_lookup.
6309 */
6310 ret = g_hash_table_size(gr->graph_nodes) + 1;
6311 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6312
6313 return ret;
6314}
6315
6316static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6317 XDbgBlockGraphNodeType type, const char *name)
6318{
6319 XDbgBlockGraphNode *n;
6320
6321 n = g_new0(XDbgBlockGraphNode, 1);
6322
6323 n->id = xdbg_graph_node_num(gr, node);
6324 n->type = type;
6325 n->name = g_strdup(name);
6326
Eric Blake9812e712020-10-27 00:05:47 -05006327 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006328}
6329
6330static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6331 const BdrvChild *child)
6332{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006333 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006334 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006335 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006336
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006337 edge = g_new0(XDbgBlockGraphEdge, 1);
6338
6339 edge->parent = xdbg_graph_node_num(gr, parent);
6340 edge->child = xdbg_graph_node_num(gr, child->bs);
6341 edge->name = g_strdup(child->name);
6342
Max Reitzcdb1cec2019-11-08 13:34:52 +01006343 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6344 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6345
6346 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006347 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006348 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006349 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006350 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006351 }
6352 }
6353
Eric Blake9812e712020-10-27 00:05:47 -05006354 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006355}
6356
6357
6358XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6359{
6360 BlockBackend *blk;
6361 BlockJob *job;
6362 BlockDriverState *bs;
6363 BdrvChild *child;
6364 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6365
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006366 GLOBAL_STATE_CODE();
6367
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006368 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6369 char *allocated_name = NULL;
6370 const char *name = blk_name(blk);
6371
6372 if (!*name) {
6373 name = allocated_name = blk_get_attached_dev_id(blk);
6374 }
Markus Armbrusterbcd63b52024-09-04 13:18:20 +02006375 xdbg_graph_add_node(gr, blk, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006376 name);
6377 g_free(allocated_name);
6378 if (blk_root(blk)) {
6379 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6380 }
6381 }
6382
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006383 WITH_JOB_LOCK_GUARD() {
6384 for (job = block_job_next_locked(NULL); job;
6385 job = block_job_next_locked(job)) {
6386 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006387
Markus Armbrusterbcd63b52024-09-04 13:18:20 +02006388 xdbg_graph_add_node(gr, job, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006389 job->job.id);
6390 for (el = job->nodes; el; el = el->next) {
6391 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6392 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006393 }
6394 }
6395
6396 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Markus Armbrusterbcd63b52024-09-04 13:18:20 +02006397 xdbg_graph_add_node(gr, bs, XDBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006398 bs->node_name);
6399 QLIST_FOREACH(child, &bs->children, next) {
6400 xdbg_graph_add_edge(gr, bs, child);
6401 }
6402 }
6403
6404 return xdbg_graph_finalize(gr);
6405}
6406
Benoît Canet12d3ba82014-01-23 21:31:35 +01006407BlockDriverState *bdrv_lookup_bs(const char *device,
6408 const char *node_name,
6409 Error **errp)
6410{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006411 BlockBackend *blk;
6412 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006413
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006414 GLOBAL_STATE_CODE();
6415
Benoît Canet12d3ba82014-01-23 21:31:35 +01006416 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006417 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006418
Markus Armbruster7f06d472014-10-07 13:59:12 +02006419 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006420 bs = blk_bs(blk);
6421 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006422 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006423 }
6424
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006425 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006426 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006427 }
6428
Benoît Canetdd67fa52014-02-12 17:15:06 +01006429 if (node_name) {
6430 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006431
Benoît Canetdd67fa52014-02-12 17:15:06 +01006432 if (bs) {
6433 return bs;
6434 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006435 }
6436
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006437 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006438 device ? device : "",
6439 node_name ? node_name : "");
6440 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006441}
6442
Jeff Cody5a6684d2014-06-25 15:40:09 -04006443/* If 'base' is in the same chain as 'top', return true. Otherwise,
6444 * return false. If either argument is NULL, return false. */
6445bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6446{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006447
6448 GLOBAL_STATE_CODE();
6449
Jeff Cody5a6684d2014-06-25 15:40:09 -04006450 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006451 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006452 }
6453
6454 return top != NULL;
6455}
6456
Fam Zheng04df7652014-10-31 11:32:54 +08006457BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6458{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006459 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006460 if (!bs) {
6461 return QTAILQ_FIRST(&graph_bdrv_states);
6462 }
6463 return QTAILQ_NEXT(bs, node_list);
6464}
6465
Kevin Wolf0f122642018-03-28 18:29:18 +02006466BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6467{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006468 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006469 if (!bs) {
6470 return QTAILQ_FIRST(&all_bdrv_states);
6471 }
6472 return QTAILQ_NEXT(bs, bs_list);
6473}
6474
Fam Zheng20a9e772014-10-31 11:32:55 +08006475const char *bdrv_get_node_name(const BlockDriverState *bs)
6476{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006477 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006478 return bs->node_name;
6479}
6480
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006481const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006482{
6483 BdrvChild *c;
6484 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006485 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006486
6487 /* If multiple parents have a name, just pick the first one. */
6488 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006489 if (c->klass->get_name) {
6490 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006491 if (name && *name) {
6492 return name;
6493 }
6494 }
6495 }
6496
6497 return NULL;
6498}
6499
Markus Armbruster7f06d472014-10-07 13:59:12 +02006500/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006501const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006502{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006503 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006504 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006505}
6506
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006507/* This can be used to identify nodes that might not have a device
6508 * name associated. Since node and device names live in the same
6509 * namespace, the result is unambiguous. The exception is if both are
6510 * absent, then this returns an empty (non-null) string. */
6511const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6512{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006513 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006514 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006515}
6516
Markus Armbrusterc8433282012-06-05 16:49:24 +02006517int bdrv_get_flags(BlockDriverState *bs)
6518{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006519 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006520 return bs->open_flags;
6521}
6522
Peter Lieven3ac21622013-06-28 12:47:42 +02006523int bdrv_has_zero_init_1(BlockDriverState *bs)
6524{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006525 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006526 return 1;
6527}
6528
Kevin Wolf06717982023-10-27 17:53:11 +02006529int coroutine_mixed_fn bdrv_has_zero_init(BlockDriverState *bs)
Kevin Wolff2feebb2010-04-14 17:30:35 +02006530{
Max Reitz93393e62019-06-12 17:03:38 +02006531 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006532 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006533
Max Reitzd470ad42017-11-10 21:31:09 +01006534 if (!bs->drv) {
6535 return 0;
6536 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006537
Paolo Bonzini11212d82013-09-04 19:00:27 +02006538 /* If BS is a copy on write image, it is initialized to
6539 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006540 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006541 return 0;
6542 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006543 if (bs->drv->bdrv_has_zero_init) {
6544 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006545 }
Max Reitz93393e62019-06-12 17:03:38 +02006546
6547 filtered = bdrv_filter_bs(bs);
6548 if (filtered) {
6549 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006550 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006551
Peter Lieven3ac21622013-06-28 12:47:42 +02006552 /* safe default */
6553 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006554}
6555
Peter Lieven4ce78692013-10-24 12:06:54 +02006556bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6557{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006558 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006559 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006560 return false;
6561 }
6562
Eric Blakee24d8132018-01-26 13:34:39 -06006563 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006564}
6565
ths5fafdf22007-09-16 21:08:06 +00006566void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006567 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006568{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006569 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006570 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006571}
6572
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006573int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
bellardfaea38e2006-08-05 21:31:00 +00006574{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006575 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006576 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006577 IO_CODE();
Emanuele Giuseppe Espositoa00e70c2023-05-04 13:57:44 +02006578 assert_bdrv_graph_readable();
6579
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006580 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6581 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006582 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006583 }
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006584 if (!drv->bdrv_co_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006585 BlockDriverState *filtered = bdrv_filter_bs(bs);
6586 if (filtered) {
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006587 return bdrv_co_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006588 }
bellardfaea38e2006-08-05 21:31:00 +00006589 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006590 }
bellardfaea38e2006-08-05 21:31:00 +00006591 memset(bdi, 0, sizeof(*bdi));
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006592 ret = drv->bdrv_co_get_info(bs, bdi);
Andrey Drobyshevc54483b2023-07-11 20:25:51 +03006593 if (bdi->subcluster_size == 0) {
6594 /*
6595 * If the driver left this unset, subclusters are not supported.
6596 * Then it is safe to treat each cluster as having only one subcluster.
6597 */
6598 bdi->subcluster_size = bdi->cluster_size;
6599 }
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006600 if (ret < 0) {
6601 return ret;
6602 }
6603
6604 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6605 return -EINVAL;
6606 }
6607
6608 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006609}
6610
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006611ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6612 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006613{
6614 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006615 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006616 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006617 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006618 }
6619 return NULL;
6620}
6621
Anton Nefedovd9245592019-09-23 15:17:37 +03006622BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6623{
6624 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006625 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006626 if (!drv || !drv->bdrv_get_specific_stats) {
6627 return NULL;
6628 }
6629 return drv->bdrv_get_specific_stats(bs);
6630}
6631
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006632void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006633{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006634 IO_CODE();
Emanuele Giuseppe Espositocb2bfaa2023-05-04 13:57:45 +02006635 assert_bdrv_graph_readable();
6636
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006637 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006638 return;
6639 }
6640
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006641 bs->drv->bdrv_co_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006642}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006643
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006644static BlockDriverState * GRAPH_RDLOCK
6645bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006646{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006647 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006648 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006649 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006650 }
6651
6652 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006653 assert(bs->drv->bdrv_debug_remove_breakpoint);
6654 return bs;
6655 }
6656
6657 return NULL;
6658}
6659
6660int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6661 const char *tag)
6662{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006663 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006664 GRAPH_RDLOCK_GUARD_MAINLOOP();
6665
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006666 bs = bdrv_find_debug_node(bs);
6667 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006668 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6669 }
6670
6671 return -ENOTSUP;
6672}
6673
Fam Zheng4cc70e92013-11-20 10:01:54 +08006674int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6675{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006676 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006677 GRAPH_RDLOCK_GUARD_MAINLOOP();
6678
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006679 bs = bdrv_find_debug_node(bs);
6680 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006681 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6682 }
6683
6684 return -ENOTSUP;
6685}
6686
Kevin Wolf41c695c2012-12-06 14:32:58 +01006687int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6688{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006689 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006690 GRAPH_RDLOCK_GUARD_MAINLOOP();
6691
Max Reitz938789e2014-03-10 23:44:08 +01006692 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006693 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006694 }
6695
6696 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6697 return bs->drv->bdrv_debug_resume(bs, tag);
6698 }
6699
6700 return -ENOTSUP;
6701}
6702
6703bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6704{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006705 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006706 GRAPH_RDLOCK_GUARD_MAINLOOP();
6707
Kevin Wolf41c695c2012-12-06 14:32:58 +01006708 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006709 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006710 }
6711
6712 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6713 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6714 }
6715
6716 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006717}
6718
Jeff Codyb1b1d782012-10-16 15:49:09 -04006719/* backing_file can either be relative, or absolute, or a protocol. If it is
6720 * relative, it must be relative to the chain. So, passing in bs->filename
6721 * from a BDS as backing_file should not be done, as that may be relative to
6722 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006723BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6724 const char *backing_file)
6725{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006726 char *filename_full = NULL;
6727 char *backing_file_full = NULL;
6728 char *filename_tmp = NULL;
6729 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006730 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006731 BlockDriverState *curr_bs = NULL;
6732 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006733 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006734
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006735 GLOBAL_STATE_CODE();
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02006736 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006737
Jeff Codyb1b1d782012-10-16 15:49:09 -04006738 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006739 return NULL;
6740 }
6741
Jeff Codyb1b1d782012-10-16 15:49:09 -04006742 filename_full = g_malloc(PATH_MAX);
6743 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006744
6745 is_protocol = path_has_protocol(backing_file);
6746
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006747 /*
6748 * Being largely a legacy function, skip any filters here
6749 * (because filters do not have normal filenames, so they cannot
6750 * match anyway; and allowing json:{} filenames is a bit out of
6751 * scope).
6752 */
6753 for (curr_bs = bdrv_skip_filters(bs);
6754 bdrv_cow_child(curr_bs) != NULL;
6755 curr_bs = bs_below)
6756 {
6757 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006758
Max Reitz0b877d02018-08-01 20:34:11 +02006759 if (bdrv_backing_overridden(curr_bs)) {
6760 /*
6761 * If the backing file was overridden, we can only compare
6762 * directly against the backing node's filename.
6763 */
6764
6765 if (!filenames_refreshed) {
6766 /*
6767 * This will automatically refresh all of the
6768 * filenames in the rest of the backing chain, so we
6769 * only need to do this once.
6770 */
6771 bdrv_refresh_filename(bs_below);
6772 filenames_refreshed = true;
6773 }
6774
6775 if (strcmp(backing_file, bs_below->filename) == 0) {
6776 retval = bs_below;
6777 break;
6778 }
6779 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6780 /*
6781 * If either of the filename paths is actually a protocol, then
6782 * compare unmodified paths; otherwise make paths relative.
6783 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006784 char *backing_file_full_ret;
6785
Jeff Codyb1b1d782012-10-16 15:49:09 -04006786 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006787 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006788 break;
6789 }
Jeff Cody418661e2017-01-25 20:08:20 -05006790 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006791 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6792 NULL);
6793 if (backing_file_full_ret) {
6794 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6795 g_free(backing_file_full_ret);
6796 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006797 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006798 break;
6799 }
Jeff Cody418661e2017-01-25 20:08:20 -05006800 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006801 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006802 /* If not an absolute filename path, make it relative to the current
6803 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006804 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6805 NULL);
6806 /* We are going to compare canonicalized absolute pathnames */
6807 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6808 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006809 continue;
6810 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006811 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006812
6813 /* We need to make sure the backing filename we are comparing against
6814 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006815 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6816 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6817 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006818 continue;
6819 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006820 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006821
6822 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006823 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006824 break;
6825 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006826 }
6827 }
6828
Jeff Codyb1b1d782012-10-16 15:49:09 -04006829 g_free(filename_full);
6830 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006831 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006832}
6833
bellardea2384d2004-08-01 21:59:26 +00006834void bdrv_init(void)
6835{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006836#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6837 use_bdrv_whitelist = 1;
6838#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006839 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006840}
pbrookce1a14d2006-08-07 02:38:06 +00006841
Markus Armbrustereb852012009-10-27 18:41:44 +01006842void bdrv_init_with_whitelist(void)
6843{
6844 use_bdrv_whitelist = 1;
6845 bdrv_init();
6846}
6847
Kevin Wolfaec81042025-02-04 22:13:52 +01006848bool bdrv_is_inactive(BlockDriverState *bs) {
6849 return bs->open_flags & BDRV_O_INACTIVE;
6850}
6851
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006852int bdrv_activate(BlockDriverState *bs, Error **errp)
6853{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006854 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006855 Error *local_err = NULL;
6856 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006857 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006858
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006859 GLOBAL_STATE_CODE();
Kevin Wolf3804e3c2023-09-11 11:46:12 +02006860 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006861
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006862 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006863 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006864 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006865
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006866 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006867 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006868 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006869 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006870 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006871 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006872 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006873
Kevin Wolfdafe0962017-11-16 13:00:01 +01006874 /*
6875 * Update permissions, they may differ for inactive nodes.
6876 *
6877 * Note that the required permissions of inactive images are always a
6878 * subset of the permissions required after activating the image. This
6879 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006880 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006881 *
6882 * It also means that in error cases, we don't have to try and revert to
6883 * the old permissions (which is an operation that could fail, too). We can
6884 * just keep the extended permissions for the next time that an activation
6885 * of the image is tried.
6886 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006887 if (bs->open_flags & BDRV_O_INACTIVE) {
6888 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006889 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006890 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006891 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006892 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006893 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006894
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006895 ret = bdrv_invalidate_cache(bs, errp);
6896 if (ret < 0) {
6897 bs->open_flags |= BDRV_O_INACTIVE;
6898 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006899 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006900
Kevin Wolf7bb49412019-12-17 15:06:38 +01006901 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6902 bdrv_dirty_bitmap_skip_store(bm, false);
6903 }
6904
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01006905 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006906 if (ret < 0) {
6907 bs->open_flags |= BDRV_O_INACTIVE;
6908 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006909 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006910 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006911 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006912
6913 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006914 if (parent->klass->activate) {
6915 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006916 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006917 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006918 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006919 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006920 }
6921 }
6922 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006923
6924 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006925}
6926
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006927int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6928{
6929 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006930 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006931
6932 assert(!(bs->open_flags & BDRV_O_INACTIVE));
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01006933 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006934
6935 if (bs->drv->bdrv_co_invalidate_cache) {
6936 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6937 if (local_err) {
6938 error_propagate(errp, local_err);
6939 return -EINVAL;
6940 }
6941 }
6942
6943 return 0;
6944}
6945
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006946void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006947{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006948 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006949 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006950
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006951 GLOBAL_STATE_CODE();
Kevin Wolf2b3912f2023-09-29 16:51:39 +02006952 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006953
Kevin Wolf88be7b42016-05-20 18:49:07 +02006954 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006955 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006956
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006957 ret = bdrv_activate(bs, errp);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006958 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006959 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006960 return;
6961 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006962 }
6963}
6964
Kevin Wolf0e6bad12023-09-29 16:51:38 +02006965static bool GRAPH_RDLOCK
6966bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
Kevin Wolf9e372712018-11-23 15:11:14 +01006967{
6968 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006969 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006970
6971 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006972 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006973 BlockDriverState *parent_bs = parent->opaque;
6974 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6975 return true;
6976 }
6977 }
6978 }
6979
6980 return false;
6981}
6982
Kevin Wolfa6490ec2025-02-04 22:13:53 +01006983static int GRAPH_RDLOCK
6984bdrv_inactivate_recurse(BlockDriverState *bs, bool top_level)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006985{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006986 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006987 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006988 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006989
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05006990 GLOBAL_STATE_CODE();
6991
Fiona Ebner841998e2025-05-30 17:10:41 +02006992 assert(bs->quiesce_counter > 0);
6993
Max Reitzd470ad42017-11-10 21:31:09 +01006994 if (!bs->drv) {
6995 return -ENOMEDIUM;
6996 }
6997
Kevin Wolf9e372712018-11-23 15:11:14 +01006998 /* Make sure that we don't inactivate a child before its parent.
6999 * It will be covered by recursion from the yet active parent. */
7000 if (bdrv_has_bds_parent(bs, true)) {
7001 return 0;
7002 }
7003
Kevin Wolfa6490ec2025-02-04 22:13:53 +01007004 /*
7005 * Inactivating an already inactive node on user request is harmless, but if
7006 * a child is already inactive before its parent, that's bad.
7007 */
7008 if (bs->open_flags & BDRV_O_INACTIVE) {
7009 assert(top_level);
7010 return 0;
7011 }
Kevin Wolf9e372712018-11-23 15:11:14 +01007012
7013 /* Inactivate this node */
7014 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007015 ret = bs->drv->bdrv_inactivate(bs);
7016 if (ret < 0) {
7017 return ret;
7018 }
7019 }
7020
Kevin Wolf9e372712018-11-23 15:11:14 +01007021 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02007022 if (parent->klass->inactivate) {
7023 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01007024 if (ret < 0) {
7025 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02007026 }
7027 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007028 }
Kevin Wolf38701b62017-05-04 18:52:39 +02007029
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03007030 bdrv_get_cumulative_perm(bs, &cumulative_perms,
7031 &cumulative_shared_perms);
7032 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
7033 /* Our inactive parents still need write access. Inactivation failed. */
7034 return -EPERM;
7035 }
7036
Kevin Wolf9e372712018-11-23 15:11:14 +01007037 bs->open_flags |= BDRV_O_INACTIVE;
7038
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03007039 /*
7040 * Update permissions, they may differ for inactive nodes.
7041 * We only tried to loosen restrictions, so errors are not fatal, ignore
7042 * them.
7043 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03007044 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01007045
7046 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02007047 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolfa6490ec2025-02-04 22:13:53 +01007048 ret = bdrv_inactivate_recurse(child->bs, false);
Kevin Wolf38701b62017-05-04 18:52:39 +02007049 if (ret < 0) {
7050 return ret;
7051 }
7052 }
7053
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007054 return 0;
7055}
7056
Kevin Wolf8cd37202025-02-04 22:13:59 +01007057int bdrv_inactivate(BlockDriverState *bs, Error **errp)
7058{
7059 int ret;
7060
7061 GLOBAL_STATE_CODE();
Fiona Ebner841998e2025-05-30 17:10:41 +02007062
7063 bdrv_drain_all_begin();
7064 bdrv_graph_rdlock_main_loop();
Kevin Wolf8cd37202025-02-04 22:13:59 +01007065
7066 if (bdrv_has_bds_parent(bs, true)) {
7067 error_setg(errp, "Node has active parent node");
Fiona Ebner841998e2025-05-30 17:10:41 +02007068 ret = -EPERM;
7069 goto out;
Kevin Wolf8cd37202025-02-04 22:13:59 +01007070 }
7071
7072 ret = bdrv_inactivate_recurse(bs, true);
7073 if (ret < 0) {
7074 error_setg_errno(errp, -ret, "Failed to inactivate node");
Fiona Ebner841998e2025-05-30 17:10:41 +02007075 goto out;
Kevin Wolf8cd37202025-02-04 22:13:59 +01007076 }
7077
Fiona Ebner841998e2025-05-30 17:10:41 +02007078out:
7079 bdrv_graph_rdunlock_main_loop();
7080 bdrv_drain_all_end();
7081 return ret;
Kevin Wolf8cd37202025-02-04 22:13:59 +01007082}
7083
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007084int bdrv_inactivate_all(void)
7085{
Max Reitz79720af2016-03-16 19:54:44 +01007086 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02007087 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007088 int ret = 0;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007089
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007090 GLOBAL_STATE_CODE();
Fiona Ebner841998e2025-05-30 17:10:41 +02007091
7092 bdrv_drain_all_begin();
7093 bdrv_graph_rdlock_main_loop();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007094
Kevin Wolf88be7b42016-05-20 18:49:07 +02007095 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Kevin Wolf9e372712018-11-23 15:11:14 +01007096 /* Nodes with BDS parents are covered by recursion from the last
7097 * parent that gets inactivated. Don't inactivate them a second
7098 * time if that has already happened. */
7099 if (bdrv_has_bds_parent(bs, false)) {
7100 continue;
7101 }
Kevin Wolfa6490ec2025-02-04 22:13:53 +01007102 ret = bdrv_inactivate_recurse(bs, true);
Kevin Wolf9e372712018-11-23 15:11:14 +01007103 if (ret < 0) {
7104 bdrv_next_cleanup(&it);
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05007105 break;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007106 }
7107 }
7108
Fiona Ebner841998e2025-05-30 17:10:41 +02007109 bdrv_graph_rdunlock_main_loop();
7110 bdrv_drain_all_end();
7111
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007112 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007113}
7114
Kevin Wolff9f05dc2011-07-15 13:50:26 +02007115/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00007116/* removable device support */
7117
7118/**
7119 * Return TRUE if the media is present
7120 */
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007121bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00007122{
7123 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02007124 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007125 IO_CODE();
Emanuele Giuseppe Espositoc73ff922023-02-03 16:21:57 +01007126 assert_bdrv_graph_readable();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02007127
Max Reitze031f752015-10-19 17:53:11 +02007128 if (!drv) {
7129 return false;
7130 }
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007131 if (drv->bdrv_co_is_inserted) {
7132 return drv->bdrv_co_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02007133 }
Max Reitz28d7a782015-10-19 17:53:13 +02007134 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007135 if (!bdrv_co_is_inserted(child->bs)) {
Max Reitz28d7a782015-10-19 17:53:13 +02007136 return false;
7137 }
7138 }
7139 return true;
bellard19cb3732006-08-19 11:45:59 +00007140}
7141
7142/**
bellard19cb3732006-08-19 11:45:59 +00007143 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7144 */
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007145void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00007146{
7147 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007148 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007149 assert_bdrv_graph_readable();
bellard19cb3732006-08-19 11:45:59 +00007150
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007151 if (drv && drv->bdrv_co_eject) {
7152 drv->bdrv_co_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00007153 }
bellard19cb3732006-08-19 11:45:59 +00007154}
7155
bellard19cb3732006-08-19 11:45:59 +00007156/**
7157 * Lock or unlock the media (if it is locked, the user won't be able
7158 * to eject it manually).
7159 */
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007160void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00007161{
7162 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007163 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007164 assert_bdrv_graph_readable();
Markus Armbruster025e8492011-09-06 18:58:47 +02007165 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01007166
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007167 if (drv && drv->bdrv_co_lock_medium) {
7168 drv->bdrv_co_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00007169 }
7170}
ths985a03b2007-12-24 16:10:43 +00007171
Fam Zheng9fcb0252013-08-23 09:14:46 +08007172/* Get a reference to bs */
7173void bdrv_ref(BlockDriverState *bs)
7174{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007175 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08007176 bs->refcnt++;
7177}
7178
7179/* Release a previously grabbed reference to bs.
7180 * If after releasing, reference count is zero, the BlockDriverState is
7181 * deleted. */
7182void bdrv_unref(BlockDriverState *bs)
7183{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007184 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04007185 if (!bs) {
7186 return;
7187 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08007188 assert(bs->refcnt > 0);
7189 if (--bs->refcnt == 0) {
7190 bdrv_delete(bs);
7191 }
7192}
7193
Kevin Wolf6bc0bcc2023-11-15 18:20:10 +01007194static void bdrv_schedule_unref_bh(void *opaque)
7195{
7196 BlockDriverState *bs = opaque;
Kevin Wolf6bc0bcc2023-11-15 18:20:10 +01007197
Kevin Wolf6bc0bcc2023-11-15 18:20:10 +01007198 bdrv_unref(bs);
Kevin Wolf6bc0bcc2023-11-15 18:20:10 +01007199}
7200
Kevin Wolfac2ae232023-09-11 11:46:04 +02007201/*
7202 * Release a BlockDriverState reference while holding the graph write lock.
7203 *
7204 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7205 * because bdrv_close() both involves polling and taking the graph lock
7206 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7207 * possibly closing @bs until the graph lock is released.
7208 */
7209void bdrv_schedule_unref(BlockDriverState *bs)
7210{
7211 if (!bs) {
7212 return;
7213 }
Kevin Wolf6bc0bcc2023-11-15 18:20:10 +01007214 aio_bh_schedule_oneshot(qemu_get_aio_context(), bdrv_schedule_unref_bh, bs);
Kevin Wolfac2ae232023-09-11 11:46:04 +02007215}
7216
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007217struct BdrvOpBlocker {
7218 Error *reason;
7219 QLIST_ENTRY(BdrvOpBlocker) list;
7220};
7221
7222bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
7223{
7224 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007225 GLOBAL_STATE_CODE();
Kevin Wolf0bb79c92023-09-29 16:51:49 +02007226
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007227 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7228 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
7229 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02007230 error_propagate_prepend(errp, error_copy(blocker->reason),
7231 "Node '%s' is busy: ",
7232 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007233 return true;
7234 }
7235 return false;
7236}
7237
7238void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
7239{
7240 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007241 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007242 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7243
Markus Armbruster5839e532014-08-19 10:31:08 +02007244 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007245 blocker->reason = reason;
7246 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
7247}
7248
7249void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
7250{
7251 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007252 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007253 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7254 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
7255 if (blocker->reason == reason) {
7256 QLIST_REMOVE(blocker, list);
7257 g_free(blocker);
7258 }
7259 }
7260}
7261
7262void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
7263{
7264 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007265 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007266 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7267 bdrv_op_block(bs, i, reason);
7268 }
7269}
7270
7271void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
7272{
7273 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007274 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007275 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7276 bdrv_op_unblock(bs, i, reason);
7277 }
7278}
7279
7280bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
7281{
7282 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007283 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007284 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7285 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
7286 return false;
7287 }
7288 }
7289 return true;
7290}
7291
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007292void bdrv_img_create(const char *filename, const char *fmt,
7293 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08007294 char *options, uint64_t img_size, int flags, bool quiet,
7295 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007296{
Chunyan Liu83d05212014-06-05 17:20:51 +08007297 QemuOptsList *create_opts = NULL;
7298 QemuOpts *opts = NULL;
7299 const char *backing_fmt, *backing_file;
7300 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007301 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02007302 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007303 int ret = 0;
7304
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007305 GLOBAL_STATE_CODE();
7306
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007307 /* Find driver and parse its options */
7308 drv = bdrv_find_format(fmt);
7309 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007310 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007311 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007312 }
7313
Max Reitzb65a5e12015-02-05 13:58:12 -05007314 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007315 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007316 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007317 }
7318
Max Reitzc6149722014-12-02 18:32:45 +01007319 if (!drv->create_opts) {
7320 error_setg(errp, "Format driver '%s' does not support image creation",
7321 drv->format_name);
7322 return;
7323 }
7324
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007325 if (!proto_drv->create_opts) {
7326 error_setg(errp, "Protocol driver '%s' does not support image creation",
7327 proto_drv->format_name);
7328 return;
7329 }
7330
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007331 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007332 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007333 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007334
Chunyan Liu83d05212014-06-05 17:20:51 +08007335 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007336
7337 /* Parse -o options */
7338 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007339 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007340 goto out;
7341 }
7342 }
7343
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007344 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7345 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7346 } else if (img_size != UINT64_C(-1)) {
7347 error_setg(errp, "The image size must be specified only once");
7348 goto out;
7349 }
7350
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007351 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007352 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007353 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007354 error_setg(errp, "Backing file not supported for file format '%s'",
7355 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007356 goto out;
7357 }
7358 }
7359
7360 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007361 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007362 error_setg(errp, "Backing file format not supported for file "
7363 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007364 goto out;
7365 }
7366 }
7367
Chunyan Liu83d05212014-06-05 17:20:51 +08007368 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7369 if (backing_file) {
7370 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007371 error_setg(errp, "Error: Trying to create an image with the "
7372 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007373 goto out;
7374 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007375 if (backing_file[0] == '\0') {
7376 error_setg(errp, "Expected backing file name, got empty string");
7377 goto out;
7378 }
Jes Sorensen792da932010-12-16 13:52:17 +01007379 }
7380
Chunyan Liu83d05212014-06-05 17:20:51 +08007381 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007382
John Snow6e6e55f2017-07-17 20:34:22 -04007383 /* The size for the image must always be specified, unless we have a backing
7384 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007385 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007386 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7387 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007388 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007389 int back_flags;
7390 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007391
Max Reitz645ae7d2019-02-01 20:29:14 +01007392 full_backing =
7393 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7394 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007395 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007396 goto out;
7397 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007398 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007399
Max Reitzd5b23992021-06-22 16:00:30 +02007400 /*
7401 * No need to do I/O here, which allows us to open encrypted
7402 * backing images without needing the secret
7403 */
John Snow6e6e55f2017-07-17 20:34:22 -04007404 back_flags = flags;
7405 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007406 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007407
Fam Zhengcc954f02017-12-15 16:04:45 +08007408 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007409 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007410 qdict_put_str(backing_options, "driver", backing_fmt);
7411 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007412 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007413
7414 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7415 &local_err);
7416 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007417 if (!bs) {
7418 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007419 goto out;
7420 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007421 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007422 error_setg(&local_err,
7423 "Backing file specified without backing format");
Michael Tokarevfbdffb02023-04-05 16:34:04 +03007424 error_append_hint(&local_err, "Detected format of %s.\n",
Eric Blake497a30d2021-05-03 14:36:00 -07007425 bs->drv->format_name);
7426 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007427 }
John Snow6e6e55f2017-07-17 20:34:22 -04007428 if (size == -1) {
7429 /* Opened BS, have no size */
7430 size = bdrv_getlength(bs);
7431 if (size < 0) {
7432 error_setg_errno(errp, -size, "Could not get size of '%s'",
7433 backing_file);
7434 bdrv_unref(bs);
7435 goto out;
7436 }
7437 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7438 }
7439 bdrv_unref(bs);
7440 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007441 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7442 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007443 error_setg(&local_err,
7444 "Backing file specified without backing format");
7445 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007446 }
John Snow6e6e55f2017-07-17 20:34:22 -04007447
Hyman Huang35286da2024-01-30 13:37:23 +08007448 /* Parameter 'size' is not needed for detached LUKS header */
7449 if (size == -1 &&
7450 !(!strcmp(fmt, "luks") &&
7451 qemu_opt_get_bool(opts, "detached-header", false))) {
John Snow6e6e55f2017-07-17 20:34:22 -04007452 error_setg(errp, "Image creation needs a size parameter");
7453 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007454 }
7455
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007456 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007457 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007458 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007459 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007460 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007461 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007462
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007463 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007464
Max Reitzcc84d902013-09-06 17:14:26 +02007465 if (ret == -EFBIG) {
7466 /* This is generally a better message than whatever the driver would
7467 * deliver (especially because of the cluster_size_hint), since that
7468 * is most probably not much different from "image too large". */
7469 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007470 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007471 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007472 }
Max Reitzcc84d902013-09-06 17:14:26 +02007473 error_setg(errp, "The image size is too large for file format '%s'"
7474 "%s", fmt, cluster_size_hint);
7475 error_free(local_err);
7476 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007477 }
7478
7479out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007480 qemu_opts_del(opts);
7481 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007482 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007483}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007484
7485AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7486{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007487 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007488 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007489}
7490
Kevin Wolfe336fd42020-10-05 17:58:53 +02007491AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7492{
7493 Coroutine *self = qemu_coroutine_self();
7494 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7495 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007496 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007497
7498 /*
7499 * Increase bs->in_flight to ensure that this operation is completed before
7500 * moving the node to a different AioContext. Read new_ctx only afterwards.
7501 */
7502 bdrv_inc_in_flight(bs);
7503
7504 new_ctx = bdrv_get_aio_context(bs);
7505 aio_co_reschedule_self(new_ctx);
7506 return old_ctx;
7507}
7508
7509void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7510{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007511 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007512 aio_co_reschedule_self(old_ctx);
7513 bdrv_dec_in_flight(bs);
7514}
7515
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007516static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7517{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007518 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007519 QLIST_REMOVE(ban, list);
7520 g_free(ban);
7521}
7522
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007523static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007524{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007525 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007526
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007527 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007528 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007529 bs->walking_aio_notifiers = true;
7530 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7531 if (baf->deleted) {
7532 bdrv_do_remove_aio_context_notifier(baf);
7533 } else {
7534 baf->detach_aio_context(baf->opaque);
7535 }
Max Reitz33384422014-06-20 21:57:33 +02007536 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007537 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7538 * remove remaining aio notifiers if we aren't called again.
7539 */
7540 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007541
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007542 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007543 bs->drv->bdrv_detach_aio_context(bs);
7544 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007545
7546 bs->aio_context = NULL;
7547}
7548
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007549static void bdrv_attach_aio_context(BlockDriverState *bs,
7550 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007551{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007552 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007553 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007554
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007555 bs->aio_context = new_context;
7556
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007557 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007558 bs->drv->bdrv_attach_aio_context(bs, new_context);
7559 }
Max Reitz33384422014-06-20 21:57:33 +02007560
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007561 assert(!bs->walking_aio_notifiers);
7562 bs->walking_aio_notifiers = true;
7563 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7564 if (ban->deleted) {
7565 bdrv_do_remove_aio_context_notifier(ban);
7566 } else {
7567 ban->attached_aio_context(new_context, ban->opaque);
7568 }
Max Reitz33384422014-06-20 21:57:33 +02007569 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007570 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007571}
7572
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007573typedef struct BdrvStateSetAioContext {
7574 AioContext *new_ctx;
7575 BlockDriverState *bs;
7576} BdrvStateSetAioContext;
7577
Fiona Ebner37587332025-05-30 17:10:42 +02007578static bool GRAPH_RDLOCK
7579bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
7580 GHashTable *visited, Transaction *tran,
7581 Error **errp)
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007582{
7583 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007584 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007585 return true;
7586 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007587 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007588
7589 /*
7590 * A BdrvChildClass that doesn't handle AioContext changes cannot
7591 * tolerate any AioContext changes
7592 */
7593 if (!c->klass->change_aio_ctx) {
7594 char *user = bdrv_child_user_desc(c);
7595 error_setg(errp, "Changing iothreads is not supported by %s", user);
7596 g_free(user);
7597 return false;
7598 }
7599 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7600 assert(!errp || *errp);
7601 return false;
7602 }
7603 return true;
7604}
7605
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007606bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007607 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007608 Error **errp)
7609{
7610 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007611 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007612 return true;
7613 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007614 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007615 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7616}
7617
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007618static void bdrv_set_aio_context_clean(void *opaque)
7619{
7620 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7621 BlockDriverState *bs = (BlockDriverState *) state->bs;
7622
7623 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7624 bdrv_drained_end(bs);
7625
7626 g_free(state);
7627}
7628
7629static void bdrv_set_aio_context_commit(void *opaque)
7630{
7631 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7632 BlockDriverState *bs = (BlockDriverState *) state->bs;
7633 AioContext *new_context = state->new_ctx;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007634
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007635 bdrv_detach_aio_context(bs);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007636 bdrv_attach_aio_context(bs, new_context);
7637}
7638
7639static TransactionActionDrv set_aio_context = {
7640 .commit = bdrv_set_aio_context_commit,
7641 .clean = bdrv_set_aio_context_clean,
7642};
7643
Kevin Wolf42a65f02019-05-07 18:31:38 +02007644/*
7645 * Changes the AioContext used for fd handlers, timers, and BHs by this
7646 * BlockDriverState and all its children and parents.
7647 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007648 * Must be called from the main AioContext.
7649 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007650 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007651 * responsible for freeing the list afterwards.
7652 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007653static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007654 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007655 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007656{
7657 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007658 BdrvStateSetAioContext *state;
7659
7660 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007661
7662 if (bdrv_get_aio_context(bs) == ctx) {
7663 return true;
7664 }
7665
Kevin Wolf7f831d22023-09-11 11:46:17 +02007666 bdrv_graph_rdlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007667 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007668 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007669 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007670 return false;
7671 }
7672 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007673
Kevin Wolf5d231842019-05-06 19:17:56 +02007674 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007675 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007676 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007677 return false;
7678 }
7679 }
Kevin Wolf7f831d22023-09-11 11:46:17 +02007680 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007681
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007682 state = g_new(BdrvStateSetAioContext, 1);
7683 *state = (BdrvStateSetAioContext) {
7684 .new_ctx = ctx,
7685 .bs = bs,
7686 };
7687
7688 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7689 bdrv_drained_begin(bs);
7690
7691 tran_add(tran, &set_aio_context, state);
7692
Kevin Wolf5d231842019-05-06 19:17:56 +02007693 return true;
7694}
7695
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007696/*
7697 * Change bs's and recursively all of its parents' and children's AioContext
7698 * to the given new context, returning an error if that isn't possible.
7699 *
7700 * If ignore_child is not NULL, that child (and its subgraph) will not
7701 * be touched.
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007702 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007703int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7704 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007705{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007706 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007707 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007708 int ret;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007709 GLOBAL_STATE_CODE();
7710
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007711 /*
7712 * Recursion phase: go through all nodes of the graph.
7713 * Take care of checking that all nodes support changing AioContext
Michael Tokarev3202d8e2023-07-14 14:06:05 +03007714 * and drain them, building a linear list of callbacks to run if everything
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007715 * is successful (the transaction itself).
7716 */
7717 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007718 visited = g_hash_table_new(NULL, NULL);
7719 if (ignore_child) {
7720 g_hash_table_add(visited, ignore_child);
7721 }
7722 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7723 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007724
7725 /*
7726 * Linear phase: go through all callbacks collected in the transaction.
Stefan Hajnoczi23c983c2023-12-05 13:20:11 -05007727 * Run all callbacks collected in the recursion to switch every node's
7728 * AioContext (transaction commit), or undo all changes done in the
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007729 * recursion (transaction abort).
7730 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007731
7732 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007733 /* Just run clean() callbacks. No AioContext changed. */
7734 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007735 return -EPERM;
7736 }
7737
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007738 tran_commit(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007739 return 0;
7740}
7741
Max Reitz33384422014-06-20 21:57:33 +02007742void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7743 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7744 void (*detach_aio_context)(void *opaque), void *opaque)
7745{
7746 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7747 *ban = (BdrvAioNotifier){
7748 .attached_aio_context = attached_aio_context,
7749 .detach_aio_context = detach_aio_context,
7750 .opaque = opaque
7751 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007752 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007753
7754 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7755}
7756
7757void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7758 void (*attached_aio_context)(AioContext *,
7759 void *),
7760 void (*detach_aio_context)(void *),
7761 void *opaque)
7762{
7763 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007764 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007765
7766 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7767 if (ban->attached_aio_context == attached_aio_context &&
7768 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007769 ban->opaque == opaque &&
7770 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007771 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007772 if (bs->walking_aio_notifiers) {
7773 ban->deleted = true;
7774 } else {
7775 bdrv_do_remove_aio_context_notifier(ban);
7776 }
Max Reitz33384422014-06-20 21:57:33 +02007777 return;
7778 }
7779 }
7780
7781 abort();
7782}
7783
Max Reitz77485432014-10-27 11:12:50 +01007784int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007785 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007786 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007787 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007788{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007789 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007790 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007791 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007792 return -ENOMEDIUM;
7793 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007794 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007795 error_setg(errp, "Block driver '%s' does not support option amendment",
7796 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007797 return -ENOTSUP;
7798 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007799 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7800 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007801}
Benoît Canetf6186f42013-10-02 14:33:48 +02007802
Max Reitz5d69b5a2020-02-18 11:34:41 +01007803/*
7804 * This function checks whether the given @to_replace is allowed to be
7805 * replaced by a node that always shows the same data as @bs. This is
7806 * used for example to verify whether the mirror job can replace
7807 * @to_replace by the target mirrored from @bs.
7808 * To be replaceable, @bs and @to_replace may either be guaranteed to
7809 * always show the same data (because they are only connected through
7810 * filters), or some driver may allow replacing one of its children
7811 * because it can guarantee that this child's data is not visible at
7812 * all (for example, for dissenting quorum children that have no other
7813 * parents).
7814 */
7815bool bdrv_recurse_can_replace(BlockDriverState *bs,
7816 BlockDriverState *to_replace)
7817{
Max Reitz93393e62019-06-12 17:03:38 +02007818 BlockDriverState *filtered;
7819
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007820 GLOBAL_STATE_CODE();
7821
Max Reitz5d69b5a2020-02-18 11:34:41 +01007822 if (!bs || !bs->drv) {
7823 return false;
7824 }
7825
7826 if (bs == to_replace) {
7827 return true;
7828 }
7829
7830 /* See what the driver can do */
7831 if (bs->drv->bdrv_recurse_can_replace) {
7832 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7833 }
7834
7835 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007836 filtered = bdrv_filter_bs(bs);
7837 if (filtered) {
7838 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007839 }
7840
7841 /* Safe default */
7842 return false;
7843}
7844
Max Reitz810803a2020-02-18 11:34:44 +01007845/*
7846 * Check whether the given @node_name can be replaced by a node that
7847 * has the same data as @parent_bs. If so, return @node_name's BDS;
7848 * NULL otherwise.
7849 *
7850 * @node_name must be a (recursive) *child of @parent_bs (or this
7851 * function will return NULL).
7852 *
7853 * The result (whether the node can be replaced or not) is only valid
7854 * for as long as no graph or permission changes occur.
7855 */
Wen Congyange12f3782015-07-17 10:12:22 +08007856BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7857 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007858{
7859 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007860
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007861 GLOBAL_STATE_CODE();
7862
Benoît Canet09158f02014-06-27 18:25:25 +02007863 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007864 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007865 return NULL;
7866 }
7867
7868 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05007869 return NULL;
Benoît Canet09158f02014-06-27 18:25:25 +02007870 }
7871
7872 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7873 * most non filter in order to prevent data corruption.
7874 * Another benefit is that this tests exclude backing files which are
7875 * blocked by the backing blockers.
7876 */
Max Reitz810803a2020-02-18 11:34:44 +01007877 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7878 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7879 "because it cannot be guaranteed that doing so would not "
7880 "lead to an abrupt change of visible data",
7881 node_name, parent_bs->node_name);
Stefan Hajnoczib49f4752023-12-05 13:20:03 -05007882 return NULL;
Benoît Canet09158f02014-06-27 18:25:25 +02007883 }
7884
7885 return to_replace_bs;
7886}
Ming Lei448ad912014-07-04 18:04:33 +08007887
Max Reitz97e2f022019-02-01 20:29:27 +01007888/**
7889 * Iterates through the list of runtime option keys that are said to
7890 * be "strong" for a BDS. An option is called "strong" if it changes
7891 * a BDS's data. For example, the null block driver's "size" and
7892 * "read-zeroes" options are strong, but its "latency-ns" option is
7893 * not.
7894 *
7895 * If a key returned by this function ends with a dot, all options
7896 * starting with that prefix are strong.
7897 */
7898static const char *const *strong_options(BlockDriverState *bs,
7899 const char *const *curopt)
7900{
7901 static const char *const global_options[] = {
7902 "driver", "filename", NULL
7903 };
7904
7905 if (!curopt) {
7906 return &global_options[0];
7907 }
7908
7909 curopt++;
7910 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7911 curopt = bs->drv->strong_runtime_opts;
7912 }
7913
7914 return (curopt && *curopt) ? curopt : NULL;
7915}
7916
7917/**
7918 * Copies all strong runtime options from bs->options to the given
7919 * QDict. The set of strong option keys is determined by invoking
7920 * strong_options().
7921 *
7922 * Returns true iff any strong option was present in bs->options (and
7923 * thus copied to the target QDict) with the exception of "filename"
7924 * and "driver". The caller is expected to use this value to decide
7925 * whether the existence of strong options prevents the generation of
7926 * a plain filename.
7927 */
7928static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7929{
7930 bool found_any = false;
7931 const char *const *option_name = NULL;
7932
7933 if (!bs->drv) {
7934 return false;
7935 }
7936
7937 while ((option_name = strong_options(bs, option_name))) {
7938 bool option_given = false;
7939
7940 assert(strlen(*option_name) > 0);
7941 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7942 QObject *entry = qdict_get(bs->options, *option_name);
7943 if (!entry) {
7944 continue;
7945 }
7946
7947 qdict_put_obj(d, *option_name, qobject_ref(entry));
7948 option_given = true;
7949 } else {
7950 const QDictEntry *entry;
7951 for (entry = qdict_first(bs->options); entry;
7952 entry = qdict_next(bs->options, entry))
7953 {
7954 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7955 qdict_put_obj(d, qdict_entry_key(entry),
7956 qobject_ref(qdict_entry_value(entry)));
7957 option_given = true;
7958 }
7959 }
7960 }
7961
7962 /* While "driver" and "filename" need to be included in a JSON filename,
7963 * their existence does not prohibit generation of a plain filename. */
7964 if (!found_any && option_given &&
7965 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7966 {
7967 found_any = true;
7968 }
7969 }
7970
Max Reitz62a01a272019-02-01 20:29:34 +01007971 if (!qdict_haskey(d, "driver")) {
7972 /* Drivers created with bdrv_new_open_driver() may not have a
7973 * @driver option. Add it here. */
7974 qdict_put_str(d, "driver", bs->drv->format_name);
7975 }
7976
Max Reitz97e2f022019-02-01 20:29:27 +01007977 return found_any;
7978}
7979
Max Reitz90993622019-02-01 20:29:09 +01007980/* Note: This function may return false positives; it may return true
7981 * even if opening the backing file specified by bs's image header
7982 * would result in exactly bs->backing. */
Kevin Wolf004915a2023-10-27 17:53:26 +02007983static bool GRAPH_RDLOCK bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007984{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007985 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01007986 if (bs->backing) {
7987 return strcmp(bs->auto_backing_file,
7988 bs->backing->bs->filename);
7989 } else {
7990 /* No backing BDS, so if the image header reports any backing
7991 * file, it must have been suppressed */
7992 return bs->auto_backing_file[0] != '\0';
7993 }
7994}
7995
Max Reitz91af7012014-07-18 20:24:56 +02007996/* Updates the following BDS fields:
7997 * - exact_filename: A filename which may be used for opening a block device
7998 * which (mostly) equals the given BDS (even without any
7999 * other options; so reading and writing must return the same
8000 * results, but caching etc. may be different)
8001 * - full_open_options: Options which, when given when opening a block device
8002 * (without a filename), result in a BDS (mostly)
8003 * equalling the given one
8004 * - filename: If exact_filename is set, it is copied here. Otherwise,
8005 * full_open_options is converted to a JSON object, prefixed with
8006 * "json:" (for use through the JSON pseudo protocol) and put here.
8007 */
8008void bdrv_refresh_filename(BlockDriverState *bs)
8009{
8010 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01008011 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02008012 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02008013 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01008014 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01008015 bool generate_json_filename; /* Whether our default implementation should
8016 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02008017
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008018 GLOBAL_STATE_CODE();
8019
Max Reitz91af7012014-07-18 20:24:56 +02008020 if (!drv) {
8021 return;
8022 }
8023
Max Reitze24518e2019-02-01 20:29:06 +01008024 /* This BDS's file name may depend on any of its children's file names, so
8025 * refresh those first */
8026 QLIST_FOREACH(child, &bs->children, next) {
8027 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02008028 }
8029
Max Reitzbb808d52019-02-01 20:29:07 +01008030 if (bs->implicit) {
8031 /* For implicit nodes, just copy everything from the single child */
8032 child = QLIST_FIRST(&bs->children);
8033 assert(QLIST_NEXT(child, next) == NULL);
8034
8035 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
8036 child->bs->exact_filename);
8037 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
8038
Pan Nengyuancb895612020-01-16 16:56:00 +08008039 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01008040 bs->full_open_options = qobject_ref(child->bs->full_open_options);
8041
8042 return;
8043 }
8044
Max Reitz90993622019-02-01 20:29:09 +01008045 backing_overridden = bdrv_backing_overridden(bs);
8046
8047 if (bs->open_flags & BDRV_O_NO_IO) {
8048 /* Without I/O, the backing file does not change anything.
8049 * Therefore, in such a case (primarily qemu-img), we can
8050 * pretend the backing file has not been overridden even if
8051 * it technically has been. */
8052 backing_overridden = false;
8053 }
8054
Max Reitz97e2f022019-02-01 20:29:27 +01008055 /* Gather the options QDict */
8056 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01008057 generate_json_filename = append_strong_runtime_options(opts, bs);
8058 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01008059
8060 if (drv->bdrv_gather_child_options) {
8061 /* Some block drivers may not want to present all of their children's
8062 * options, or name them differently from BdrvChild.name */
8063 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
8064 } else {
8065 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02008066 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01008067 /* We can skip the backing BDS if it has not been overridden */
8068 continue;
8069 }
8070
8071 qdict_put(opts, child->name,
8072 qobject_ref(child->bs->full_open_options));
8073 }
8074
8075 if (backing_overridden && !bs->backing) {
8076 /* Force no backing file */
8077 qdict_put_null(opts, "backing");
8078 }
8079 }
8080
8081 qobject_unref(bs->full_open_options);
8082 bs->full_open_options = opts;
8083
Max Reitz52f72d62019-06-12 17:43:03 +02008084 primary_child_bs = bdrv_primary_bs(bs);
8085
Max Reitz998b3a12019-02-01 20:29:28 +01008086 if (drv->bdrv_refresh_filename) {
8087 /* Obsolete information is of no use here, so drop the old file name
8088 * information before refreshing it */
8089 bs->exact_filename[0] = '\0';
8090
8091 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02008092 } else if (primary_child_bs) {
8093 /*
8094 * Try to reconstruct valid information from the underlying
8095 * file -- this only works for format nodes (filter nodes
8096 * cannot be probed and as such must be selected by the user
8097 * either through an options dict, or through a special
8098 * filename which the filter driver must construct in its
8099 * .bdrv_refresh_filename() implementation).
8100 */
Max Reitz998b3a12019-02-01 20:29:28 +01008101
8102 bs->exact_filename[0] = '\0';
8103
Max Reitzfb695c72019-02-01 20:29:29 +01008104 /*
8105 * We can use the underlying file's filename if:
8106 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02008107 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01008108 * - the file is a protocol BDS, and
8109 * - opening that file (as this BDS's format) will automatically create
8110 * the BDS tree we have right now, that is:
8111 * - the user did not significantly change this BDS's behavior with
8112 * some explicit (strong) options
8113 * - no non-file child of this BDS has been overridden by the user
8114 * Both of these conditions are represented by generate_json_filename.
8115 */
Max Reitz52f72d62019-06-12 17:43:03 +02008116 if (primary_child_bs->exact_filename[0] &&
Paolo Bonzini41770f62022-11-24 16:21:18 +01008117 primary_child_bs->drv->protocol_name &&
Max Reitz52f72d62019-06-12 17:43:03 +02008118 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01008119 {
Max Reitz52f72d62019-06-12 17:43:03 +02008120 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01008121 }
8122 }
8123
Max Reitz91af7012014-07-18 20:24:56 +02008124 if (bs->exact_filename[0]) {
8125 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01008126 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01008127 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05008128 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01008129 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05008130 /* Give user a hint if we truncated things. */
8131 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
8132 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01008133 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02008134 }
8135}
Wen Congyange06018a2016-05-10 15:36:37 +08008136
Max Reitz1e89d0f2019-02-01 20:29:18 +01008137char *bdrv_dirname(BlockDriverState *bs, Error **errp)
8138{
8139 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02008140 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01008141
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008142 GLOBAL_STATE_CODE();
8143
Max Reitz1e89d0f2019-02-01 20:29:18 +01008144 if (!drv) {
8145 error_setg(errp, "Node '%s' is ejected", bs->node_name);
8146 return NULL;
8147 }
8148
8149 if (drv->bdrv_dirname) {
8150 return drv->bdrv_dirname(bs, errp);
8151 }
8152
Max Reitz52f72d62019-06-12 17:43:03 +02008153 child_bs = bdrv_primary_bs(bs);
8154 if (child_bs) {
8155 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01008156 }
8157
8158 bdrv_refresh_filename(bs);
8159 if (bs->exact_filename[0] != '\0') {
8160 return path_combine(bs->exact_filename, "");
8161 }
8162
8163 error_setg(errp, "Cannot generate a base directory for %s nodes",
8164 drv->format_name);
8165 return NULL;
8166}
8167
Wen Congyange06018a2016-05-10 15:36:37 +08008168/*
8169 * Hot add/remove a BDS's child. So the user can take a child offline when
8170 * it is broken and take a new child online
8171 */
8172void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
8173 Error **errp)
8174{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008175 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008176 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
8177 error_setg(errp, "The node %s does not support adding a child",
8178 bdrv_get_device_or_node_name(parent_bs));
8179 return;
8180 }
8181
Sam Li774c7262023-05-08 12:55:30 +08008182 /*
8183 * Non-zoned block drivers do not follow zoned storage constraints
8184 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8185 * drivers in a graph.
8186 */
8187 if (!parent_bs->drv->supports_zoned_children &&
8188 child_bs->bl.zoned == BLK_Z_HM) {
8189 /*
8190 * The host-aware model allows zoned storage constraints and random
8191 * write. Allow mixing host-aware and non-zoned drivers. Using
8192 * host-aware device as a regular device.
8193 */
8194 error_setg(errp, "Cannot add a %s child to a %s parent",
8195 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8196 parent_bs->drv->supports_zoned_children ?
8197 "support zoned children" : "not support zoned children");
8198 return;
8199 }
8200
Wen Congyange06018a2016-05-10 15:36:37 +08008201 if (!QLIST_EMPTY(&child_bs->parents)) {
8202 error_setg(errp, "The node %s already has a parent",
8203 child_bs->node_name);
8204 return;
8205 }
8206
8207 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8208}
8209
8210void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8211{
8212 BdrvChild *tmp;
8213
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008214 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008215 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8216 error_setg(errp, "The node %s does not support removing a child",
8217 bdrv_get_device_or_node_name(parent_bs));
8218 return;
8219 }
8220
8221 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8222 if (tmp == child) {
8223 break;
8224 }
8225 }
8226
8227 if (!tmp) {
8228 error_setg(errp, "The node %s does not have a child named %s",
8229 bdrv_get_device_or_node_name(parent_bs),
8230 bdrv_get_device_or_node_name(child->bs));
8231 return;
8232 }
8233
8234 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8235}
Max Reitz6f7a3b52020-04-29 16:11:23 +02008236
8237int bdrv_make_empty(BdrvChild *c, Error **errp)
8238{
8239 BlockDriver *drv = c->bs->drv;
8240 int ret;
8241
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008242 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02008243 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8244
8245 if (!drv->bdrv_make_empty) {
8246 error_setg(errp, "%s does not support emptying nodes",
8247 drv->format_name);
8248 return -ENOTSUP;
8249 }
8250
8251 ret = drv->bdrv_make_empty(c->bs);
8252 if (ret < 0) {
8253 error_setg_errno(errp, -ret, "Failed to empty %s",
8254 c->bs->filename);
8255 return ret;
8256 }
8257
8258 return 0;
8259}
Max Reitz9a6fc882019-05-31 15:23:11 +02008260
8261/*
8262 * Return the child that @bs acts as an overlay for, and from which data may be
8263 * copied in COW or COR operations. Usually this is the backing file.
8264 */
8265BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8266{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008267 IO_CODE();
8268
Max Reitz9a6fc882019-05-31 15:23:11 +02008269 if (!bs || !bs->drv) {
8270 return NULL;
8271 }
8272
8273 if (bs->drv->is_filter) {
8274 return NULL;
8275 }
8276
8277 if (!bs->backing) {
8278 return NULL;
8279 }
8280
8281 assert(bs->backing->role & BDRV_CHILD_COW);
8282 return bs->backing;
8283}
8284
8285/*
8286 * If @bs acts as a filter for exactly one of its children, return
8287 * that child.
8288 */
8289BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8290{
8291 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008292 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008293
8294 if (!bs || !bs->drv) {
8295 return NULL;
8296 }
8297
8298 if (!bs->drv->is_filter) {
8299 return NULL;
8300 }
8301
8302 /* Only one of @backing or @file may be used */
8303 assert(!(bs->backing && bs->file));
8304
8305 c = bs->backing ?: bs->file;
8306 if (!c) {
8307 return NULL;
8308 }
8309
8310 assert(c->role & BDRV_CHILD_FILTERED);
8311 return c;
8312}
8313
8314/*
8315 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8316 * whichever is non-NULL.
8317 *
8318 * Return NULL if both are NULL.
8319 */
8320BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8321{
8322 BdrvChild *cow_child = bdrv_cow_child(bs);
8323 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008324 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008325
8326 /* Filter nodes cannot have COW backing files */
8327 assert(!(cow_child && filter_child));
8328
8329 return cow_child ?: filter_child;
8330}
8331
8332/*
8333 * Return the primary child of this node: For filters, that is the
8334 * filtered child. For other nodes, that is usually the child storing
8335 * metadata.
8336 * (A generally more helpful description is that this is (usually) the
8337 * child that has the same filename as @bs.)
8338 *
8339 * Drivers do not necessarily have a primary child; for example quorum
8340 * does not.
8341 */
8342BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8343{
8344 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008345 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008346
8347 QLIST_FOREACH(c, &bs->children, next) {
8348 if (c->role & BDRV_CHILD_PRIMARY) {
8349 assert(!found);
8350 found = c;
8351 }
8352 }
8353
8354 return found;
8355}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008356
Kevin Wolfec82cc42023-10-27 17:53:20 +02008357static BlockDriverState * GRAPH_RDLOCK
8358bdrv_do_skip_filters(BlockDriverState *bs, bool stop_on_explicit_filter)
Max Reitzd38d7eb2019-06-12 15:06:37 +02008359{
8360 BdrvChild *c;
8361
8362 if (!bs) {
8363 return NULL;
8364 }
8365
8366 while (!(stop_on_explicit_filter && !bs->implicit)) {
8367 c = bdrv_filter_child(bs);
8368 if (!c) {
8369 /*
8370 * A filter that is embedded in a working block graph must
8371 * have a child. Assert this here so this function does
8372 * not return a filter node that is not expected by the
8373 * caller.
8374 */
8375 assert(!bs->drv || !bs->drv->is_filter);
8376 break;
8377 }
8378 bs = c->bs;
8379 }
8380 /*
8381 * Note that this treats nodes with bs->drv == NULL as not being
8382 * filters (bs->drv == NULL should be replaced by something else
8383 * anyway).
8384 * The advantage of this behavior is that this function will thus
8385 * always return a non-NULL value (given a non-NULL @bs).
8386 */
8387
8388 return bs;
8389}
8390
8391/*
8392 * Return the first BDS that has not been added implicitly or that
8393 * does not have a filtered child down the chain starting from @bs
8394 * (including @bs itself).
8395 */
8396BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8397{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008398 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008399 return bdrv_do_skip_filters(bs, true);
8400}
8401
8402/*
8403 * Return the first BDS that does not have a filtered child down the
8404 * chain starting from @bs (including @bs itself).
8405 */
8406BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8407{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008408 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008409 return bdrv_do_skip_filters(bs, false);
8410}
8411
8412/*
8413 * For a backing chain, return the first non-filter backing image of
8414 * the first non-filter image.
8415 */
8416BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8417{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008418 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008419 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8420}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008421
8422/**
8423 * Check whether [offset, offset + bytes) overlaps with the cached
8424 * block-status data region.
8425 *
8426 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8427 * which is what bdrv_bsc_is_data()'s interface needs.
8428 * Otherwise, *pnum is not touched.
8429 */
8430static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8431 int64_t offset, int64_t bytes,
8432 int64_t *pnum)
8433{
8434 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8435 bool overlaps;
8436
8437 overlaps =
8438 qatomic_read(&bsc->valid) &&
8439 ranges_overlap(offset, bytes, bsc->data_start,
8440 bsc->data_end - bsc->data_start);
8441
8442 if (overlaps && pnum) {
8443 *pnum = bsc->data_end - offset;
8444 }
8445
8446 return overlaps;
8447}
8448
8449/**
8450 * See block_int.h for this function's documentation.
8451 */
8452bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8453{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008454 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008455 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008456 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8457}
8458
8459/**
8460 * See block_int.h for this function's documentation.
8461 */
8462void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8463 int64_t offset, int64_t bytes)
8464{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008465 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008466 RCU_READ_LOCK_GUARD();
8467
8468 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8469 qatomic_set(&bs->block_status_cache->valid, false);
8470 }
8471}
8472
8473/**
8474 * See block_int.h for this function's documentation.
8475 */
8476void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8477{
8478 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8479 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008480 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008481
8482 *new_bsc = (BdrvBlockStatusCache) {
8483 .valid = true,
8484 .data_start = offset,
8485 .data_end = offset + bytes,
8486 };
8487
8488 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8489
8490 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8491 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8492 if (old_bsc) {
8493 g_free_rcu(old_bsc, rcu);
8494 }
8495}