blob: be7dc5d3e9e27a04f834b564248a8e9fa44fba6a [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"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010039#include "qapi/qmp/qdict.h"
Paolo Bonzini7b1b5d12012-12-17 18:19:43 +010040#include "qapi/qmp/qjson.h"
Max Reitze59a0cf2018-02-24 16:40:32 +010041#include "qapi/qmp/qnull.h"
Markus Armbrusterfc81fa12018-02-01 12:18:40 +010042#include "qapi/qmp/qstring.h"
Kevin Wolfe1d74bc2018-01-10 15:52:33 +010043#include "qapi/qobject-output-visitor.h"
44#include "qapi/qapi-visit-block-core.h"
Markus Armbrusterbfb197e2014-10-07 13:59:11 +020045#include "sysemu/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,
Max Reitz5b363932016-05-17 16:41:31 +020089 Error **errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +020090
Kevin Wolfbfb8aa62021-10-18 15:47:14 +020091static bool bdrv_recurse_has_child(BlockDriverState *bs,
92 BlockDriverState *child);
93
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +030094static void bdrv_replace_child_noperm(BdrvChild *child,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +030095 BlockDriverState *new_bs);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +030096static void bdrv_remove_child(BdrvChild *child, Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030097
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +030098static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
99 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +0300100 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300101static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
102static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
103
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -0500104static bool bdrv_backing_overridden(BlockDriverState *bs);
105
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400106static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -0400107 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400108 Error **errp);
109
Markus Armbrustereb852012009-10-27 18:41:44 +0100110/* If non-zero, use only whitelisted block drivers */
111static int use_bdrv_whitelist;
112
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000113#ifdef _WIN32
114static int is_windows_drive_prefix(const char *filename)
115{
116 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
117 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
118 filename[1] == ':');
119}
120
121int is_windows_drive(const char *filename)
122{
123 if (is_windows_drive_prefix(filename) &&
124 filename[2] == '\0')
125 return 1;
126 if (strstart(filename, "\\\\.\\", NULL) ||
127 strstart(filename, "//./", NULL))
128 return 1;
129 return 0;
130}
131#endif
132
Kevin Wolf339064d2013-11-28 10:23:32 +0100133size_t bdrv_opt_mem_align(BlockDriverState *bs)
134{
135 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300136 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400137 return MAX(4096, qemu_real_host_page_size());
Kevin Wolf339064d2013-11-28 10:23:32 +0100138 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500139 IO_CODE();
Kevin Wolf339064d2013-11-28 10:23:32 +0100140
141 return bs->bl.opt_mem_alignment;
142}
143
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300144size_t bdrv_min_mem_align(BlockDriverState *bs)
145{
146 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300147 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400148 return MAX(4096, qemu_real_host_page_size());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300149 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500150 IO_CODE();
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300151
152 return bs->bl.min_mem_alignment;
153}
154
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000155/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100156int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000157{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200158 const char *p;
159
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000160#ifdef _WIN32
161 if (is_windows_drive(path) ||
162 is_windows_drive_prefix(path)) {
163 return 0;
164 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200165 p = path + strcspn(path, ":/\\");
166#else
167 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000168#endif
169
Paolo Bonzini947995c2012-05-08 16:51:48 +0200170 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000171}
172
bellard83f64092006-08-01 16:21:11 +0000173int path_is_absolute(const char *path)
174{
bellard21664422007-01-07 18:22:37 +0000175#ifdef _WIN32
176 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200177 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000178 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200179 }
180 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000181#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200182 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000183#endif
bellard83f64092006-08-01 16:21:11 +0000184}
185
Max Reitz009b03a2019-02-01 20:29:13 +0100186/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000187 path to it by considering it is relative to base_path. URL are
188 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100189char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000190{
Max Reitz009b03a2019-02-01 20:29:13 +0100191 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000192 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100193 char *result;
bellard83f64092006-08-01 16:21:11 +0000194 int len;
195
bellard83f64092006-08-01 16:21:11 +0000196 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100197 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000198 }
Max Reitz009b03a2019-02-01 20:29:13 +0100199
200 if (path_has_protocol(base_path)) {
201 protocol_stripped = strchr(base_path, ':');
202 if (protocol_stripped) {
203 protocol_stripped++;
204 }
205 }
206 p = protocol_stripped ?: base_path;
207
208 p1 = strrchr(base_path, '/');
209#ifdef _WIN32
210 {
211 const char *p2;
212 p2 = strrchr(base_path, '\\');
213 if (!p1 || p2 > p1) {
214 p1 = p2;
215 }
216 }
217#endif
218 if (p1) {
219 p1++;
220 } else {
221 p1 = base_path;
222 }
223 if (p1 > p) {
224 p = p1;
225 }
226 len = p - base_path;
227
228 result = g_malloc(len + strlen(filename) + 1);
229 memcpy(result, base_path, len);
230 strcpy(result + len, filename);
231
232 return result;
233}
234
Max Reitz03c320d2017-05-22 21:52:16 +0200235/*
236 * Helper function for bdrv_parse_filename() implementations to remove optional
237 * protocol prefixes (especially "file:") from a filename and for putting the
238 * stripped filename into the options QDict if there is such a prefix.
239 */
240void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
241 QDict *options)
242{
243 if (strstart(filename, prefix, &filename)) {
244 /* Stripping the explicit protocol prefix may result in a protocol
245 * prefix being (wrongly) detected (if the filename contains a colon) */
246 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100247 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200248
249 /* This means there is some colon before the first slash; therefore,
250 * this cannot be an absolute path */
251 assert(!path_is_absolute(filename));
252
253 /* And we can thus fix the protocol detection issue by prefixing it
254 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100255 fat_filename = g_string_new("./");
256 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200257
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100258 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200259
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100260 qdict_put(options, "filename",
261 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200262 } else {
263 /* If no protocol prefix was detected, we can use the shortened
264 * filename as-is */
265 qdict_put_str(options, "filename", filename);
266 }
267 }
268}
269
270
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200271/* Returns whether the image file is opened as read-only. Note that this can
272 * return false and writing to the image file is still not possible because the
273 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400274bool bdrv_is_read_only(BlockDriverState *bs)
275{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500276 IO_CODE();
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300277 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400278}
279
Kevin Wolf10e5d702023-02-03 16:21:40 +0100280static int bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
281 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400282{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500283 IO_CODE();
284
Jeff Codye2b82472017-04-07 16:55:26 -0400285 /* Do not set read_only if copy_on_read is enabled */
286 if (bs->copy_on_read && read_only) {
287 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
288 bdrv_get_device_or_node_name(bs));
289 return -EINVAL;
290 }
291
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400292 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200293 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
294 !ignore_allow_rdw)
295 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400296 error_setg(errp, "Node '%s' is read only",
297 bdrv_get_device_or_node_name(bs));
298 return -EPERM;
299 }
300
Jeff Cody45803a02017-04-07 16:55:29 -0400301 return 0;
302}
303
Kevin Wolfeaa24102018-10-12 11:27:41 +0200304/*
305 * Called by a driver that can only provide a read-only image.
306 *
307 * Returns 0 if the node is already read-only or it could switch the node to
308 * read-only because BDRV_O_AUTO_RDONLY is set.
309 *
310 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
311 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
312 * is not NULL, it is used as the error message for the Error object.
313 */
314int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
315 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400316{
317 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500318 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400319
Kevin Wolfeaa24102018-10-12 11:27:41 +0200320 if (!(bs->open_flags & BDRV_O_RDWR)) {
321 return 0;
322 }
323 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
324 goto fail;
325 }
326
327 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400328 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200329 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400330 }
331
Kevin Wolfeaa24102018-10-12 11:27:41 +0200332 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200333
Jeff Codye2b82472017-04-07 16:55:26 -0400334 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200335
336fail:
337 error_setg(errp, "%s", errmsg ?: "Image is read-only");
338 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400339}
340
Max Reitz645ae7d2019-02-01 20:29:14 +0100341/*
342 * If @backing is empty, this function returns NULL without setting
343 * @errp. In all other cases, NULL will only be returned with @errp
344 * set.
345 *
346 * Therefore, a return value of NULL without @errp set means that
347 * there is no backing file; if @errp is set, there is one but its
348 * absolute filename cannot be generated.
349 */
350char *bdrv_get_full_backing_filename_from_filename(const char *backed,
351 const char *backing,
352 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100353{
Max Reitz645ae7d2019-02-01 20:29:14 +0100354 if (backing[0] == '\0') {
355 return NULL;
356 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
357 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100358 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
359 error_setg(errp, "Cannot use relative backing file names for '%s'",
360 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100361 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100362 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100363 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100364 }
365}
366
Max Reitz9f4793d2019-02-01 20:29:16 +0100367/*
368 * If @filename is empty or NULL, this function returns NULL without
369 * setting @errp. In all other cases, NULL will only be returned with
370 * @errp set.
371 */
372static char *bdrv_make_absolute_filename(BlockDriverState *relative_to,
373 const char *filename, Error **errp)
374{
Max Reitz8df68612019-02-01 20:29:23 +0100375 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100376
Max Reitz8df68612019-02-01 20:29:23 +0100377 if (!filename || filename[0] == '\0') {
378 return NULL;
379 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
380 return g_strdup(filename);
381 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100382
Max Reitz8df68612019-02-01 20:29:23 +0100383 dir = bdrv_dirname(relative_to, errp);
384 if (!dir) {
385 return NULL;
386 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100387
Max Reitz8df68612019-02-01 20:29:23 +0100388 full_name = g_strconcat(dir, filename, NULL);
389 g_free(dir);
390 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100391}
392
Max Reitz6b6833c2019-02-01 20:29:15 +0100393char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200394{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500395 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100396 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200397}
398
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100399void bdrv_register(BlockDriver *bdrv)
400{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100401 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500402 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100403 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000404}
bellardb3380822004-03-14 21:38:54 +0000405
Markus Armbrustere4e99862014-10-07 13:59:03 +0200406BlockDriverState *bdrv_new(void)
407{
408 BlockDriverState *bs;
409 int i;
410
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500411 GLOBAL_STATE_CODE();
412
Markus Armbruster5839e532014-08-19 10:31:08 +0200413 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800414 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800415 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
416 QLIST_INIT(&bs->op_blockers[i]);
417 }
Paolo Bonzini3783fa32017-06-05 14:39:02 +0200418 qemu_co_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200419 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800420 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200421 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200422
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300423 qemu_co_queue_init(&bs->flush_queue);
424
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200425 qemu_co_mutex_init(&bs->bsc_modify_lock);
426 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
427
Kevin Wolf0f122642018-03-28 18:29:18 +0200428 for (i = 0; i < bdrv_drain_all_count; i++) {
429 bdrv_drained_begin(bs);
430 }
431
Max Reitz2c1d04e2016-01-29 16:36:11 +0100432 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
433
bellardb3380822004-03-14 21:38:54 +0000434 return bs;
435}
436
Marc Mari88d88792016-08-12 09:27:03 -0400437static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000438{
439 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500440 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400441
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100442 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
443 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000444 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100445 }
bellardea2384d2004-08-01 21:59:26 +0000446 }
Marc Mari88d88792016-08-12 09:27:03 -0400447
bellardea2384d2004-08-01 21:59:26 +0000448 return NULL;
449}
450
Marc Mari88d88792016-08-12 09:27:03 -0400451BlockDriver *bdrv_find_format(const char *format_name)
452{
453 BlockDriver *drv1;
454 int i;
455
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500456 GLOBAL_STATE_CODE();
457
Marc Mari88d88792016-08-12 09:27:03 -0400458 drv1 = bdrv_do_find_format(format_name);
459 if (drv1) {
460 return drv1;
461 }
462
463 /* The driver isn't registered, maybe we need to load a module */
464 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
465 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200466 Error *local_err = NULL;
467 int rv = block_module_load(block_driver_modules[i].library_name,
468 &local_err);
469 if (rv > 0) {
470 return bdrv_do_find_format(format_name);
471 } else if (rv < 0) {
472 error_report_err(local_err);
473 }
Marc Mari88d88792016-08-12 09:27:03 -0400474 break;
475 }
476 }
Claudio Fontanac551fb02022-09-29 11:30:33 +0200477 return NULL;
Marc Mari88d88792016-08-12 09:27:03 -0400478}
479
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300480static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100481{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800482 static const char *whitelist_rw[] = {
483 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200484 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800485 };
486 static const char *whitelist_ro[] = {
487 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200488 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100489 };
490 const char **p;
491
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800492 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100493 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800494 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100495
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800496 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300497 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100498 return 1;
499 }
500 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800501 if (read_only) {
502 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300503 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800504 return 1;
505 }
506 }
507 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100508 return 0;
509}
510
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300511int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
512{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500513 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300514 return bdrv_format_is_whitelisted(drv->format_name, read_only);
515}
516
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000517bool bdrv_uses_whitelist(void)
518{
519 return use_bdrv_whitelist;
520}
521
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800522typedef struct CreateCo {
523 BlockDriver *drv;
524 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800525 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800526 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200527 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800528} CreateCo;
529
Emanuele Giuseppe Esposito741443e2022-11-28 09:23:36 -0500530int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
531 QemuOpts *opts, Error **errp)
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500532{
533 int ret;
534 GLOBAL_STATE_CODE();
535 ERRP_GUARD();
Kevin Wolf4ec8df02023-02-03 16:21:55 +0100536 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500537
538 if (!drv->bdrv_co_create_opts) {
539 error_setg(errp, "Driver '%s' does not support image creation",
540 drv->format_name);
541 return -ENOTSUP;
542 }
543
544 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
545 if (ret < 0 && !*errp) {
546 error_setg_errno(errp, -ret, "Could not create image");
547 }
548
549 return ret;
550}
551
Max Reitzfd171462020-01-22 17:45:29 +0100552/**
553 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
554 * least the given @minimum_size.
555 *
556 * On success, return @blk's actual length.
557 * Otherwise, return -errno.
558 */
559static int64_t create_file_fallback_truncate(BlockBackend *blk,
560 int64_t minimum_size, Error **errp)
561{
562 Error *local_err = NULL;
563 int64_t size;
564 int ret;
565
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500566 GLOBAL_STATE_CODE();
567
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200568 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
569 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100570 if (ret < 0 && ret != -ENOTSUP) {
571 error_propagate(errp, local_err);
572 return ret;
573 }
574
575 size = blk_getlength(blk);
576 if (size < 0) {
577 error_free(local_err);
578 error_setg_errno(errp, -size,
579 "Failed to inquire the new image file's length");
580 return size;
581 }
582
583 if (size < minimum_size) {
584 /* Need to grow the image, but we failed to do that */
585 error_propagate(errp, local_err);
586 return -ENOTSUP;
587 }
588
589 error_free(local_err);
590 local_err = NULL;
591
592 return size;
593}
594
595/**
596 * Helper function for bdrv_create_file_fallback(): Zero the first
597 * sector to remove any potentially pre-existing image header.
598 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200599static int coroutine_fn
600create_file_fallback_zero_first_sector(BlockBackend *blk,
601 int64_t current_size,
602 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100603{
604 int64_t bytes_to_clear;
605 int ret;
606
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500607 GLOBAL_STATE_CODE();
608
Max Reitzfd171462020-01-22 17:45:29 +0100609 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
610 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200611 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100612 if (ret < 0) {
613 error_setg_errno(errp, -ret,
614 "Failed to clear the new image's first sector");
615 return ret;
616 }
617 }
618
619 return 0;
620}
621
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200622/**
623 * Simple implementation of bdrv_co_create_opts for protocol drivers
624 * which only support creation via opening a file
625 * (usually existing raw storage device)
626 */
627int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
628 const char *filename,
629 QemuOpts *opts,
630 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100631{
632 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100633 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100634 int64_t size = 0;
635 char *buf = NULL;
636 PreallocMode prealloc;
637 Error *local_err = NULL;
638 int ret;
639
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500640 GLOBAL_STATE_CODE();
641
Max Reitzfd171462020-01-22 17:45:29 +0100642 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
643 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
644 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
645 PREALLOC_MODE_OFF, &local_err);
646 g_free(buf);
647 if (local_err) {
648 error_propagate(errp, local_err);
649 return -EINVAL;
650 }
651
652 if (prealloc != PREALLOC_MODE_OFF) {
653 error_setg(errp, "Unsupported preallocation mode '%s'",
654 PreallocMode_str(prealloc));
655 return -ENOTSUP;
656 }
657
Max Reitzeeea1fa2020-02-25 16:56:18 +0100658 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100659 qdict_put_str(options, "driver", drv->format_name);
660
Kevin Wolfbe1a7322023-01-26 18:24:31 +0100661 blk = blk_co_new_open(filename, NULL, options,
662 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
Max Reitzfd171462020-01-22 17:45:29 +0100663 if (!blk) {
664 error_prepend(errp, "Protocol driver '%s' does not support image "
665 "creation, and opening the image failed: ",
666 drv->format_name);
667 return -EINVAL;
668 }
669
670 size = create_file_fallback_truncate(blk, size, errp);
671 if (size < 0) {
672 ret = size;
673 goto out;
674 }
675
676 ret = create_file_fallback_zero_first_sector(blk, size, errp);
677 if (ret < 0) {
678 goto out;
679 }
680
681 ret = 0;
682out:
683 blk_unref(blk);
684 return ret;
685}
686
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500687int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
688 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200689{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100690 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200691 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100692 QDict *qdict;
693 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200694
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500695 GLOBAL_STATE_CODE();
696
Max Reitzb65a5e12015-02-05 13:58:12 -0500697 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200698 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000699 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200700 }
701
Stefano Garzarella729222a2021-03-08 17:12:32 +0100702 if (!drv->create_opts) {
703 error_setg(errp, "Driver '%s' does not support image creation",
704 drv->format_name);
705 return -ENOTSUP;
706 }
707
708 /*
709 * 'opts' contains a QemuOptsList with a combination of format and protocol
710 * default values.
711 *
712 * The format properly removes its options, but the default values remain
713 * in 'opts->list'. So if the protocol has options with the same name
714 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
715 * of the format, since for overlapping options, the format wins.
716 *
717 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
718 * only the set options, and then convert it back to QemuOpts, using the
719 * create_opts of the protocol. So the new QemuOpts, will contain only the
720 * protocol defaults.
721 */
722 qdict = qemu_opts_to_qdict(opts, NULL);
723 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
724 if (protocol_opts == NULL) {
725 ret = -EINVAL;
726 goto out;
727 }
728
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500729 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100730out:
731 qemu_opts_del(protocol_opts);
732 qobject_unref(qdict);
733 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200734}
735
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300736int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
737{
738 Error *local_err = NULL;
739 int ret;
740
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500741 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300742 assert(bs != NULL);
Kevin Wolf48aef792023-02-03 16:22:00 +0100743 assert_bdrv_graph_readable();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300744
745 if (!bs->drv) {
746 error_setg(errp, "Block node '%s' is not opened", bs->filename);
747 return -ENOMEDIUM;
748 }
749
750 if (!bs->drv->bdrv_co_delete_file) {
751 error_setg(errp, "Driver '%s' does not support image deletion",
752 bs->drv->format_name);
753 return -ENOTSUP;
754 }
755
756 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
757 if (ret < 0) {
758 error_propagate(errp, local_err);
759 }
760
761 return ret;
762}
763
Maxim Levitskya890f082020-12-17 19:09:03 +0200764void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
765{
766 Error *local_err = NULL;
767 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500768 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200769
770 if (!bs) {
771 return;
772 }
773
774 ret = bdrv_co_delete_file(bs, &local_err);
775 /*
776 * ENOTSUP will happen if the block driver doesn't support
777 * the 'bdrv_co_delete_file' interface. This is a predictable
778 * scenario and shouldn't be reported back to the user.
779 */
780 if (ret == -ENOTSUP) {
781 error_free(local_err);
782 } else if (ret < 0) {
783 error_report_err(local_err);
784 }
785}
786
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100787/**
788 * Try to get @bs's logical and physical block size.
789 * On success, store them in @bsz struct and return 0.
790 * On failure return -errno.
791 * @bs must not be empty.
792 */
793int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
794{
795 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200796 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500797 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100798
799 if (drv && drv->bdrv_probe_blocksizes) {
800 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200801 } else if (filtered) {
802 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100803 }
804
805 return -ENOTSUP;
806}
807
808/**
809 * Try to get @bs's geometry (cyls, heads, sectors).
810 * On success, store them in @geo struct and return 0.
811 * On failure return -errno.
812 * @bs must not be empty.
813 */
814int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
815{
816 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200817 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500818 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100819
820 if (drv && drv->bdrv_probe_geometry) {
821 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200822 } else if (filtered) {
823 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100824 }
825
826 return -ENOTSUP;
827}
828
Jim Meyeringeba25052012-05-28 09:27:54 +0200829/*
830 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800831 * Return the actual file name used upon success, otherwise NULL.
832 * This string should be freed with g_free() when not needed any longer.
833 *
834 * Note: creating a temporary file for the caller to (re)open is
835 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200836 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800837char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200838{
bellardea2384d2004-08-01 21:59:26 +0000839 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000840 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800841 g_autofree char *filename = NULL;
842
843 tmpdir = g_get_tmp_dir();
844#ifndef _WIN32
845 /*
846 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
847 *
848 * This function is used to create temporary disk images (like -snapshot),
849 * so the files can become very large. /tmp is often a tmpfs where as
850 * /var/tmp is usually on a disk, so more appropriate for disk images.
851 */
852 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530853 tmpdir = "/var/tmp";
854 }
bellardd5249392004-08-03 21:14:23 +0000855#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800856
857 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
858 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000859 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800860 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
861 filename);
862 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000863 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800864 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800865
866 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200867}
bellardea2384d2004-08-01 21:59:26 +0000868
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200869/*
870 * Detect host devices. By convention, /dev/cdrom[N] is always
871 * recognized as a host CDROM.
872 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200873static BlockDriver *find_hdev_driver(const char *filename)
874{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200875 int score_max = 0, score;
876 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500877 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200878
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100879 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200880 if (d->bdrv_probe_device) {
881 score = d->bdrv_probe_device(filename);
882 if (score > score_max) {
883 score_max = score;
884 drv = d;
885 }
886 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200887 }
888
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200889 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200890}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200891
Marc Mari88d88792016-08-12 09:27:03 -0400892static BlockDriver *bdrv_do_find_protocol(const char *protocol)
893{
894 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500895 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400896
897 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
898 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
899 return drv1;
900 }
901 }
902
903 return NULL;
904}
905
Kevin Wolf98289622013-07-10 15:47:39 +0200906BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500907 bool allow_protocol_prefix,
908 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200909{
910 BlockDriver *drv1;
911 char protocol[128];
912 int len;
913 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400914 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200915
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500916 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200917 /* TODO Drivers without bdrv_file_open must be specified explicitly */
918
Christoph Hellwig39508e72010-06-23 12:25:17 +0200919 /*
920 * XXX(hch): we really should not let host device detection
921 * override an explicit protocol specification, but moving this
922 * later breaks access to device names with colons in them.
923 * Thanks to the brain-dead persistent naming schemes on udev-
924 * based Linux systems those actually are quite common.
925 */
926 drv1 = find_hdev_driver(filename);
927 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200928 return drv1;
929 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200930
Kevin Wolf98289622013-07-10 15:47:39 +0200931 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100932 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200933 }
Kevin Wolf98289622013-07-10 15:47:39 +0200934
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000935 p = strchr(filename, ':');
936 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200937 len = p - filename;
938 if (len > sizeof(protocol) - 1)
939 len = sizeof(protocol) - 1;
940 memcpy(protocol, filename, len);
941 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400942
943 drv1 = bdrv_do_find_protocol(protocol);
944 if (drv1) {
945 return drv1;
946 }
947
948 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
949 if (block_driver_modules[i].protocol_name &&
950 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200951 int rv = block_module_load(block_driver_modules[i].library_name, errp);
952 if (rv > 0) {
953 drv1 = bdrv_do_find_protocol(protocol);
954 } else if (rv < 0) {
955 return NULL;
956 }
Marc Mari88d88792016-08-12 09:27:03 -0400957 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200958 }
959 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500960
Marc Mari88d88792016-08-12 09:27:03 -0400961 if (!drv1) {
962 error_setg(errp, "Unknown protocol '%s'", protocol);
963 }
964 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200965}
966
Markus Armbrusterc6684242014-11-20 16:27:10 +0100967/*
968 * Guess image format by probing its contents.
969 * This is not a good idea when your image is raw (CVE-2008-2004), but
970 * we do it anyway for backward compatibility.
971 *
972 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100973 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
974 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100975 * @filename is its filename.
976 *
977 * For all block drivers, call the bdrv_probe() method to get its
978 * probing score.
979 * Return the first block driver with the highest probing score.
980 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100981BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
982 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100983{
984 int score_max = 0, score;
985 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500986 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100987
988 QLIST_FOREACH(d, &bdrv_drivers, list) {
989 if (d->bdrv_probe) {
990 score = d->bdrv_probe(buf, buf_size, filename);
991 if (score > score_max) {
992 score_max = score;
993 drv = d;
994 }
995 }
996 }
997
998 return drv;
999}
1000
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001001static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001002 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001003{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001004 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001005 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001006 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001007
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001008 GLOBAL_STATE_CODE();
1009
Kevin Wolf08a00552010-06-01 18:37:31 +02001010 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001011 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001012 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001013 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001014 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001015
Alberto Fariaa9262f52022-07-05 17:15:11 +01001016 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001017 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001018 error_setg_errno(errp, -ret, "Could not read image for determining its "
1019 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001020 *pdrv = NULL;
1021 return ret;
bellard83f64092006-08-01 16:21:11 +00001022 }
1023
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001024 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001025 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001026 error_setg(errp, "Could not determine image format: No compatible "
1027 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001028 *pdrv = NULL;
1029 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001030 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001031
Stefan Weilc98ac352010-07-21 21:51:51 +02001032 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001033 return 0;
bellardea2384d2004-08-01 21:59:26 +00001034}
1035
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001036/**
1037 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001038 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001039 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001040int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1041 int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001042{
1043 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001044 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01001045 assert_bdrv_graph_readable();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001046
Max Reitzd470ad42017-11-10 21:31:09 +01001047 if (!drv) {
1048 return -ENOMEDIUM;
1049 }
1050
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001051 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001052 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001053 return 0;
1054
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001055 /* query actual device if possible, otherwise just trust the hint */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001056 if (drv->bdrv_co_getlength) {
1057 int64_t length = drv->bdrv_co_getlength(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001058 if (length < 0) {
1059 return length;
1060 }
Fam Zheng7e382002013-11-06 19:48:06 +08001061 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001062 }
1063
1064 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001065
1066 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1067 return -EFBIG;
1068 }
1069
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001070 return 0;
1071}
1072
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001073/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001074 * Combines a QDict of new block driver @options with any missing options taken
1075 * from @old_options, so that leaving out an option defaults to its old value.
1076 */
1077static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1078 QDict *old_options)
1079{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001080 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001081 if (bs->drv && bs->drv->bdrv_join_options) {
1082 bs->drv->bdrv_join_options(options, old_options);
1083 } else {
1084 qdict_join(options, old_options, false);
1085 }
1086}
1087
Alberto Garcia543770b2018-09-06 12:37:09 +03001088static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1089 int open_flags,
1090 Error **errp)
1091{
1092 Error *local_err = NULL;
1093 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1094 BlockdevDetectZeroesOptions detect_zeroes =
1095 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1096 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001097 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001098 g_free(value);
1099 if (local_err) {
1100 error_propagate(errp, local_err);
1101 return detect_zeroes;
1102 }
1103
1104 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1105 !(open_flags & BDRV_O_UNMAP))
1106 {
1107 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1108 "without setting discard operation to unmap");
1109 }
1110
1111 return detect_zeroes;
1112}
1113
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001114/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001115 * Set open flags for aio engine
1116 *
1117 * Return 0 on success, -1 if the engine specified is invalid
1118 */
1119int bdrv_parse_aio(const char *mode, int *flags)
1120{
1121 if (!strcmp(mode, "threads")) {
1122 /* do nothing, default */
1123 } else if (!strcmp(mode, "native")) {
1124 *flags |= BDRV_O_NATIVE_AIO;
1125#ifdef CONFIG_LINUX_IO_URING
1126 } else if (!strcmp(mode, "io_uring")) {
1127 *flags |= BDRV_O_IO_URING;
1128#endif
1129 } else {
1130 return -1;
1131 }
1132
1133 return 0;
1134}
1135
1136/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001137 * Set open flags for a given discard mode
1138 *
1139 * Return 0 on success, -1 if the discard mode was invalid.
1140 */
1141int bdrv_parse_discard_flags(const char *mode, int *flags)
1142{
1143 *flags &= ~BDRV_O_UNMAP;
1144
1145 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1146 /* do nothing */
1147 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1148 *flags |= BDRV_O_UNMAP;
1149 } else {
1150 return -1;
1151 }
1152
1153 return 0;
1154}
1155
1156/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001157 * Set open flags for a given cache mode
1158 *
1159 * Return 0 on success, -1 if the cache mode was invalid.
1160 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001161int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001162{
1163 *flags &= ~BDRV_O_CACHE_MASK;
1164
1165 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001166 *writethrough = false;
1167 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001168 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001169 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001170 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001171 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001172 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001173 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001174 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001175 *flags |= BDRV_O_NO_FLUSH;
1176 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001177 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001178 } else {
1179 return -1;
1180 }
1181
1182 return 0;
1183}
1184
Kevin Wolfb5411552017-01-17 15:56:16 +01001185static char *bdrv_child_get_parent_desc(BdrvChild *c)
1186{
1187 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001188 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001189}
1190
Kevin Wolf20018e12016-05-23 18:46:59 +02001191static void bdrv_child_cb_drained_begin(BdrvChild *child)
1192{
1193 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001194 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001195}
1196
Kevin Wolf89bd0302018-03-22 14:11:20 +01001197static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1198{
1199 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001200 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001201}
1202
Kevin Wolf2f65df62022-11-18 18:40:59 +01001203static void bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001204{
1205 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001206 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001207}
1208
Kevin Wolf38701b62017-05-04 18:52:39 +02001209static int bdrv_child_cb_inactivate(BdrvChild *child)
1210{
1211 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001212 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001213 assert(bs->open_flags & BDRV_O_INACTIVE);
1214 return 0;
1215}
1216
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001217static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1218 GHashTable *visited, Transaction *tran,
1219 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001220{
1221 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001222 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001223}
1224
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001225/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001226 * Returns the options and flags that a temporary snapshot should get, based on
1227 * the originally requested flags (the originally requested image will have
1228 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001229 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001230static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1231 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001232{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001233 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001234 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1235
1236 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001237 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1238 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001239
Kevin Wolf3f486862019-04-04 17:04:43 +02001240 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001241 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001242 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001243
Kevin Wolf41869042016-06-16 12:59:30 +02001244 /* aio=native doesn't work for cache.direct=off, so disable it for the
1245 * temporary snapshot */
1246 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001247}
1248
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001249static void bdrv_backing_attach(BdrvChild *c)
1250{
1251 BlockDriverState *parent = c->opaque;
1252 BlockDriverState *backing_hd = c->bs;
1253
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001254 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001255 assert(!parent->backing_blocker);
1256 error_setg(&parent->backing_blocker,
1257 "node is used as backing hd of '%s'",
1258 bdrv_get_device_or_node_name(parent));
1259
Max Reitzf30c66b2019-02-01 20:29:05 +01001260 bdrv_refresh_filename(backing_hd);
1261
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001262 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001263
1264 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1265 /* Otherwise we won't be able to commit or stream */
1266 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1267 parent->backing_blocker);
1268 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1269 parent->backing_blocker);
1270 /*
1271 * We do backup in 3 ways:
1272 * 1. drive backup
1273 * The target bs is new opened, and the source is top BDS
1274 * 2. blockdev backup
1275 * Both the source and the target are top BDSes.
1276 * 3. internal backup(used for block replication)
1277 * Both the source and the target are backing file
1278 *
1279 * In case 1 and 2, neither the source nor the target is the backing file.
1280 * In case 3, we will block the top BDS, so there is only one block job
1281 * for the top BDS and its backing chain.
1282 */
1283 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1284 parent->backing_blocker);
1285 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1286 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001287}
Kevin Wolfd736f112017-12-18 16:05:48 +01001288
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001289static void bdrv_backing_detach(BdrvChild *c)
1290{
1291 BlockDriverState *parent = c->opaque;
1292
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001293 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001294 assert(parent->backing_blocker);
1295 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1296 error_free(parent->backing_blocker);
1297 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001298}
Kevin Wolfd736f112017-12-18 16:05:48 +01001299
Kevin Wolf6858eba2017-06-29 19:32:21 +02001300static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1301 const char *filename, Error **errp)
1302{
1303 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001304 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001305 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001306 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001307
Alberto Garciae94d3db2018-11-12 16:00:34 +02001308 if (read_only) {
1309 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001310 if (ret < 0) {
1311 return ret;
1312 }
1313 }
1314
Kevin Wolf6858eba2017-06-29 19:32:21 +02001315 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001316 base->drv ? base->drv->format_name : "",
1317 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001318 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001319 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001320 }
1321
Alberto Garciae94d3db2018-11-12 16:00:34 +02001322 if (read_only) {
1323 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001324 }
1325
Kevin Wolf6858eba2017-06-29 19:32:21 +02001326 return ret;
1327}
1328
Max Reitzfae8bd32020-05-13 13:05:20 +02001329/*
1330 * Returns the options and flags that a generic child of a BDS should
1331 * get, based on the given options and flags for the parent BDS.
1332 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001333static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1334 int *child_flags, QDict *child_options,
1335 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001336{
1337 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001338 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001339
1340 /*
1341 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1342 * Generally, the question to answer is: Should this child be
1343 * format-probed by default?
1344 */
1345
1346 /*
1347 * Pure and non-filtered data children of non-format nodes should
1348 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1349 * set). This only affects a very limited set of drivers (namely
1350 * quorum and blkverify when this comment was written).
1351 * Force-clear BDRV_O_PROTOCOL then.
1352 */
1353 if (!parent_is_format &&
1354 (role & BDRV_CHILD_DATA) &&
1355 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1356 {
1357 flags &= ~BDRV_O_PROTOCOL;
1358 }
1359
1360 /*
1361 * All children of format nodes (except for COW children) and all
1362 * metadata children in general should never be format-probed.
1363 * Force-set BDRV_O_PROTOCOL then.
1364 */
1365 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1366 (role & BDRV_CHILD_METADATA))
1367 {
1368 flags |= BDRV_O_PROTOCOL;
1369 }
1370
1371 /*
1372 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1373 * the parent.
1374 */
1375 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1376 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1377 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1378
1379 if (role & BDRV_CHILD_COW) {
1380 /* backing files are opened read-only by default */
1381 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1382 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1383 } else {
1384 /* Inherit the read-only option from the parent if it's not set */
1385 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1386 qdict_copy_default(child_options, parent_options,
1387 BDRV_OPT_AUTO_READ_ONLY);
1388 }
1389
1390 /*
1391 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1392 * can default to enable it on lower layers regardless of the
1393 * parent option.
1394 */
1395 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1396
1397 /* Clear flags that only apply to the top layer */
1398 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1399
1400 if (role & BDRV_CHILD_METADATA) {
1401 flags &= ~BDRV_O_NO_IO;
1402 }
1403 if (role & BDRV_CHILD_COW) {
1404 flags &= ~BDRV_O_TEMPORARY;
1405 }
1406
1407 *child_flags = flags;
1408}
1409
Kevin Wolf303de472022-12-07 14:18:35 +01001410static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
Max Reitzca2f1232020-05-13 13:05:22 +02001411{
1412 BlockDriverState *bs = child->opaque;
1413
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001414 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001415 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001416 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1417 /*
1418 * Here we handle filters and block/raw-format.c when it behave like
1419 * filter. They generally have a single PRIMARY child, which is also the
1420 * FILTERED child, and that they may have multiple more children, which
1421 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1422 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1423 * into bs->backing on exceptional cases; and bs->backing will be
1424 * nothing else.
1425 */
1426 assert(!(child->role & BDRV_CHILD_COW));
1427 if (child->role & BDRV_CHILD_PRIMARY) {
1428 assert(child->role & BDRV_CHILD_FILTERED);
1429 assert(!bs->backing);
1430 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001431
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001432 if (bs->drv->filtered_child_is_backing) {
1433 bs->backing = child;
1434 } else {
1435 bs->file = child;
1436 }
1437 } else {
1438 assert(!(child->role & BDRV_CHILD_FILTERED));
1439 }
1440 } else if (child->role & BDRV_CHILD_COW) {
1441 assert(bs->drv->supports_backing);
1442 assert(!(child->role & BDRV_CHILD_PRIMARY));
1443 assert(!bs->backing);
1444 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001445 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001446 } else if (child->role & BDRV_CHILD_PRIMARY) {
1447 assert(!bs->file);
1448 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001449 }
Max Reitzca2f1232020-05-13 13:05:22 +02001450}
1451
Kevin Wolf303de472022-12-07 14:18:35 +01001452static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
Max Reitz48e08282020-05-13 13:05:23 +02001453{
1454 BlockDriverState *bs = child->opaque;
1455
1456 if (child->role & BDRV_CHILD_COW) {
1457 bdrv_backing_detach(child);
1458 }
1459
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001460 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001461 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001462 if (child == bs->backing) {
1463 assert(child != bs->file);
1464 bs->backing = NULL;
1465 } else if (child == bs->file) {
1466 bs->file = NULL;
1467 }
Max Reitz48e08282020-05-13 13:05:23 +02001468}
1469
Max Reitz43483552020-05-13 13:05:24 +02001470static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1471 const char *filename, Error **errp)
1472{
1473 if (c->role & BDRV_CHILD_COW) {
1474 return bdrv_backing_update_filename(c, base, filename, errp);
1475 }
1476 return 0;
1477}
1478
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001479AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001480{
1481 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001482 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001483
1484 return bdrv_get_aio_context(bs);
1485}
1486
Max Reitz43483552020-05-13 13:05:24 +02001487const BdrvChildClass child_of_bds = {
1488 .parent_is_bds = true,
1489 .get_parent_desc = bdrv_child_get_parent_desc,
1490 .inherit_options = bdrv_inherited_options,
1491 .drained_begin = bdrv_child_cb_drained_begin,
1492 .drained_poll = bdrv_child_cb_drained_poll,
1493 .drained_end = bdrv_child_cb_drained_end,
1494 .attach = bdrv_child_cb_attach,
1495 .detach = bdrv_child_cb_detach,
1496 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001497 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001498 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001499 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001500};
1501
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001502AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1503{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001504 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001505 return c->klass->get_parent_aio_context(c);
1506}
1507
Kevin Wolf7b272452012-11-12 17:05:39 +01001508static int bdrv_open_flags(BlockDriverState *bs, int flags)
1509{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001510 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001511 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001512
1513 /*
1514 * Clear flags that are internal to the block layer before opening the
1515 * image.
1516 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001517 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001518
Kevin Wolf7b272452012-11-12 17:05:39 +01001519 return open_flags;
1520}
1521
Kevin Wolf91a097e2015-05-08 17:49:53 +02001522static void update_flags_from_options(int *flags, QemuOpts *opts)
1523{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001524 GLOBAL_STATE_CODE();
1525
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001526 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001527
Alberto Garcia57f9db92018-09-06 12:37:06 +03001528 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001529 *flags |= BDRV_O_NO_FLUSH;
1530 }
1531
Alberto Garcia57f9db92018-09-06 12:37:06 +03001532 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001533 *flags |= BDRV_O_NOCACHE;
1534 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001535
Alberto Garcia57f9db92018-09-06 12:37:06 +03001536 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001537 *flags |= BDRV_O_RDWR;
1538 }
1539
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001540 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1541 *flags |= BDRV_O_AUTO_RDONLY;
1542 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001543}
1544
1545static void update_options_from_flags(QDict *options, int flags)
1546{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001547 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001548 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001549 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001550 }
1551 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001552 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1553 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001554 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001555 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001556 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001557 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001558 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1559 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1560 flags & BDRV_O_AUTO_RDONLY);
1561 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001562}
1563
Kevin Wolf636ea372014-01-24 14:11:52 +01001564static void bdrv_assign_node_name(BlockDriverState *bs,
1565 const char *node_name,
1566 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001567{
Jeff Cody15489c72015-10-12 19:36:50 -04001568 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001569 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001570
Jeff Cody15489c72015-10-12 19:36:50 -04001571 if (!node_name) {
1572 node_name = gen_node_name = id_generate(ID_BLOCK);
1573 } else if (!id_wellformed(node_name)) {
1574 /*
1575 * Check for empty string or invalid characters, but not if it is
1576 * generated (generated names use characters not available to the user)
1577 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001578 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001579 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001580 }
1581
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001582 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001583 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001584 error_setg(errp, "node-name=%s is conflicting with a device id",
1585 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001586 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001587 }
1588
Benoît Canet6913c0c2014-01-23 21:31:33 +01001589 /* takes care of avoiding duplicates node names */
1590 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001591 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001592 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001593 }
1594
Kevin Wolf824808d2018-07-04 13:28:29 +02001595 /* Make sure that the node name isn't truncated */
1596 if (strlen(node_name) >= sizeof(bs->node_name)) {
1597 error_setg(errp, "Node name too long");
1598 goto out;
1599 }
1600
Benoît Canet6913c0c2014-01-23 21:31:33 +01001601 /* copy node name into the bs and insert it into the graph list */
1602 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1603 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001604out:
1605 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001606}
1607
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001608/*
1609 * The caller must always hold @bs AioContext lock, because this function calls
1610 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1611 * context.
1612 */
Kevin Wolf01a56502017-01-18 15:51:56 +01001613static int bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv,
1614 const char *node_name, QDict *options,
1615 int open_flags, Error **errp)
1616{
1617 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001618 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001619 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001620
1621 bdrv_assign_node_name(bs, node_name, &local_err);
1622 if (local_err) {
1623 error_propagate(errp, local_err);
1624 return -EINVAL;
1625 }
1626
1627 bs->drv = drv;
1628 bs->opaque = g_malloc0(drv->instance_size);
1629
1630 if (drv->bdrv_file_open) {
1631 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1632 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001633 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001634 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001635 } else {
1636 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001637 }
1638
1639 if (ret < 0) {
1640 if (local_err) {
1641 error_propagate(errp, local_err);
1642 } else if (bs->filename[0]) {
1643 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1644 } else {
1645 error_setg_errno(errp, -ret, "Could not open image");
1646 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001647 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001648 }
1649
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001650 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1651 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1652
1653 /*
1654 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1655 * drivers that pass read/write requests through to a child the trouble of
1656 * declaring support explicitly.
1657 *
1658 * Drivers must not propagate this flag accidentally when they initiate I/O
1659 * to a bounce buffer. That case should be rare though.
1660 */
1661 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1662 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1663
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01001664 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf01a56502017-01-18 15:51:56 +01001665 if (ret < 0) {
1666 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001667 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001668 }
1669
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001670 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolf01a56502017-01-18 15:51:56 +01001671 if (local_err) {
1672 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001673 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001674 }
1675
1676 assert(bdrv_opt_mem_align(bs) != 0);
1677 assert(bdrv_min_mem_align(bs) != 0);
1678 assert(is_power_of_2(bs->bl.request_alignment));
1679
Kevin Wolf0f122642018-03-28 18:29:18 +02001680 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001681 if (drv->bdrv_drain_begin) {
1682 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001683 }
1684 }
1685
Kevin Wolf01a56502017-01-18 15:51:56 +01001686 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001687open_failed:
1688 bs->drv = NULL;
1689 if (bs->file != NULL) {
1690 bdrv_unref_child(bs, bs->file);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001691 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001692 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001693 g_free(bs->opaque);
1694 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001695 return ret;
1696}
1697
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001698/*
1699 * Create and open a block node.
1700 *
1701 * @options is a QDict of options to pass to the block drivers, or NULL for an
1702 * empty set of options. The reference to the QDict belongs to the block layer
1703 * after the call (even on failure), so if the caller intends to reuse the
1704 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1705 */
1706BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1707 const char *node_name,
1708 QDict *options, int flags,
1709 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001710{
1711 BlockDriverState *bs;
1712 int ret;
1713
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001714 GLOBAL_STATE_CODE();
1715
Kevin Wolf680c7f92017-01-18 17:16:41 +01001716 bs = bdrv_new();
1717 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001718 bs->options = options ?: qdict_new();
1719 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001720 bs->opaque = NULL;
1721
1722 update_options_from_flags(bs->options, flags);
1723
1724 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1725 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001726 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001727 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001728 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001729 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001730 bdrv_unref(bs);
1731 return NULL;
1732 }
1733
1734 return bs;
1735}
1736
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001737/* Create and open a block node. */
1738BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1739 int flags, Error **errp)
1740{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001741 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001742 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1743}
1744
Kevin Wolfc5f30142016-10-06 11:33:17 +02001745QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001746 .name = "bdrv_common",
1747 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1748 .desc = {
1749 {
1750 .name = "node-name",
1751 .type = QEMU_OPT_STRING,
1752 .help = "Node name of the block device node",
1753 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001754 {
1755 .name = "driver",
1756 .type = QEMU_OPT_STRING,
1757 .help = "Block driver to use for the node",
1758 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001759 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001760 .name = BDRV_OPT_CACHE_DIRECT,
1761 .type = QEMU_OPT_BOOL,
1762 .help = "Bypass software writeback cache on the host",
1763 },
1764 {
1765 .name = BDRV_OPT_CACHE_NO_FLUSH,
1766 .type = QEMU_OPT_BOOL,
1767 .help = "Ignore flush requests",
1768 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001769 {
1770 .name = BDRV_OPT_READ_ONLY,
1771 .type = QEMU_OPT_BOOL,
1772 .help = "Node is opened in read-only mode",
1773 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001774 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001775 .name = BDRV_OPT_AUTO_READ_ONLY,
1776 .type = QEMU_OPT_BOOL,
1777 .help = "Node can become read-only if opening read-write fails",
1778 },
1779 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001780 .name = "detect-zeroes",
1781 .type = QEMU_OPT_STRING,
1782 .help = "try to optimize zero writes (off, on, unmap)",
1783 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001784 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001785 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001786 .type = QEMU_OPT_STRING,
1787 .help = "discard operation (ignore/off, unmap/on)",
1788 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001789 {
1790 .name = BDRV_OPT_FORCE_SHARE,
1791 .type = QEMU_OPT_BOOL,
1792 .help = "always accept other writers (default: off)",
1793 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001794 { /* end of list */ }
1795 },
1796};
1797
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001798QemuOptsList bdrv_create_opts_simple = {
1799 .name = "simple-create-opts",
1800 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001801 .desc = {
1802 {
1803 .name = BLOCK_OPT_SIZE,
1804 .type = QEMU_OPT_SIZE,
1805 .help = "Virtual disk size"
1806 },
1807 {
1808 .name = BLOCK_OPT_PREALLOC,
1809 .type = QEMU_OPT_STRING,
1810 .help = "Preallocation mode (allowed values: off)"
1811 },
1812 { /* end of list */ }
1813 }
1814};
1815
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001816/*
Kevin Wolf57915332010-04-14 15:24:50 +02001817 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001818 *
1819 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001820 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001821static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001822 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001823{
1824 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001825 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001826 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001827 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001828 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001829 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001830 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001831 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001832 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001833
Paolo Bonzini64058752012-05-08 16:51:49 +02001834 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001835 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001836 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001837
Kevin Wolf62392eb2015-04-24 16:38:02 +02001838 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001839 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001840 ret = -EINVAL;
1841 goto fail_opts;
1842 }
1843
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001844 update_flags_from_options(&bs->open_flags, opts);
1845
Kevin Wolf62392eb2015-04-24 16:38:02 +02001846 driver_name = qemu_opt_get(opts, "driver");
1847 drv = bdrv_find_format(driver_name);
1848 assert(drv != NULL);
1849
Fam Zheng5a9347c2017-05-03 00:35:37 +08001850 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1851
1852 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1853 error_setg(errp,
1854 BDRV_OPT_FORCE_SHARE
1855 "=on can only be used with read-only images");
1856 ret = -EINVAL;
1857 goto fail_opts;
1858 }
1859
Kevin Wolf45673672013-04-22 17:48:40 +02001860 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001861 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001862 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001863 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001864 /*
1865 * Caution: while qdict_get_try_str() is fine, getting
1866 * non-string types would require more care. When @options
1867 * come from -blockdev or blockdev_add, its members are typed
1868 * according to the QAPI schema, but when they come from
1869 * -drive, they're all QString.
1870 */
Kevin Wolf45673672013-04-22 17:48:40 +02001871 filename = qdict_get_try_str(options, "filename");
1872 }
1873
Max Reitz4a008242017-04-13 18:06:24 +02001874 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001875 error_setg(errp, "The '%s' block driver requires a file name",
1876 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001877 ret = -EINVAL;
1878 goto fail_opts;
1879 }
1880
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001881 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1882 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001883
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001884 ro = bdrv_is_read_only(bs);
1885
1886 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1887 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001888 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1889 } else {
1890 ret = -ENOTSUP;
1891 }
1892 if (ret < 0) {
1893 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001894 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001895 ? "Driver '%s' can only be used for read-only devices"
1896 : "Driver '%s' is not whitelisted",
1897 drv->format_name);
1898 goto fail_opts;
1899 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001900 }
Kevin Wolf57915332010-04-14 15:24:50 +02001901
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001902 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001903 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001904
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001905 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001906 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001907 bdrv_enable_copy_on_read(bs);
1908 } else {
1909 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001910 ret = -EINVAL;
1911 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001912 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001913 }
1914
Alberto Garcia415bbca2018-10-03 13:23:13 +03001915 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001916 if (discard != NULL) {
1917 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1918 error_setg(errp, "Invalid discard option");
1919 ret = -EINVAL;
1920 goto fail_opts;
1921 }
1922 }
1923
Alberto Garcia543770b2018-09-06 12:37:09 +03001924 bs->detect_zeroes =
1925 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1926 if (local_err) {
1927 error_propagate(errp, local_err);
1928 ret = -EINVAL;
1929 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001930 }
1931
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001932 if (filename != NULL) {
1933 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1934 } else {
1935 bs->filename[0] = '\0';
1936 }
Max Reitz91af7012014-07-18 20:24:56 +02001937 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001938
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001939 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001940 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001941 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001942
Kevin Wolf01a56502017-01-18 15:51:56 +01001943 assert(!drv->bdrv_file_open || file == NULL);
1944 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001945 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001946 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001947 }
1948
Kevin Wolf18edf282015-04-07 17:12:56 +02001949 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001950 return 0;
1951
Kevin Wolf18edf282015-04-07 17:12:56 +02001952fail_opts:
1953 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001954 return ret;
1955}
1956
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001957static QDict *parse_json_filename(const char *filename, Error **errp)
1958{
1959 QObject *options_obj;
1960 QDict *options;
1961 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001962 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001963
1964 ret = strstart(filename, "json:", &filename);
1965 assert(ret);
1966
Markus Armbruster5577fff2017-02-28 22:26:59 +01001967 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001968 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001969 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001970 return NULL;
1971 }
1972
Max Reitz7dc847e2018-02-24 16:40:29 +01001973 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001974 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001975 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001976 error_setg(errp, "Invalid JSON object given");
1977 return NULL;
1978 }
1979
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001980 qdict_flatten(options);
1981
1982 return options;
1983}
1984
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001985static void parse_json_protocol(QDict *options, const char **pfilename,
1986 Error **errp)
1987{
1988 QDict *json_options;
1989 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001990 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001991
1992 /* Parse json: pseudo-protocol */
1993 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1994 return;
1995 }
1996
1997 json_options = parse_json_filename(*pfilename, &local_err);
1998 if (local_err) {
1999 error_propagate(errp, local_err);
2000 return;
2001 }
2002
2003 /* Options given in the filename have lower priority than options
2004 * specified directly */
2005 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002006 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002007 *pfilename = NULL;
2008}
2009
Kevin Wolf57915332010-04-14 15:24:50 +02002010/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002011 * Fills in default options for opening images and converts the legacy
2012 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002013 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2014 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002015 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002016static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02002017 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002018{
2019 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002020 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002021 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002022 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002023 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002024
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002025 GLOBAL_STATE_CODE();
2026
Markus Armbruster129c7d12017-03-30 19:43:12 +02002027 /*
2028 * Caution: while qdict_get_try_str() is fine, getting non-string
2029 * types would require more care. When @options come from
2030 * -blockdev or blockdev_add, its members are typed according to
2031 * the QAPI schema, but when they come from -drive, they're all
2032 * QString.
2033 */
Max Reitz53a29512015-03-19 14:53:16 -04002034 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002035 if (drvname) {
2036 drv = bdrv_find_format(drvname);
2037 if (!drv) {
2038 error_setg(errp, "Unknown driver '%s'", drvname);
2039 return -ENOENT;
2040 }
2041 /* If the user has explicitly specified the driver, this choice should
2042 * override the BDRV_O_PROTOCOL flag */
2043 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002044 }
2045
2046 if (protocol) {
2047 *flags |= BDRV_O_PROTOCOL;
2048 } else {
2049 *flags &= ~BDRV_O_PROTOCOL;
2050 }
2051
Kevin Wolf91a097e2015-05-08 17:49:53 +02002052 /* Translate cache options from flags into options */
2053 update_options_from_flags(*options, *flags);
2054
Kevin Wolff54120f2014-05-26 11:09:59 +02002055 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002056 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002057 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002058 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002059 parse_filename = true;
2060 } else {
2061 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2062 "the same time");
2063 return -EINVAL;
2064 }
2065 }
2066
2067 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002068 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002069 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002070
Max Reitz053e1572015-08-26 19:47:51 +02002071 if (!drvname && protocol) {
2072 if (filename) {
2073 drv = bdrv_find_protocol(filename, parse_filename, errp);
2074 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002075 return -EINVAL;
2076 }
Max Reitz053e1572015-08-26 19:47:51 +02002077
2078 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002079 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002080 } else {
2081 error_setg(errp, "Must specify either driver or file");
2082 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002083 }
2084 }
2085
Kevin Wolf17b005f2014-05-27 10:50:29 +02002086 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002087
2088 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002089 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002090 drv->bdrv_parse_filename(filename, *options, &local_err);
2091 if (local_err) {
2092 error_propagate(errp, local_err);
2093 return -EINVAL;
2094 }
2095
2096 if (!drv->bdrv_needs_filename) {
2097 qdict_del(*options, "filename");
2098 }
2099 }
2100
2101 return 0;
2102}
2103
Kevin Wolf148eb132017-09-14 14:32:04 +02002104typedef struct BlockReopenQueueEntry {
2105 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01002106 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02002107 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002108 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002109} BlockReopenQueueEntry;
2110
2111/*
2112 * Return the flags that @bs will have after the reopens in @q have
2113 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2114 * return the current flags.
2115 */
2116static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2117{
2118 BlockReopenQueueEntry *entry;
2119
2120 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002121 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002122 if (entry->state.bs == bs) {
2123 return entry->state.flags;
2124 }
2125 }
2126 }
2127
2128 return bs->open_flags;
2129}
2130
2131/* Returns whether the image file can be written to after the reopen queue @q
2132 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002133static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2134 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002135{
2136 int flags = bdrv_reopen_get_flags(q, bs);
2137
2138 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2139}
2140
Max Reitzcc022142018-06-06 21:37:00 +02002141/*
2142 * Return whether the BDS can be written to. This is not necessarily
2143 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2144 * be written to but do not count as read-only images.
2145 */
2146bool bdrv_is_writable(BlockDriverState *bs)
2147{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002148 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002149 return bdrv_is_writable_after_reopen(bs, NULL);
2150}
2151
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002152static char *bdrv_child_user_desc(BdrvChild *c)
2153{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002154 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002155 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002156}
2157
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002158/*
2159 * Check that @a allows everything that @b needs. @a and @b must reference same
2160 * child node.
2161 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002162static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2163{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002164 const char *child_bs_name;
2165 g_autofree char *a_user = NULL;
2166 g_autofree char *b_user = NULL;
2167 g_autofree char *perms = NULL;
2168
2169 assert(a->bs);
2170 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002171 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002172
2173 if ((b->perm & a->shared_perm) == b->perm) {
2174 return true;
2175 }
2176
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002177 child_bs_name = bdrv_get_node_name(b->bs);
2178 a_user = bdrv_child_user_desc(a);
2179 b_user = bdrv_child_user_desc(b);
2180 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2181
2182 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2183 "both required by %s (uses node '%s' as '%s' child) and "
2184 "unshared by %s (uses node '%s' as '%s' child).",
2185 child_bs_name, perms,
2186 b_user, child_bs_name, b->name,
2187 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002188
2189 return false;
2190}
2191
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002192static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002193{
2194 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002195 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002196
2197 /*
2198 * During the loop we'll look at each pair twice. That's correct because
2199 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2200 * directions.
2201 */
2202 QLIST_FOREACH(a, &bs->parents, next_parent) {
2203 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002204 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002205 continue;
2206 }
2207
2208 if (!bdrv_a_allow_b(a, b, errp)) {
2209 return true;
2210 }
2211 }
2212 }
2213
2214 return false;
2215}
2216
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002217static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002218 BdrvChild *c, BdrvChildRole role,
2219 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002220 uint64_t parent_perm, uint64_t parent_shared,
2221 uint64_t *nperm, uint64_t *nshared)
2222{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002223 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002224 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002225 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002226 parent_perm, parent_shared,
2227 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002228 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002229 if (child_bs && child_bs->force_share) {
2230 *nshared = BLK_PERM_ALL;
2231 }
2232}
2233
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002234/*
2235 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2236 * nodes that are already in the @list, of course) so that final list is
2237 * topologically sorted. Return the result (GSList @list object is updated, so
2238 * don't use old reference after function call).
2239 *
2240 * On function start @list must be already topologically sorted and for any node
2241 * in the @list the whole subtree of the node must be in the @list as well. The
2242 * simplest way to satisfy this criteria: use only result of
2243 * bdrv_topological_dfs() or NULL as @list parameter.
2244 */
2245static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2246 BlockDriverState *bs)
2247{
2248 BdrvChild *child;
2249 g_autoptr(GHashTable) local_found = NULL;
2250
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002251 GLOBAL_STATE_CODE();
2252
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002253 if (!found) {
2254 assert(!list);
2255 found = local_found = g_hash_table_new(NULL, NULL);
2256 }
2257
2258 if (g_hash_table_contains(found, bs)) {
2259 return list;
2260 }
2261 g_hash_table_add(found, bs);
2262
2263 QLIST_FOREACH(child, &bs->children, next) {
2264 list = bdrv_topological_dfs(list, found, child->bs);
2265 }
2266
2267 return g_slist_prepend(list, bs);
2268}
2269
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002270typedef struct BdrvChildSetPermState {
2271 BdrvChild *child;
2272 uint64_t old_perm;
2273 uint64_t old_shared_perm;
2274} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002275
2276static void bdrv_child_set_perm_abort(void *opaque)
2277{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002278 BdrvChildSetPermState *s = opaque;
2279
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002280 GLOBAL_STATE_CODE();
2281
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002282 s->child->perm = s->old_perm;
2283 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002284}
2285
2286static TransactionActionDrv bdrv_child_set_pem_drv = {
2287 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002288 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002289};
2290
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002291static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2292 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002293{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002294 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002295 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002296
2297 *s = (BdrvChildSetPermState) {
2298 .child = c,
2299 .old_perm = c->perm,
2300 .old_shared_perm = c->shared_perm,
2301 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002302
2303 c->perm = perm;
2304 c->shared_perm = shared;
2305
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002306 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002307}
2308
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002309static void bdrv_drv_set_perm_commit(void *opaque)
2310{
2311 BlockDriverState *bs = opaque;
2312 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002313 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002314
2315 if (bs->drv->bdrv_set_perm) {
2316 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2317 &cumulative_shared_perms);
2318 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2319 }
2320}
2321
2322static void bdrv_drv_set_perm_abort(void *opaque)
2323{
2324 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002325 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002326
2327 if (bs->drv->bdrv_abort_perm_update) {
2328 bs->drv->bdrv_abort_perm_update(bs);
2329 }
2330}
2331
2332TransactionActionDrv bdrv_drv_set_perm_drv = {
2333 .abort = bdrv_drv_set_perm_abort,
2334 .commit = bdrv_drv_set_perm_commit,
2335};
2336
2337static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2338 uint64_t shared_perm, Transaction *tran,
2339 Error **errp)
2340{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002341 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002342 if (!bs->drv) {
2343 return 0;
2344 }
2345
2346 if (bs->drv->bdrv_check_perm) {
2347 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2348 if (ret < 0) {
2349 return ret;
2350 }
2351 }
2352
2353 if (tran) {
2354 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2355 }
2356
2357 return 0;
2358}
2359
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002360typedef struct BdrvReplaceChildState {
2361 BdrvChild *child;
2362 BlockDriverState *old_bs;
2363} BdrvReplaceChildState;
2364
2365static void bdrv_replace_child_commit(void *opaque)
2366{
2367 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002368 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002369
2370 bdrv_unref(s->old_bs);
2371}
2372
2373static void bdrv_replace_child_abort(void *opaque)
2374{
2375 BdrvReplaceChildState *s = opaque;
2376 BlockDriverState *new_bs = s->child->bs;
2377
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002378 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002379 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002380 if (!s->child->bs) {
2381 /*
2382 * The parents were undrained when removing old_bs from the child. New
2383 * requests can't have been made, though, because the child was empty.
2384 *
2385 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2386 * undraining the parent in the first place. Once this is done, having
2387 * new_bs drained when calling bdrv_replace_child_tran() is not a
2388 * requirement any more.
2389 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002390 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002391 assert(!bdrv_parent_drained_poll_single(s->child));
2392 }
2393 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002394 bdrv_replace_child_noperm(s->child, s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002395 bdrv_unref(new_bs);
2396}
2397
2398static TransactionActionDrv bdrv_replace_child_drv = {
2399 .commit = bdrv_replace_child_commit,
2400 .abort = bdrv_replace_child_abort,
2401 .clean = g_free,
2402};
2403
2404/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002405 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002406 *
2407 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002408 *
Kevin Wolf23987472022-11-18 18:41:09 +01002409 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2410 * kept drained until the transaction is completed.
2411 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002412 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002413 */
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002414static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002415 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002416{
2417 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002418
2419 assert(child->quiesced_parent);
2420 assert(!new_bs || new_bs->quiesce_counter);
2421
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002422 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002423 .child = child,
2424 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002425 };
2426 tran_add(tran, &bdrv_replace_child_drv, s);
2427
2428 if (new_bs) {
2429 bdrv_ref(new_bs);
2430 }
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002431 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002432 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002433}
2434
Kevin Wolf33a610c2016-12-15 13:04:20 +01002435/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002436 * Refresh permissions in @bs subtree. The function is intended to be called
2437 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002438 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002439static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2440 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002441{
2442 BlockDriver *drv = bs->drv;
2443 BdrvChild *c;
2444 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002445 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002446 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002447
2448 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002449
2450 /* Write permissions never work with read-only images */
2451 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002452 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002453 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002454 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2455 error_setg(errp, "Block node is read-only");
2456 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002457 error_setg(errp, "Read-only block node '%s' cannot support "
2458 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002459 }
2460
Kevin Wolf33a610c2016-12-15 13:04:20 +01002461 return -EPERM;
2462 }
2463
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002464 /*
2465 * Unaligned requests will automatically be aligned to bl.request_alignment
2466 * and without RESIZE we can't extend requests to write to space beyond the
2467 * end of the image, so it's required that the image size is aligned.
2468 */
2469 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2470 !(cumulative_perms & BLK_PERM_RESIZE))
2471 {
2472 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2473 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2474 "Image size is not a multiple of request "
2475 "alignment");
2476 return -EPERM;
2477 }
2478 }
2479
Kevin Wolf33a610c2016-12-15 13:04:20 +01002480 /* Check this node */
2481 if (!drv) {
2482 return 0;
2483 }
2484
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002485 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002486 errp);
2487 if (ret < 0) {
2488 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002489 }
2490
Kevin Wolf78e421c2016-12-20 23:25:12 +01002491 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002492 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002493 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002494 return 0;
2495 }
2496
2497 /* Check all children */
2498 QLIST_FOREACH(c, &bs->children, next) {
2499 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002500
Max Reitze5d8a402020-05-13 13:05:44 +02002501 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002502 cumulative_perms, cumulative_shared_perms,
2503 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002504 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002505 }
2506
2507 return 0;
2508}
2509
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002510/*
2511 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2512 * a topologically sorted subgraph.
2513 */
2514static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q,
2515 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002516{
2517 int ret;
2518 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002519 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002520
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002521 for ( ; list; list = list->next) {
2522 bs = list->data;
2523
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002524 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002525 return -EINVAL;
2526 }
2527
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002528 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002529 if (ret < 0) {
2530 return ret;
2531 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002532 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002533
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002534 return 0;
2535}
2536
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002537/*
2538 * @list is any list of nodes. List is completed by all subtrees and
2539 * topologically sorted. It's not a problem if some node occurs in the @list
2540 * several times.
2541 */
2542static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2543 Transaction *tran, Error **errp)
2544{
2545 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2546 g_autoptr(GSList) refresh_list = NULL;
2547
2548 for ( ; list; list = list->next) {
2549 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2550 }
2551
2552 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2553}
2554
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002555void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2556 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002557{
2558 BdrvChild *c;
2559 uint64_t cumulative_perms = 0;
2560 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2561
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002562 GLOBAL_STATE_CODE();
2563
Kevin Wolf33a610c2016-12-15 13:04:20 +01002564 QLIST_FOREACH(c, &bs->parents, next_parent) {
2565 cumulative_perms |= c->perm;
2566 cumulative_shared_perms &= c->shared_perm;
2567 }
2568
2569 *perm = cumulative_perms;
2570 *shared_perm = cumulative_shared_perms;
2571}
2572
Fam Zheng51761962017-05-03 00:35:36 +08002573char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002574{
2575 struct perm_name {
2576 uint64_t perm;
2577 const char *name;
2578 } permissions[] = {
2579 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2580 { BLK_PERM_WRITE, "write" },
2581 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2582 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002583 { 0, NULL }
2584 };
2585
Alberto Garciae2a74232020-01-10 18:15:18 +01002586 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002587 struct perm_name *p;
2588
2589 for (p = permissions; p->name; p++) {
2590 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002591 if (result->len > 0) {
2592 g_string_append(result, ", ");
2593 }
2594 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002595 }
2596 }
2597
Alberto Garciae2a74232020-01-10 18:15:18 +01002598 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002599}
2600
Kevin Wolf33a610c2016-12-15 13:04:20 +01002601
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002602/* @tran is allowed to be NULL. In this case no rollback is possible */
2603static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran,
2604 Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002605{
2606 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002607 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002608 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002609 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002610
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002611 if (!tran) {
2612 tran = local_tran = tran_new();
2613 }
2614
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002615 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002616
2617 if (local_tran) {
2618 tran_finalize(local_tran, ret);
2619 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002620
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002621 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002622}
2623
Kevin Wolf33a610c2016-12-15 13:04:20 +01002624int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2625 Error **errp)
2626{
Max Reitz10467792019-05-22 19:03:51 +02002627 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002628 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002629 int ret;
2630
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002631 GLOBAL_STATE_CODE();
2632
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002633 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002634
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002635 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002636
2637 tran_finalize(tran, ret);
2638
Kevin Wolf33a610c2016-12-15 13:04:20 +01002639 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002640 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2641 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002642 error_propagate(errp, local_err);
2643 } else {
2644 /*
2645 * Our caller may intend to only loosen restrictions and
2646 * does not expect this function to fail. Errors are not
2647 * fatal in such a case, so we can just hide them from our
2648 * caller.
2649 */
2650 error_free(local_err);
2651 ret = 0;
2652 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002653 }
2654
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002655 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002656}
2657
Max Reitzc1087f12019-05-22 19:03:46 +02002658int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2659{
2660 uint64_t parent_perms, parent_shared;
2661 uint64_t perms, shared;
2662
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002663 GLOBAL_STATE_CODE();
2664
Max Reitzc1087f12019-05-22 19:03:46 +02002665 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002666 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002667 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002668
2669 return bdrv_child_try_set_perm(c, perms, shared, errp);
2670}
2671
Max Reitz87278af2020-05-13 13:05:40 +02002672/*
2673 * Default implementation for .bdrv_child_perm() for block filters:
2674 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2675 * filtered child.
2676 */
2677static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002678 BdrvChildRole role,
2679 BlockReopenQueue *reopen_queue,
2680 uint64_t perm, uint64_t shared,
2681 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002682{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002683 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002684 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2685 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002686}
2687
Max Reitz70082db2020-05-13 13:05:26 +02002688static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002689 BdrvChildRole role,
2690 BlockReopenQueue *reopen_queue,
2691 uint64_t perm, uint64_t shared,
2692 uint64_t *nperm, uint64_t *nshared)
2693{
Max Reitze5d8a402020-05-13 13:05:44 +02002694 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002695 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002696
2697 /*
2698 * We want consistent read from backing files if the parent needs it.
2699 * No other operations are performed on backing files.
2700 */
2701 perm &= BLK_PERM_CONSISTENT_READ;
2702
2703 /*
2704 * If the parent can deal with changing data, we're okay with a
2705 * writable and resizable backing file.
2706 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2707 */
2708 if (shared & BLK_PERM_WRITE) {
2709 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2710 } else {
2711 shared = 0;
2712 }
2713
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002714 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002715
2716 if (bs->open_flags & BDRV_O_INACTIVE) {
2717 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2718 }
2719
2720 *nperm = perm;
2721 *nshared = shared;
2722}
2723
Max Reitz6f838a42020-05-13 13:05:27 +02002724static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002725 BdrvChildRole role,
2726 BlockReopenQueue *reopen_queue,
2727 uint64_t perm, uint64_t shared,
2728 uint64_t *nperm, uint64_t *nshared)
2729{
2730 int flags;
2731
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002732 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002733 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002734
2735 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2736
2737 /*
2738 * Apart from the modifications below, the same permissions are
2739 * forwarded and left alone as for filters
2740 */
Max Reitze5d8a402020-05-13 13:05:44 +02002741 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002742 perm, shared, &perm, &shared);
2743
Max Reitzf8890542020-05-13 13:05:28 +02002744 if (role & BDRV_CHILD_METADATA) {
2745 /* Format drivers may touch metadata even if the guest doesn't write */
2746 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2747 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2748 }
2749
2750 /*
2751 * bs->file always needs to be consistent because of the
2752 * metadata. We can never allow other users to resize or write
2753 * to it.
2754 */
2755 if (!(flags & BDRV_O_NO_IO)) {
2756 perm |= BLK_PERM_CONSISTENT_READ;
2757 }
2758 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002759 }
2760
Max Reitzf8890542020-05-13 13:05:28 +02002761 if (role & BDRV_CHILD_DATA) {
2762 /*
2763 * Technically, everything in this block is a subset of the
2764 * BDRV_CHILD_METADATA path taken above, and so this could
2765 * be an "else if" branch. However, that is not obvious, and
2766 * this function is not performance critical, therefore we let
2767 * this be an independent "if".
2768 */
2769
2770 /*
2771 * We cannot allow other users to resize the file because the
2772 * format driver might have some assumptions about the size
2773 * (e.g. because it is stored in metadata, or because the file
2774 * is split into fixed-size data files).
2775 */
2776 shared &= ~BLK_PERM_RESIZE;
2777
2778 /*
2779 * WRITE_UNCHANGED often cannot be performed as such on the
2780 * data file. For example, the qcow2 driver may still need to
2781 * write copied clusters on copy-on-read.
2782 */
2783 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2784 perm |= BLK_PERM_WRITE;
2785 }
2786
2787 /*
2788 * If the data file is written to, the format driver may
2789 * expect to be able to resize it by writing beyond the EOF.
2790 */
2791 if (perm & BLK_PERM_WRITE) {
2792 perm |= BLK_PERM_RESIZE;
2793 }
Max Reitz6f838a42020-05-13 13:05:27 +02002794 }
Max Reitz6f838a42020-05-13 13:05:27 +02002795
2796 if (bs->open_flags & BDRV_O_INACTIVE) {
2797 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2798 }
2799
2800 *nperm = perm;
2801 *nshared = shared;
2802}
2803
Max Reitz2519f542020-05-13 13:05:29 +02002804void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002805 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002806 uint64_t perm, uint64_t shared,
2807 uint64_t *nperm, uint64_t *nshared)
2808{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002809 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002810 if (role & BDRV_CHILD_FILTERED) {
2811 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2812 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002813 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002814 perm, shared, nperm, nshared);
2815 } else if (role & BDRV_CHILD_COW) {
2816 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002817 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002818 perm, shared, nperm, nshared);
2819 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002820 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002821 perm, shared, nperm, nshared);
2822 } else {
2823 g_assert_not_reached();
2824 }
2825}
2826
Max Reitz7b1d9c42019-11-08 13:34:51 +01002827uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2828{
2829 static const uint64_t permissions[] = {
2830 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2831 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2832 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2833 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002834 };
2835
2836 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2837 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2838
2839 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2840
2841 return permissions[qapi_perm];
2842}
2843
Kevin Wolf23987472022-11-18 18:41:09 +01002844/*
2845 * Replaces the node that a BdrvChild points to without updating permissions.
2846 *
2847 * If @new_bs is non-NULL, the parent of @child must already be drained through
2848 * @child.
Kevin Wolf23987472022-11-18 18:41:09 +01002849 */
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002850static void bdrv_replace_child_noperm(BdrvChild *child,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002851 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002852{
2853 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002854 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002855
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002856 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002857
2858 /*
2859 * If we want to change the BdrvChild to point to a drained node as its new
2860 * child->bs, we need to make sure that its new parent is drained, too. In
2861 * other words, either child->quiesce_parent must already be true or we must
2862 * be able to set it and keep the parent's quiesce_counter consistent with
2863 * that, but without polling or starting new requests (this function
2864 * guarantees that it doesn't poll, and starting new requests would be
2865 * against the invariants of drain sections).
2866 *
2867 * To keep things simple, we pick the first option (child->quiesce_parent
2868 * must already be true). We also generalise the rule a bit to make it
2869 * easier to verify in callers and more likely to be covered in test cases:
2870 * The parent must be quiesced through this child even if new_bs isn't
2871 * currently drained.
2872 *
2873 * The only exception is for callers that always pass new_bs == NULL. In
2874 * this case, we obviously never need to consider the case of a drained
2875 * new_bs, so we can keep the callers simpler by allowing them not to drain
2876 * the parent.
2877 */
2878 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002879 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002880 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002881
Fam Zhengbb2614e2017-04-07 14:54:10 +08002882 if (old_bs && new_bs) {
2883 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2884 }
Max Reitzdebc2922019-07-22 15:33:44 +02002885
Emanuele Giuseppe Esposito29312502022-12-07 14:18:31 +01002886 /* TODO Pull this up into the callers to avoid polling here */
2887 bdrv_graph_wrlock();
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002888 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002889 if (child->klass->detach) {
2890 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002891 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002892 QLIST_REMOVE(child, next_parent);
2893 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002894
2895 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002896
2897 if (new_bs) {
2898 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002899 if (child->klass->attach) {
2900 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002901 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002902 }
Emanuele Giuseppe Esposito29312502022-12-07 14:18:31 +01002903 bdrv_graph_wrunlock();
Max Reitzdebc2922019-07-22 15:33:44 +02002904
2905 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002906 * If the parent was drained through this BdrvChild previously, but new_bs
2907 * is not drained, allow requests to come in only after the new node has
2908 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002909 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002910 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2911 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002912 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002913 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002914}
2915
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002916/**
2917 * Free the given @child.
2918 *
2919 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2920 * unused (i.e. not in a children list).
2921 */
2922static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002923{
2924 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002925 GLOBAL_STATE_CODE();
Hanna Reitza2253692021-11-15 15:53:58 +01002926 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002927
2928 g_free(child->name);
2929 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002930}
2931
2932typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002933 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002934 AioContext *old_parent_ctx;
2935 AioContext *old_child_ctx;
2936} BdrvAttachChildCommonState;
2937
2938static void bdrv_attach_child_common_abort(void *opaque)
2939{
2940 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002941 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002942
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002943 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002944 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002945
2946 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04002947 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002948 }
2949
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002950 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002951 Transaction *tran;
2952 GHashTable *visited;
2953 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002954
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002955 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002956
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002957 /* No need to visit `child`, because it has been detached already */
2958 visited = g_hash_table_new(NULL, NULL);
2959 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
2960 visited, tran, &error_abort);
2961 g_hash_table_destroy(visited);
2962
2963 /* transaction is supposed to always succeed */
2964 assert(ret == true);
2965 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002966 }
2967
2968 bdrv_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002969 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002970}
2971
2972static TransactionActionDrv bdrv_attach_child_common_drv = {
2973 .abort = bdrv_attach_child_common_abort,
2974 .clean = g_free,
2975};
2976
2977/*
2978 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002979 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002980 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002981 *
2982 * Returns new created child.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002983 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002984static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs,
2985 const char *child_name,
2986 const BdrvChildClass *child_class,
2987 BdrvChildRole child_role,
2988 uint64_t perm, uint64_t shared_perm,
2989 void *opaque,
2990 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002991{
2992 BdrvChild *new_child;
2993 AioContext *parent_ctx;
2994 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2995
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002996 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002997 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002998
2999 new_child = g_new(BdrvChild, 1);
3000 *new_child = (BdrvChild) {
3001 .bs = NULL,
3002 .name = g_strdup(child_name),
3003 .klass = child_class,
3004 .role = child_role,
3005 .perm = perm,
3006 .shared_perm = shared_perm,
3007 .opaque = opaque,
3008 };
3009
3010 /*
3011 * If the AioContexts don't match, first try to move the subtree of
3012 * child_bs into the AioContext of the new parent. If this doesn't work,
3013 * try moving the parent into the AioContext of child_bs instead.
3014 */
3015 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3016 if (child_ctx != parent_ctx) {
3017 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003018 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3019 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003020
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003021 if (ret < 0 && child_class->change_aio_ctx) {
3022 Transaction *tran = tran_new();
3023 GHashTable *visited = g_hash_table_new(NULL, NULL);
3024 bool ret_child;
3025
3026 g_hash_table_add(visited, new_child);
3027 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3028 visited, tran, NULL);
3029 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003030 error_free(local_err);
3031 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003032 }
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003033 tran_finalize(tran, ret_child == true ? 0 : -1);
3034 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003035 }
3036
3037 if (ret < 0) {
3038 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003039 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003040 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003041 }
3042 }
3043
3044 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003045 /*
3046 * Let every new BdrvChild start with a drained parent. Inserting the child
3047 * in the graph with bdrv_replace_child_noperm() will undrain it if
3048 * @child_bs is not drained.
3049 *
3050 * The child was only just created and is not yet visible in global state
3051 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3052 * could have sent requests and polling is not necessary.
3053 *
3054 * Note that this means that the parent isn't fully drained yet, we only
3055 * stop new requests from coming in. This is fine, we don't care about the
3056 * old requests here, they are not for this child. If another place enters a
3057 * drain section for the same parent, but wants it to be fully quiesced, it
3058 * will not run most of the the code in .drained_begin() again (which is not
3059 * a problem, we already did this), but it will still poll until the parent
3060 * is fully quiesced, so it will not be negatively affected either.
3061 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003062 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003063 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003064
3065 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3066 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003067 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003068 .old_parent_ctx = parent_ctx,
3069 .old_child_ctx = child_ctx,
3070 };
3071 tran_add(tran, &bdrv_attach_child_common_drv, s);
3072
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003073 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003074}
3075
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003076/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003077 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003078 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003079static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3080 BlockDriverState *child_bs,
3081 const char *child_name,
3082 const BdrvChildClass *child_class,
3083 BdrvChildRole child_role,
3084 Transaction *tran,
3085 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003086{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003087 uint64_t perm, shared_perm;
3088
3089 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003090 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003091
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003092 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3093 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3094 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003095 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003096 }
3097
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003098 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3099 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3100 perm, shared_perm, &perm, &shared_perm);
3101
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003102 return bdrv_attach_child_common(child_bs, child_name, child_class,
3103 child_role, perm, shared_perm, parent_bs,
3104 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003105}
3106
Alberto Garciab441dc72019-05-13 16:46:18 +03003107/*
3108 * This function steals the reference to child_bs from the caller.
3109 * That reference is later dropped by bdrv_root_unref_child().
3110 *
3111 * On failure NULL is returned, errp is set and the reference to
3112 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003113 *
3114 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3115 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003116 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003117BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3118 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003119 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003120 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003121 uint64_t perm, uint64_t shared_perm,
3122 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003123{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003124 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003125 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003126 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003127
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003128 GLOBAL_STATE_CODE();
3129
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003130 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003131 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003132 tran, errp);
3133 if (!child) {
3134 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003135 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003136 }
3137
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003138 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003139
Kevin Wolfe878bb12021-05-03 13:05:54 +02003140out:
3141 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003142
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003143 bdrv_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003144
3145 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003146}
3147
Alberto Garciab441dc72019-05-13 16:46:18 +03003148/*
3149 * This function transfers the reference to child_bs from the caller
3150 * to parent_bs. That reference is later dropped by parent_bs on
3151 * bdrv_close() or if someone calls bdrv_unref_child().
3152 *
3153 * On failure NULL is returned, errp is set and the reference to
3154 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003155 *
3156 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3157 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003158 */
Wen Congyang98292c62016-05-10 15:36:38 +08003159BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3160 BlockDriverState *child_bs,
3161 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003162 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003163 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003164 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003165{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003166 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003167 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003168 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003169
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003170 GLOBAL_STATE_CODE();
3171
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003172 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3173 child_class, child_role, tran, errp);
3174 if (!child) {
3175 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003176 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003177 }
3178
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003179 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003180 if (ret < 0) {
3181 goto out;
3182 }
3183
3184out:
3185 tran_finalize(tran, ret);
3186
3187 bdrv_unref(child_bs);
3188
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003189 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003190}
3191
Max Reitz7b99a262019-06-12 16:07:11 +02003192/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003193void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003194{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003195 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003196
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003197 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003198 bdrv_replace_child_noperm(child, NULL);
3199 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003200
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003201 if (child_bs) {
3202 /*
3203 * Update permissions for old node. We're just taking a parent away, so
3204 * we're loosening restrictions. Errors of permission update are not
3205 * fatal in this case, ignore them.
3206 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003207 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003208
3209 /*
3210 * When the parent requiring a non-default AioContext is removed, the
3211 * node moves back to the main AioContext
3212 */
3213 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3214 NULL);
3215 }
3216
Kevin Wolff21d96d2016-03-08 13:47:46 +01003217 bdrv_unref(child_bs);
3218}
3219
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003220typedef struct BdrvSetInheritsFrom {
3221 BlockDriverState *bs;
3222 BlockDriverState *old_inherits_from;
3223} BdrvSetInheritsFrom;
3224
3225static void bdrv_set_inherits_from_abort(void *opaque)
3226{
3227 BdrvSetInheritsFrom *s = opaque;
3228
3229 s->bs->inherits_from = s->old_inherits_from;
3230}
3231
3232static TransactionActionDrv bdrv_set_inherits_from_drv = {
3233 .abort = bdrv_set_inherits_from_abort,
3234 .clean = g_free,
3235};
3236
3237/* @tran is allowed to be NULL. In this case no rollback is possible */
3238static void bdrv_set_inherits_from(BlockDriverState *bs,
3239 BlockDriverState *new_inherits_from,
3240 Transaction *tran)
3241{
3242 if (tran) {
3243 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3244
3245 *s = (BdrvSetInheritsFrom) {
3246 .bs = bs,
3247 .old_inherits_from = bs->inherits_from,
3248 };
3249
3250 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3251 }
3252
3253 bs->inherits_from = new_inherits_from;
3254}
3255
Max Reitz3cf746b2019-07-03 19:28:07 +02003256/**
3257 * Clear all inherits_from pointers from children and grandchildren of
3258 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003259 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003260 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003261static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3262 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003263{
Max Reitz3cf746b2019-07-03 19:28:07 +02003264 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003265
Max Reitz3cf746b2019-07-03 19:28:07 +02003266 if (child->bs->inherits_from == root) {
3267 /*
3268 * Remove inherits_from only when the last reference between root and
3269 * child->bs goes away.
3270 */
3271 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003272 if (c != child && c->bs == child->bs) {
3273 break;
3274 }
3275 }
3276 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003277 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003278 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003279 }
3280
Max Reitz3cf746b2019-07-03 19:28:07 +02003281 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003282 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003283 }
3284}
3285
Max Reitz7b99a262019-06-12 16:07:11 +02003286/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003287void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3288{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003289 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003290 if (child == NULL) {
3291 return;
3292 }
3293
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003294 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003295 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003296}
3297
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003298
3299static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3300{
3301 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003302 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003303 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003304 if (c->klass->change_media) {
3305 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003306 }
3307 }
3308}
3309
Alberto Garcia0065c452018-10-31 18:16:37 +02003310/* Return true if you can reach parent going through child->inherits_from
3311 * recursively. If parent or child are NULL, return false */
3312static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3313 BlockDriverState *parent)
3314{
3315 while (child && child != parent) {
3316 child = child->inherits_from;
3317 }
3318
3319 return child != NULL;
3320}
3321
Kevin Wolf5db15a52015-09-14 15:33:33 +02003322/*
Max Reitz25191e52020-05-13 13:05:33 +02003323 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3324 * mostly used for COW backing children (role = COW), but also for
3325 * filtered children (role = FILTERED | PRIMARY).
3326 */
3327static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3328{
3329 if (bs->drv && bs->drv->is_filter) {
3330 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3331 } else {
3332 return BDRV_CHILD_COW;
3333 }
3334}
3335
3336/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003337 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3338 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003339 *
3340 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003341 */
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003342static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3343 BlockDriverState *child_bs,
3344 bool is_backing,
3345 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003346{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003347 bool update_inherits_from =
3348 bdrv_inherits_from_recursive(child_bs, parent_bs);
3349 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3350 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003351
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003352 GLOBAL_STATE_CODE();
3353
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003354 if (!parent_bs->drv) {
3355 /*
3356 * Node without drv is an object without a class :/. TODO: finally fix
3357 * qcow2 driver to never clear bs->drv and implement format corruption
3358 * handling in other way.
3359 */
3360 error_setg(errp, "Node corrupted");
3361 return -EINVAL;
3362 }
3363
3364 if (child && child->frozen) {
3365 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3366 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003367 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003368 }
3369
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003370 if (is_backing && !parent_bs->drv->is_filter &&
3371 !parent_bs->drv->supports_backing)
3372 {
3373 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3374 "files", parent_bs->drv->format_name, parent_bs->node_name);
3375 return -EINVAL;
3376 }
3377
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003378 if (parent_bs->drv->is_filter) {
3379 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3380 } else if (is_backing) {
3381 role = BDRV_CHILD_COW;
3382 } else {
3383 /*
3384 * We only can use same role as it is in existing child. We don't have
3385 * infrastructure to determine role of file child in generic way
3386 */
3387 if (!child) {
3388 error_setg(errp, "Cannot set file child to format node without "
3389 "file child");
3390 return -EINVAL;
3391 }
3392 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003393 }
3394
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003395 if (child) {
3396 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003397 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003398 }
3399
3400 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003401 goto out;
3402 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003403
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003404 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3405 is_backing ? "backing" : "file",
3406 &child_of_bds, role,
3407 tran, errp);
3408 if (!child) {
3409 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003410 }
3411
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003412
3413 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003414 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003415 * point directly to bs (else it will become NULL).
3416 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003417 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003418 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003419 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003420
Fam Zheng8d24cce2014-05-23 21:29:45 +08003421out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003422 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003423
3424 return 0;
3425}
3426
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003427static int bdrv_set_backing_noperm(BlockDriverState *bs,
3428 BlockDriverState *backing_hd,
3429 Transaction *tran, Error **errp)
3430{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003431 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003432 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3433}
3434
Kevin Wolf92140b92022-11-18 18:41:04 +01003435int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3436 BlockDriverState *backing_hd,
3437 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003438{
3439 int ret;
3440 Transaction *tran = tran_new();
3441
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003442 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003443 assert(bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003444
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003445 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3446 if (ret < 0) {
3447 goto out;
3448 }
3449
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003450 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003451out:
3452 tran_finalize(tran, ret);
Kevin Wolf92140b92022-11-18 18:41:04 +01003453 return ret;
3454}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003455
Kevin Wolf92140b92022-11-18 18:41:04 +01003456int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3457 Error **errp)
3458{
3459 int ret;
3460 GLOBAL_STATE_CODE();
3461
3462 bdrv_drained_begin(bs);
3463 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003464 bdrv_drained_end(bs);
3465
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003466 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003467}
3468
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003469/*
3470 * Opens the backing file for a BlockDriverState if not yet open
3471 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003472 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3473 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3474 * itself, all options starting with "${bdref_key}." are considered part of the
3475 * BlockdevRef.
3476 *
3477 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003478 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003479int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3480 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003481{
Max Reitz6b6833c2019-02-01 20:29:15 +01003482 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003483 char *bdref_key_dot;
3484 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003485 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003486 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003487 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003488 QDict *options;
3489 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003490 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003491
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003492 GLOBAL_STATE_CODE();
3493
Kevin Wolf760e0062015-06-17 14:55:21 +02003494 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003495 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003496 }
3497
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003498 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003499 if (parent_options == NULL) {
3500 tmp_parent_options = qdict_new();
3501 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003502 }
3503
Paolo Bonzini9156df12012-10-18 16:49:17 +02003504 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003505
3506 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3507 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3508 g_free(bdref_key_dot);
3509
Markus Armbruster129c7d12017-03-30 19:43:12 +02003510 /*
3511 * Caution: while qdict_get_try_str() is fine, getting non-string
3512 * types would require more care. When @parent_options come from
3513 * -blockdev or blockdev_add, its members are typed according to
3514 * the QAPI schema, but when they come from -drive, they're all
3515 * QString.
3516 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003517 reference = qdict_get_try_str(parent_options, bdref_key);
3518 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003519 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003520 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003521 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003522 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003523 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003524 if (qdict_size(options) == 0) {
3525 /* If the user specifies options that do not modify the
3526 * backing file's behavior, we might still consider it the
3527 * implicit backing file. But it's easier this way, and
3528 * just specifying some of the backing BDS's options is
3529 * only possible with -drive anyway (otherwise the QAPI
3530 * schema forces the user to specify everything). */
3531 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3532 }
3533
Max Reitz6b6833c2019-02-01 20:29:15 +01003534 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003535 if (local_err) {
3536 ret = -EINVAL;
3537 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003538 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003539 goto free_exit;
3540 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003541 }
3542
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003543 if (!bs->drv || !bs->drv->supports_backing) {
3544 ret = -EINVAL;
3545 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003546 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003547 goto free_exit;
3548 }
3549
Peter Krempa6bff5972017-10-12 16:14:10 +02003550 if (!reference &&
3551 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003552 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003553 }
3554
Max Reitz6b6833c2019-02-01 20:29:15 +01003555 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003556 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003557 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003558 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003559 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003560 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003561 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003562 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003563
Max Reitz998c2012019-02-01 20:29:08 +01003564 if (implicit_backing) {
3565 bdrv_refresh_filename(backing_hd);
3566 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3567 backing_hd->filename);
3568 }
3569
Kevin Wolf5db15a52015-09-14 15:33:33 +02003570 /* Hook up the backing file link; drop our reference, bs owns the
3571 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003572 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003573 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003574 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003575 goto free_exit;
3576 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003577
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003578 qdict_del(parent_options, bdref_key);
3579
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003580free_exit:
3581 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003582 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003583 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003584}
3585
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003586static BlockDriverState *
3587bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003588 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003589 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003590{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003591 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003592 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003593 char *bdref_key_dot;
3594 const char *reference;
3595
Max Reitzbd86fb92020-05-13 13:05:13 +02003596 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003597
Max Reitzda557aa2013-12-20 19:28:11 +01003598 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3599 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3600 g_free(bdref_key_dot);
3601
Markus Armbruster129c7d12017-03-30 19:43:12 +02003602 /*
3603 * Caution: while qdict_get_try_str() is fine, getting non-string
3604 * types would require more care. When @options come from
3605 * -blockdev or blockdev_add, its members are typed according to
3606 * the QAPI schema, but when they come from -drive, they're all
3607 * QString.
3608 */
Max Reitzda557aa2013-12-20 19:28:11 +01003609 reference = qdict_get_try_str(options, bdref_key);
3610 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003611 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003612 error_setg(errp, "A block device must be specified for \"%s\"",
3613 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003614 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003615 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003616 goto done;
3617 }
3618
Max Reitz5b363932016-05-17 16:41:31 +02003619 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003620 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003621 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003622 goto done;
3623 }
3624
Max Reitzda557aa2013-12-20 19:28:11 +01003625done:
3626 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003627 return bs;
3628}
3629
3630/*
3631 * Opens a disk image whose options are given as BlockdevRef in another block
3632 * device's options.
3633 *
3634 * If allow_none is true, no image will be opened if filename is false and no
3635 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3636 *
3637 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3638 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3639 * itself, all options starting with "${bdref_key}." are considered part of the
3640 * BlockdevRef.
3641 *
3642 * The BlockdevRef will be removed from the options QDict.
3643 */
3644BdrvChild *bdrv_open_child(const char *filename,
3645 QDict *options, const char *bdref_key,
3646 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003647 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003648 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003649 bool allow_none, Error **errp)
3650{
3651 BlockDriverState *bs;
3652
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003653 GLOBAL_STATE_CODE();
3654
Max Reitzbd86fb92020-05-13 13:05:13 +02003655 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003656 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003657 if (bs == NULL) {
3658 return NULL;
3659 }
3660
Max Reitz258b7762020-05-13 13:05:15 +02003661 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3662 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003663}
3664
Max Reitzbd86fb92020-05-13 13:05:13 +02003665/*
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003666 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
3667 */
3668int bdrv_open_file_child(const char *filename,
3669 QDict *options, const char *bdref_key,
3670 BlockDriverState *parent, Error **errp)
3671{
3672 BdrvChildRole role;
3673
3674 /* commit_top and mirror_top don't use this function */
3675 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003676 role = parent->drv->is_filter ?
3677 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3678
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003679 if (!bdrv_open_child(filename, options, bdref_key, parent,
3680 &child_of_bds, role, false, errp))
3681 {
3682 return -EINVAL;
3683 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003684
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003685 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003686}
3687
3688/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003689 * TODO Future callers may need to specify parent/child_class in order for
3690 * option inheritance to work. Existing callers use it for the root node.
3691 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003692BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3693{
3694 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003695 QObject *obj = NULL;
3696 QDict *qdict = NULL;
3697 const char *reference = NULL;
3698 Visitor *v = NULL;
3699
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003700 GLOBAL_STATE_CODE();
3701
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003702 if (ref->type == QTYPE_QSTRING) {
3703 reference = ref->u.reference;
3704 } else {
3705 BlockdevOptions *options = &ref->u.definition;
3706 assert(ref->type == QTYPE_QDICT);
3707
3708 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003709 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003710 visit_complete(v, &obj);
3711
Max Reitz7dc847e2018-02-24 16:40:29 +01003712 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003713 qdict_flatten(qdict);
3714
3715 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3716 * compatibility with other callers) rather than what we want as the
3717 * real defaults. Apply the defaults here instead. */
3718 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3719 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3720 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003721 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3722
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003723 }
3724
Max Reitz272c02e2020-05-13 13:05:17 +02003725 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003726 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003727 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003728 visit_free(v);
3729 return bs;
3730}
3731
Max Reitz66836182016-05-17 16:41:27 +02003732static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3733 int flags,
3734 QDict *snapshot_options,
3735 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003736{
Bin Meng69fbfff2022-10-10 12:04:31 +08003737 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003738 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003739 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003740 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003741 int ret;
3742
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003743 GLOBAL_STATE_CODE();
3744
Kevin Wolfb9988752014-04-03 12:09:34 +02003745 /* if snapshot, we create a temporary backing file and open it
3746 instead of opening 'filename' directly */
3747
3748 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003749 total_size = bdrv_getlength(bs);
3750 if (total_size < 0) {
3751 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003752 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003753 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003754
3755 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003756 tmp_filename = create_tmp_file(errp);
3757 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003758 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003759 }
3760
Max Reitzef810432014-12-02 18:32:42 +01003761 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003762 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003763 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003764 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003765 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003766 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003767 error_prepend(errp, "Could not create temporary overlay '%s': ",
3768 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003769 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003770 }
3771
Kevin Wolf73176be2016-03-07 13:02:15 +01003772 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003773 qdict_put_str(snapshot_options, "file.driver", "file");
3774 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3775 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003776
Max Reitz5b363932016-05-17 16:41:31 +02003777 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003778 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003779 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003780 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003781 }
3782
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003783 ret = bdrv_append(bs_snapshot, bs, errp);
3784 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003785 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003786 goto out;
3787 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003788
3789out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003790 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003791 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003792}
3793
Max Reitzda557aa2013-12-20 19:28:11 +01003794/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003795 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003796 *
3797 * options is a QDict of options to pass to the block drivers, or NULL for an
3798 * empty set of options. The reference to the QDict belongs to the block layer
3799 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003800 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003801 *
3802 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3803 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003804 *
3805 * The reference parameter may be used to specify an existing block device which
3806 * should be opened. If specified, neither options nor a filename may be given,
3807 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01003808 *
3809 * The caller must always hold @filename AioContext lock, because this
3810 * function eventually calls bdrv_refresh_total_sectors() which polls
3811 * when called from non-coroutine context.
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003812 */
Kevin Wolf32192302023-01-26 18:24:32 +01003813static BlockDriverState * no_coroutine_fn
3814bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3815 int flags, BlockDriverState *parent,
3816 const BdrvChildClass *child_class, BdrvChildRole child_role,
3817 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003818{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003819 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003820 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003821 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003822 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003823 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003824 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003825 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003826 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003827 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003828 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003829
Max Reitzbd86fb92020-05-13 13:05:13 +02003830 assert(!child_class || !flags);
3831 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003832 GLOBAL_STATE_CODE();
Kevin Wolf32192302023-01-26 18:24:32 +01003833 assert(!qemu_in_coroutine());
Max Reitzf67503e2014-02-18 18:33:05 +01003834
Max Reitzddf56362014-02-18 18:33:06 +01003835 if (reference) {
3836 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003837 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003838
Max Reitzddf56362014-02-18 18:33:06 +01003839 if (filename || options_non_empty) {
3840 error_setg(errp, "Cannot reference an existing block device with "
3841 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003842 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003843 }
3844
3845 bs = bdrv_lookup_bs(reference, reference, errp);
3846 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003847 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003848 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003849
Max Reitzddf56362014-02-18 18:33:06 +01003850 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003851 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003852 }
3853
Max Reitz5b363932016-05-17 16:41:31 +02003854 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003855
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003856 /* NULL means an empty set of options */
3857 if (options == NULL) {
3858 options = qdict_new();
3859 }
3860
Kevin Wolf145f5982015-05-08 16:15:03 +02003861 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003862 parse_json_protocol(options, &filename, &local_err);
3863 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003864 goto fail;
3865 }
3866
Kevin Wolf145f5982015-05-08 16:15:03 +02003867 bs->explicit_options = qdict_clone_shallow(options);
3868
Max Reitzbd86fb92020-05-13 13:05:13 +02003869 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003870 bool parent_is_format;
3871
3872 if (parent->drv) {
3873 parent_is_format = parent->drv->is_format;
3874 } else {
3875 /*
3876 * parent->drv is not set yet because this node is opened for
3877 * (potential) format probing. That means that @parent is going
3878 * to be a format node.
3879 */
3880 parent_is_format = true;
3881 }
3882
Kevin Wolfbddcec32015-04-09 18:47:50 +02003883 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003884 child_class->inherit_options(child_role, parent_is_format,
3885 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003886 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003887 }
3888
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003889 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003890 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003891 goto fail;
3892 }
3893
Markus Armbruster129c7d12017-03-30 19:43:12 +02003894 /*
3895 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3896 * Caution: getting a boolean member of @options requires care.
3897 * When @options come from -blockdev or blockdev_add, members are
3898 * typed according to the QAPI schema, but when they come from
3899 * -drive, they're all QString.
3900 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003901 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3902 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3903 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3904 } else {
3905 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003906 }
3907
3908 if (flags & BDRV_O_SNAPSHOT) {
3909 snapshot_options = qdict_new();
3910 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3911 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003912 /* Let bdrv_backing_options() override "read-only" */
3913 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003914 bdrv_inherited_options(BDRV_CHILD_COW, true,
3915 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003916 }
3917
Kevin Wolf62392eb2015-04-24 16:38:02 +02003918 bs->open_flags = flags;
3919 bs->options = options;
3920 options = qdict_clone_shallow(options);
3921
Kevin Wolf76c591b2014-06-04 14:19:44 +02003922 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003923 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003924 drvname = qdict_get_try_str(options, "driver");
3925 if (drvname) {
3926 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003927 if (!drv) {
3928 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003929 goto fail;
3930 }
3931 }
3932
3933 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003934
Markus Armbruster129c7d12017-03-30 19:43:12 +02003935 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003936 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003937 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3938 (backing && *backing == '\0'))
3939 {
Max Reitz4f7be282018-02-24 16:40:33 +01003940 if (backing) {
3941 warn_report("Use of \"backing\": \"\" is deprecated; "
3942 "use \"backing\": null instead");
3943 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003944 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003945 qdict_del(bs->explicit_options, "backing");
3946 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003947 qdict_del(options, "backing");
3948 }
3949
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003950 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003951 * probing, the block drivers will do their own bdrv_open_child() for the
3952 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003953 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003954 BlockDriverState *file_bs;
3955
3956 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003957 &child_of_bds, BDRV_CHILD_IMAGE,
3958 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003959 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003960 goto fail;
3961 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003962 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003963 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3964 * looking at the header to guess the image format. This works even
3965 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003966 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003967 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003968 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003969 if (local_err) {
3970 goto fail;
3971 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003972
Eric Blake46f5ac22017-04-27 16:58:17 -05003973 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003974 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003975 }
3976
Kevin Wolf76c591b2014-06-04 14:19:44 +02003977 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003978 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003979 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003980 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003981 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003982 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003983 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003984 /*
3985 * This option update would logically belong in bdrv_fill_options(),
3986 * but we first need to open bs->file for the probing to work, while
3987 * opening bs->file already requires the (mostly) final set of options
3988 * so that cache mode etc. can be inherited.
3989 *
3990 * Adding the driver later is somewhat ugly, but it's not an option
3991 * that would ever be inherited, so it's correct. We just need to make
3992 * sure to update both bs->options (which has the full effective
3993 * options for bs) and options (which has file.* already removed).
3994 */
Eric Blake46f5ac22017-04-27 16:58:17 -05003995 qdict_put_str(bs->options, "driver", drv->format_name);
3996 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003997 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02003998 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02003999 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01004000 }
4001
Max Reitz53a29512015-03-19 14:53:16 -04004002 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4003 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4004 /* file must be NULL if a protocol BDS is about to be created
4005 * (the inverse results in an error message from bdrv_open_common()) */
4006 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4007
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004008 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01004009 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004010 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004011 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004012 }
4013
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004014 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004015 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004016 file = NULL;
4017 }
4018
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004019 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004020 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004021 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004022 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004023 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004024 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004025 }
4026
Alberto Garcia50196d72018-09-06 12:37:03 +03004027 /* Remove all children options and references
4028 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004029 QLIST_FOREACH(child, &bs->children, next) {
4030 char *child_key_dot;
4031 child_key_dot = g_strdup_printf("%s.", child->name);
4032 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4033 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004034 qdict_del(bs->explicit_options, child->name);
4035 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004036 g_free(child_key_dot);
4037 }
4038
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004039 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004040 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004041 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004042 if (flags & BDRV_O_PROTOCOL) {
4043 error_setg(errp, "Block protocol '%s' doesn't support the option "
4044 "'%s'", drv->format_name, entry->key);
4045 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004046 error_setg(errp,
4047 "Block format '%s' does not support the option '%s'",
4048 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004049 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004050
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004051 goto close_and_fail;
4052 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004053
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004054 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004055
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004056 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004057 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004058
4059 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4060 * temporary snapshot afterwards. */
4061 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004062 BlockDriverState *snapshot_bs;
4063 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4064 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004065 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004066 if (local_err) {
4067 goto close_and_fail;
4068 }
Max Reitz5b363932016-05-17 16:41:31 +02004069 /* We are not going to return bs but the overlay on top of it
4070 * (snapshot_bs); thus, we have to drop the strong reference to bs
4071 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4072 * though, because the overlay still has a reference to it. */
4073 bdrv_unref(bs);
4074 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004075 }
4076
Max Reitz5b363932016-05-17 16:41:31 +02004077 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004078
Kevin Wolf8bfea152014-04-11 19:16:36 +02004079fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004080 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004081 qobject_unref(snapshot_options);
4082 qobject_unref(bs->explicit_options);
4083 qobject_unref(bs->options);
4084 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004085 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004086 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004087 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004088 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004089 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004090
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004091close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02004092 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004093 qobject_unref(snapshot_options);
4094 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004095 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004096 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004097}
4098
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01004099/*
4100 * The caller must always hold @filename AioContext lock, because this
4101 * function eventually calls bdrv_refresh_total_sectors() which polls
4102 * when called from non-coroutine context.
4103 */
Max Reitz5b363932016-05-17 16:41:31 +02004104BlockDriverState *bdrv_open(const char *filename, const char *reference,
4105 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004106{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004107 GLOBAL_STATE_CODE();
4108
Max Reitz5b363932016-05-17 16:41:31 +02004109 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004110 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004111}
4112
Alberto Garciafaf116b2019-03-12 18:48:49 +02004113/* Return true if the NULL-terminated @list contains @str */
4114static bool is_str_in_list(const char *str, const char *const *list)
4115{
4116 if (str && list) {
4117 int i;
4118 for (i = 0; list[i] != NULL; i++) {
4119 if (!strcmp(str, list[i])) {
4120 return true;
4121 }
4122 }
4123 }
4124 return false;
4125}
4126
4127/*
4128 * Check that every option set in @bs->options is also set in
4129 * @new_opts.
4130 *
4131 * Options listed in the common_options list and in
4132 * @bs->drv->mutable_opts are skipped.
4133 *
4134 * Return 0 on success, otherwise return -EINVAL and set @errp.
4135 */
4136static int bdrv_reset_options_allowed(BlockDriverState *bs,
4137 const QDict *new_opts, Error **errp)
4138{
4139 const QDictEntry *e;
4140 /* These options are common to all block drivers and are handled
4141 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4142 const char *const common_options[] = {
4143 "node-name", "discard", "cache.direct", "cache.no-flush",
4144 "read-only", "auto-read-only", "detect-zeroes", NULL
4145 };
4146
4147 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4148 if (!qdict_haskey(new_opts, e->key) &&
4149 !is_str_in_list(e->key, common_options) &&
4150 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4151 error_setg(errp, "Option '%s' cannot be reset "
4152 "to its default value", e->key);
4153 return -EINVAL;
4154 }
4155 }
4156
4157 return 0;
4158}
4159
Jeff Codye971aa12012-09-20 15:13:19 -04004160/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004161 * Returns true if @child can be reached recursively from @bs
4162 */
4163static bool bdrv_recurse_has_child(BlockDriverState *bs,
4164 BlockDriverState *child)
4165{
4166 BdrvChild *c;
4167
4168 if (bs == child) {
4169 return true;
4170 }
4171
4172 QLIST_FOREACH(c, &bs->children, next) {
4173 if (bdrv_recurse_has_child(c->bs, child)) {
4174 return true;
4175 }
4176 }
4177
4178 return false;
4179}
4180
4181/*
Jeff Codye971aa12012-09-20 15:13:19 -04004182 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4183 * reopen of multiple devices.
4184 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004185 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004186 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4187 * be created and initialized. This newly created BlockReopenQueue should be
4188 * passed back in for subsequent calls that are intended to be of the same
4189 * atomic 'set'.
4190 *
4191 * bs is the BlockDriverState to add to the reopen queue.
4192 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004193 * options contains the changed options for the associated bs
4194 * (the BlockReopenQueue takes ownership)
4195 *
Jeff Codye971aa12012-09-20 15:13:19 -04004196 * flags contains the open flags for the associated bs
4197 *
4198 * returns a pointer to bs_queue, which is either the newly allocated
4199 * bs_queue, or the existing bs_queue being used.
4200 *
Kevin Wolfd22933a2022-11-18 18:41:02 +01004201 * bs is drained here and undrained by bdrv_reopen_queue_free().
Kevin Wolf2e117862022-11-18 18:41:01 +01004202 *
4203 * To be called with bs->aio_context locked.
Jeff Codye971aa12012-09-20 15:13:19 -04004204 */
Kevin Wolf28518102015-05-08 17:07:31 +02004205static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4206 BlockDriverState *bs,
4207 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004208 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004209 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004210 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004211 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004212 int parent_flags,
4213 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004214{
4215 assert(bs != NULL);
4216
4217 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004218 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004219 QDict *old_options, *explicit_options, *options_copy;
4220 int flags;
4221 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004222
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004223 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004224
Kevin Wolfd22933a2022-11-18 18:41:02 +01004225 bdrv_drained_begin(bs);
4226
Jeff Codye971aa12012-09-20 15:13:19 -04004227 if (bs_queue == NULL) {
4228 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004229 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004230 }
4231
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004232 if (!options) {
4233 options = qdict_new();
4234 }
4235
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004236 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004237 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004238 if (bs == bs_entry->state.bs) {
4239 break;
4240 }
4241 }
4242
Kevin Wolf28518102015-05-08 17:07:31 +02004243 /*
4244 * Precedence of options:
4245 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004246 * 2. Retained from explicitly set options of bs
4247 * 3. Inherited from parent node
4248 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004249 */
4250
Kevin Wolf145f5982015-05-08 16:15:03 +02004251 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004252 if (bs_entry || keep_old_opts) {
4253 old_options = qdict_clone_shallow(bs_entry ?
4254 bs_entry->state.explicit_options :
4255 bs->explicit_options);
4256 bdrv_join_options(bs, options, old_options);
4257 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004258 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004259
4260 explicit_options = qdict_clone_shallow(options);
4261
Kevin Wolf28518102015-05-08 17:07:31 +02004262 /* Inherit from parent node */
4263 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004264 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004265 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004266 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004267 } else {
4268 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004269 }
4270
Alberto Garcia077e8e22019-03-12 18:48:44 +02004271 if (keep_old_opts) {
4272 /* Old values are used for options that aren't set yet */
4273 old_options = qdict_clone_shallow(bs->options);
4274 bdrv_join_options(bs, options, old_options);
4275 qobject_unref(old_options);
4276 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004277
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004278 /* We have the final set of options so let's update the flags */
4279 options_copy = qdict_clone_shallow(options);
4280 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4281 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4282 update_flags_from_options(&flags, opts);
4283 qemu_opts_del(opts);
4284 qobject_unref(options_copy);
4285
Kevin Wolffd452022017-08-03 17:02:59 +02004286 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004287 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004288 if (flags & BDRV_O_RDWR) {
4289 flags |= BDRV_O_ALLOW_RDWR;
4290 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004291
Kevin Wolf1857c972017-09-14 14:53:46 +02004292 if (!bs_entry) {
4293 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004294 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004295 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004296 qobject_unref(bs_entry->state.options);
4297 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004298 }
4299
4300 bs_entry->state.bs = bs;
4301 bs_entry->state.options = options;
4302 bs_entry->state.explicit_options = explicit_options;
4303 bs_entry->state.flags = flags;
4304
Alberto Garcia85466322019-03-12 18:48:45 +02004305 /*
4306 * If keep_old_opts is false then it means that unspecified
4307 * options must be reset to their original value. We don't allow
4308 * resetting 'backing' but we need to know if the option is
4309 * missing in order to decide if we have to return an error.
4310 */
4311 if (!keep_old_opts) {
4312 bs_entry->state.backing_missing =
4313 !qdict_haskey(options, "backing") &&
4314 !qdict_haskey(options, "backing.driver");
4315 }
4316
Kevin Wolf67251a32015-04-09 18:54:04 +02004317 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004318 QDict *new_child_options = NULL;
4319 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004320
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004321 /* reopen can only change the options of block devices that were
4322 * implicitly created and inherited options. For other (referenced)
4323 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004324 if (child->bs->inherits_from != bs) {
4325 continue;
4326 }
4327
Alberto Garcia85466322019-03-12 18:48:45 +02004328 /* Check if the options contain a child reference */
4329 if (qdict_haskey(options, child->name)) {
4330 const char *childref = qdict_get_try_str(options, child->name);
4331 /*
4332 * The current child must not be reopened if the child
4333 * reference is null or points to a different node.
4334 */
4335 if (g_strcmp0(childref, child->bs->node_name)) {
4336 continue;
4337 }
4338 /*
4339 * If the child reference points to the current child then
4340 * reopen it with its existing set of options (note that
4341 * it can still inherit new options from the parent).
4342 */
4343 child_keep_old = true;
4344 } else {
4345 /* Extract child options ("child-name.*") */
4346 char *child_key_dot = g_strdup_printf("%s.", child->name);
4347 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4348 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4349 g_free(child_key_dot);
4350 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004351
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004352 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004353 child->klass, child->role, bs->drv->is_format,
4354 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004355 }
4356
Jeff Codye971aa12012-09-20 15:13:19 -04004357 return bs_queue;
4358}
4359
Kevin Wolf2e117862022-11-18 18:41:01 +01004360/* To be called with bs->aio_context locked */
Kevin Wolf28518102015-05-08 17:07:31 +02004361BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4362 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004363 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004364{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004365 GLOBAL_STATE_CODE();
4366
Max Reitz3cdc69d2020-05-13 13:05:18 +02004367 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4368 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004369}
4370
Alberto Garciaab5b52282021-07-08 13:47:05 +02004371void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4372{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004373 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004374 if (bs_queue) {
4375 BlockReopenQueueEntry *bs_entry, *next;
4376 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolfd22933a2022-11-18 18:41:02 +01004377 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4378
4379 aio_context_acquire(ctx);
4380 bdrv_drained_end(bs_entry->state.bs);
4381 aio_context_release(ctx);
4382
Alberto Garciaab5b52282021-07-08 13:47:05 +02004383 qobject_unref(bs_entry->state.explicit_options);
4384 qobject_unref(bs_entry->state.options);
4385 g_free(bs_entry);
4386 }
4387 g_free(bs_queue);
4388 }
4389}
4390
Jeff Codye971aa12012-09-20 15:13:19 -04004391/*
4392 * Reopen multiple BlockDriverStates atomically & transactionally.
4393 *
4394 * The queue passed in (bs_queue) must have been built up previous
4395 * via bdrv_reopen_queue().
4396 *
4397 * Reopens all BDS specified in the queue, with the appropriate
4398 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004399 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004400 * data cleaned up.
4401 *
4402 * If all devices prepare successfully, then the changes are committed
4403 * to all devices.
4404 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004405 * All affected nodes must be drained between bdrv_reopen_queue() and
4406 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004407 *
4408 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004409 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004410int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004411{
4412 int ret = -1;
4413 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004414 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004415 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004416 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004417
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004418 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004419 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004420 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004421
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004422 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004423 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4424 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004425 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004426 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004427 if (ret < 0) {
4428 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004429 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004430 }
4431 }
4432
4433 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004434 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004435 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4436 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004437 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004438 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004439 if (ret < 0) {
4440 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004441 }
4442 bs_entry->prepared = true;
4443 }
4444
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004445 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004446 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004447
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004448 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004449 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004450 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004451 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004452 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004453 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004454 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004455 }
4456
4457 /*
4458 * Note that file-posix driver rely on permission update done during reopen
4459 * (even if no permission changed), because it wants "new" permissions for
4460 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4461 * in raw_reopen_prepare() which is called with "old" permissions.
4462 */
4463 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4464 if (ret < 0) {
4465 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004466 }
4467
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004468 /*
4469 * If we reach this point, we have success and just need to apply the
4470 * changes.
4471 *
4472 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4473 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4474 * children are usually goes after parents in reopen-queue, so go from last
4475 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004476 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004477 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004478 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4479 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004480 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004481 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004482 }
4483
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004484 tran_commit(tran);
4485
4486 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4487 BlockDriverState *bs = bs_entry->state.bs;
4488
4489 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004490 ctx = bdrv_get_aio_context(bs);
4491 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004492 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004493 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004494 }
4495 }
4496
Jeff Codye971aa12012-09-20 15:13:19 -04004497 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004498 goto cleanup;
4499
4500abort:
4501 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004502 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004503 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004504 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4505 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004506 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004507 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004508 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004509 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004510
Jeff Codye971aa12012-09-20 15:13:19 -04004511cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004512 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004513
Jeff Codye971aa12012-09-20 15:13:19 -04004514 return ret;
4515}
4516
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004517int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4518 Error **errp)
4519{
4520 AioContext *ctx = bdrv_get_aio_context(bs);
4521 BlockReopenQueue *queue;
4522 int ret;
4523
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004524 GLOBAL_STATE_CODE();
4525
Kevin Wolf2e117862022-11-18 18:41:01 +01004526 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4527
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004528 if (ctx != qemu_get_aio_context()) {
4529 aio_context_release(ctx);
4530 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004531 ret = bdrv_reopen_multiple(queue, errp);
4532
4533 if (ctx != qemu_get_aio_context()) {
4534 aio_context_acquire(ctx);
4535 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004536
4537 return ret;
4538}
4539
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004540int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4541 Error **errp)
4542{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004543 QDict *opts = qdict_new();
4544
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004545 GLOBAL_STATE_CODE();
4546
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004547 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4548
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004549 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004550}
4551
Jeff Codye971aa12012-09-20 15:13:19 -04004552/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004553 * Take a BDRVReopenState and check if the value of 'backing' in the
4554 * reopen_state->options QDict is valid or not.
4555 *
4556 * If 'backing' is missing from the QDict then return 0.
4557 *
4558 * If 'backing' contains the node name of the backing file of
4559 * reopen_state->bs then return 0.
4560 *
4561 * If 'backing' contains a different node name (or is null) then check
4562 * whether the current backing file can be replaced with the new one.
4563 * If that's the case then reopen_state->replace_backing_bs is set to
4564 * true and reopen_state->new_backing_bs contains a pointer to the new
4565 * backing BlockDriverState (or NULL).
4566 *
4567 * Return 0 on success, otherwise return < 0 and set @errp.
4568 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004569static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4570 bool is_backing, Transaction *tran,
4571 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004572{
4573 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004574 BlockDriverState *new_child_bs;
4575 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4576 child_bs(bs->file);
4577 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004578 QObject *value;
4579 const char *str;
4580
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004581 GLOBAL_STATE_CODE();
4582
Alberto Garciaecd30d22021-06-10 15:05:36 +03004583 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004584 if (value == NULL) {
4585 return 0;
4586 }
4587
4588 switch (qobject_type(value)) {
4589 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004590 assert(is_backing); /* The 'file' option does not allow a null value */
4591 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004592 break;
4593 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004594 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004595 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4596 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004597 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004598 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4599 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4600 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004601 return -EINVAL;
4602 }
4603 break;
4604 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004605 /*
4606 * The options QDict has been flattened, so 'backing' and 'file'
4607 * do not allow any other data type here.
4608 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004609 g_assert_not_reached();
4610 }
4611
Alberto Garciaecd30d22021-06-10 15:05:36 +03004612 if (old_child_bs == new_child_bs) {
4613 return 0;
4614 }
4615
4616 if (old_child_bs) {
4617 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004618 return 0;
4619 }
4620
Alberto Garciaecd30d22021-06-10 15:05:36 +03004621 if (old_child_bs->implicit) {
4622 error_setg(errp, "Cannot replace implicit %s child of %s",
4623 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004624 return -EPERM;
4625 }
4626 }
4627
Alberto Garciaecd30d22021-06-10 15:05:36 +03004628 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004629 /*
4630 * Filters always have a file or a backing child, so we are trying to
4631 * change wrong child
4632 */
4633 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004634 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004635 return -EINVAL;
4636 }
4637
Alberto Garciaecd30d22021-06-10 15:05:36 +03004638 if (is_backing) {
4639 reopen_state->old_backing_bs = old_child_bs;
4640 } else {
4641 reopen_state->old_file_bs = old_child_bs;
4642 }
4643
4644 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4645 tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004646}
4647
4648/*
Jeff Codye971aa12012-09-20 15:13:19 -04004649 * Prepares a BlockDriverState for reopen. All changes are staged in the
4650 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4651 * the block driver layer .bdrv_reopen_prepare()
4652 *
4653 * bs is the BlockDriverState to reopen
4654 * flags are the new open flags
4655 * queue is the reopen queue
4656 *
4657 * Returns 0 on success, non-zero on error. On error errp will be set
4658 * as well.
4659 *
4660 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4661 * It is the responsibility of the caller to then call the abort() or
4662 * commit() for any other BDS that have been left in a prepare() state
4663 *
4664 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004665static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004666 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004667 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004668{
4669 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004670 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004671 Error *local_err = NULL;
4672 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004673 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004674 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004675 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004676 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004677 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004678
4679 assert(reopen_state != NULL);
4680 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004681 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004682 drv = reopen_state->bs->drv;
4683
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004684 /* This function and each driver's bdrv_reopen_prepare() remove
4685 * entries from reopen_state->options as they are processed, so
4686 * we need to make a copy of the original QDict. */
4687 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4688
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004689 /* Process generic block layer options */
4690 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004691 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004692 ret = -EINVAL;
4693 goto error;
4694 }
4695
Alberto Garciae6d79c42018-11-12 16:00:47 +02004696 /* This was already called in bdrv_reopen_queue_child() so the flags
4697 * are up-to-date. This time we simply want to remove the options from
4698 * QemuOpts in order to indicate that they have been processed. */
4699 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004700 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004701 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004702
Alberto Garcia415bbca2018-10-03 13:23:13 +03004703 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004704 if (discard != NULL) {
4705 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4706 error_setg(errp, "Invalid discard option");
4707 ret = -EINVAL;
4708 goto error;
4709 }
4710 }
4711
Alberto Garcia543770b2018-09-06 12:37:09 +03004712 reopen_state->detect_zeroes =
4713 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4714 if (local_err) {
4715 error_propagate(errp, local_err);
4716 ret = -EINVAL;
4717 goto error;
4718 }
4719
Alberto Garcia57f9db92018-09-06 12:37:06 +03004720 /* All other options (including node-name and driver) must be unchanged.
4721 * Put them back into the QDict, so that they are checked at the end
4722 * of this function. */
4723 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004724
Jeff Cody3d8ce172017-04-07 16:55:30 -04004725 /* If we are to stay read-only, do not allow permission change
4726 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4727 * not set, or if the BDS still has copy_on_read enabled */
4728 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004729 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004730 if (local_err) {
4731 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004732 goto error;
4733 }
4734
Jeff Codye971aa12012-09-20 15:13:19 -04004735 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004736 /*
4737 * If a driver-specific option is missing, it means that we
4738 * should reset it to its default value.
4739 * But not all options allow that, so we need to check it first.
4740 */
4741 ret = bdrv_reset_options_allowed(reopen_state->bs,
4742 reopen_state->options, errp);
4743 if (ret) {
4744 goto error;
4745 }
4746
Jeff Codye971aa12012-09-20 15:13:19 -04004747 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4748 if (ret) {
4749 if (local_err != NULL) {
4750 error_propagate(errp, local_err);
4751 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004752 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004753 error_setg(errp, "failed while preparing to reopen image '%s'",
4754 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004755 }
4756 goto error;
4757 }
4758 } else {
4759 /* It is currently mandatory to have a bdrv_reopen_prepare()
4760 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004761 error_setg(errp, "Block format '%s' used by node '%s' "
4762 "does not support reopening files", drv->format_name,
4763 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004764 ret = -1;
4765 goto error;
4766 }
4767
Max Reitz9ad08c42018-11-16 17:45:24 +01004768 drv_prepared = true;
4769
Alberto Garciabacd9b82019-03-12 18:48:46 +02004770 /*
4771 * We must provide the 'backing' option if the BDS has a backing
4772 * file or if the image file has a backing file name as part of
4773 * its metadata. Otherwise the 'backing' option can be omitted.
4774 */
4775 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004776 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004777 error_setg(errp, "backing is missing for '%s'",
4778 reopen_state->bs->node_name);
4779 ret = -EINVAL;
4780 goto error;
4781 }
4782
Alberto Garciacb828c32019-03-12 18:48:47 +02004783 /*
4784 * Allow changing the 'backing' option. The new value can be
4785 * either a reference to an existing node (using its node name)
4786 * or NULL to simply detach the current backing file.
4787 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004788 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4789 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004790 if (ret < 0) {
4791 goto error;
4792 }
4793 qdict_del(reopen_state->options, "backing");
4794
Alberto Garciaecd30d22021-06-10 15:05:36 +03004795 /* Allow changing the 'file' option. In this case NULL is not allowed */
4796 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4797 change_child_tran, errp);
4798 if (ret < 0) {
4799 goto error;
4800 }
4801 qdict_del(reopen_state->options, "file");
4802
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004803 /* Options that are not handled are only okay if they are unchanged
4804 * compared to the old state. It is expected that some options are only
4805 * used for the initial open, but not reopen (e.g. filename) */
4806 if (qdict_size(reopen_state->options)) {
4807 const QDictEntry *entry = qdict_first(reopen_state->options);
4808
4809 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004810 QObject *new = entry->value;
4811 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004812
Alberto Garciadb905282018-09-06 12:37:05 +03004813 /* Allow child references (child_name=node_name) as long as they
4814 * point to the current child (i.e. everything stays the same). */
4815 if (qobject_type(new) == QTYPE_QSTRING) {
4816 BdrvChild *child;
4817 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4818 if (!strcmp(child->name, entry->key)) {
4819 break;
4820 }
4821 }
4822
4823 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004824 if (!strcmp(child->bs->node_name,
4825 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004826 continue; /* Found child with this name, skip option */
4827 }
4828 }
4829 }
4830
Max Reitz54fd1b02017-11-14 19:01:26 +01004831 /*
4832 * TODO: When using -drive to specify blockdev options, all values
4833 * will be strings; however, when using -blockdev, blockdev-add or
4834 * filenames using the json:{} pseudo-protocol, they will be
4835 * correctly typed.
4836 * In contrast, reopening options are (currently) always strings
4837 * (because you can only specify them through qemu-io; all other
4838 * callers do not specify any options).
4839 * Therefore, when using anything other than -drive to create a BDS,
4840 * this cannot detect non-string options as unchanged, because
4841 * qobject_is_equal() always returns false for objects of different
4842 * type. In the future, this should be remedied by correctly typing
4843 * all options. For now, this is not too big of an issue because
4844 * the user can simply omit options which cannot be changed anyway,
4845 * so they will stay unchanged.
4846 */
4847 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004848 error_setg(errp, "Cannot change the option '%s'", entry->key);
4849 ret = -EINVAL;
4850 goto error;
4851 }
4852 } while ((entry = qdict_next(reopen_state->options, entry)));
4853 }
4854
Jeff Codye971aa12012-09-20 15:13:19 -04004855 ret = 0;
4856
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004857 /* Restore the original reopen_state->options QDict */
4858 qobject_unref(reopen_state->options);
4859 reopen_state->options = qobject_ref(orig_reopen_opts);
4860
Jeff Codye971aa12012-09-20 15:13:19 -04004861error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004862 if (ret < 0 && drv_prepared) {
4863 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4864 * call drv->bdrv_reopen_abort() before signaling an error
4865 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4866 * when the respective bdrv_reopen_prepare() has failed) */
4867 if (drv->bdrv_reopen_abort) {
4868 drv->bdrv_reopen_abort(reopen_state);
4869 }
4870 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004871 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004872 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004873 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004874 return ret;
4875}
4876
4877/*
4878 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4879 * makes them final by swapping the staging BlockDriverState contents into
4880 * the active BlockDriverState contents.
4881 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004882static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004883{
4884 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004885 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004886 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004887
4888 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004889 bs = reopen_state->bs;
4890 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004891 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004892 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004893
4894 /* If there are any driver level actions to take */
4895 if (drv->bdrv_reopen_commit) {
4896 drv->bdrv_reopen_commit(reopen_state);
4897 }
4898
4899 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004900 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004901 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02004902 qobject_ref(reopen_state->explicit_options);
4903 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004904
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004905 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004906 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004907 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004908 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004909
Alberto Garcia50196d72018-09-06 12:37:03 +03004910 /* Remove child references from bs->options and bs->explicit_options.
4911 * Child options were already removed in bdrv_reopen_queue_child() */
4912 QLIST_FOREACH(child, &bs->children, next) {
4913 qdict_del(bs->explicit_options, child->name);
4914 qdict_del(bs->options, child->name);
4915 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03004916 /* backing is probably removed, so it's not handled by previous loop */
4917 qdict_del(bs->explicit_options, "backing");
4918 qdict_del(bs->options, "backing");
4919
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004920 bdrv_refresh_limits(bs, NULL, NULL);
Paolo Bonzini439cc332023-04-07 17:32:58 +02004921 bdrv_refresh_total_sectors(bs, bs->total_sectors);
Jeff Codye971aa12012-09-20 15:13:19 -04004922}
4923
4924/*
4925 * Abort the reopen, and delete and free the staged changes in
4926 * reopen_state
4927 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004928static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004929{
4930 BlockDriver *drv;
4931
4932 assert(reopen_state != NULL);
4933 drv = reopen_state->bs->drv;
4934 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004935 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004936
4937 if (drv->bdrv_reopen_abort) {
4938 drv->bdrv_reopen_abort(reopen_state);
4939 }
4940}
4941
4942
Max Reitz64dff522016-01-29 16:36:10 +01004943static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004944{
Max Reitz33384422014-06-20 21:57:33 +02004945 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004946 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004947
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004948 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02004949 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004950
Paolo Bonzinifc272912015-12-23 11:48:24 +01004951 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004952 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004953 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004954
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004955 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004956 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004957 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004958 bs->drv->bdrv_close(bs);
4959 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004960 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004961 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004962
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004963 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004964 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004965 }
4966
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03004967 assert(!bs->backing);
4968 assert(!bs->file);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004969 g_free(bs->opaque);
4970 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004971 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004972 bs->backing_file[0] = '\0';
4973 bs->backing_format[0] = '\0';
4974 bs->total_sectors = 0;
4975 bs->encrypted = false;
4976 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004977 qobject_unref(bs->options);
4978 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004979 bs->options = NULL;
4980 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004981 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004982 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02004983 g_free(bs->block_status_cache);
4984 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004985
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004986 bdrv_release_named_dirty_bitmaps(bs);
4987 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4988
Max Reitz33384422014-06-20 21:57:33 +02004989 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4990 g_free(ban);
4991 }
4992 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01004993 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02004994
4995 /*
4996 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
4997 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
4998 * gets called.
4999 */
5000 if (bs->quiesce_counter) {
5001 bdrv_drain_all_end_quiesce(bs);
5002 }
bellardb3380822004-03-14 21:38:54 +00005003}
5004
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005005void bdrv_close_all(void)
5006{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005007 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04005008 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005009
Max Reitzca9bd242016-01-29 16:36:14 +01005010 /* Drop references from requests still in flight, such as canceled block
5011 * jobs whose AIO context has not been polled yet */
5012 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005013
Max Reitzca9bd242016-01-29 16:36:14 +01005014 blk_remove_all_bs();
5015 blockdev_close_all_bdrv_states();
5016
Kevin Wolfa1a2af02016-04-08 18:26:37 +02005017 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005018}
5019
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005020static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005021{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005022 GQueue *queue;
5023 GHashTable *found;
5024 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005025
Max Reitzbd86fb92020-05-13 13:05:13 +02005026 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005027 return false;
5028 }
5029
Max Reitzec9f10f2018-06-13 20:18:15 +02005030 /* If the child @c belongs to the BDS @to, replacing the current
5031 * c->bs by @to would mean to create a loop.
5032 *
5033 * Such a case occurs when appending a BDS to a backing chain.
5034 * For instance, imagine the following chain:
5035 *
5036 * guest device -> node A -> further backing chain...
5037 *
5038 * Now we create a new BDS B which we want to put on top of this
5039 * chain, so we first attach A as its backing node:
5040 *
5041 * node B
5042 * |
5043 * v
5044 * guest device -> node A -> further backing chain...
5045 *
5046 * Finally we want to replace A by B. When doing that, we want to
5047 * replace all pointers to A by pointers to B -- except for the
5048 * pointer from B because (1) that would create a loop, and (2)
5049 * that pointer should simply stay intact:
5050 *
5051 * guest device -> node B
5052 * |
5053 * v
5054 * node A -> further backing chain...
5055 *
5056 * In general, when replacing a node A (c->bs) by a node B (@to),
5057 * if A is a child of B, that means we cannot replace A by B there
5058 * because that would create a loop. Silently detaching A from B
5059 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005060 * place there is the most sensible choice.
5061 *
5062 * We would also create a loop in any cases where @c is only
5063 * indirectly referenced by @to. Prevent this by returning false
5064 * if @c is found (by breadth-first search) anywhere in the whole
5065 * subtree of @to.
5066 */
5067
5068 ret = true;
5069 found = g_hash_table_new(NULL, NULL);
5070 g_hash_table_add(found, to);
5071 queue = g_queue_new();
5072 g_queue_push_tail(queue, to);
5073
5074 while (!g_queue_is_empty(queue)) {
5075 BlockDriverState *v = g_queue_pop_head(queue);
5076 BdrvChild *c2;
5077
5078 QLIST_FOREACH(c2, &v->children, next) {
5079 if (c2 == c) {
5080 ret = false;
5081 break;
5082 }
5083
5084 if (g_hash_table_contains(found, c2->bs)) {
5085 continue;
5086 }
5087
5088 g_queue_push_tail(queue, c2->bs);
5089 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005090 }
5091 }
5092
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005093 g_queue_free(queue);
5094 g_hash_table_destroy(found);
5095
5096 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005097}
5098
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005099static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005100{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005101 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005102 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005103}
5104
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005105static TransactionActionDrv bdrv_remove_child_drv = {
5106 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005107};
5108
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005109/* Function doesn't update permissions, caller is responsible for this. */
5110static void bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005111{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005112 if (!child) {
5113 return;
5114 }
5115
5116 if (child->bs) {
Kevin Wolf23987472022-11-18 18:41:09 +01005117 BlockDriverState *bs = child->bs;
5118 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005119 bdrv_replace_child_tran(child, NULL, tran);
Kevin Wolf23987472022-11-18 18:41:09 +01005120 bdrv_drained_end(bs);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005121 }
5122
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005123 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005124}
5125
Kevin Wolf23987472022-11-18 18:41:09 +01005126static void undrain_on_clean_cb(void *opaque)
5127{
5128 bdrv_drained_end(opaque);
5129}
5130
5131static TransactionActionDrv undrain_on_clean = {
5132 .clean = undrain_on_clean_cb,
5133};
5134
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005135static int bdrv_replace_node_noperm(BlockDriverState *from,
5136 BlockDriverState *to,
5137 bool auto_skip, Transaction *tran,
5138 Error **errp)
5139{
5140 BdrvChild *c, *next;
5141
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005142 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005143
Kevin Wolf23987472022-11-18 18:41:09 +01005144 bdrv_drained_begin(from);
5145 bdrv_drained_begin(to);
5146 tran_add(tran, &undrain_on_clean, from);
5147 tran_add(tran, &undrain_on_clean, to);
5148
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005149 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5150 assert(c->bs == from);
5151 if (!should_update_child(c, to)) {
5152 if (auto_skip) {
5153 continue;
5154 }
5155 error_setg(errp, "Should not change '%s' link to '%s'",
5156 c->name, from->node_name);
5157 return -EINVAL;
5158 }
5159 if (c->frozen) {
5160 error_setg(errp, "Cannot change '%s' link to '%s'",
5161 c->name, from->node_name);
5162 return -EPERM;
5163 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005164 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005165 }
5166
5167 return 0;
5168}
5169
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005170/*
5171 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5172 * if it creates a parent-child relation loop or if parent is block-job.
5173 *
5174 * With auto_skip=false the error is returned if from has a parent which should
5175 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005176 *
5177 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5178 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005179 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005180static int bdrv_replace_node_common(BlockDriverState *from,
5181 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005182 bool auto_skip, bool detach_subchain,
5183 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005184{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005185 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005186 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005187 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005188 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005189
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005190 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005191
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005192 if (detach_subchain) {
5193 assert(bdrv_chain_contains(from, to));
5194 assert(from != to);
5195 for (to_cow_parent = from;
5196 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5197 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5198 {
5199 ;
5200 }
5201 }
5202
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005203 /* Make sure that @from doesn't go away until we have successfully attached
5204 * all of its parents to @to. */
5205 bdrv_ref(from);
5206
Kevin Wolff871abd2019-05-21 19:00:25 +02005207 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005208 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005209 bdrv_drained_begin(from);
5210
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005211 /*
5212 * Do the replacement without permission update.
5213 * Replacement may influence the permissions, we should calculate new
5214 * permissions based on new graph. If we fail, we'll roll-back the
5215 * replacement.
5216 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005217 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5218 if (ret < 0) {
5219 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005220 }
5221
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005222 if (detach_subchain) {
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005223 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005224 }
5225
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005226 refresh_list = g_slist_prepend(refresh_list, to);
5227 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005228
5229 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005230 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005231 goto out;
5232 }
5233
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005234 ret = 0;
5235
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005236out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005237 tran_finalize(tran, ret);
5238
Kevin Wolff871abd2019-05-21 19:00:25 +02005239 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005240 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005241
5242 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005243}
5244
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005245int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5246 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005247{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005248 GLOBAL_STATE_CODE();
5249
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005250 return bdrv_replace_node_common(from, to, true, false, errp);
5251}
5252
5253int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5254{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005255 GLOBAL_STATE_CODE();
5256
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005257 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5258 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005259}
5260
Jeff Cody8802d1f2012-02-28 15:54:06 -05005261/*
5262 * Add new bs contents at the top of an image chain while the chain is
5263 * live, while keeping required fields on the top layer.
5264 *
5265 * This will modify the BlockDriverState fields, and swap contents
5266 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5267 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005268 * bs_new must not be attached to a BlockBackend and must not have backing
5269 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005270 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005271 * This function does not create any image files.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005272 *
5273 * The caller must hold the AioContext lock for @bs_top.
Jeff Cody8802d1f2012-02-28 15:54:06 -05005274 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005275int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5276 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005277{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005278 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005279 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005280 Transaction *tran = tran_new();
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005281 AioContext *old_context, *new_context = NULL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005282
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005283 GLOBAL_STATE_CODE();
5284
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005285 assert(!bs_new->backing);
5286
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005287 old_context = bdrv_get_aio_context(bs_top);
5288
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005289 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5290 &child_of_bds, bdrv_backing_role(bs_new),
5291 tran, errp);
5292 if (!child) {
5293 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005294 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005295 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005296
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005297 /*
5298 * bdrv_attach_child_noperm could change the AioContext of bs_top.
5299 * bdrv_replace_node_noperm calls bdrv_drained_begin, so let's temporarily
5300 * hold the new AioContext, since bdrv_drained_begin calls BDRV_POLL_WHILE
5301 * that assumes the new lock is taken.
5302 */
5303 new_context = bdrv_get_aio_context(bs_top);
5304
5305 if (old_context != new_context) {
5306 aio_context_release(old_context);
5307 aio_context_acquire(new_context);
5308 }
5309
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005310 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005311 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005312 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005313 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005314
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005315 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005316out:
5317 tran_finalize(tran, ret);
5318
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005319 bdrv_refresh_limits(bs_top, NULL, NULL);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005320
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005321 if (new_context && old_context != new_context) {
5322 aio_context_release(new_context);
5323 aio_context_acquire(old_context);
5324 }
5325
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005326 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005327}
5328
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005329/* Not for empty child */
5330int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5331 Error **errp)
5332{
5333 int ret;
5334 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005335 g_autoptr(GSList) refresh_list = NULL;
5336 BlockDriverState *old_bs = child->bs;
5337
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005338 GLOBAL_STATE_CODE();
5339
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005340 bdrv_ref(old_bs);
5341 bdrv_drained_begin(old_bs);
5342 bdrv_drained_begin(new_bs);
5343
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005344 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005345
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005346 refresh_list = g_slist_prepend(refresh_list, old_bs);
5347 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005348
5349 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5350
5351 tran_finalize(tran, ret);
5352
5353 bdrv_drained_end(old_bs);
5354 bdrv_drained_end(new_bs);
5355 bdrv_unref(old_bs);
5356
5357 return ret;
5358}
5359
Fam Zheng4f6fd342013-08-23 09:14:47 +08005360static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005361{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005362 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005363 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005364 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005365
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005366 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005367 if (bs->node_name[0] != '\0') {
5368 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5369 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005370 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5371
Anton Kuchin30c321f2019-05-07 11:12:56 +03005372 bdrv_close(bs);
5373
Anthony Liguori7267c092011-08-20 22:09:37 -05005374 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005375}
5376
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005377
5378/*
5379 * Replace @bs by newly created block node.
5380 *
5381 * @options is a QDict of options to pass to the block drivers, or NULL for an
5382 * empty set of options. The reference to the QDict belongs to the block layer
5383 * after the call (even on failure), so if the caller intends to reuse the
5384 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5385 */
5386BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005387 int flags, Error **errp)
5388{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005389 ERRP_GUARD();
5390 int ret;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005391 BlockDriverState *new_node_bs = NULL;
5392 const char *drvname, *node_name;
5393 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005394
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005395 drvname = qdict_get_try_str(options, "driver");
5396 if (!drvname) {
5397 error_setg(errp, "driver is not specified");
5398 goto fail;
5399 }
5400
5401 drv = bdrv_find_format(drvname);
5402 if (!drv) {
5403 error_setg(errp, "Unknown driver: '%s'", drvname);
5404 goto fail;
5405 }
5406
5407 node_name = qdict_get_try_str(options, "node-name");
5408
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005409 GLOBAL_STATE_CODE();
5410
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005411 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5412 errp);
5413 options = NULL; /* bdrv_new_open_driver() eats options */
5414 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005415 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005416 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005417 }
5418
5419 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005420 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005421 bdrv_drained_end(bs);
5422
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005423 if (ret < 0) {
5424 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005425 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005426 }
5427
5428 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005429
5430fail:
5431 qobject_unref(options);
5432 bdrv_unref(new_node_bs);
5433 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005434}
5435
aliguorie97fc192009-04-21 23:11:50 +00005436/*
5437 * Run consistency checks on an image
5438 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005439 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005440 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005441 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005442 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005443int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5444 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005445{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005446 IO_CODE();
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01005447 assert_bdrv_graph_readable();
Max Reitz908bcd52014-08-07 22:47:55 +02005448 if (bs->drv == NULL) {
5449 return -ENOMEDIUM;
5450 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005451 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005452 return -ENOTSUP;
5453 }
5454
Kevin Wolfe076f332010-06-29 11:43:13 +02005455 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005456 return bs->drv->bdrv_co_check(bs, res, fix);
5457}
5458
Kevin Wolf756e6732010-01-12 12:55:17 +01005459/*
5460 * Return values:
5461 * 0 - success
5462 * -EINVAL - backing format specified, but no file
5463 * -ENOSPC - can't update the backing file because no space is left in the
5464 * image file header
5465 * -ENOTSUP - format driver doesn't support changing the backing file
5466 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005467int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005468 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005469{
5470 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005471 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005472
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005473 GLOBAL_STATE_CODE();
5474
Max Reitzd470ad42017-11-10 21:31:09 +01005475 if (!drv) {
5476 return -ENOMEDIUM;
5477 }
5478
Paolo Bonzini5f377792012-04-12 14:01:01 +02005479 /* Backing file format doesn't make sense without a backing file */
5480 if (backing_fmt && !backing_file) {
5481 return -EINVAL;
5482 }
5483
Eric Blake497a30d2021-05-03 14:36:00 -07005484 if (require && backing_file && !backing_fmt) {
5485 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005486 }
5487
Kevin Wolf756e6732010-01-12 12:55:17 +01005488 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005489 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005490 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005491 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005492 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005493
5494 if (ret == 0) {
5495 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5496 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005497 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5498 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005499 }
5500 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005501}
5502
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005503/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005504 * Finds the first non-filter node above bs in the chain between
5505 * active and bs. The returned node is either an immediate parent of
5506 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005507 *
5508 * Returns NULL if bs is not found in active's image chain,
5509 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005510 *
5511 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005512 */
5513BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5514 BlockDriverState *bs)
5515{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005516
5517 GLOBAL_STATE_CODE();
5518
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005519 bs = bdrv_skip_filters(bs);
5520 active = bdrv_skip_filters(active);
5521
5522 while (active) {
5523 BlockDriverState *next = bdrv_backing_chain_next(active);
5524 if (bs == next) {
5525 return active;
5526 }
5527 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005528 }
5529
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005530 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005531}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005532
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005533/* Given a BDS, searches for the base layer. */
5534BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5535{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005536 GLOBAL_STATE_CODE();
5537
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005538 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005539}
5540
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005541/*
Max Reitz7b99a262019-06-12 16:07:11 +02005542 * Return true if at least one of the COW (backing) and filter links
5543 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005544 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005545 */
5546bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5547 Error **errp)
5548{
5549 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005550 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005551
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005552 GLOBAL_STATE_CODE();
5553
Max Reitz7b99a262019-06-12 16:07:11 +02005554 for (i = bs; i != base; i = child_bs(child)) {
5555 child = bdrv_filter_or_cow_child(i);
5556
5557 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005558 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005559 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005560 return true;
5561 }
5562 }
5563
5564 return false;
5565}
5566
5567/*
Max Reitz7b99a262019-06-12 16:07:11 +02005568 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005569 * If any of the links is already frozen the operation is aborted and
5570 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005571 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005572 * Returns 0 on success. On failure returns < 0 and sets @errp.
5573 */
5574int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5575 Error **errp)
5576{
5577 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005578 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005579
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005580 GLOBAL_STATE_CODE();
5581
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005582 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5583 return -EPERM;
5584 }
5585
Max Reitz7b99a262019-06-12 16:07:11 +02005586 for (i = bs; i != base; i = child_bs(child)) {
5587 child = bdrv_filter_or_cow_child(i);
5588 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005589 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005590 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005591 return -EPERM;
5592 }
5593 }
5594
Max Reitz7b99a262019-06-12 16:07:11 +02005595 for (i = bs; i != base; i = child_bs(child)) {
5596 child = bdrv_filter_or_cow_child(i);
5597 if (child) {
5598 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005599 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005600 }
5601
5602 return 0;
5603}
5604
5605/*
Max Reitz7b99a262019-06-12 16:07:11 +02005606 * Unfreeze all COW (backing) and filter links between @bs and @base.
5607 * The caller must ensure that all links are frozen before using this
5608 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005609 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005610 */
5611void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5612{
5613 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005614 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005615
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005616 GLOBAL_STATE_CODE();
5617
Max Reitz7b99a262019-06-12 16:07:11 +02005618 for (i = bs; i != base; i = child_bs(child)) {
5619 child = bdrv_filter_or_cow_child(i);
5620 if (child) {
5621 assert(child->frozen);
5622 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005623 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005624 }
5625}
5626
5627/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005628 * Drops images above 'base' up to and including 'top', and sets the image
5629 * above 'top' to have base as its backing file.
5630 *
5631 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5632 * information in 'bs' can be properly updated.
5633 *
5634 * E.g., this will convert the following chain:
5635 * bottom <- base <- intermediate <- top <- active
5636 *
5637 * to
5638 *
5639 * bottom <- base <- active
5640 *
5641 * It is allowed for bottom==base, in which case it converts:
5642 *
5643 * base <- intermediate <- top <- active
5644 *
5645 * to
5646 *
5647 * base <- active
5648 *
Jeff Cody54e26902014-06-25 15:40:10 -04005649 * If backing_file_str is non-NULL, it will be used when modifying top's
5650 * overlay image metadata.
5651 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005652 * Error conditions:
5653 * if active == top, that is considered an error
5654 *
5655 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005656int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5657 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005658{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005659 BlockDriverState *explicit_top = top;
5660 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005661 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005662 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005663 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005664 g_autoptr(GSList) updated_children = NULL;
5665 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005666
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005667 GLOBAL_STATE_CODE();
5668
Kevin Wolf6858eba2017-06-29 19:32:21 +02005669 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005670 bdrv_drained_begin(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005671
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005672 if (!top->drv || !base->drv) {
5673 goto exit;
5674 }
5675
Kevin Wolf5db15a52015-09-14 15:33:33 +02005676 /* Make sure that base is in the backing chain of top */
5677 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005678 goto exit;
5679 }
5680
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005681 /* If 'base' recursively inherits from 'top' then we should set
5682 * base->inherits_from to top->inherits_from after 'top' and all
5683 * other intermediate nodes have been dropped.
5684 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5685 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005686 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005687 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5688
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005689 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005690 if (!backing_file_str) {
5691 bdrv_refresh_filename(base);
5692 backing_file_str = base->filename;
5693 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005694
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005695 QLIST_FOREACH(c, &top->parents, next_parent) {
5696 updated_children = g_slist_prepend(updated_children, c);
5697 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005698
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005699 /*
5700 * It seems correct to pass detach_subchain=true here, but it triggers
5701 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5702 * another drained section, which modify the graph (for example, removing
5703 * the child, which we keep in updated_children list). So, it's a TODO.
5704 *
5705 * Note, bug triggered if pass detach_subchain=true here and run
5706 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5707 * That's a FIXME.
5708 */
5709 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005710 if (local_err) {
5711 error_report_err(local_err);
5712 goto exit;
5713 }
5714
5715 for (p = updated_children; p; p = p->next) {
5716 c = p->data;
5717
Max Reitzbd86fb92020-05-13 13:05:13 +02005718 if (c->klass->update_filename) {
5719 ret = c->klass->update_filename(c, base, backing_file_str,
5720 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005721 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005722 /*
5723 * TODO: Actually, we want to rollback all previous iterations
5724 * of this loop, and (which is almost impossible) previous
5725 * bdrv_replace_node()...
5726 *
5727 * Note, that c->klass->update_filename may lead to permission
5728 * update, so it's a bad idea to call it inside permission
5729 * update transaction of bdrv_replace_node.
5730 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005731 error_report_err(local_err);
5732 goto exit;
5733 }
5734 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005735 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005736
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005737 if (update_inherits_from) {
5738 base->inherits_from = explicit_top->inherits_from;
5739 }
5740
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005741 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005742exit:
Kevin Wolf631086d2022-11-18 18:41:03 +01005743 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005744 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005745 return ret;
5746}
5747
bellard83f64092006-08-01 16:21:11 +00005748/**
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005749 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
Max Reitz081e4652019-06-12 18:14:13 +02005750 * sums the size of all data-bearing children. (This excludes backing
5751 * children.)
5752 */
5753static int64_t bdrv_sum_allocated_file_size(BlockDriverState *bs)
5754{
5755 BdrvChild *child;
5756 int64_t child_size, sum = 0;
5757
5758 QLIST_FOREACH(child, &bs->children, next) {
5759 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5760 BDRV_CHILD_FILTERED))
5761 {
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005762 child_size = bdrv_co_get_allocated_file_size(child->bs);
Max Reitz081e4652019-06-12 18:14:13 +02005763 if (child_size < 0) {
5764 return child_size;
5765 }
5766 sum += child_size;
5767 }
5768 }
5769
5770 return sum;
5771}
5772
5773/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005774 * Length of a allocated file in bytes. Sparse files are counted by actual
5775 * allocated space. Return < 0 if error or unknown.
5776 */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005777int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005778{
5779 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005780 IO_CODE();
5781
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005782 if (!drv) {
5783 return -ENOMEDIUM;
5784 }
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005785 if (drv->bdrv_co_get_allocated_file_size) {
5786 return drv->bdrv_co_get_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005787 }
Max Reitz081e4652019-06-12 18:14:13 +02005788
5789 if (drv->bdrv_file_open) {
5790 /*
5791 * Protocol drivers default to -ENOTSUP (most of their data is
5792 * not stored in any of their children (if they even have any),
5793 * so there is no generic way to figure it out).
5794 */
5795 return -ENOTSUP;
5796 } else if (drv->is_filter) {
5797 /* Filter drivers default to the size of their filtered child */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005798 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
Max Reitz081e4652019-06-12 18:14:13 +02005799 } else {
5800 /* Other drivers default to summing their children's sizes */
5801 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005802 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005803}
5804
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005805/*
5806 * bdrv_measure:
5807 * @drv: Format driver
5808 * @opts: Creation options for new image
5809 * @in_bs: Existing image containing data for new image (may be NULL)
5810 * @errp: Error object
5811 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5812 * or NULL on error
5813 *
5814 * Calculate file size required to create a new image.
5815 *
5816 * If @in_bs is given then space for allocated clusters and zero clusters
5817 * from that image are included in the calculation. If @opts contains a
5818 * backing file that is shared by @in_bs then backing clusters may be omitted
5819 * from the calculation.
5820 *
5821 * If @in_bs is NULL then the calculation includes no allocated clusters
5822 * unless a preallocation option is given in @opts.
5823 *
5824 * Note that @in_bs may use a different BlockDriver from @drv.
5825 *
5826 * If an error occurs the @errp pointer is set.
5827 */
5828BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5829 BlockDriverState *in_bs, Error **errp)
5830{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005831 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005832 if (!drv->bdrv_measure) {
5833 error_setg(errp, "Block driver '%s' does not support size measurement",
5834 drv->format_name);
5835 return NULL;
5836 }
5837
5838 return drv->bdrv_measure(opts, in_bs, errp);
5839}
5840
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005841/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005842 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005843 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005844int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005845{
5846 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005847 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01005848 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005849
bellard83f64092006-08-01 16:21:11 +00005850 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005851 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005852
Paolo Bonzini160a29e2023-04-07 17:32:56 +02005853 if (bs->bl.has_variable_length) {
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005854 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolfb94a2612013-10-29 12:18:58 +01005855 if (ret < 0) {
5856 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005857 }
bellard83f64092006-08-01 16:21:11 +00005858 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005859 return bs->total_sectors;
5860}
5861
5862/**
5863 * Return length in bytes on success, -errno on error.
5864 * The length is always a multiple of BDRV_SECTOR_SIZE.
5865 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005866int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005867{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005868 int64_t ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005869 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01005870 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005871
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005872 ret = bdrv_co_nb_sectors(bs);
Eric Blake122860b2020-11-05 09:51:22 -06005873 if (ret < 0) {
5874 return ret;
5875 }
5876 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5877 return -EFBIG;
5878 }
5879 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005880}
5881
bellard19cb3732006-08-19 11:45:59 +00005882/* return 0 as number of sectors if no device present or error */
Kevin Wolfd8fbf9a2023-03-27 13:39:59 +02005883void coroutine_fn bdrv_co_get_geometry(BlockDriverState *bs,
5884 uint64_t *nb_sectors_ptr)
bellardfc01f7e2003-06-30 10:03:06 +00005885{
Kevin Wolfd8fbf9a2023-03-27 13:39:59 +02005886 int64_t nb_sectors = bdrv_co_nb_sectors(bs);
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005887 IO_CODE();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005888
5889 *nb_sectors_ptr = nb_sectors < 0 ? 0 : nb_sectors;
bellardfc01f7e2003-06-30 10:03:06 +00005890}
bellardcf989512004-02-16 21:56:36 +00005891
Eric Blake54115412016-06-23 16:37:26 -06005892bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005893{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005894 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00005895 return bs->sg;
5896}
5897
Max Reitzae23f782019-06-12 22:57:15 +02005898/**
5899 * Return whether the given node supports compressed writes.
5900 */
5901bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5902{
5903 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005904 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02005905
5906 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5907 return false;
5908 }
5909
5910 filtered = bdrv_filter_bs(bs);
5911 if (filtered) {
5912 /*
5913 * Filters can only forward compressed writes, so we have to
5914 * check the child.
5915 */
5916 return bdrv_supports_compressed_writes(filtered);
5917 }
5918
5919 return true;
5920}
5921
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005922const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005923{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005924 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005925 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005926}
5927
Stefan Hajnocziada42402014-08-27 12:08:55 +01005928static int qsort_strcmp(const void *a, const void *b)
5929{
Max Reitzceff5bd2016-10-12 22:49:05 +02005930 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005931}
5932
ths5fafdf22007-09-16 21:08:06 +00005933void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005934 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005935{
5936 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005937 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005938 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005939 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005940
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005941 GLOBAL_STATE_CODE();
5942
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005943 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005944 if (drv->format_name) {
5945 bool found = false;
5946 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005947
5948 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5949 continue;
5950 }
5951
Jeff Codye855e4f2014-04-28 18:29:54 -04005952 while (formats && i && !found) {
5953 found = !strcmp(formats[--i], drv->format_name);
5954 }
5955
5956 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005957 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005958 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005959 }
5960 }
bellardea2384d2004-08-01 21:59:26 +00005961 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005962
Max Reitzeb0df692016-10-12 22:49:06 +02005963 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5964 const char *format_name = block_driver_modules[i].format_name;
5965
5966 if (format_name) {
5967 bool found = false;
5968 int j = count;
5969
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005970 if (use_bdrv_whitelist &&
5971 !bdrv_format_is_whitelisted(format_name, read_only)) {
5972 continue;
5973 }
5974
Max Reitzeb0df692016-10-12 22:49:06 +02005975 while (formats && j && !found) {
5976 found = !strcmp(formats[--j], format_name);
5977 }
5978
5979 if (!found) {
5980 formats = g_renew(const char *, formats, count + 1);
5981 formats[count++] = format_name;
5982 }
5983 }
5984 }
5985
Stefan Hajnocziada42402014-08-27 12:08:55 +01005986 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
5987
5988 for (i = 0; i < count; i++) {
5989 it(opaque, formats[i]);
5990 }
5991
Jeff Codye855e4f2014-04-28 18:29:54 -04005992 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00005993}
5994
Benoît Canetdc364f42014-01-23 21:31:32 +01005995/* This function is to find a node in the bs graph */
5996BlockDriverState *bdrv_find_node(const char *node_name)
5997{
5998 BlockDriverState *bs;
5999
6000 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006001 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006002
6003 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6004 if (!strcmp(node_name, bs->node_name)) {
6005 return bs;
6006 }
6007 }
6008 return NULL;
6009}
6010
Benoît Canetc13163f2014-01-23 21:31:34 +01006011/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006012BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6013 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006014{
Eric Blake9812e712020-10-27 00:05:47 -05006015 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006016 BlockDriverState *bs;
6017
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006018 GLOBAL_STATE_CODE();
6019
Benoît Canetc13163f2014-01-23 21:31:34 +01006020 list = NULL;
6021 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006022 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006023 if (!info) {
6024 qapi_free_BlockDeviceInfoList(list);
6025 return NULL;
6026 }
Eric Blake9812e712020-10-27 00:05:47 -05006027 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006028 }
6029
6030 return list;
6031}
6032
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006033typedef struct XDbgBlockGraphConstructor {
6034 XDbgBlockGraph *graph;
6035 GHashTable *graph_nodes;
6036} XDbgBlockGraphConstructor;
6037
6038static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6039{
6040 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6041
6042 gr->graph = g_new0(XDbgBlockGraph, 1);
6043 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6044
6045 return gr;
6046}
6047
6048static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6049{
6050 XDbgBlockGraph *graph = gr->graph;
6051
6052 g_hash_table_destroy(gr->graph_nodes);
6053 g_free(gr);
6054
6055 return graph;
6056}
6057
6058static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6059{
6060 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6061
6062 if (ret != 0) {
6063 return ret;
6064 }
6065
6066 /*
6067 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6068 * answer of g_hash_table_lookup.
6069 */
6070 ret = g_hash_table_size(gr->graph_nodes) + 1;
6071 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6072
6073 return ret;
6074}
6075
6076static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6077 XDbgBlockGraphNodeType type, const char *name)
6078{
6079 XDbgBlockGraphNode *n;
6080
6081 n = g_new0(XDbgBlockGraphNode, 1);
6082
6083 n->id = xdbg_graph_node_num(gr, node);
6084 n->type = type;
6085 n->name = g_strdup(name);
6086
Eric Blake9812e712020-10-27 00:05:47 -05006087 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006088}
6089
6090static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6091 const BdrvChild *child)
6092{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006093 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006094 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006095 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006096
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006097 edge = g_new0(XDbgBlockGraphEdge, 1);
6098
6099 edge->parent = xdbg_graph_node_num(gr, parent);
6100 edge->child = xdbg_graph_node_num(gr, child->bs);
6101 edge->name = g_strdup(child->name);
6102
Max Reitzcdb1cec2019-11-08 13:34:52 +01006103 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6104 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6105
6106 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006107 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006108 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006109 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006110 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006111 }
6112 }
6113
Eric Blake9812e712020-10-27 00:05:47 -05006114 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006115}
6116
6117
6118XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6119{
6120 BlockBackend *blk;
6121 BlockJob *job;
6122 BlockDriverState *bs;
6123 BdrvChild *child;
6124 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6125
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006126 GLOBAL_STATE_CODE();
6127
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006128 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6129 char *allocated_name = NULL;
6130 const char *name = blk_name(blk);
6131
6132 if (!*name) {
6133 name = allocated_name = blk_get_attached_dev_id(blk);
6134 }
6135 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6136 name);
6137 g_free(allocated_name);
6138 if (blk_root(blk)) {
6139 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6140 }
6141 }
6142
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006143 WITH_JOB_LOCK_GUARD() {
6144 for (job = block_job_next_locked(NULL); job;
6145 job = block_job_next_locked(job)) {
6146 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006147
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006148 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6149 job->job.id);
6150 for (el = job->nodes; el; el = el->next) {
6151 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6152 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006153 }
6154 }
6155
6156 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6157 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6158 bs->node_name);
6159 QLIST_FOREACH(child, &bs->children, next) {
6160 xdbg_graph_add_edge(gr, bs, child);
6161 }
6162 }
6163
6164 return xdbg_graph_finalize(gr);
6165}
6166
Benoît Canet12d3ba82014-01-23 21:31:35 +01006167BlockDriverState *bdrv_lookup_bs(const char *device,
6168 const char *node_name,
6169 Error **errp)
6170{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006171 BlockBackend *blk;
6172 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006173
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006174 GLOBAL_STATE_CODE();
6175
Benoît Canet12d3ba82014-01-23 21:31:35 +01006176 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006177 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006178
Markus Armbruster7f06d472014-10-07 13:59:12 +02006179 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006180 bs = blk_bs(blk);
6181 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006182 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006183 }
6184
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006185 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006186 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006187 }
6188
Benoît Canetdd67fa52014-02-12 17:15:06 +01006189 if (node_name) {
6190 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006191
Benoît Canetdd67fa52014-02-12 17:15:06 +01006192 if (bs) {
6193 return bs;
6194 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006195 }
6196
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006197 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006198 device ? device : "",
6199 node_name ? node_name : "");
6200 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006201}
6202
Jeff Cody5a6684d2014-06-25 15:40:09 -04006203/* If 'base' is in the same chain as 'top', return true. Otherwise,
6204 * return false. If either argument is NULL, return false. */
6205bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6206{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006207
6208 GLOBAL_STATE_CODE();
6209
Jeff Cody5a6684d2014-06-25 15:40:09 -04006210 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006211 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006212 }
6213
6214 return top != NULL;
6215}
6216
Fam Zheng04df7652014-10-31 11:32:54 +08006217BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6218{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006219 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006220 if (!bs) {
6221 return QTAILQ_FIRST(&graph_bdrv_states);
6222 }
6223 return QTAILQ_NEXT(bs, node_list);
6224}
6225
Kevin Wolf0f122642018-03-28 18:29:18 +02006226BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6227{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006228 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006229 if (!bs) {
6230 return QTAILQ_FIRST(&all_bdrv_states);
6231 }
6232 return QTAILQ_NEXT(bs, bs_list);
6233}
6234
Fam Zheng20a9e772014-10-31 11:32:55 +08006235const char *bdrv_get_node_name(const BlockDriverState *bs)
6236{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006237 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006238 return bs->node_name;
6239}
6240
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006241const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006242{
6243 BdrvChild *c;
6244 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006245 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006246
6247 /* If multiple parents have a name, just pick the first one. */
6248 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006249 if (c->klass->get_name) {
6250 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006251 if (name && *name) {
6252 return name;
6253 }
6254 }
6255 }
6256
6257 return NULL;
6258}
6259
Markus Armbruster7f06d472014-10-07 13:59:12 +02006260/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006261const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006262{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006263 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006264 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006265}
6266
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006267/* This can be used to identify nodes that might not have a device
6268 * name associated. Since node and device names live in the same
6269 * namespace, the result is unambiguous. The exception is if both are
6270 * absent, then this returns an empty (non-null) string. */
6271const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6272{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006273 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006274 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006275}
6276
Markus Armbrusterc8433282012-06-05 16:49:24 +02006277int bdrv_get_flags(BlockDriverState *bs)
6278{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006279 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006280 return bs->open_flags;
6281}
6282
Peter Lieven3ac21622013-06-28 12:47:42 +02006283int bdrv_has_zero_init_1(BlockDriverState *bs)
6284{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006285 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006286 return 1;
6287}
6288
Kevin Wolff2feebb2010-04-14 17:30:35 +02006289int bdrv_has_zero_init(BlockDriverState *bs)
6290{
Max Reitz93393e62019-06-12 17:03:38 +02006291 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006292 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006293
Max Reitzd470ad42017-11-10 21:31:09 +01006294 if (!bs->drv) {
6295 return 0;
6296 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006297
Paolo Bonzini11212d82013-09-04 19:00:27 +02006298 /* If BS is a copy on write image, it is initialized to
6299 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006300 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006301 return 0;
6302 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006303 if (bs->drv->bdrv_has_zero_init) {
6304 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006305 }
Max Reitz93393e62019-06-12 17:03:38 +02006306
6307 filtered = bdrv_filter_bs(bs);
6308 if (filtered) {
6309 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006310 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006311
Peter Lieven3ac21622013-06-28 12:47:42 +02006312 /* safe default */
6313 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006314}
6315
Peter Lieven4ce78692013-10-24 12:06:54 +02006316bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6317{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006318 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006319 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006320 return false;
6321 }
6322
Eric Blakee24d8132018-01-26 13:34:39 -06006323 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006324}
6325
ths5fafdf22007-09-16 21:08:06 +00006326void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006327 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006328{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006329 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006330 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006331}
6332
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006333int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
bellardfaea38e2006-08-05 21:31:00 +00006334{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006335 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006336 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006337 IO_CODE();
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006338 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6339 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006340 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006341 }
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006342 if (!drv->bdrv_co_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006343 BlockDriverState *filtered = bdrv_filter_bs(bs);
6344 if (filtered) {
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006345 return bdrv_co_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006346 }
bellardfaea38e2006-08-05 21:31:00 +00006347 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006348 }
bellardfaea38e2006-08-05 21:31:00 +00006349 memset(bdi, 0, sizeof(*bdi));
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006350 ret = drv->bdrv_co_get_info(bs, bdi);
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006351 if (ret < 0) {
6352 return ret;
6353 }
6354
6355 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6356 return -EINVAL;
6357 }
6358
6359 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006360}
6361
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006362ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6363 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006364{
6365 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006366 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006367 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006368 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006369 }
6370 return NULL;
6371}
6372
Anton Nefedovd9245592019-09-23 15:17:37 +03006373BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6374{
6375 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006376 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006377 if (!drv || !drv->bdrv_get_specific_stats) {
6378 return NULL;
6379 }
6380 return drv->bdrv_get_specific_stats(bs);
6381}
6382
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006383void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006384{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006385 IO_CODE();
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006386 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006387 return;
6388 }
6389
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006390 bs->drv->bdrv_co_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006391}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006392
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006393static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006394{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006395 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006396 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006397 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006398 }
6399
6400 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006401 assert(bs->drv->bdrv_debug_remove_breakpoint);
6402 return bs;
6403 }
6404
6405 return NULL;
6406}
6407
6408int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6409 const char *tag)
6410{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006411 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006412 bs = bdrv_find_debug_node(bs);
6413 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006414 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6415 }
6416
6417 return -ENOTSUP;
6418}
6419
Fam Zheng4cc70e92013-11-20 10:01:54 +08006420int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6421{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006422 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006423 bs = bdrv_find_debug_node(bs);
6424 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006425 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6426 }
6427
6428 return -ENOTSUP;
6429}
6430
Kevin Wolf41c695c2012-12-06 14:32:58 +01006431int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6432{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006433 GLOBAL_STATE_CODE();
Max Reitz938789e2014-03-10 23:44:08 +01006434 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006435 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006436 }
6437
6438 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6439 return bs->drv->bdrv_debug_resume(bs, tag);
6440 }
6441
6442 return -ENOTSUP;
6443}
6444
6445bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6446{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006447 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006448 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006449 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006450 }
6451
6452 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6453 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6454 }
6455
6456 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006457}
6458
Jeff Codyb1b1d782012-10-16 15:49:09 -04006459/* backing_file can either be relative, or absolute, or a protocol. If it is
6460 * relative, it must be relative to the chain. So, passing in bs->filename
6461 * from a BDS as backing_file should not be done, as that may be relative to
6462 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006463BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6464 const char *backing_file)
6465{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006466 char *filename_full = NULL;
6467 char *backing_file_full = NULL;
6468 char *filename_tmp = NULL;
6469 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006470 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006471 BlockDriverState *curr_bs = NULL;
6472 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006473 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006474
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006475 GLOBAL_STATE_CODE();
6476
Jeff Codyb1b1d782012-10-16 15:49:09 -04006477 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006478 return NULL;
6479 }
6480
Jeff Codyb1b1d782012-10-16 15:49:09 -04006481 filename_full = g_malloc(PATH_MAX);
6482 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006483
6484 is_protocol = path_has_protocol(backing_file);
6485
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006486 /*
6487 * Being largely a legacy function, skip any filters here
6488 * (because filters do not have normal filenames, so they cannot
6489 * match anyway; and allowing json:{} filenames is a bit out of
6490 * scope).
6491 */
6492 for (curr_bs = bdrv_skip_filters(bs);
6493 bdrv_cow_child(curr_bs) != NULL;
6494 curr_bs = bs_below)
6495 {
6496 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006497
Max Reitz0b877d02018-08-01 20:34:11 +02006498 if (bdrv_backing_overridden(curr_bs)) {
6499 /*
6500 * If the backing file was overridden, we can only compare
6501 * directly against the backing node's filename.
6502 */
6503
6504 if (!filenames_refreshed) {
6505 /*
6506 * This will automatically refresh all of the
6507 * filenames in the rest of the backing chain, so we
6508 * only need to do this once.
6509 */
6510 bdrv_refresh_filename(bs_below);
6511 filenames_refreshed = true;
6512 }
6513
6514 if (strcmp(backing_file, bs_below->filename) == 0) {
6515 retval = bs_below;
6516 break;
6517 }
6518 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6519 /*
6520 * If either of the filename paths is actually a protocol, then
6521 * compare unmodified paths; otherwise make paths relative.
6522 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006523 char *backing_file_full_ret;
6524
Jeff Codyb1b1d782012-10-16 15:49:09 -04006525 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006526 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006527 break;
6528 }
Jeff Cody418661e2017-01-25 20:08:20 -05006529 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006530 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6531 NULL);
6532 if (backing_file_full_ret) {
6533 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6534 g_free(backing_file_full_ret);
6535 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006536 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006537 break;
6538 }
Jeff Cody418661e2017-01-25 20:08:20 -05006539 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006540 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006541 /* If not an absolute filename path, make it relative to the current
6542 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006543 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6544 NULL);
6545 /* We are going to compare canonicalized absolute pathnames */
6546 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6547 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006548 continue;
6549 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006550 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006551
6552 /* We need to make sure the backing filename we are comparing against
6553 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006554 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6555 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6556 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006557 continue;
6558 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006559 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006560
6561 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006562 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006563 break;
6564 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006565 }
6566 }
6567
Jeff Codyb1b1d782012-10-16 15:49:09 -04006568 g_free(filename_full);
6569 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006570 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006571}
6572
bellardea2384d2004-08-01 21:59:26 +00006573void bdrv_init(void)
6574{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006575#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6576 use_bdrv_whitelist = 1;
6577#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006578 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006579}
pbrookce1a14d2006-08-07 02:38:06 +00006580
Markus Armbrustereb852012009-10-27 18:41:44 +01006581void bdrv_init_with_whitelist(void)
6582{
6583 use_bdrv_whitelist = 1;
6584 bdrv_init();
6585}
6586
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006587int bdrv_activate(BlockDriverState *bs, Error **errp)
6588{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006589 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006590 Error *local_err = NULL;
6591 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006592 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006593
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006594 GLOBAL_STATE_CODE();
6595
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006596 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006597 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006598 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006599
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006600 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006601 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006602 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006603 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006604 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006605 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006606 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006607
Kevin Wolfdafe0962017-11-16 13:00:01 +01006608 /*
6609 * Update permissions, they may differ for inactive nodes.
6610 *
6611 * Note that the required permissions of inactive images are always a
6612 * subset of the permissions required after activating the image. This
6613 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006614 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006615 *
6616 * It also means that in error cases, we don't have to try and revert to
6617 * the old permissions (which is an operation that could fail, too). We can
6618 * just keep the extended permissions for the next time that an activation
6619 * of the image is tried.
6620 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006621 if (bs->open_flags & BDRV_O_INACTIVE) {
6622 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006623 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006624 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006625 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006626 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006627 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006628
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006629 ret = bdrv_invalidate_cache(bs, errp);
6630 if (ret < 0) {
6631 bs->open_flags |= BDRV_O_INACTIVE;
6632 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006633 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006634
Kevin Wolf7bb49412019-12-17 15:06:38 +01006635 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6636 bdrv_dirty_bitmap_skip_store(bm, false);
6637 }
6638
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01006639 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006640 if (ret < 0) {
6641 bs->open_flags |= BDRV_O_INACTIVE;
6642 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006643 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006644 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006645 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006646
6647 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006648 if (parent->klass->activate) {
6649 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006650 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006651 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006652 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006653 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006654 }
6655 }
6656 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006657
6658 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006659}
6660
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006661int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6662{
6663 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006664 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006665
6666 assert(!(bs->open_flags & BDRV_O_INACTIVE));
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01006667 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006668
6669 if (bs->drv->bdrv_co_invalidate_cache) {
6670 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6671 if (local_err) {
6672 error_propagate(errp, local_err);
6673 return -EINVAL;
6674 }
6675 }
6676
6677 return 0;
6678}
6679
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006680void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006681{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006682 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006683 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006684
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006685 GLOBAL_STATE_CODE();
6686
Kevin Wolf88be7b42016-05-20 18:49:07 +02006687 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006688 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006689 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006690
6691 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006692 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006693 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006694 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006695 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006696 return;
6697 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006698 }
6699}
6700
Kevin Wolf9e372712018-11-23 15:11:14 +01006701static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6702{
6703 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006704 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006705
6706 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006707 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006708 BlockDriverState *parent_bs = parent->opaque;
6709 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6710 return true;
6711 }
6712 }
6713 }
6714
6715 return false;
6716}
6717
6718static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006719{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006720 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006721 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006722 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006723
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05006724 GLOBAL_STATE_CODE();
6725
Max Reitzd470ad42017-11-10 21:31:09 +01006726 if (!bs->drv) {
6727 return -ENOMEDIUM;
6728 }
6729
Kevin Wolf9e372712018-11-23 15:11:14 +01006730 /* Make sure that we don't inactivate a child before its parent.
6731 * It will be covered by recursion from the yet active parent. */
6732 if (bdrv_has_bds_parent(bs, true)) {
6733 return 0;
6734 }
6735
6736 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6737
6738 /* Inactivate this node */
6739 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006740 ret = bs->drv->bdrv_inactivate(bs);
6741 if (ret < 0) {
6742 return ret;
6743 }
6744 }
6745
Kevin Wolf9e372712018-11-23 15:11:14 +01006746 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006747 if (parent->klass->inactivate) {
6748 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006749 if (ret < 0) {
6750 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006751 }
6752 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006753 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006754
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006755 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6756 &cumulative_shared_perms);
6757 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6758 /* Our inactive parents still need write access. Inactivation failed. */
6759 return -EPERM;
6760 }
6761
Kevin Wolf9e372712018-11-23 15:11:14 +01006762 bs->open_flags |= BDRV_O_INACTIVE;
6763
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006764 /*
6765 * Update permissions, they may differ for inactive nodes.
6766 * We only tried to loosen restrictions, so errors are not fatal, ignore
6767 * them.
6768 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006769 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006770
6771 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006772 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006773 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006774 if (ret < 0) {
6775 return ret;
6776 }
6777 }
6778
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006779 return 0;
6780}
6781
6782int bdrv_inactivate_all(void)
6783{
Max Reitz79720af2016-03-16 19:54:44 +01006784 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006785 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006786 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006787 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006788
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006789 GLOBAL_STATE_CODE();
6790
Kevin Wolf88be7b42016-05-20 18:49:07 +02006791 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006792 AioContext *aio_context = bdrv_get_aio_context(bs);
6793
6794 if (!g_slist_find(aio_ctxs, aio_context)) {
6795 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6796 aio_context_acquire(aio_context);
6797 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006798 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006799
Kevin Wolf9e372712018-11-23 15:11:14 +01006800 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6801 /* Nodes with BDS parents are covered by recursion from the last
6802 * parent that gets inactivated. Don't inactivate them a second
6803 * time if that has already happened. */
6804 if (bdrv_has_bds_parent(bs, false)) {
6805 continue;
6806 }
6807 ret = bdrv_inactivate_recurse(bs);
6808 if (ret < 0) {
6809 bdrv_next_cleanup(&it);
6810 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006811 }
6812 }
6813
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006814out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006815 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6816 AioContext *aio_context = ctx->data;
6817 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006818 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006819 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006820
6821 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006822}
6823
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006824/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006825/* removable device support */
6826
6827/**
6828 * Return TRUE if the media is present
6829 */
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006830bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006831{
6832 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006833 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006834 IO_CODE();
Emanuele Giuseppe Espositoc73ff922023-02-03 16:21:57 +01006835 assert_bdrv_graph_readable();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006836
Max Reitze031f752015-10-19 17:53:11 +02006837 if (!drv) {
6838 return false;
6839 }
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006840 if (drv->bdrv_co_is_inserted) {
6841 return drv->bdrv_co_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006842 }
Max Reitz28d7a782015-10-19 17:53:13 +02006843 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006844 if (!bdrv_co_is_inserted(child->bs)) {
Max Reitz28d7a782015-10-19 17:53:13 +02006845 return false;
6846 }
6847 }
6848 return true;
bellard19cb3732006-08-19 11:45:59 +00006849}
6850
6851/**
bellard19cb3732006-08-19 11:45:59 +00006852 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6853 */
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01006854void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006855{
6856 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006857 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01006858 assert_bdrv_graph_readable();
bellard19cb3732006-08-19 11:45:59 +00006859
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01006860 if (drv && drv->bdrv_co_eject) {
6861 drv->bdrv_co_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006862 }
bellard19cb3732006-08-19 11:45:59 +00006863}
6864
bellard19cb3732006-08-19 11:45:59 +00006865/**
6866 * Lock or unlock the media (if it is locked, the user won't be able
6867 * to eject it manually).
6868 */
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01006869void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006870{
6871 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006872 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01006873 assert_bdrv_graph_readable();
Markus Armbruster025e8492011-09-06 18:58:47 +02006874 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006875
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01006876 if (drv && drv->bdrv_co_lock_medium) {
6877 drv->bdrv_co_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006878 }
6879}
ths985a03b2007-12-24 16:10:43 +00006880
Fam Zheng9fcb0252013-08-23 09:14:46 +08006881/* Get a reference to bs */
6882void bdrv_ref(BlockDriverState *bs)
6883{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006884 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08006885 bs->refcnt++;
6886}
6887
6888/* Release a previously grabbed reference to bs.
6889 * If after releasing, reference count is zero, the BlockDriverState is
6890 * deleted. */
6891void bdrv_unref(BlockDriverState *bs)
6892{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006893 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006894 if (!bs) {
6895 return;
6896 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006897 assert(bs->refcnt > 0);
6898 if (--bs->refcnt == 0) {
6899 bdrv_delete(bs);
6900 }
6901}
6902
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006903struct BdrvOpBlocker {
6904 Error *reason;
6905 QLIST_ENTRY(BdrvOpBlocker) list;
6906};
6907
6908bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6909{
6910 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006911 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006912 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6913 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6914 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006915 error_propagate_prepend(errp, error_copy(blocker->reason),
6916 "Node '%s' is busy: ",
6917 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006918 return true;
6919 }
6920 return false;
6921}
6922
6923void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6924{
6925 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006926 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006927 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6928
Markus Armbruster5839e532014-08-19 10:31:08 +02006929 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006930 blocker->reason = reason;
6931 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6932}
6933
6934void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6935{
6936 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006937 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006938 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6939 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6940 if (blocker->reason == reason) {
6941 QLIST_REMOVE(blocker, list);
6942 g_free(blocker);
6943 }
6944 }
6945}
6946
6947void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6948{
6949 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006950 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006951 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6952 bdrv_op_block(bs, i, reason);
6953 }
6954}
6955
6956void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6957{
6958 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006959 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006960 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6961 bdrv_op_unblock(bs, i, reason);
6962 }
6963}
6964
6965bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6966{
6967 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006968 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006969 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6970 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6971 return false;
6972 }
6973 }
6974 return true;
6975}
6976
Kevin Wolfe1355052022-12-07 14:18:30 +01006977/*
6978 * Must not be called while holding the lock of an AioContext other than the
6979 * current one.
6980 */
Luiz Capitulinod92ada22012-11-30 10:52:09 -02006981void bdrv_img_create(const char *filename, const char *fmt,
6982 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08006983 char *options, uint64_t img_size, int flags, bool quiet,
6984 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006985{
Chunyan Liu83d05212014-06-05 17:20:51 +08006986 QemuOptsList *create_opts = NULL;
6987 QemuOpts *opts = NULL;
6988 const char *backing_fmt, *backing_file;
6989 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006990 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02006991 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006992 int ret = 0;
6993
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006994 GLOBAL_STATE_CODE();
6995
Jes Sorensenf88e1a42010-12-16 13:52:15 +01006996 /* Find driver and parse its options */
6997 drv = bdrv_find_format(fmt);
6998 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02006999 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007000 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007001 }
7002
Max Reitzb65a5e12015-02-05 13:58:12 -05007003 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007004 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007005 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007006 }
7007
Max Reitzc6149722014-12-02 18:32:45 +01007008 if (!drv->create_opts) {
7009 error_setg(errp, "Format driver '%s' does not support image creation",
7010 drv->format_name);
7011 return;
7012 }
7013
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007014 if (!proto_drv->create_opts) {
7015 error_setg(errp, "Protocol driver '%s' does not support image creation",
7016 proto_drv->format_name);
7017 return;
7018 }
7019
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007020 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007021 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007022 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007023
Chunyan Liu83d05212014-06-05 17:20:51 +08007024 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007025
7026 /* Parse -o options */
7027 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007028 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007029 goto out;
7030 }
7031 }
7032
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007033 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7034 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7035 } else if (img_size != UINT64_C(-1)) {
7036 error_setg(errp, "The image size must be specified only once");
7037 goto out;
7038 }
7039
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007040 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007041 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007042 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007043 error_setg(errp, "Backing file not supported for file format '%s'",
7044 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007045 goto out;
7046 }
7047 }
7048
7049 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007050 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007051 error_setg(errp, "Backing file format not supported for file "
7052 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007053 goto out;
7054 }
7055 }
7056
Chunyan Liu83d05212014-06-05 17:20:51 +08007057 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7058 if (backing_file) {
7059 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007060 error_setg(errp, "Error: Trying to create an image with the "
7061 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007062 goto out;
7063 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007064 if (backing_file[0] == '\0') {
7065 error_setg(errp, "Expected backing file name, got empty string");
7066 goto out;
7067 }
Jes Sorensen792da932010-12-16 13:52:17 +01007068 }
7069
Chunyan Liu83d05212014-06-05 17:20:51 +08007070 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007071
John Snow6e6e55f2017-07-17 20:34:22 -04007072 /* The size for the image must always be specified, unless we have a backing
7073 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007074 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007075 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7076 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007077 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007078 int back_flags;
7079 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007080
Max Reitz645ae7d2019-02-01 20:29:14 +01007081 full_backing =
7082 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7083 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007084 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007085 goto out;
7086 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007087 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007088
Max Reitzd5b23992021-06-22 16:00:30 +02007089 /*
7090 * No need to do I/O here, which allows us to open encrypted
7091 * backing images without needing the secret
7092 */
John Snow6e6e55f2017-07-17 20:34:22 -04007093 back_flags = flags;
7094 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007095 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007096
Fam Zhengcc954f02017-12-15 16:04:45 +08007097 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007098 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007099 qdict_put_str(backing_options, "driver", backing_fmt);
7100 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007101 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007102
7103 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7104 &local_err);
7105 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007106 if (!bs) {
7107 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007108 goto out;
7109 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007110 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007111 error_setg(&local_err,
7112 "Backing file specified without backing format");
7113 error_append_hint(&local_err, "Detected format of %s.",
7114 bs->drv->format_name);
7115 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007116 }
John Snow6e6e55f2017-07-17 20:34:22 -04007117 if (size == -1) {
7118 /* Opened BS, have no size */
7119 size = bdrv_getlength(bs);
7120 if (size < 0) {
7121 error_setg_errno(errp, -size, "Could not get size of '%s'",
7122 backing_file);
7123 bdrv_unref(bs);
7124 goto out;
7125 }
7126 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7127 }
7128 bdrv_unref(bs);
7129 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007130 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7131 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007132 error_setg(&local_err,
7133 "Backing file specified without backing format");
7134 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007135 }
John Snow6e6e55f2017-07-17 20:34:22 -04007136
7137 if (size == -1) {
7138 error_setg(errp, "Image creation needs a size parameter");
7139 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007140 }
7141
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007142 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007143 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007144 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007145 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007146 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007147 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007148
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007149 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007150
Max Reitzcc84d902013-09-06 17:14:26 +02007151 if (ret == -EFBIG) {
7152 /* This is generally a better message than whatever the driver would
7153 * deliver (especially because of the cluster_size_hint), since that
7154 * is most probably not much different from "image too large". */
7155 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007156 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007157 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007158 }
Max Reitzcc84d902013-09-06 17:14:26 +02007159 error_setg(errp, "The image size is too large for file format '%s'"
7160 "%s", fmt, cluster_size_hint);
7161 error_free(local_err);
7162 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007163 }
7164
7165out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007166 qemu_opts_del(opts);
7167 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007168 error_propagate(errp, local_err);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007169}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007170
7171AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7172{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007173 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007174 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007175}
7176
Kevin Wolfe336fd42020-10-05 17:58:53 +02007177AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7178{
7179 Coroutine *self = qemu_coroutine_self();
7180 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7181 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007182 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007183
7184 /*
7185 * Increase bs->in_flight to ensure that this operation is completed before
7186 * moving the node to a different AioContext. Read new_ctx only afterwards.
7187 */
7188 bdrv_inc_in_flight(bs);
7189
7190 new_ctx = bdrv_get_aio_context(bs);
7191 aio_co_reschedule_self(new_ctx);
7192 return old_ctx;
7193}
7194
7195void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7196{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007197 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007198 aio_co_reschedule_self(old_ctx);
7199 bdrv_dec_in_flight(bs);
7200}
7201
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007202void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7203{
7204 AioContext *ctx = bdrv_get_aio_context(bs);
7205
7206 /* In the main thread, bs->aio_context won't change concurrently */
7207 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7208
7209 /*
7210 * We're in coroutine context, so we already hold the lock of the main
7211 * loop AioContext. Don't lock it twice to avoid deadlocks.
7212 */
7213 assert(qemu_in_coroutine());
7214 if (ctx != qemu_get_aio_context()) {
7215 aio_context_acquire(ctx);
7216 }
7217}
7218
7219void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7220{
7221 AioContext *ctx = bdrv_get_aio_context(bs);
7222
7223 assert(qemu_in_coroutine());
7224 if (ctx != qemu_get_aio_context()) {
7225 aio_context_release(ctx);
7226 }
7227}
7228
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007229static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7230{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007231 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007232 QLIST_REMOVE(ban, list);
7233 g_free(ban);
7234}
7235
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007236static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007237{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007238 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007239
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007240 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007241 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007242 bs->walking_aio_notifiers = true;
7243 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7244 if (baf->deleted) {
7245 bdrv_do_remove_aio_context_notifier(baf);
7246 } else {
7247 baf->detach_aio_context(baf->opaque);
7248 }
Max Reitz33384422014-06-20 21:57:33 +02007249 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007250 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7251 * remove remaining aio notifiers if we aren't called again.
7252 */
7253 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007254
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007255 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007256 bs->drv->bdrv_detach_aio_context(bs);
7257 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007258
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007259 if (bs->quiesce_counter) {
7260 aio_enable_external(bs->aio_context);
7261 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007262 bs->aio_context = NULL;
7263}
7264
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007265static void bdrv_attach_aio_context(BlockDriverState *bs,
7266 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007267{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007268 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007269 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007270
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007271 if (bs->quiesce_counter) {
7272 aio_disable_external(new_context);
7273 }
7274
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007275 bs->aio_context = new_context;
7276
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007277 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007278 bs->drv->bdrv_attach_aio_context(bs, new_context);
7279 }
Max Reitz33384422014-06-20 21:57:33 +02007280
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007281 assert(!bs->walking_aio_notifiers);
7282 bs->walking_aio_notifiers = true;
7283 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7284 if (ban->deleted) {
7285 bdrv_do_remove_aio_context_notifier(ban);
7286 } else {
7287 ban->attached_aio_context(new_context, ban->opaque);
7288 }
Max Reitz33384422014-06-20 21:57:33 +02007289 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007290 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007291}
7292
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007293typedef struct BdrvStateSetAioContext {
7294 AioContext *new_ctx;
7295 BlockDriverState *bs;
7296} BdrvStateSetAioContext;
7297
7298static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007299 GHashTable *visited,
7300 Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007301 Error **errp)
7302{
7303 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007304 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007305 return true;
7306 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007307 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007308
7309 /*
7310 * A BdrvChildClass that doesn't handle AioContext changes cannot
7311 * tolerate any AioContext changes
7312 */
7313 if (!c->klass->change_aio_ctx) {
7314 char *user = bdrv_child_user_desc(c);
7315 error_setg(errp, "Changing iothreads is not supported by %s", user);
7316 g_free(user);
7317 return false;
7318 }
7319 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7320 assert(!errp || *errp);
7321 return false;
7322 }
7323 return true;
7324}
7325
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007326bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007327 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007328 Error **errp)
7329{
7330 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007331 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007332 return true;
7333 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007334 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007335 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7336}
7337
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007338static void bdrv_set_aio_context_clean(void *opaque)
7339{
7340 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7341 BlockDriverState *bs = (BlockDriverState *) state->bs;
7342
7343 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7344 bdrv_drained_end(bs);
7345
7346 g_free(state);
7347}
7348
7349static void bdrv_set_aio_context_commit(void *opaque)
7350{
7351 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7352 BlockDriverState *bs = (BlockDriverState *) state->bs;
7353 AioContext *new_context = state->new_ctx;
7354 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007355
7356 /*
7357 * Take the old AioContex when detaching it from bs.
7358 * At this point, new_context lock is already acquired, and we are now
7359 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7360 * does not call AIO_POLL_WHILE().
7361 */
7362 if (old_context != qemu_get_aio_context()) {
7363 aio_context_acquire(old_context);
7364 }
7365 bdrv_detach_aio_context(bs);
7366 if (old_context != qemu_get_aio_context()) {
7367 aio_context_release(old_context);
7368 }
7369 bdrv_attach_aio_context(bs, new_context);
7370}
7371
7372static TransactionActionDrv set_aio_context = {
7373 .commit = bdrv_set_aio_context_commit,
7374 .clean = bdrv_set_aio_context_clean,
7375};
7376
Kevin Wolf42a65f02019-05-07 18:31:38 +02007377/*
7378 * Changes the AioContext used for fd handlers, timers, and BHs by this
7379 * BlockDriverState and all its children and parents.
7380 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007381 * Must be called from the main AioContext.
7382 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007383 * The caller must own the AioContext lock for the old AioContext of bs, but it
7384 * must not own the AioContext lock for new_context (unless new_context is the
7385 * same as the current context of bs).
7386 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007387 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007388 * responsible for freeing the list afterwards.
7389 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007390static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007391 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007392 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007393{
7394 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007395 BdrvStateSetAioContext *state;
7396
7397 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007398
7399 if (bdrv_get_aio_context(bs) == ctx) {
7400 return true;
7401 }
7402
7403 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007404 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007405 return false;
7406 }
7407 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007408
Kevin Wolf5d231842019-05-06 19:17:56 +02007409 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007410 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007411 return false;
7412 }
7413 }
7414
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007415 state = g_new(BdrvStateSetAioContext, 1);
7416 *state = (BdrvStateSetAioContext) {
7417 .new_ctx = ctx,
7418 .bs = bs,
7419 };
7420
7421 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7422 bdrv_drained_begin(bs);
7423
7424 tran_add(tran, &set_aio_context, state);
7425
Kevin Wolf5d231842019-05-06 19:17:56 +02007426 return true;
7427}
7428
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007429/*
7430 * Change bs's and recursively all of its parents' and children's AioContext
7431 * to the given new context, returning an error if that isn't possible.
7432 *
7433 * If ignore_child is not NULL, that child (and its subgraph) will not
7434 * be touched.
7435 *
7436 * This function still requires the caller to take the bs current
7437 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7438 * assumes the lock is always held if bs is in another AioContext.
7439 * For the same reason, it temporarily also holds the new AioContext, since
7440 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7441 * Therefore the new AioContext lock must not be taken by the caller.
7442 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007443int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7444 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007445{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007446 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007447 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007448 int ret;
7449 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007450 GLOBAL_STATE_CODE();
7451
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007452 /*
7453 * Recursion phase: go through all nodes of the graph.
7454 * Take care of checking that all nodes support changing AioContext
7455 * and drain them, builing a linear list of callbacks to run if everything
7456 * is successful (the transaction itself).
7457 */
7458 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007459 visited = g_hash_table_new(NULL, NULL);
7460 if (ignore_child) {
7461 g_hash_table_add(visited, ignore_child);
7462 }
7463 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7464 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007465
7466 /*
7467 * Linear phase: go through all callbacks collected in the transaction.
7468 * Run all callbacks collected in the recursion to switch all nodes
7469 * AioContext lock (transaction commit), or undo all changes done in the
7470 * recursion (transaction abort).
7471 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007472
7473 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007474 /* Just run clean() callbacks. No AioContext changed. */
7475 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007476 return -EPERM;
7477 }
7478
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007479 /*
7480 * Release old AioContext, it won't be needed anymore, as all
7481 * bdrv_drained_begin() have been called already.
7482 */
7483 if (qemu_get_aio_context() != old_context) {
7484 aio_context_release(old_context);
7485 }
7486
7487 /*
7488 * Acquire new AioContext since bdrv_drained_end() is going to be called
7489 * after we switched all nodes in the new AioContext, and the function
7490 * assumes that the lock of the bs is always taken.
7491 */
7492 if (qemu_get_aio_context() != ctx) {
7493 aio_context_acquire(ctx);
7494 }
7495
7496 tran_commit(tran);
7497
7498 if (qemu_get_aio_context() != ctx) {
7499 aio_context_release(ctx);
7500 }
7501
7502 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7503 if (qemu_get_aio_context() != old_context) {
7504 aio_context_acquire(old_context);
7505 }
Kevin Wolf53a7d042019-05-06 19:17:59 +02007506
Kevin Wolf5d231842019-05-06 19:17:56 +02007507 return 0;
7508}
7509
Max Reitz33384422014-06-20 21:57:33 +02007510void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7511 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7512 void (*detach_aio_context)(void *opaque), void *opaque)
7513{
7514 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7515 *ban = (BdrvAioNotifier){
7516 .attached_aio_context = attached_aio_context,
7517 .detach_aio_context = detach_aio_context,
7518 .opaque = opaque
7519 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007520 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007521
7522 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7523}
7524
7525void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7526 void (*attached_aio_context)(AioContext *,
7527 void *),
7528 void (*detach_aio_context)(void *),
7529 void *opaque)
7530{
7531 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007532 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007533
7534 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7535 if (ban->attached_aio_context == attached_aio_context &&
7536 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007537 ban->opaque == opaque &&
7538 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007539 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007540 if (bs->walking_aio_notifiers) {
7541 ban->deleted = true;
7542 } else {
7543 bdrv_do_remove_aio_context_notifier(ban);
7544 }
Max Reitz33384422014-06-20 21:57:33 +02007545 return;
7546 }
7547 }
7548
7549 abort();
7550}
7551
Max Reitz77485432014-10-27 11:12:50 +01007552int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007553 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007554 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007555 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007556{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007557 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007558 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007559 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007560 return -ENOMEDIUM;
7561 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007562 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007563 error_setg(errp, "Block driver '%s' does not support option amendment",
7564 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007565 return -ENOTSUP;
7566 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007567 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7568 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007569}
Benoît Canetf6186f42013-10-02 14:33:48 +02007570
Max Reitz5d69b5a2020-02-18 11:34:41 +01007571/*
7572 * This function checks whether the given @to_replace is allowed to be
7573 * replaced by a node that always shows the same data as @bs. This is
7574 * used for example to verify whether the mirror job can replace
7575 * @to_replace by the target mirrored from @bs.
7576 * To be replaceable, @bs and @to_replace may either be guaranteed to
7577 * always show the same data (because they are only connected through
7578 * filters), or some driver may allow replacing one of its children
7579 * because it can guarantee that this child's data is not visible at
7580 * all (for example, for dissenting quorum children that have no other
7581 * parents).
7582 */
7583bool bdrv_recurse_can_replace(BlockDriverState *bs,
7584 BlockDriverState *to_replace)
7585{
Max Reitz93393e62019-06-12 17:03:38 +02007586 BlockDriverState *filtered;
7587
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007588 GLOBAL_STATE_CODE();
7589
Max Reitz5d69b5a2020-02-18 11:34:41 +01007590 if (!bs || !bs->drv) {
7591 return false;
7592 }
7593
7594 if (bs == to_replace) {
7595 return true;
7596 }
7597
7598 /* See what the driver can do */
7599 if (bs->drv->bdrv_recurse_can_replace) {
7600 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7601 }
7602
7603 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007604 filtered = bdrv_filter_bs(bs);
7605 if (filtered) {
7606 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007607 }
7608
7609 /* Safe default */
7610 return false;
7611}
7612
Max Reitz810803a2020-02-18 11:34:44 +01007613/*
7614 * Check whether the given @node_name can be replaced by a node that
7615 * has the same data as @parent_bs. If so, return @node_name's BDS;
7616 * NULL otherwise.
7617 *
7618 * @node_name must be a (recursive) *child of @parent_bs (or this
7619 * function will return NULL).
7620 *
7621 * The result (whether the node can be replaced or not) is only valid
7622 * for as long as no graph or permission changes occur.
7623 */
Wen Congyange12f3782015-07-17 10:12:22 +08007624BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7625 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007626{
7627 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007628 AioContext *aio_context;
7629
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007630 GLOBAL_STATE_CODE();
7631
Benoît Canet09158f02014-06-27 18:25:25 +02007632 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007633 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007634 return NULL;
7635 }
7636
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007637 aio_context = bdrv_get_aio_context(to_replace_bs);
7638 aio_context_acquire(aio_context);
7639
Benoît Canet09158f02014-06-27 18:25:25 +02007640 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007641 to_replace_bs = NULL;
7642 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007643 }
7644
7645 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7646 * most non filter in order to prevent data corruption.
7647 * Another benefit is that this tests exclude backing files which are
7648 * blocked by the backing blockers.
7649 */
Max Reitz810803a2020-02-18 11:34:44 +01007650 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7651 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7652 "because it cannot be guaranteed that doing so would not "
7653 "lead to an abrupt change of visible data",
7654 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007655 to_replace_bs = NULL;
7656 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007657 }
7658
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007659out:
7660 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007661 return to_replace_bs;
7662}
Ming Lei448ad912014-07-04 18:04:33 +08007663
Max Reitz97e2f022019-02-01 20:29:27 +01007664/**
7665 * Iterates through the list of runtime option keys that are said to
7666 * be "strong" for a BDS. An option is called "strong" if it changes
7667 * a BDS's data. For example, the null block driver's "size" and
7668 * "read-zeroes" options are strong, but its "latency-ns" option is
7669 * not.
7670 *
7671 * If a key returned by this function ends with a dot, all options
7672 * starting with that prefix are strong.
7673 */
7674static const char *const *strong_options(BlockDriverState *bs,
7675 const char *const *curopt)
7676{
7677 static const char *const global_options[] = {
7678 "driver", "filename", NULL
7679 };
7680
7681 if (!curopt) {
7682 return &global_options[0];
7683 }
7684
7685 curopt++;
7686 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7687 curopt = bs->drv->strong_runtime_opts;
7688 }
7689
7690 return (curopt && *curopt) ? curopt : NULL;
7691}
7692
7693/**
7694 * Copies all strong runtime options from bs->options to the given
7695 * QDict. The set of strong option keys is determined by invoking
7696 * strong_options().
7697 *
7698 * Returns true iff any strong option was present in bs->options (and
7699 * thus copied to the target QDict) with the exception of "filename"
7700 * and "driver". The caller is expected to use this value to decide
7701 * whether the existence of strong options prevents the generation of
7702 * a plain filename.
7703 */
7704static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7705{
7706 bool found_any = false;
7707 const char *const *option_name = NULL;
7708
7709 if (!bs->drv) {
7710 return false;
7711 }
7712
7713 while ((option_name = strong_options(bs, option_name))) {
7714 bool option_given = false;
7715
7716 assert(strlen(*option_name) > 0);
7717 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7718 QObject *entry = qdict_get(bs->options, *option_name);
7719 if (!entry) {
7720 continue;
7721 }
7722
7723 qdict_put_obj(d, *option_name, qobject_ref(entry));
7724 option_given = true;
7725 } else {
7726 const QDictEntry *entry;
7727 for (entry = qdict_first(bs->options); entry;
7728 entry = qdict_next(bs->options, entry))
7729 {
7730 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7731 qdict_put_obj(d, qdict_entry_key(entry),
7732 qobject_ref(qdict_entry_value(entry)));
7733 option_given = true;
7734 }
7735 }
7736 }
7737
7738 /* While "driver" and "filename" need to be included in a JSON filename,
7739 * their existence does not prohibit generation of a plain filename. */
7740 if (!found_any && option_given &&
7741 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7742 {
7743 found_any = true;
7744 }
7745 }
7746
Max Reitz62a01a272019-02-01 20:29:34 +01007747 if (!qdict_haskey(d, "driver")) {
7748 /* Drivers created with bdrv_new_open_driver() may not have a
7749 * @driver option. Add it here. */
7750 qdict_put_str(d, "driver", bs->drv->format_name);
7751 }
7752
Max Reitz97e2f022019-02-01 20:29:27 +01007753 return found_any;
7754}
7755
Max Reitz90993622019-02-01 20:29:09 +01007756/* Note: This function may return false positives; it may return true
7757 * even if opening the backing file specified by bs's image header
7758 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05007759static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007760{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007761 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01007762 if (bs->backing) {
7763 return strcmp(bs->auto_backing_file,
7764 bs->backing->bs->filename);
7765 } else {
7766 /* No backing BDS, so if the image header reports any backing
7767 * file, it must have been suppressed */
7768 return bs->auto_backing_file[0] != '\0';
7769 }
7770}
7771
Max Reitz91af7012014-07-18 20:24:56 +02007772/* Updates the following BDS fields:
7773 * - exact_filename: A filename which may be used for opening a block device
7774 * which (mostly) equals the given BDS (even without any
7775 * other options; so reading and writing must return the same
7776 * results, but caching etc. may be different)
7777 * - full_open_options: Options which, when given when opening a block device
7778 * (without a filename), result in a BDS (mostly)
7779 * equalling the given one
7780 * - filename: If exact_filename is set, it is copied here. Otherwise,
7781 * full_open_options is converted to a JSON object, prefixed with
7782 * "json:" (for use through the JSON pseudo protocol) and put here.
7783 */
7784void bdrv_refresh_filename(BlockDriverState *bs)
7785{
7786 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007787 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007788 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007789 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007790 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007791 bool generate_json_filename; /* Whether our default implementation should
7792 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007793
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007794 GLOBAL_STATE_CODE();
7795
Max Reitz91af7012014-07-18 20:24:56 +02007796 if (!drv) {
7797 return;
7798 }
7799
Max Reitze24518e2019-02-01 20:29:06 +01007800 /* This BDS's file name may depend on any of its children's file names, so
7801 * refresh those first */
7802 QLIST_FOREACH(child, &bs->children, next) {
7803 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007804 }
7805
Max Reitzbb808d52019-02-01 20:29:07 +01007806 if (bs->implicit) {
7807 /* For implicit nodes, just copy everything from the single child */
7808 child = QLIST_FIRST(&bs->children);
7809 assert(QLIST_NEXT(child, next) == NULL);
7810
7811 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7812 child->bs->exact_filename);
7813 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7814
Pan Nengyuancb895612020-01-16 16:56:00 +08007815 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007816 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7817
7818 return;
7819 }
7820
Max Reitz90993622019-02-01 20:29:09 +01007821 backing_overridden = bdrv_backing_overridden(bs);
7822
7823 if (bs->open_flags & BDRV_O_NO_IO) {
7824 /* Without I/O, the backing file does not change anything.
7825 * Therefore, in such a case (primarily qemu-img), we can
7826 * pretend the backing file has not been overridden even if
7827 * it technically has been. */
7828 backing_overridden = false;
7829 }
7830
Max Reitz97e2f022019-02-01 20:29:27 +01007831 /* Gather the options QDict */
7832 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007833 generate_json_filename = append_strong_runtime_options(opts, bs);
7834 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007835
7836 if (drv->bdrv_gather_child_options) {
7837 /* Some block drivers may not want to present all of their children's
7838 * options, or name them differently from BdrvChild.name */
7839 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7840 } else {
7841 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007842 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007843 /* We can skip the backing BDS if it has not been overridden */
7844 continue;
7845 }
7846
7847 qdict_put(opts, child->name,
7848 qobject_ref(child->bs->full_open_options));
7849 }
7850
7851 if (backing_overridden && !bs->backing) {
7852 /* Force no backing file */
7853 qdict_put_null(opts, "backing");
7854 }
7855 }
7856
7857 qobject_unref(bs->full_open_options);
7858 bs->full_open_options = opts;
7859
Max Reitz52f72d62019-06-12 17:43:03 +02007860 primary_child_bs = bdrv_primary_bs(bs);
7861
Max Reitz998b3a12019-02-01 20:29:28 +01007862 if (drv->bdrv_refresh_filename) {
7863 /* Obsolete information is of no use here, so drop the old file name
7864 * information before refreshing it */
7865 bs->exact_filename[0] = '\0';
7866
7867 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007868 } else if (primary_child_bs) {
7869 /*
7870 * Try to reconstruct valid information from the underlying
7871 * file -- this only works for format nodes (filter nodes
7872 * cannot be probed and as such must be selected by the user
7873 * either through an options dict, or through a special
7874 * filename which the filter driver must construct in its
7875 * .bdrv_refresh_filename() implementation).
7876 */
Max Reitz998b3a12019-02-01 20:29:28 +01007877
7878 bs->exact_filename[0] = '\0';
7879
Max Reitzfb695c72019-02-01 20:29:29 +01007880 /*
7881 * We can use the underlying file's filename if:
7882 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007883 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007884 * - the file is a protocol BDS, and
7885 * - opening that file (as this BDS's format) will automatically create
7886 * the BDS tree we have right now, that is:
7887 * - the user did not significantly change this BDS's behavior with
7888 * some explicit (strong) options
7889 * - no non-file child of this BDS has been overridden by the user
7890 * Both of these conditions are represented by generate_json_filename.
7891 */
Max Reitz52f72d62019-06-12 17:43:03 +02007892 if (primary_child_bs->exact_filename[0] &&
7893 primary_child_bs->drv->bdrv_file_open &&
7894 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007895 {
Max Reitz52f72d62019-06-12 17:43:03 +02007896 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007897 }
7898 }
7899
Max Reitz91af7012014-07-18 20:24:56 +02007900 if (bs->exact_filename[0]) {
7901 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007902 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007903 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007904 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007905 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007906 /* Give user a hint if we truncated things. */
7907 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7908 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007909 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007910 }
7911}
Wen Congyange06018a2016-05-10 15:36:37 +08007912
Max Reitz1e89d0f2019-02-01 20:29:18 +01007913char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7914{
7915 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007916 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007917
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007918 GLOBAL_STATE_CODE();
7919
Max Reitz1e89d0f2019-02-01 20:29:18 +01007920 if (!drv) {
7921 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7922 return NULL;
7923 }
7924
7925 if (drv->bdrv_dirname) {
7926 return drv->bdrv_dirname(bs, errp);
7927 }
7928
Max Reitz52f72d62019-06-12 17:43:03 +02007929 child_bs = bdrv_primary_bs(bs);
7930 if (child_bs) {
7931 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007932 }
7933
7934 bdrv_refresh_filename(bs);
7935 if (bs->exact_filename[0] != '\0') {
7936 return path_combine(bs->exact_filename, "");
7937 }
7938
7939 error_setg(errp, "Cannot generate a base directory for %s nodes",
7940 drv->format_name);
7941 return NULL;
7942}
7943
Wen Congyange06018a2016-05-10 15:36:37 +08007944/*
7945 * Hot add/remove a BDS's child. So the user can take a child offline when
7946 * it is broken and take a new child online
7947 */
7948void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7949 Error **errp)
7950{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007951 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007952 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7953 error_setg(errp, "The node %s does not support adding a child",
7954 bdrv_get_device_or_node_name(parent_bs));
7955 return;
7956 }
7957
7958 if (!QLIST_EMPTY(&child_bs->parents)) {
7959 error_setg(errp, "The node %s already has a parent",
7960 child_bs->node_name);
7961 return;
7962 }
7963
7964 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
7965}
7966
7967void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
7968{
7969 BdrvChild *tmp;
7970
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007971 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007972 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
7973 error_setg(errp, "The node %s does not support removing a child",
7974 bdrv_get_device_or_node_name(parent_bs));
7975 return;
7976 }
7977
7978 QLIST_FOREACH(tmp, &parent_bs->children, next) {
7979 if (tmp == child) {
7980 break;
7981 }
7982 }
7983
7984 if (!tmp) {
7985 error_setg(errp, "The node %s does not have a child named %s",
7986 bdrv_get_device_or_node_name(parent_bs),
7987 bdrv_get_device_or_node_name(child->bs));
7988 return;
7989 }
7990
7991 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
7992}
Max Reitz6f7a3b52020-04-29 16:11:23 +02007993
7994int bdrv_make_empty(BdrvChild *c, Error **errp)
7995{
7996 BlockDriver *drv = c->bs->drv;
7997 int ret;
7998
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007999 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02008000 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8001
8002 if (!drv->bdrv_make_empty) {
8003 error_setg(errp, "%s does not support emptying nodes",
8004 drv->format_name);
8005 return -ENOTSUP;
8006 }
8007
8008 ret = drv->bdrv_make_empty(c->bs);
8009 if (ret < 0) {
8010 error_setg_errno(errp, -ret, "Failed to empty %s",
8011 c->bs->filename);
8012 return ret;
8013 }
8014
8015 return 0;
8016}
Max Reitz9a6fc882019-05-31 15:23:11 +02008017
8018/*
8019 * Return the child that @bs acts as an overlay for, and from which data may be
8020 * copied in COW or COR operations. Usually this is the backing file.
8021 */
8022BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8023{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008024 IO_CODE();
8025
Max Reitz9a6fc882019-05-31 15:23:11 +02008026 if (!bs || !bs->drv) {
8027 return NULL;
8028 }
8029
8030 if (bs->drv->is_filter) {
8031 return NULL;
8032 }
8033
8034 if (!bs->backing) {
8035 return NULL;
8036 }
8037
8038 assert(bs->backing->role & BDRV_CHILD_COW);
8039 return bs->backing;
8040}
8041
8042/*
8043 * If @bs acts as a filter for exactly one of its children, return
8044 * that child.
8045 */
8046BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8047{
8048 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008049 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008050
8051 if (!bs || !bs->drv) {
8052 return NULL;
8053 }
8054
8055 if (!bs->drv->is_filter) {
8056 return NULL;
8057 }
8058
8059 /* Only one of @backing or @file may be used */
8060 assert(!(bs->backing && bs->file));
8061
8062 c = bs->backing ?: bs->file;
8063 if (!c) {
8064 return NULL;
8065 }
8066
8067 assert(c->role & BDRV_CHILD_FILTERED);
8068 return c;
8069}
8070
8071/*
8072 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8073 * whichever is non-NULL.
8074 *
8075 * Return NULL if both are NULL.
8076 */
8077BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8078{
8079 BdrvChild *cow_child = bdrv_cow_child(bs);
8080 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008081 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008082
8083 /* Filter nodes cannot have COW backing files */
8084 assert(!(cow_child && filter_child));
8085
8086 return cow_child ?: filter_child;
8087}
8088
8089/*
8090 * Return the primary child of this node: For filters, that is the
8091 * filtered child. For other nodes, that is usually the child storing
8092 * metadata.
8093 * (A generally more helpful description is that this is (usually) the
8094 * child that has the same filename as @bs.)
8095 *
8096 * Drivers do not necessarily have a primary child; for example quorum
8097 * does not.
8098 */
8099BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8100{
8101 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008102 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008103
8104 QLIST_FOREACH(c, &bs->children, next) {
8105 if (c->role & BDRV_CHILD_PRIMARY) {
8106 assert(!found);
8107 found = c;
8108 }
8109 }
8110
8111 return found;
8112}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008113
8114static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8115 bool stop_on_explicit_filter)
8116{
8117 BdrvChild *c;
8118
8119 if (!bs) {
8120 return NULL;
8121 }
8122
8123 while (!(stop_on_explicit_filter && !bs->implicit)) {
8124 c = bdrv_filter_child(bs);
8125 if (!c) {
8126 /*
8127 * A filter that is embedded in a working block graph must
8128 * have a child. Assert this here so this function does
8129 * not return a filter node that is not expected by the
8130 * caller.
8131 */
8132 assert(!bs->drv || !bs->drv->is_filter);
8133 break;
8134 }
8135 bs = c->bs;
8136 }
8137 /*
8138 * Note that this treats nodes with bs->drv == NULL as not being
8139 * filters (bs->drv == NULL should be replaced by something else
8140 * anyway).
8141 * The advantage of this behavior is that this function will thus
8142 * always return a non-NULL value (given a non-NULL @bs).
8143 */
8144
8145 return bs;
8146}
8147
8148/*
8149 * Return the first BDS that has not been added implicitly or that
8150 * does not have a filtered child down the chain starting from @bs
8151 * (including @bs itself).
8152 */
8153BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8154{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008155 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008156 return bdrv_do_skip_filters(bs, true);
8157}
8158
8159/*
8160 * Return the first BDS that does not have a filtered child down the
8161 * chain starting from @bs (including @bs itself).
8162 */
8163BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8164{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008165 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008166 return bdrv_do_skip_filters(bs, false);
8167}
8168
8169/*
8170 * For a backing chain, return the first non-filter backing image of
8171 * the first non-filter image.
8172 */
8173BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8174{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008175 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008176 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8177}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008178
8179/**
8180 * Check whether [offset, offset + bytes) overlaps with the cached
8181 * block-status data region.
8182 *
8183 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8184 * which is what bdrv_bsc_is_data()'s interface needs.
8185 * Otherwise, *pnum is not touched.
8186 */
8187static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8188 int64_t offset, int64_t bytes,
8189 int64_t *pnum)
8190{
8191 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8192 bool overlaps;
8193
8194 overlaps =
8195 qatomic_read(&bsc->valid) &&
8196 ranges_overlap(offset, bytes, bsc->data_start,
8197 bsc->data_end - bsc->data_start);
8198
8199 if (overlaps && pnum) {
8200 *pnum = bsc->data_end - offset;
8201 }
8202
8203 return overlaps;
8204}
8205
8206/**
8207 * See block_int.h for this function's documentation.
8208 */
8209bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8210{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008211 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008212 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008213 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8214}
8215
8216/**
8217 * See block_int.h for this function's documentation.
8218 */
8219void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8220 int64_t offset, int64_t bytes)
8221{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008222 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008223 RCU_READ_LOCK_GUARD();
8224
8225 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8226 qatomic_set(&bs->block_status_cache->valid, false);
8227 }
8228}
8229
8230/**
8231 * See block_int.h for this function's documentation.
8232 */
8233void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8234{
8235 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8236 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008237 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008238
8239 *new_bsc = (BdrvBlockStatusCache) {
8240 .valid = true,
8241 .data_start = offset,
8242 .data_end = offset + bytes,
8243 };
8244
8245 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8246
8247 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8248 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8249 if (old_bsc) {
8250 g_free_rcu(old_bsc, rcu);
8251 }
8252}