blob: 178ece2fa9311bd785c0d19442eb40de23207f15 [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();
536
537 if (!drv->bdrv_co_create_opts) {
538 error_setg(errp, "Driver '%s' does not support image creation",
539 drv->format_name);
540 return -ENOTSUP;
541 }
542
543 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
544 if (ret < 0 && !*errp) {
545 error_setg_errno(errp, -ret, "Could not create image");
546 }
547
548 return ret;
549}
550
Max Reitzfd171462020-01-22 17:45:29 +0100551/**
552 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
553 * least the given @minimum_size.
554 *
555 * On success, return @blk's actual length.
556 * Otherwise, return -errno.
557 */
558static int64_t create_file_fallback_truncate(BlockBackend *blk,
559 int64_t minimum_size, Error **errp)
560{
561 Error *local_err = NULL;
562 int64_t size;
563 int ret;
564
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500565 GLOBAL_STATE_CODE();
566
Kevin Wolf8c6242b2020-04-24 14:54:41 +0200567 ret = blk_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
568 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100569 if (ret < 0 && ret != -ENOTSUP) {
570 error_propagate(errp, local_err);
571 return ret;
572 }
573
574 size = blk_getlength(blk);
575 if (size < 0) {
576 error_free(local_err);
577 error_setg_errno(errp, -size,
578 "Failed to inquire the new image file's length");
579 return size;
580 }
581
582 if (size < minimum_size) {
583 /* Need to grow the image, but we failed to do that */
584 error_propagate(errp, local_err);
585 return -ENOTSUP;
586 }
587
588 error_free(local_err);
589 local_err = NULL;
590
591 return size;
592}
593
594/**
595 * Helper function for bdrv_create_file_fallback(): Zero the first
596 * sector to remove any potentially pre-existing image header.
597 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200598static int coroutine_fn
599create_file_fallback_zero_first_sector(BlockBackend *blk,
600 int64_t current_size,
601 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100602{
603 int64_t bytes_to_clear;
604 int ret;
605
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500606 GLOBAL_STATE_CODE();
607
Max Reitzfd171462020-01-22 17:45:29 +0100608 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
609 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200610 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100611 if (ret < 0) {
612 error_setg_errno(errp, -ret,
613 "Failed to clear the new image's first sector");
614 return ret;
615 }
616 }
617
618 return 0;
619}
620
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200621/**
622 * Simple implementation of bdrv_co_create_opts for protocol drivers
623 * which only support creation via opening a file
624 * (usually existing raw storage device)
625 */
626int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
627 const char *filename,
628 QemuOpts *opts,
629 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100630{
631 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100632 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100633 int64_t size = 0;
634 char *buf = NULL;
635 PreallocMode prealloc;
636 Error *local_err = NULL;
637 int ret;
638
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500639 GLOBAL_STATE_CODE();
640
Max Reitzfd171462020-01-22 17:45:29 +0100641 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
642 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
643 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
644 PREALLOC_MODE_OFF, &local_err);
645 g_free(buf);
646 if (local_err) {
647 error_propagate(errp, local_err);
648 return -EINVAL;
649 }
650
651 if (prealloc != PREALLOC_MODE_OFF) {
652 error_setg(errp, "Unsupported preallocation mode '%s'",
653 PreallocMode_str(prealloc));
654 return -ENOTSUP;
655 }
656
Max Reitzeeea1fa2020-02-25 16:56:18 +0100657 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100658 qdict_put_str(options, "driver", drv->format_name);
659
Kevin Wolfbe1a7322023-01-26 18:24:31 +0100660 blk = blk_co_new_open(filename, NULL, options,
661 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
Max Reitzfd171462020-01-22 17:45:29 +0100662 if (!blk) {
663 error_prepend(errp, "Protocol driver '%s' does not support image "
664 "creation, and opening the image failed: ",
665 drv->format_name);
666 return -EINVAL;
667 }
668
669 size = create_file_fallback_truncate(blk, size, errp);
670 if (size < 0) {
671 ret = size;
672 goto out;
673 }
674
675 ret = create_file_fallback_zero_first_sector(blk, size, errp);
676 if (ret < 0) {
677 goto out;
678 }
679
680 ret = 0;
681out:
Kevin Wolfb2ab5f52023-05-04 13:57:33 +0200682 blk_co_unref(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100683 return ret;
684}
685
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500686int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
687 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200688{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100689 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200690 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100691 QDict *qdict;
692 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200693
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500694 GLOBAL_STATE_CODE();
695
Max Reitzb65a5e12015-02-05 13:58:12 -0500696 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000698 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200699 }
700
Stefano Garzarella729222a2021-03-08 17:12:32 +0100701 if (!drv->create_opts) {
702 error_setg(errp, "Driver '%s' does not support image creation",
703 drv->format_name);
704 return -ENOTSUP;
705 }
706
707 /*
708 * 'opts' contains a QemuOptsList with a combination of format and protocol
709 * default values.
710 *
711 * The format properly removes its options, but the default values remain
712 * in 'opts->list'. So if the protocol has options with the same name
713 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
714 * of the format, since for overlapping options, the format wins.
715 *
716 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
717 * only the set options, and then convert it back to QemuOpts, using the
718 * create_opts of the protocol. So the new QemuOpts, will contain only the
719 * protocol defaults.
720 */
721 qdict = qemu_opts_to_qdict(opts, NULL);
722 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
723 if (protocol_opts == NULL) {
724 ret = -EINVAL;
725 goto out;
726 }
727
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500728 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100729out:
730 qemu_opts_del(protocol_opts);
731 qobject_unref(qdict);
732 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200733}
734
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300735int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
736{
737 Error *local_err = NULL;
738 int ret;
739
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500740 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300741 assert(bs != NULL);
Kevin Wolf48aef792023-02-03 16:22:00 +0100742 assert_bdrv_graph_readable();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300743
744 if (!bs->drv) {
745 error_setg(errp, "Block node '%s' is not opened", bs->filename);
746 return -ENOMEDIUM;
747 }
748
749 if (!bs->drv->bdrv_co_delete_file) {
750 error_setg(errp, "Driver '%s' does not support image deletion",
751 bs->drv->format_name);
752 return -ENOTSUP;
753 }
754
755 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
756 if (ret < 0) {
757 error_propagate(errp, local_err);
758 }
759
760 return ret;
761}
762
Maxim Levitskya890f082020-12-17 19:09:03 +0200763void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
764{
765 Error *local_err = NULL;
766 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500767 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200768
769 if (!bs) {
770 return;
771 }
772
773 ret = bdrv_co_delete_file(bs, &local_err);
774 /*
775 * ENOTSUP will happen if the block driver doesn't support
776 * the 'bdrv_co_delete_file' interface. This is a predictable
777 * scenario and shouldn't be reported back to the user.
778 */
779 if (ret == -ENOTSUP) {
780 error_free(local_err);
781 } else if (ret < 0) {
782 error_report_err(local_err);
783 }
784}
785
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100786/**
787 * Try to get @bs's logical and physical block size.
788 * On success, store them in @bsz struct and return 0.
789 * On failure return -errno.
790 * @bs must not be empty.
791 */
792int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
793{
794 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200795 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500796 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100797
798 if (drv && drv->bdrv_probe_blocksizes) {
799 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200800 } else if (filtered) {
801 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100802 }
803
804 return -ENOTSUP;
805}
806
807/**
808 * Try to get @bs's geometry (cyls, heads, sectors).
809 * On success, store them in @geo struct and return 0.
810 * On failure return -errno.
811 * @bs must not be empty.
812 */
813int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
814{
815 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200816 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500817 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100818
819 if (drv && drv->bdrv_probe_geometry) {
820 return drv->bdrv_probe_geometry(bs, geo);
Max Reitz93393e62019-06-12 17:03:38 +0200821 } else if (filtered) {
822 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100823 }
824
825 return -ENOTSUP;
826}
827
Jim Meyeringeba25052012-05-28 09:27:54 +0200828/*
829 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800830 * Return the actual file name used upon success, otherwise NULL.
831 * This string should be freed with g_free() when not needed any longer.
832 *
833 * Note: creating a temporary file for the caller to (re)open is
834 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200835 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800836char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200837{
bellardea2384d2004-08-01 21:59:26 +0000838 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000839 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800840 g_autofree char *filename = NULL;
841
842 tmpdir = g_get_tmp_dir();
843#ifndef _WIN32
844 /*
845 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
846 *
847 * This function is used to create temporary disk images (like -snapshot),
848 * so the files can become very large. /tmp is often a tmpfs where as
849 * /var/tmp is usually on a disk, so more appropriate for disk images.
850 */
851 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530852 tmpdir = "/var/tmp";
853 }
bellardd5249392004-08-03 21:14:23 +0000854#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800855
856 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
857 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000858 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800859 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
860 filename);
861 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000862 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800863 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800864
865 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200866}
bellardea2384d2004-08-01 21:59:26 +0000867
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200868/*
869 * Detect host devices. By convention, /dev/cdrom[N] is always
870 * recognized as a host CDROM.
871 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200872static BlockDriver *find_hdev_driver(const char *filename)
873{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200874 int score_max = 0, score;
875 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500876 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200877
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100878 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200879 if (d->bdrv_probe_device) {
880 score = d->bdrv_probe_device(filename);
881 if (score > score_max) {
882 score_max = score;
883 drv = d;
884 }
885 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200886 }
887
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200888 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200889}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200890
Marc Mari88d88792016-08-12 09:27:03 -0400891static BlockDriver *bdrv_do_find_protocol(const char *protocol)
892{
893 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500894 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400895
896 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
897 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
898 return drv1;
899 }
900 }
901
902 return NULL;
903}
904
Kevin Wolf98289622013-07-10 15:47:39 +0200905BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500906 bool allow_protocol_prefix,
907 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200908{
909 BlockDriver *drv1;
910 char protocol[128];
911 int len;
912 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400913 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200914
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500915 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200916 /* TODO Drivers without bdrv_file_open must be specified explicitly */
917
Christoph Hellwig39508e72010-06-23 12:25:17 +0200918 /*
919 * XXX(hch): we really should not let host device detection
920 * override an explicit protocol specification, but moving this
921 * later breaks access to device names with colons in them.
922 * Thanks to the brain-dead persistent naming schemes on udev-
923 * based Linux systems those actually are quite common.
924 */
925 drv1 = find_hdev_driver(filename);
926 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200927 return drv1;
928 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200929
Kevin Wolf98289622013-07-10 15:47:39 +0200930 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100931 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200932 }
Kevin Wolf98289622013-07-10 15:47:39 +0200933
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000934 p = strchr(filename, ':');
935 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200936 len = p - filename;
937 if (len > sizeof(protocol) - 1)
938 len = sizeof(protocol) - 1;
939 memcpy(protocol, filename, len);
940 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400941
942 drv1 = bdrv_do_find_protocol(protocol);
943 if (drv1) {
944 return drv1;
945 }
946
947 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
948 if (block_driver_modules[i].protocol_name &&
949 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200950 int rv = block_module_load(block_driver_modules[i].library_name, errp);
951 if (rv > 0) {
952 drv1 = bdrv_do_find_protocol(protocol);
953 } else if (rv < 0) {
954 return NULL;
955 }
Marc Mari88d88792016-08-12 09:27:03 -0400956 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200957 }
958 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500959
Marc Mari88d88792016-08-12 09:27:03 -0400960 if (!drv1) {
961 error_setg(errp, "Unknown protocol '%s'", protocol);
962 }
963 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200964}
965
Markus Armbrusterc6684242014-11-20 16:27:10 +0100966/*
967 * Guess image format by probing its contents.
968 * This is not a good idea when your image is raw (CVE-2008-2004), but
969 * we do it anyway for backward compatibility.
970 *
971 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100972 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
973 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100974 * @filename is its filename.
975 *
976 * For all block drivers, call the bdrv_probe() method to get its
977 * probing score.
978 * Return the first block driver with the highest probing score.
979 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100980BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
981 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100982{
983 int score_max = 0, score;
984 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500985 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100986
987 QLIST_FOREACH(d, &bdrv_drivers, list) {
988 if (d->bdrv_probe) {
989 score = d->bdrv_probe(buf, buf_size, filename);
990 if (score > score_max) {
991 score_max = score;
992 drv = d;
993 }
994 }
995 }
996
997 return drv;
998}
999
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001000static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001001 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001002{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001003 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001004 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001005 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001006
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001007 GLOBAL_STATE_CODE();
1008
Kevin Wolf08a00552010-06-01 18:37:31 +02001009 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001010 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001011 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001012 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001013 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001014
Alberto Fariaa9262f52022-07-05 17:15:11 +01001015 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001016 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001017 error_setg_errno(errp, -ret, "Could not read image for determining its "
1018 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001019 *pdrv = NULL;
1020 return ret;
bellard83f64092006-08-01 16:21:11 +00001021 }
1022
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001023 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001024 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001025 error_setg(errp, "Could not determine image format: No compatible "
1026 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001027 *pdrv = NULL;
1028 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001029 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001030
Stefan Weilc98ac352010-07-21 21:51:51 +02001031 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001032 return 0;
bellardea2384d2004-08-01 21:59:26 +00001033}
1034
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001035/**
1036 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001037 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001038 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001039int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1040 int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001041{
1042 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001043 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01001044 assert_bdrv_graph_readable();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001045
Max Reitzd470ad42017-11-10 21:31:09 +01001046 if (!drv) {
1047 return -ENOMEDIUM;
1048 }
1049
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001050 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001051 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001052 return 0;
1053
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001054 /* query actual device if possible, otherwise just trust the hint */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001055 if (drv->bdrv_co_getlength) {
1056 int64_t length = drv->bdrv_co_getlength(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001057 if (length < 0) {
1058 return length;
1059 }
Fam Zheng7e382002013-11-06 19:48:06 +08001060 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001061 }
1062
1063 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001064
1065 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1066 return -EFBIG;
1067 }
1068
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001069 return 0;
1070}
1071
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001072/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001073 * Combines a QDict of new block driver @options with any missing options taken
1074 * from @old_options, so that leaving out an option defaults to its old value.
1075 */
1076static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1077 QDict *old_options)
1078{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001079 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001080 if (bs->drv && bs->drv->bdrv_join_options) {
1081 bs->drv->bdrv_join_options(options, old_options);
1082 } else {
1083 qdict_join(options, old_options, false);
1084 }
1085}
1086
Alberto Garcia543770b2018-09-06 12:37:09 +03001087static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1088 int open_flags,
1089 Error **errp)
1090{
1091 Error *local_err = NULL;
1092 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1093 BlockdevDetectZeroesOptions detect_zeroes =
1094 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1095 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001096 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001097 g_free(value);
1098 if (local_err) {
1099 error_propagate(errp, local_err);
1100 return detect_zeroes;
1101 }
1102
1103 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1104 !(open_flags & BDRV_O_UNMAP))
1105 {
1106 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1107 "without setting discard operation to unmap");
1108 }
1109
1110 return detect_zeroes;
1111}
1112
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001113/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001114 * Set open flags for aio engine
1115 *
1116 * Return 0 on success, -1 if the engine specified is invalid
1117 */
1118int bdrv_parse_aio(const char *mode, int *flags)
1119{
1120 if (!strcmp(mode, "threads")) {
1121 /* do nothing, default */
1122 } else if (!strcmp(mode, "native")) {
1123 *flags |= BDRV_O_NATIVE_AIO;
1124#ifdef CONFIG_LINUX_IO_URING
1125 } else if (!strcmp(mode, "io_uring")) {
1126 *flags |= BDRV_O_IO_URING;
1127#endif
1128 } else {
1129 return -1;
1130 }
1131
1132 return 0;
1133}
1134
1135/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001136 * Set open flags for a given discard mode
1137 *
1138 * Return 0 on success, -1 if the discard mode was invalid.
1139 */
1140int bdrv_parse_discard_flags(const char *mode, int *flags)
1141{
1142 *flags &= ~BDRV_O_UNMAP;
1143
1144 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1145 /* do nothing */
1146 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1147 *flags |= BDRV_O_UNMAP;
1148 } else {
1149 return -1;
1150 }
1151
1152 return 0;
1153}
1154
1155/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001156 * Set open flags for a given cache mode
1157 *
1158 * Return 0 on success, -1 if the cache mode was invalid.
1159 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001160int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001161{
1162 *flags &= ~BDRV_O_CACHE_MASK;
1163
1164 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001165 *writethrough = false;
1166 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001167 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001168 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001169 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001170 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001171 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001172 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001173 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001174 *flags |= BDRV_O_NO_FLUSH;
1175 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001176 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001177 } else {
1178 return -1;
1179 }
1180
1181 return 0;
1182}
1183
Kevin Wolfb5411552017-01-17 15:56:16 +01001184static char *bdrv_child_get_parent_desc(BdrvChild *c)
1185{
1186 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001187 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001188}
1189
Kevin Wolf20018e12016-05-23 18:46:59 +02001190static void bdrv_child_cb_drained_begin(BdrvChild *child)
1191{
1192 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001193 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001194}
1195
Kevin Wolf89bd0302018-03-22 14:11:20 +01001196static bool bdrv_child_cb_drained_poll(BdrvChild *child)
1197{
1198 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001199 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001200}
1201
Kevin Wolf2f65df62022-11-18 18:40:59 +01001202static void bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001203{
1204 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001205 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001206}
1207
Kevin Wolf38701b62017-05-04 18:52:39 +02001208static int bdrv_child_cb_inactivate(BdrvChild *child)
1209{
1210 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001211 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001212 assert(bs->open_flags & BDRV_O_INACTIVE);
1213 return 0;
1214}
1215
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001216static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1217 GHashTable *visited, Transaction *tran,
1218 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001219{
1220 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001221 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001222}
1223
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001224/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001225 * Returns the options and flags that a temporary snapshot should get, based on
1226 * the originally requested flags (the originally requested image will have
1227 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001228 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001229static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1230 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001231{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001232 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001233 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1234
1235 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001236 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1237 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001238
Kevin Wolf3f486862019-04-04 17:04:43 +02001239 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001240 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001241 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001242
Kevin Wolf41869042016-06-16 12:59:30 +02001243 /* aio=native doesn't work for cache.direct=off, so disable it for the
1244 * temporary snapshot */
1245 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001246}
1247
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001248static void bdrv_backing_attach(BdrvChild *c)
1249{
1250 BlockDriverState *parent = c->opaque;
1251 BlockDriverState *backing_hd = c->bs;
1252
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001253 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001254 assert(!parent->backing_blocker);
1255 error_setg(&parent->backing_blocker,
1256 "node is used as backing hd of '%s'",
1257 bdrv_get_device_or_node_name(parent));
1258
Max Reitzf30c66b2019-02-01 20:29:05 +01001259 bdrv_refresh_filename(backing_hd);
1260
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001261 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001262
1263 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1264 /* Otherwise we won't be able to commit or stream */
1265 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1266 parent->backing_blocker);
1267 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1268 parent->backing_blocker);
1269 /*
1270 * We do backup in 3 ways:
1271 * 1. drive backup
1272 * The target bs is new opened, and the source is top BDS
1273 * 2. blockdev backup
1274 * Both the source and the target are top BDSes.
1275 * 3. internal backup(used for block replication)
1276 * Both the source and the target are backing file
1277 *
1278 * In case 1 and 2, neither the source nor the target is the backing file.
1279 * In case 3, we will block the top BDS, so there is only one block job
1280 * for the top BDS and its backing chain.
1281 */
1282 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1283 parent->backing_blocker);
1284 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1285 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001286}
Kevin Wolfd736f112017-12-18 16:05:48 +01001287
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001288static void bdrv_backing_detach(BdrvChild *c)
1289{
1290 BlockDriverState *parent = c->opaque;
1291
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001292 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001293 assert(parent->backing_blocker);
1294 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1295 error_free(parent->backing_blocker);
1296 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001297}
Kevin Wolfd736f112017-12-18 16:05:48 +01001298
Kevin Wolf6858eba2017-06-29 19:32:21 +02001299static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1300 const char *filename, Error **errp)
1301{
1302 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001303 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001304 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001305 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001306
Alberto Garciae94d3db2018-11-12 16:00:34 +02001307 if (read_only) {
1308 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001309 if (ret < 0) {
1310 return ret;
1311 }
1312 }
1313
Kevin Wolf6858eba2017-06-29 19:32:21 +02001314 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001315 base->drv ? base->drv->format_name : "",
1316 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001317 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001318 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001319 }
1320
Alberto Garciae94d3db2018-11-12 16:00:34 +02001321 if (read_only) {
1322 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001323 }
1324
Kevin Wolf6858eba2017-06-29 19:32:21 +02001325 return ret;
1326}
1327
Max Reitzfae8bd32020-05-13 13:05:20 +02001328/*
1329 * Returns the options and flags that a generic child of a BDS should
1330 * get, based on the given options and flags for the parent BDS.
1331 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001332static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1333 int *child_flags, QDict *child_options,
1334 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001335{
1336 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001337 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001338
1339 /*
1340 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1341 * Generally, the question to answer is: Should this child be
1342 * format-probed by default?
1343 */
1344
1345 /*
1346 * Pure and non-filtered data children of non-format nodes should
1347 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1348 * set). This only affects a very limited set of drivers (namely
1349 * quorum and blkverify when this comment was written).
1350 * Force-clear BDRV_O_PROTOCOL then.
1351 */
1352 if (!parent_is_format &&
1353 (role & BDRV_CHILD_DATA) &&
1354 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1355 {
1356 flags &= ~BDRV_O_PROTOCOL;
1357 }
1358
1359 /*
1360 * All children of format nodes (except for COW children) and all
1361 * metadata children in general should never be format-probed.
1362 * Force-set BDRV_O_PROTOCOL then.
1363 */
1364 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1365 (role & BDRV_CHILD_METADATA))
1366 {
1367 flags |= BDRV_O_PROTOCOL;
1368 }
1369
1370 /*
1371 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1372 * the parent.
1373 */
1374 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1375 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1376 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1377
1378 if (role & BDRV_CHILD_COW) {
1379 /* backing files are opened read-only by default */
1380 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1381 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1382 } else {
1383 /* Inherit the read-only option from the parent if it's not set */
1384 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1385 qdict_copy_default(child_options, parent_options,
1386 BDRV_OPT_AUTO_READ_ONLY);
1387 }
1388
1389 /*
1390 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1391 * can default to enable it on lower layers regardless of the
1392 * parent option.
1393 */
1394 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1395
1396 /* Clear flags that only apply to the top layer */
1397 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1398
1399 if (role & BDRV_CHILD_METADATA) {
1400 flags &= ~BDRV_O_NO_IO;
1401 }
1402 if (role & BDRV_CHILD_COW) {
1403 flags &= ~BDRV_O_TEMPORARY;
1404 }
1405
1406 *child_flags = flags;
1407}
1408
Kevin Wolf303de472022-12-07 14:18:35 +01001409static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
Max Reitzca2f1232020-05-13 13:05:22 +02001410{
1411 BlockDriverState *bs = child->opaque;
1412
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001413 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001414 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001415 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1416 /*
1417 * Here we handle filters and block/raw-format.c when it behave like
1418 * filter. They generally have a single PRIMARY child, which is also the
1419 * FILTERED child, and that they may have multiple more children, which
1420 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1421 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1422 * into bs->backing on exceptional cases; and bs->backing will be
1423 * nothing else.
1424 */
1425 assert(!(child->role & BDRV_CHILD_COW));
1426 if (child->role & BDRV_CHILD_PRIMARY) {
1427 assert(child->role & BDRV_CHILD_FILTERED);
1428 assert(!bs->backing);
1429 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001430
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001431 if (bs->drv->filtered_child_is_backing) {
1432 bs->backing = child;
1433 } else {
1434 bs->file = child;
1435 }
1436 } else {
1437 assert(!(child->role & BDRV_CHILD_FILTERED));
1438 }
1439 } else if (child->role & BDRV_CHILD_COW) {
1440 assert(bs->drv->supports_backing);
1441 assert(!(child->role & BDRV_CHILD_PRIMARY));
1442 assert(!bs->backing);
1443 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001444 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001445 } else if (child->role & BDRV_CHILD_PRIMARY) {
1446 assert(!bs->file);
1447 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001448 }
Max Reitzca2f1232020-05-13 13:05:22 +02001449}
1450
Kevin Wolf303de472022-12-07 14:18:35 +01001451static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
Max Reitz48e08282020-05-13 13:05:23 +02001452{
1453 BlockDriverState *bs = child->opaque;
1454
1455 if (child->role & BDRV_CHILD_COW) {
1456 bdrv_backing_detach(child);
1457 }
1458
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001459 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001460 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001461 if (child == bs->backing) {
1462 assert(child != bs->file);
1463 bs->backing = NULL;
1464 } else if (child == bs->file) {
1465 bs->file = NULL;
1466 }
Max Reitz48e08282020-05-13 13:05:23 +02001467}
1468
Max Reitz43483552020-05-13 13:05:24 +02001469static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1470 const char *filename, Error **errp)
1471{
1472 if (c->role & BDRV_CHILD_COW) {
1473 return bdrv_backing_update_filename(c, base, filename, errp);
1474 }
1475 return 0;
1476}
1477
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001478AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001479{
1480 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001481 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001482
1483 return bdrv_get_aio_context(bs);
1484}
1485
Max Reitz43483552020-05-13 13:05:24 +02001486const BdrvChildClass child_of_bds = {
1487 .parent_is_bds = true,
1488 .get_parent_desc = bdrv_child_get_parent_desc,
1489 .inherit_options = bdrv_inherited_options,
1490 .drained_begin = bdrv_child_cb_drained_begin,
1491 .drained_poll = bdrv_child_cb_drained_poll,
1492 .drained_end = bdrv_child_cb_drained_end,
1493 .attach = bdrv_child_cb_attach,
1494 .detach = bdrv_child_cb_detach,
1495 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001496 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001497 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001498 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001499};
1500
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001501AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1502{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001503 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001504 return c->klass->get_parent_aio_context(c);
1505}
1506
Kevin Wolf7b272452012-11-12 17:05:39 +01001507static int bdrv_open_flags(BlockDriverState *bs, int flags)
1508{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001509 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001510 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001511
1512 /*
1513 * Clear flags that are internal to the block layer before opening the
1514 * image.
1515 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001516 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001517
Kevin Wolf7b272452012-11-12 17:05:39 +01001518 return open_flags;
1519}
1520
Kevin Wolf91a097e2015-05-08 17:49:53 +02001521static void update_flags_from_options(int *flags, QemuOpts *opts)
1522{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001523 GLOBAL_STATE_CODE();
1524
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001525 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001526
Alberto Garcia57f9db92018-09-06 12:37:06 +03001527 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001528 *flags |= BDRV_O_NO_FLUSH;
1529 }
1530
Alberto Garcia57f9db92018-09-06 12:37:06 +03001531 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001532 *flags |= BDRV_O_NOCACHE;
1533 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001534
Alberto Garcia57f9db92018-09-06 12:37:06 +03001535 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001536 *flags |= BDRV_O_RDWR;
1537 }
1538
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001539 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1540 *flags |= BDRV_O_AUTO_RDONLY;
1541 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001542}
1543
1544static void update_options_from_flags(QDict *options, int flags)
1545{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001546 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001547 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001548 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001549 }
1550 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001551 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1552 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001553 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001554 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001555 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001556 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001557 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1558 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1559 flags & BDRV_O_AUTO_RDONLY);
1560 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001561}
1562
Kevin Wolf636ea372014-01-24 14:11:52 +01001563static void bdrv_assign_node_name(BlockDriverState *bs,
1564 const char *node_name,
1565 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001566{
Jeff Cody15489c72015-10-12 19:36:50 -04001567 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001568 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001569
Jeff Cody15489c72015-10-12 19:36:50 -04001570 if (!node_name) {
1571 node_name = gen_node_name = id_generate(ID_BLOCK);
1572 } else if (!id_wellformed(node_name)) {
1573 /*
1574 * Check for empty string or invalid characters, but not if it is
1575 * generated (generated names use characters not available to the user)
1576 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001577 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001578 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001579 }
1580
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001581 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001582 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001583 error_setg(errp, "node-name=%s is conflicting with a device id",
1584 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001585 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001586 }
1587
Benoît Canet6913c0c2014-01-23 21:31:33 +01001588 /* takes care of avoiding duplicates node names */
1589 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001590 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001591 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001592 }
1593
Kevin Wolf824808d2018-07-04 13:28:29 +02001594 /* Make sure that the node name isn't truncated */
1595 if (strlen(node_name) >= sizeof(bs->node_name)) {
1596 error_setg(errp, "Node name too long");
1597 goto out;
1598 }
1599
Benoît Canet6913c0c2014-01-23 21:31:33 +01001600 /* copy node name into the bs and insert it into the graph list */
1601 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1602 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001603out:
1604 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001605}
1606
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001607/*
1608 * The caller must always hold @bs AioContext lock, because this function calls
1609 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1610 * context.
1611 */
Kevin Wolf1a30b0f2023-05-04 13:57:38 +02001612static int no_coroutine_fn GRAPH_UNLOCKED
1613bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1614 QDict *options, int open_flags, Error **errp)
Kevin Wolf01a56502017-01-18 15:51:56 +01001615{
1616 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001617 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001618 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001619
1620 bdrv_assign_node_name(bs, node_name, &local_err);
1621 if (local_err) {
1622 error_propagate(errp, local_err);
1623 return -EINVAL;
1624 }
1625
1626 bs->drv = drv;
1627 bs->opaque = g_malloc0(drv->instance_size);
1628
1629 if (drv->bdrv_file_open) {
1630 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1631 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001632 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001633 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001634 } else {
1635 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001636 }
1637
1638 if (ret < 0) {
1639 if (local_err) {
1640 error_propagate(errp, local_err);
1641 } else if (bs->filename[0]) {
1642 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1643 } else {
1644 error_setg_errno(errp, -ret, "Could not open image");
1645 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001646 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001647 }
1648
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001649 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1650 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1651
1652 /*
1653 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1654 * drivers that pass read/write requests through to a child the trouble of
1655 * declaring support explicitly.
1656 *
1657 * Drivers must not propagate this flag accidentally when they initiate I/O
1658 * to a bounce buffer. That case should be rare though.
1659 */
1660 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1661 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1662
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01001663 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf01a56502017-01-18 15:51:56 +01001664 if (ret < 0) {
1665 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001666 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001667 }
1668
Kevin Wolfe19b1572023-05-04 13:57:50 +02001669 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001670 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001671 bdrv_graph_rdunlock_main_loop();
1672
Kevin Wolf01a56502017-01-18 15:51:56 +01001673 if (local_err) {
1674 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001675 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001676 }
1677
1678 assert(bdrv_opt_mem_align(bs) != 0);
1679 assert(bdrv_min_mem_align(bs) != 0);
1680 assert(is_power_of_2(bs->bl.request_alignment));
1681
Kevin Wolf0f122642018-03-28 18:29:18 +02001682 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001683 if (drv->bdrv_drain_begin) {
1684 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001685 }
1686 }
1687
Kevin Wolf01a56502017-01-18 15:51:56 +01001688 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001689open_failed:
1690 bs->drv = NULL;
1691 if (bs->file != NULL) {
1692 bdrv_unref_child(bs, bs->file);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001693 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001694 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001695 g_free(bs->opaque);
1696 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001697 return ret;
1698}
1699
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001700/*
1701 * Create and open a block node.
1702 *
1703 * @options is a QDict of options to pass to the block drivers, or NULL for an
1704 * empty set of options. The reference to the QDict belongs to the block layer
1705 * after the call (even on failure), so if the caller intends to reuse the
1706 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1707 */
1708BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1709 const char *node_name,
1710 QDict *options, int flags,
1711 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001712{
1713 BlockDriverState *bs;
1714 int ret;
1715
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001716 GLOBAL_STATE_CODE();
1717
Kevin Wolf680c7f92017-01-18 17:16:41 +01001718 bs = bdrv_new();
1719 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001720 bs->options = options ?: qdict_new();
1721 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001722 bs->opaque = NULL;
1723
1724 update_options_from_flags(bs->options, flags);
1725
1726 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1727 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001728 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001729 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001730 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001731 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001732 bdrv_unref(bs);
1733 return NULL;
1734 }
1735
1736 return bs;
1737}
1738
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001739/* Create and open a block node. */
1740BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1741 int flags, Error **errp)
1742{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001743 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001744 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1745}
1746
Kevin Wolfc5f30142016-10-06 11:33:17 +02001747QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001748 .name = "bdrv_common",
1749 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1750 .desc = {
1751 {
1752 .name = "node-name",
1753 .type = QEMU_OPT_STRING,
1754 .help = "Node name of the block device node",
1755 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001756 {
1757 .name = "driver",
1758 .type = QEMU_OPT_STRING,
1759 .help = "Block driver to use for the node",
1760 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001761 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001762 .name = BDRV_OPT_CACHE_DIRECT,
1763 .type = QEMU_OPT_BOOL,
1764 .help = "Bypass software writeback cache on the host",
1765 },
1766 {
1767 .name = BDRV_OPT_CACHE_NO_FLUSH,
1768 .type = QEMU_OPT_BOOL,
1769 .help = "Ignore flush requests",
1770 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001771 {
1772 .name = BDRV_OPT_READ_ONLY,
1773 .type = QEMU_OPT_BOOL,
1774 .help = "Node is opened in read-only mode",
1775 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001776 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001777 .name = BDRV_OPT_AUTO_READ_ONLY,
1778 .type = QEMU_OPT_BOOL,
1779 .help = "Node can become read-only if opening read-write fails",
1780 },
1781 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001782 .name = "detect-zeroes",
1783 .type = QEMU_OPT_STRING,
1784 .help = "try to optimize zero writes (off, on, unmap)",
1785 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001786 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001787 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001788 .type = QEMU_OPT_STRING,
1789 .help = "discard operation (ignore/off, unmap/on)",
1790 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001791 {
1792 .name = BDRV_OPT_FORCE_SHARE,
1793 .type = QEMU_OPT_BOOL,
1794 .help = "always accept other writers (default: off)",
1795 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001796 { /* end of list */ }
1797 },
1798};
1799
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001800QemuOptsList bdrv_create_opts_simple = {
1801 .name = "simple-create-opts",
1802 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001803 .desc = {
1804 {
1805 .name = BLOCK_OPT_SIZE,
1806 .type = QEMU_OPT_SIZE,
1807 .help = "Virtual disk size"
1808 },
1809 {
1810 .name = BLOCK_OPT_PREALLOC,
1811 .type = QEMU_OPT_STRING,
1812 .help = "Preallocation mode (allowed values: off)"
1813 },
1814 { /* end of list */ }
1815 }
1816};
1817
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001818/*
Kevin Wolf57915332010-04-14 15:24:50 +02001819 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001820 *
1821 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001822 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001823static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001824 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001825{
1826 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001827 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001828 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001829 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001830 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001831 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001832 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001833 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001834 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001835
Paolo Bonzini64058752012-05-08 16:51:49 +02001836 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001837 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001838 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001839
Kevin Wolf62392eb2015-04-24 16:38:02 +02001840 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001841 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001842 ret = -EINVAL;
1843 goto fail_opts;
1844 }
1845
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001846 update_flags_from_options(&bs->open_flags, opts);
1847
Kevin Wolf62392eb2015-04-24 16:38:02 +02001848 driver_name = qemu_opt_get(opts, "driver");
1849 drv = bdrv_find_format(driver_name);
1850 assert(drv != NULL);
1851
Fam Zheng5a9347c2017-05-03 00:35:37 +08001852 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1853
1854 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1855 error_setg(errp,
1856 BDRV_OPT_FORCE_SHARE
1857 "=on can only be used with read-only images");
1858 ret = -EINVAL;
1859 goto fail_opts;
1860 }
1861
Kevin Wolf45673672013-04-22 17:48:40 +02001862 if (file != NULL) {
Max Reitzf30c66b2019-02-01 20:29:05 +01001863 bdrv_refresh_filename(blk_bs(file));
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001864 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001865 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001866 /*
1867 * Caution: while qdict_get_try_str() is fine, getting
1868 * non-string types would require more care. When @options
1869 * come from -blockdev or blockdev_add, its members are typed
1870 * according to the QAPI schema, but when they come from
1871 * -drive, they're all QString.
1872 */
Kevin Wolf45673672013-04-22 17:48:40 +02001873 filename = qdict_get_try_str(options, "filename");
1874 }
1875
Max Reitz4a008242017-04-13 18:06:24 +02001876 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001877 error_setg(errp, "The '%s' block driver requires a file name",
1878 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001879 ret = -EINVAL;
1880 goto fail_opts;
1881 }
1882
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001883 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1884 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001885
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001886 ro = bdrv_is_read_only(bs);
1887
1888 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1889 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf8be25de2019-01-22 13:15:31 +01001890 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
1891 } else {
1892 ret = -ENOTSUP;
1893 }
1894 if (ret < 0) {
1895 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001896 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001897 ? "Driver '%s' can only be used for read-only devices"
1898 : "Driver '%s' is not whitelisted",
1899 drv->format_name);
1900 goto fail_opts;
1901 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001902 }
Kevin Wolf57915332010-04-14 15:24:50 +02001903
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001904 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001905 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001906
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001907 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001908 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001909 bdrv_enable_copy_on_read(bs);
1910 } else {
1911 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001912 ret = -EINVAL;
1913 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001914 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001915 }
1916
Alberto Garcia415bbca2018-10-03 13:23:13 +03001917 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001918 if (discard != NULL) {
1919 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1920 error_setg(errp, "Invalid discard option");
1921 ret = -EINVAL;
1922 goto fail_opts;
1923 }
1924 }
1925
Alberto Garcia543770b2018-09-06 12:37:09 +03001926 bs->detect_zeroes =
1927 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1928 if (local_err) {
1929 error_propagate(errp, local_err);
1930 ret = -EINVAL;
1931 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001932 }
1933
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001934 if (filename != NULL) {
1935 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1936 } else {
1937 bs->filename[0] = '\0';
1938 }
Max Reitz91af7012014-07-18 20:24:56 +02001939 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001940
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001941 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001942 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001943 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001944
Kevin Wolf01a56502017-01-18 15:51:56 +01001945 assert(!drv->bdrv_file_open || file == NULL);
1946 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001947 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001948 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001949 }
1950
Kevin Wolf18edf282015-04-07 17:12:56 +02001951 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001952 return 0;
1953
Kevin Wolf18edf282015-04-07 17:12:56 +02001954fail_opts:
1955 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001956 return ret;
1957}
1958
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001959static QDict *parse_json_filename(const char *filename, Error **errp)
1960{
1961 QObject *options_obj;
1962 QDict *options;
1963 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001964 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001965
1966 ret = strstart(filename, "json:", &filename);
1967 assert(ret);
1968
Markus Armbruster5577fff2017-02-28 22:26:59 +01001969 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001970 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001971 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001972 return NULL;
1973 }
1974
Max Reitz7dc847e2018-02-24 16:40:29 +01001975 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01001976 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001977 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001978 error_setg(errp, "Invalid JSON object given");
1979 return NULL;
1980 }
1981
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001982 qdict_flatten(options);
1983
1984 return options;
1985}
1986
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001987static void parse_json_protocol(QDict *options, const char **pfilename,
1988 Error **errp)
1989{
1990 QDict *json_options;
1991 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001992 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01001993
1994 /* Parse json: pseudo-protocol */
1995 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
1996 return;
1997 }
1998
1999 json_options = parse_json_filename(*pfilename, &local_err);
2000 if (local_err) {
2001 error_propagate(errp, local_err);
2002 return;
2003 }
2004
2005 /* Options given in the filename have lower priority than options
2006 * specified directly */
2007 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002008 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002009 *pfilename = NULL;
2010}
2011
Kevin Wolf57915332010-04-14 15:24:50 +02002012/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002013 * Fills in default options for opening images and converts the legacy
2014 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002015 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2016 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002017 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002018static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02002019 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002020{
2021 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002022 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002023 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002024 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002025 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002026
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002027 GLOBAL_STATE_CODE();
2028
Markus Armbruster129c7d12017-03-30 19:43:12 +02002029 /*
2030 * Caution: while qdict_get_try_str() is fine, getting non-string
2031 * types would require more care. When @options come from
2032 * -blockdev or blockdev_add, its members are typed according to
2033 * the QAPI schema, but when they come from -drive, they're all
2034 * QString.
2035 */
Max Reitz53a29512015-03-19 14:53:16 -04002036 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002037 if (drvname) {
2038 drv = bdrv_find_format(drvname);
2039 if (!drv) {
2040 error_setg(errp, "Unknown driver '%s'", drvname);
2041 return -ENOENT;
2042 }
2043 /* If the user has explicitly specified the driver, this choice should
2044 * override the BDRV_O_PROTOCOL flag */
2045 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002046 }
2047
2048 if (protocol) {
2049 *flags |= BDRV_O_PROTOCOL;
2050 } else {
2051 *flags &= ~BDRV_O_PROTOCOL;
2052 }
2053
Kevin Wolf91a097e2015-05-08 17:49:53 +02002054 /* Translate cache options from flags into options */
2055 update_options_from_flags(*options, *flags);
2056
Kevin Wolff54120f2014-05-26 11:09:59 +02002057 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002058 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002059 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002060 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002061 parse_filename = true;
2062 } else {
2063 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2064 "the same time");
2065 return -EINVAL;
2066 }
2067 }
2068
2069 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002070 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002071 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002072
Max Reitz053e1572015-08-26 19:47:51 +02002073 if (!drvname && protocol) {
2074 if (filename) {
2075 drv = bdrv_find_protocol(filename, parse_filename, errp);
2076 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002077 return -EINVAL;
2078 }
Max Reitz053e1572015-08-26 19:47:51 +02002079
2080 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002081 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002082 } else {
2083 error_setg(errp, "Must specify either driver or file");
2084 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002085 }
2086 }
2087
Kevin Wolf17b005f2014-05-27 10:50:29 +02002088 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002089
2090 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002091 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002092 drv->bdrv_parse_filename(filename, *options, &local_err);
2093 if (local_err) {
2094 error_propagate(errp, local_err);
2095 return -EINVAL;
2096 }
2097
2098 if (!drv->bdrv_needs_filename) {
2099 qdict_del(*options, "filename");
2100 }
2101 }
2102
2103 return 0;
2104}
2105
Kevin Wolf148eb132017-09-14 14:32:04 +02002106typedef struct BlockReopenQueueEntry {
2107 bool prepared;
Kevin Wolf69b736e2019-03-05 17:18:22 +01002108 bool perms_checked;
Kevin Wolf148eb132017-09-14 14:32:04 +02002109 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002110 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002111} BlockReopenQueueEntry;
2112
2113/*
2114 * Return the flags that @bs will have after the reopens in @q have
2115 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2116 * return the current flags.
2117 */
2118static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2119{
2120 BlockReopenQueueEntry *entry;
2121
2122 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002123 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002124 if (entry->state.bs == bs) {
2125 return entry->state.flags;
2126 }
2127 }
2128 }
2129
2130 return bs->open_flags;
2131}
2132
2133/* Returns whether the image file can be written to after the reopen queue @q
2134 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002135static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2136 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002137{
2138 int flags = bdrv_reopen_get_flags(q, bs);
2139
2140 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2141}
2142
Max Reitzcc022142018-06-06 21:37:00 +02002143/*
2144 * Return whether the BDS can be written to. This is not necessarily
2145 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2146 * be written to but do not count as read-only images.
2147 */
2148bool bdrv_is_writable(BlockDriverState *bs)
2149{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002150 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002151 return bdrv_is_writable_after_reopen(bs, NULL);
2152}
2153
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002154static char *bdrv_child_user_desc(BdrvChild *c)
2155{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002156 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002157 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002158}
2159
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002160/*
2161 * Check that @a allows everything that @b needs. @a and @b must reference same
2162 * child node.
2163 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002164static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2165{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002166 const char *child_bs_name;
2167 g_autofree char *a_user = NULL;
2168 g_autofree char *b_user = NULL;
2169 g_autofree char *perms = NULL;
2170
2171 assert(a->bs);
2172 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002173 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002174
2175 if ((b->perm & a->shared_perm) == b->perm) {
2176 return true;
2177 }
2178
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002179 child_bs_name = bdrv_get_node_name(b->bs);
2180 a_user = bdrv_child_user_desc(a);
2181 b_user = bdrv_child_user_desc(b);
2182 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2183
2184 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2185 "both required by %s (uses node '%s' as '%s' child) and "
2186 "unshared by %s (uses node '%s' as '%s' child).",
2187 child_bs_name, perms,
2188 b_user, child_bs_name, b->name,
2189 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002190
2191 return false;
2192}
2193
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002194static bool bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002195{
2196 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002197 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002198
2199 /*
2200 * During the loop we'll look at each pair twice. That's correct because
2201 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2202 * directions.
2203 */
2204 QLIST_FOREACH(a, &bs->parents, next_parent) {
2205 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002206 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002207 continue;
2208 }
2209
2210 if (!bdrv_a_allow_b(a, b, errp)) {
2211 return true;
2212 }
2213 }
2214 }
2215
2216 return false;
2217}
2218
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002219static void bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
Max Reitze5d8a402020-05-13 13:05:44 +02002220 BdrvChild *c, BdrvChildRole role,
2221 BlockReopenQueue *reopen_queue,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002222 uint64_t parent_perm, uint64_t parent_shared,
2223 uint64_t *nperm, uint64_t *nshared)
2224{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002225 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002226 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002227 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002228 parent_perm, parent_shared,
2229 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002230 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002231 if (child_bs && child_bs->force_share) {
2232 *nshared = BLK_PERM_ALL;
2233 }
2234}
2235
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002236/*
2237 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2238 * nodes that are already in the @list, of course) so that final list is
2239 * topologically sorted. Return the result (GSList @list object is updated, so
2240 * don't use old reference after function call).
2241 *
2242 * On function start @list must be already topologically sorted and for any node
2243 * in the @list the whole subtree of the node must be in the @list as well. The
2244 * simplest way to satisfy this criteria: use only result of
2245 * bdrv_topological_dfs() or NULL as @list parameter.
2246 */
2247static GSList *bdrv_topological_dfs(GSList *list, GHashTable *found,
2248 BlockDriverState *bs)
2249{
2250 BdrvChild *child;
2251 g_autoptr(GHashTable) local_found = NULL;
2252
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002253 GLOBAL_STATE_CODE();
2254
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002255 if (!found) {
2256 assert(!list);
2257 found = local_found = g_hash_table_new(NULL, NULL);
2258 }
2259
2260 if (g_hash_table_contains(found, bs)) {
2261 return list;
2262 }
2263 g_hash_table_add(found, bs);
2264
2265 QLIST_FOREACH(child, &bs->children, next) {
2266 list = bdrv_topological_dfs(list, found, child->bs);
2267 }
2268
2269 return g_slist_prepend(list, bs);
2270}
2271
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002272typedef struct BdrvChildSetPermState {
2273 BdrvChild *child;
2274 uint64_t old_perm;
2275 uint64_t old_shared_perm;
2276} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002277
2278static void bdrv_child_set_perm_abort(void *opaque)
2279{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002280 BdrvChildSetPermState *s = opaque;
2281
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002282 GLOBAL_STATE_CODE();
2283
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002284 s->child->perm = s->old_perm;
2285 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002286}
2287
2288static TransactionActionDrv bdrv_child_set_pem_drv = {
2289 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002290 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002291};
2292
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002293static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2294 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002295{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002296 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002297 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002298
2299 *s = (BdrvChildSetPermState) {
2300 .child = c,
2301 .old_perm = c->perm,
2302 .old_shared_perm = c->shared_perm,
2303 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002304
2305 c->perm = perm;
2306 c->shared_perm = shared;
2307
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002308 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002309}
2310
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002311static void bdrv_drv_set_perm_commit(void *opaque)
2312{
2313 BlockDriverState *bs = opaque;
2314 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002315 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002316
2317 if (bs->drv->bdrv_set_perm) {
2318 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2319 &cumulative_shared_perms);
2320 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2321 }
2322}
2323
2324static void bdrv_drv_set_perm_abort(void *opaque)
2325{
2326 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002327 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002328
2329 if (bs->drv->bdrv_abort_perm_update) {
2330 bs->drv->bdrv_abort_perm_update(bs);
2331 }
2332}
2333
2334TransactionActionDrv bdrv_drv_set_perm_drv = {
2335 .abort = bdrv_drv_set_perm_abort,
2336 .commit = bdrv_drv_set_perm_commit,
2337};
2338
2339static int bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm,
2340 uint64_t shared_perm, Transaction *tran,
2341 Error **errp)
2342{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002343 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002344 if (!bs->drv) {
2345 return 0;
2346 }
2347
2348 if (bs->drv->bdrv_check_perm) {
2349 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2350 if (ret < 0) {
2351 return ret;
2352 }
2353 }
2354
2355 if (tran) {
2356 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2357 }
2358
2359 return 0;
2360}
2361
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002362typedef struct BdrvReplaceChildState {
2363 BdrvChild *child;
2364 BlockDriverState *old_bs;
2365} BdrvReplaceChildState;
2366
2367static void bdrv_replace_child_commit(void *opaque)
2368{
2369 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002370 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002371
2372 bdrv_unref(s->old_bs);
2373}
2374
2375static void bdrv_replace_child_abort(void *opaque)
2376{
2377 BdrvReplaceChildState *s = opaque;
2378 BlockDriverState *new_bs = s->child->bs;
2379
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002380 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002381 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002382 if (!s->child->bs) {
2383 /*
2384 * The parents were undrained when removing old_bs from the child. New
2385 * requests can't have been made, though, because the child was empty.
2386 *
2387 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2388 * undraining the parent in the first place. Once this is done, having
2389 * new_bs drained when calling bdrv_replace_child_tran() is not a
2390 * requirement any more.
2391 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002392 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002393 assert(!bdrv_parent_drained_poll_single(s->child));
2394 }
2395 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002396 bdrv_replace_child_noperm(s->child, s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002397 bdrv_unref(new_bs);
2398}
2399
2400static TransactionActionDrv bdrv_replace_child_drv = {
2401 .commit = bdrv_replace_child_commit,
2402 .abort = bdrv_replace_child_abort,
2403 .clean = g_free,
2404};
2405
2406/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002407 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002408 *
2409 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002410 *
Kevin Wolf23987472022-11-18 18:41:09 +01002411 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2412 * kept drained until the transaction is completed.
2413 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002414 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002415 */
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002416static void bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002417 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002418{
2419 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002420
2421 assert(child->quiesced_parent);
2422 assert(!new_bs || new_bs->quiesce_counter);
2423
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002424 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002425 .child = child,
2426 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002427 };
2428 tran_add(tran, &bdrv_replace_child_drv, s);
2429
2430 if (new_bs) {
2431 bdrv_ref(new_bs);
2432 }
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002433 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002434 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002435}
2436
Kevin Wolf33a610c2016-12-15 13:04:20 +01002437/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002438 * Refresh permissions in @bs subtree. The function is intended to be called
2439 * after some graph modification that was done without permission update.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002440 */
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002441static int bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2442 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002443{
2444 BlockDriver *drv = bs->drv;
2445 BdrvChild *c;
2446 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002447 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002448 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002449
2450 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002451
2452 /* Write permissions never work with read-only images */
2453 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002454 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002455 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002456 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2457 error_setg(errp, "Block node is read-only");
2458 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002459 error_setg(errp, "Read-only block node '%s' cannot support "
2460 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002461 }
2462
Kevin Wolf33a610c2016-12-15 13:04:20 +01002463 return -EPERM;
2464 }
2465
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002466 /*
2467 * Unaligned requests will automatically be aligned to bl.request_alignment
2468 * and without RESIZE we can't extend requests to write to space beyond the
2469 * end of the image, so it's required that the image size is aligned.
2470 */
2471 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2472 !(cumulative_perms & BLK_PERM_RESIZE))
2473 {
2474 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2475 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2476 "Image size is not a multiple of request "
2477 "alignment");
2478 return -EPERM;
2479 }
2480 }
2481
Kevin Wolf33a610c2016-12-15 13:04:20 +01002482 /* Check this node */
2483 if (!drv) {
2484 return 0;
2485 }
2486
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002487 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002488 errp);
2489 if (ret < 0) {
2490 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002491 }
2492
Kevin Wolf78e421c2016-12-20 23:25:12 +01002493 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002494 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002495 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002496 return 0;
2497 }
2498
2499 /* Check all children */
2500 QLIST_FOREACH(c, &bs->children, next) {
2501 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002502
Max Reitze5d8a402020-05-13 13:05:44 +02002503 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002504 cumulative_perms, cumulative_shared_perms,
2505 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002506 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002507 }
2508
2509 return 0;
2510}
2511
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002512/*
2513 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2514 * a topologically sorted subgraph.
2515 */
2516static int bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q,
2517 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002518{
2519 int ret;
2520 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002521 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002522
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002523 for ( ; list; list = list->next) {
2524 bs = list->data;
2525
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002526 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002527 return -EINVAL;
2528 }
2529
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002530 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002531 if (ret < 0) {
2532 return ret;
2533 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002534 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002535
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002536 return 0;
2537}
2538
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002539/*
2540 * @list is any list of nodes. List is completed by all subtrees and
2541 * topologically sorted. It's not a problem if some node occurs in the @list
2542 * several times.
2543 */
2544static int bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q,
2545 Transaction *tran, Error **errp)
2546{
2547 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2548 g_autoptr(GSList) refresh_list = NULL;
2549
2550 for ( ; list; list = list->next) {
2551 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2552 }
2553
2554 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2555}
2556
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002557void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2558 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002559{
2560 BdrvChild *c;
2561 uint64_t cumulative_perms = 0;
2562 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2563
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002564 GLOBAL_STATE_CODE();
2565
Kevin Wolf33a610c2016-12-15 13:04:20 +01002566 QLIST_FOREACH(c, &bs->parents, next_parent) {
2567 cumulative_perms |= c->perm;
2568 cumulative_shared_perms &= c->shared_perm;
2569 }
2570
2571 *perm = cumulative_perms;
2572 *shared_perm = cumulative_shared_perms;
2573}
2574
Fam Zheng51761962017-05-03 00:35:36 +08002575char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002576{
2577 struct perm_name {
2578 uint64_t perm;
2579 const char *name;
2580 } permissions[] = {
2581 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2582 { BLK_PERM_WRITE, "write" },
2583 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2584 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002585 { 0, NULL }
2586 };
2587
Alberto Garciae2a74232020-01-10 18:15:18 +01002588 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002589 struct perm_name *p;
2590
2591 for (p = permissions; p->name; p++) {
2592 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002593 if (result->len > 0) {
2594 g_string_append(result, ", ");
2595 }
2596 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002597 }
2598 }
2599
Alberto Garciae2a74232020-01-10 18:15:18 +01002600 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002601}
2602
Kevin Wolf33a610c2016-12-15 13:04:20 +01002603
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002604/* @tran is allowed to be NULL. In this case no rollback is possible */
2605static int bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran,
2606 Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002607{
2608 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002609 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002610 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002611 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002612
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002613 if (!tran) {
2614 tran = local_tran = tran_new();
2615 }
2616
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002617 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002618
2619 if (local_tran) {
2620 tran_finalize(local_tran, ret);
2621 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002622
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002623 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002624}
2625
Kevin Wolf33a610c2016-12-15 13:04:20 +01002626int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2627 Error **errp)
2628{
Max Reitz10467792019-05-22 19:03:51 +02002629 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002630 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002631 int ret;
2632
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002633 GLOBAL_STATE_CODE();
2634
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002635 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002636
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002637 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002638
2639 tran_finalize(tran, ret);
2640
Kevin Wolf33a610c2016-12-15 13:04:20 +01002641 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002642 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2643 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002644 error_propagate(errp, local_err);
2645 } else {
2646 /*
2647 * Our caller may intend to only loosen restrictions and
2648 * does not expect this function to fail. Errors are not
2649 * fatal in such a case, so we can just hide them from our
2650 * caller.
2651 */
2652 error_free(local_err);
2653 ret = 0;
2654 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002655 }
2656
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002657 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002658}
2659
Max Reitzc1087f12019-05-22 19:03:46 +02002660int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2661{
2662 uint64_t parent_perms, parent_shared;
2663 uint64_t perms, shared;
2664
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002665 GLOBAL_STATE_CODE();
2666
Max Reitzc1087f12019-05-22 19:03:46 +02002667 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002668 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002669 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002670
2671 return bdrv_child_try_set_perm(c, perms, shared, errp);
2672}
2673
Max Reitz87278af2020-05-13 13:05:40 +02002674/*
2675 * Default implementation for .bdrv_child_perm() for block filters:
2676 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2677 * filtered child.
2678 */
2679static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002680 BdrvChildRole role,
2681 BlockReopenQueue *reopen_queue,
2682 uint64_t perm, uint64_t shared,
2683 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002684{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002685 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002686 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2687 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002688}
2689
Max Reitz70082db2020-05-13 13:05:26 +02002690static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002691 BdrvChildRole role,
2692 BlockReopenQueue *reopen_queue,
2693 uint64_t perm, uint64_t shared,
2694 uint64_t *nperm, uint64_t *nshared)
2695{
Max Reitze5d8a402020-05-13 13:05:44 +02002696 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002697 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002698
2699 /*
2700 * We want consistent read from backing files if the parent needs it.
2701 * No other operations are performed on backing files.
2702 */
2703 perm &= BLK_PERM_CONSISTENT_READ;
2704
2705 /*
2706 * If the parent can deal with changing data, we're okay with a
2707 * writable and resizable backing file.
2708 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2709 */
2710 if (shared & BLK_PERM_WRITE) {
2711 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2712 } else {
2713 shared = 0;
2714 }
2715
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002716 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002717
2718 if (bs->open_flags & BDRV_O_INACTIVE) {
2719 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2720 }
2721
2722 *nperm = perm;
2723 *nshared = shared;
2724}
2725
Max Reitz6f838a42020-05-13 13:05:27 +02002726static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002727 BdrvChildRole role,
2728 BlockReopenQueue *reopen_queue,
2729 uint64_t perm, uint64_t shared,
2730 uint64_t *nperm, uint64_t *nshared)
2731{
2732 int flags;
2733
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002734 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002735 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002736
2737 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2738
2739 /*
2740 * Apart from the modifications below, the same permissions are
2741 * forwarded and left alone as for filters
2742 */
Max Reitze5d8a402020-05-13 13:05:44 +02002743 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002744 perm, shared, &perm, &shared);
2745
Max Reitzf8890542020-05-13 13:05:28 +02002746 if (role & BDRV_CHILD_METADATA) {
2747 /* Format drivers may touch metadata even if the guest doesn't write */
2748 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2749 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2750 }
2751
2752 /*
2753 * bs->file always needs to be consistent because of the
2754 * metadata. We can never allow other users to resize or write
2755 * to it.
2756 */
2757 if (!(flags & BDRV_O_NO_IO)) {
2758 perm |= BLK_PERM_CONSISTENT_READ;
2759 }
2760 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002761 }
2762
Max Reitzf8890542020-05-13 13:05:28 +02002763 if (role & BDRV_CHILD_DATA) {
2764 /*
2765 * Technically, everything in this block is a subset of the
2766 * BDRV_CHILD_METADATA path taken above, and so this could
2767 * be an "else if" branch. However, that is not obvious, and
2768 * this function is not performance critical, therefore we let
2769 * this be an independent "if".
2770 */
2771
2772 /*
2773 * We cannot allow other users to resize the file because the
2774 * format driver might have some assumptions about the size
2775 * (e.g. because it is stored in metadata, or because the file
2776 * is split into fixed-size data files).
2777 */
2778 shared &= ~BLK_PERM_RESIZE;
2779
2780 /*
2781 * WRITE_UNCHANGED often cannot be performed as such on the
2782 * data file. For example, the qcow2 driver may still need to
2783 * write copied clusters on copy-on-read.
2784 */
2785 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2786 perm |= BLK_PERM_WRITE;
2787 }
2788
2789 /*
2790 * If the data file is written to, the format driver may
2791 * expect to be able to resize it by writing beyond the EOF.
2792 */
2793 if (perm & BLK_PERM_WRITE) {
2794 perm |= BLK_PERM_RESIZE;
2795 }
Max Reitz6f838a42020-05-13 13:05:27 +02002796 }
Max Reitz6f838a42020-05-13 13:05:27 +02002797
2798 if (bs->open_flags & BDRV_O_INACTIVE) {
2799 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2800 }
2801
2802 *nperm = perm;
2803 *nshared = shared;
2804}
2805
Max Reitz2519f542020-05-13 13:05:29 +02002806void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002807 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002808 uint64_t perm, uint64_t shared,
2809 uint64_t *nperm, uint64_t *nshared)
2810{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002811 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002812 if (role & BDRV_CHILD_FILTERED) {
2813 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2814 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002815 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002816 perm, shared, nperm, nshared);
2817 } else if (role & BDRV_CHILD_COW) {
2818 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002819 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002820 perm, shared, nperm, nshared);
2821 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002822 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002823 perm, shared, nperm, nshared);
2824 } else {
2825 g_assert_not_reached();
2826 }
2827}
2828
Max Reitz7b1d9c42019-11-08 13:34:51 +01002829uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2830{
2831 static const uint64_t permissions[] = {
2832 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2833 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2834 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2835 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002836 };
2837
2838 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2839 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2840
2841 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2842
2843 return permissions[qapi_perm];
2844}
2845
Kevin Wolf23987472022-11-18 18:41:09 +01002846/*
2847 * Replaces the node that a BdrvChild points to without updating permissions.
2848 *
2849 * If @new_bs is non-NULL, the parent of @child must already be drained through
2850 * @child.
Kevin Wolf23987472022-11-18 18:41:09 +01002851 */
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002852static void bdrv_replace_child_noperm(BdrvChild *child,
Vladimir Sementsov-Ogievskiy4eba8252022-07-26 23:11:28 +03002853 BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002854{
2855 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002856 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002857
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002858 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002859
2860 /*
2861 * If we want to change the BdrvChild to point to a drained node as its new
2862 * child->bs, we need to make sure that its new parent is drained, too. In
2863 * other words, either child->quiesce_parent must already be true or we must
2864 * be able to set it and keep the parent's quiesce_counter consistent with
2865 * that, but without polling or starting new requests (this function
2866 * guarantees that it doesn't poll, and starting new requests would be
2867 * against the invariants of drain sections).
2868 *
2869 * To keep things simple, we pick the first option (child->quiesce_parent
2870 * must already be true). We also generalise the rule a bit to make it
2871 * easier to verify in callers and more likely to be covered in test cases:
2872 * The parent must be quiesced through this child even if new_bs isn't
2873 * currently drained.
2874 *
2875 * The only exception is for callers that always pass new_bs == NULL. In
2876 * this case, we obviously never need to consider the case of a drained
2877 * new_bs, so we can keep the callers simpler by allowing them not to drain
2878 * the parent.
2879 */
2880 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002881 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002882 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002883
Fam Zhengbb2614e2017-04-07 14:54:10 +08002884 if (old_bs && new_bs) {
2885 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2886 }
Max Reitzdebc2922019-07-22 15:33:44 +02002887
Emanuele Giuseppe Esposito29312502022-12-07 14:18:31 +01002888 /* TODO Pull this up into the callers to avoid polling here */
2889 bdrv_graph_wrlock();
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002890 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002891 if (child->klass->detach) {
2892 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002893 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002894 QLIST_REMOVE(child, next_parent);
2895 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002896
2897 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002898
2899 if (new_bs) {
2900 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002901 if (child->klass->attach) {
2902 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002903 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002904 }
Emanuele Giuseppe Esposito29312502022-12-07 14:18:31 +01002905 bdrv_graph_wrunlock();
Max Reitzdebc2922019-07-22 15:33:44 +02002906
2907 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002908 * If the parent was drained through this BdrvChild previously, but new_bs
2909 * is not drained, allow requests to come in only after the new node has
2910 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002911 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002912 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2913 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002914 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002915 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002916}
2917
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002918/**
2919 * Free the given @child.
2920 *
2921 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2922 * unused (i.e. not in a children list).
2923 */
2924static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002925{
2926 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002927 GLOBAL_STATE_CODE();
Hanna Reitza2253692021-11-15 15:53:58 +01002928 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002929
2930 g_free(child->name);
2931 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002932}
2933
2934typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002935 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002936 AioContext *old_parent_ctx;
2937 AioContext *old_child_ctx;
2938} BdrvAttachChildCommonState;
2939
2940static void bdrv_attach_child_common_abort(void *opaque)
2941{
2942 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002943 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002944
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002945 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002946 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002947
2948 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04002949 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002950 }
2951
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002952 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002953 Transaction *tran;
2954 GHashTable *visited;
2955 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002956
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002957 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002958
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04002959 /* No need to visit `child`, because it has been detached already */
2960 visited = g_hash_table_new(NULL, NULL);
2961 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
2962 visited, tran, &error_abort);
2963 g_hash_table_destroy(visited);
2964
2965 /* transaction is supposed to always succeed */
2966 assert(ret == true);
2967 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002968 }
2969
2970 bdrv_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002971 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002972}
2973
2974static TransactionActionDrv bdrv_attach_child_common_drv = {
2975 .abort = bdrv_attach_child_common_abort,
2976 .clean = g_free,
2977};
2978
2979/*
2980 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03002981 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03002982 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002983 *
2984 * Returns new created child.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002985 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002986static BdrvChild *bdrv_attach_child_common(BlockDriverState *child_bs,
2987 const char *child_name,
2988 const BdrvChildClass *child_class,
2989 BdrvChildRole child_role,
2990 uint64_t perm, uint64_t shared_perm,
2991 void *opaque,
2992 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002993{
2994 BdrvChild *new_child;
2995 AioContext *parent_ctx;
2996 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
2997
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002998 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002999 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003000
3001 new_child = g_new(BdrvChild, 1);
3002 *new_child = (BdrvChild) {
3003 .bs = NULL,
3004 .name = g_strdup(child_name),
3005 .klass = child_class,
3006 .role = child_role,
3007 .perm = perm,
3008 .shared_perm = shared_perm,
3009 .opaque = opaque,
3010 };
3011
3012 /*
3013 * If the AioContexts don't match, first try to move the subtree of
3014 * child_bs into the AioContext of the new parent. If this doesn't work,
3015 * try moving the parent into the AioContext of child_bs instead.
3016 */
3017 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3018 if (child_ctx != parent_ctx) {
3019 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003020 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3021 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003022
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003023 if (ret < 0 && child_class->change_aio_ctx) {
3024 Transaction *tran = tran_new();
3025 GHashTable *visited = g_hash_table_new(NULL, NULL);
3026 bool ret_child;
3027
3028 g_hash_table_add(visited, new_child);
3029 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
3030 visited, tran, NULL);
3031 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003032 error_free(local_err);
3033 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003034 }
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003035 tran_finalize(tran, ret_child == true ? 0 : -1);
3036 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003037 }
3038
3039 if (ret < 0) {
3040 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003041 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003042 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003043 }
3044 }
3045
3046 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003047 /*
3048 * Let every new BdrvChild start with a drained parent. Inserting the child
3049 * in the graph with bdrv_replace_child_noperm() will undrain it if
3050 * @child_bs is not drained.
3051 *
3052 * The child was only just created and is not yet visible in global state
3053 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3054 * could have sent requests and polling is not necessary.
3055 *
3056 * Note that this means that the parent isn't fully drained yet, we only
3057 * stop new requests from coming in. This is fine, we don't care about the
3058 * old requests here, they are not for this child. If another place enters a
3059 * drain section for the same parent, but wants it to be fully quiesced, it
3060 * will not run most of the the code in .drained_begin() again (which is not
3061 * a problem, we already did this), but it will still poll until the parent
3062 * is fully quiesced, so it will not be negatively affected either.
3063 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003064 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003065 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003066
3067 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3068 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003069 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003070 .old_parent_ctx = parent_ctx,
3071 .old_child_ctx = child_ctx,
3072 };
3073 tran_add(tran, &bdrv_attach_child_common_drv, s);
3074
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003075 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003076}
3077
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003078/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003079 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003080 */
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003081static BdrvChild *bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3082 BlockDriverState *child_bs,
3083 const char *child_name,
3084 const BdrvChildClass *child_class,
3085 BdrvChildRole child_role,
3086 Transaction *tran,
3087 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003088{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003089 uint64_t perm, shared_perm;
3090
3091 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003092 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003093
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003094 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3095 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3096 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003097 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003098 }
3099
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003100 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3101 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3102 perm, shared_perm, &perm, &shared_perm);
3103
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003104 return bdrv_attach_child_common(child_bs, child_name, child_class,
3105 child_role, perm, shared_perm, parent_bs,
3106 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003107}
3108
Alberto Garciab441dc72019-05-13 16:46:18 +03003109/*
3110 * This function steals the reference to child_bs from the caller.
3111 * That reference is later dropped by bdrv_root_unref_child().
3112 *
3113 * On failure NULL is returned, errp is set and the reference to
3114 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003115 *
3116 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3117 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003118 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003119BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3120 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003121 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003122 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003123 uint64_t perm, uint64_t shared_perm,
3124 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003125{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003126 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003127 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003128 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003129
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003130 GLOBAL_STATE_CODE();
3131
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003132 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003133 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003134 tran, errp);
3135 if (!child) {
3136 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003137 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003138 }
3139
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003140 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003141
Kevin Wolfe878bb12021-05-03 13:05:54 +02003142out:
3143 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003144
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003145 bdrv_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003146
3147 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003148}
3149
Alberto Garciab441dc72019-05-13 16:46:18 +03003150/*
3151 * This function transfers the reference to child_bs from the caller
3152 * to parent_bs. That reference is later dropped by parent_bs on
3153 * bdrv_close() or if someone calls bdrv_unref_child().
3154 *
3155 * On failure NULL is returned, errp is set and the reference to
3156 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003157 *
3158 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3159 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003160 */
Wen Congyang98292c62016-05-10 15:36:38 +08003161BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3162 BlockDriverState *child_bs,
3163 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003164 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003165 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003166 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003167{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003168 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003169 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003170 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003171
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003172 GLOBAL_STATE_CODE();
3173
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003174 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3175 child_class, child_role, tran, errp);
3176 if (!child) {
3177 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003178 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003179 }
3180
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003181 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003182 if (ret < 0) {
3183 goto out;
3184 }
3185
3186out:
3187 tran_finalize(tran, ret);
3188
3189 bdrv_unref(child_bs);
3190
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003191 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003192}
3193
Max Reitz7b99a262019-06-12 16:07:11 +02003194/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003195void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003196{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003197 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003198
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003199 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003200 bdrv_replace_child_noperm(child, NULL);
3201 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003202
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003203 if (child_bs) {
3204 /*
3205 * Update permissions for old node. We're just taking a parent away, so
3206 * we're loosening restrictions. Errors of permission update are not
3207 * fatal in this case, ignore them.
3208 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003209 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003210
3211 /*
3212 * When the parent requiring a non-default AioContext is removed, the
3213 * node moves back to the main AioContext
3214 */
3215 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3216 NULL);
3217 }
3218
Kevin Wolff21d96d2016-03-08 13:47:46 +01003219 bdrv_unref(child_bs);
3220}
3221
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003222typedef struct BdrvSetInheritsFrom {
3223 BlockDriverState *bs;
3224 BlockDriverState *old_inherits_from;
3225} BdrvSetInheritsFrom;
3226
3227static void bdrv_set_inherits_from_abort(void *opaque)
3228{
3229 BdrvSetInheritsFrom *s = opaque;
3230
3231 s->bs->inherits_from = s->old_inherits_from;
3232}
3233
3234static TransactionActionDrv bdrv_set_inherits_from_drv = {
3235 .abort = bdrv_set_inherits_from_abort,
3236 .clean = g_free,
3237};
3238
3239/* @tran is allowed to be NULL. In this case no rollback is possible */
3240static void bdrv_set_inherits_from(BlockDriverState *bs,
3241 BlockDriverState *new_inherits_from,
3242 Transaction *tran)
3243{
3244 if (tran) {
3245 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3246
3247 *s = (BdrvSetInheritsFrom) {
3248 .bs = bs,
3249 .old_inherits_from = bs->inherits_from,
3250 };
3251
3252 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3253 }
3254
3255 bs->inherits_from = new_inherits_from;
3256}
3257
Max Reitz3cf746b2019-07-03 19:28:07 +02003258/**
3259 * Clear all inherits_from pointers from children and grandchildren of
3260 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003261 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003262 */
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003263static void bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3264 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003265{
Max Reitz3cf746b2019-07-03 19:28:07 +02003266 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003267
Max Reitz3cf746b2019-07-03 19:28:07 +02003268 if (child->bs->inherits_from == root) {
3269 /*
3270 * Remove inherits_from only when the last reference between root and
3271 * child->bs goes away.
3272 */
3273 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003274 if (c != child && c->bs == child->bs) {
3275 break;
3276 }
3277 }
3278 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003279 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003280 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003281 }
3282
Max Reitz3cf746b2019-07-03 19:28:07 +02003283 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003284 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003285 }
3286}
3287
Max Reitz7b99a262019-06-12 16:07:11 +02003288/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003289void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3290{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003291 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003292 if (child == NULL) {
3293 return;
3294 }
3295
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003296 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003297 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003298}
3299
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003300
3301static void bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
3302{
3303 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003304 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003305 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003306 if (c->klass->change_media) {
3307 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003308 }
3309 }
3310}
3311
Alberto Garcia0065c452018-10-31 18:16:37 +02003312/* Return true if you can reach parent going through child->inherits_from
3313 * recursively. If parent or child are NULL, return false */
3314static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3315 BlockDriverState *parent)
3316{
3317 while (child && child != parent) {
3318 child = child->inherits_from;
3319 }
3320
3321 return child != NULL;
3322}
3323
Kevin Wolf5db15a52015-09-14 15:33:33 +02003324/*
Max Reitz25191e52020-05-13 13:05:33 +02003325 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3326 * mostly used for COW backing children (role = COW), but also for
3327 * filtered children (role = FILTERED | PRIMARY).
3328 */
3329static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3330{
3331 if (bs->drv && bs->drv->is_filter) {
3332 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3333 } else {
3334 return BDRV_CHILD_COW;
3335 }
3336}
3337
3338/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003339 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3340 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003341 *
3342 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003343 */
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003344static int bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3345 BlockDriverState *child_bs,
3346 bool is_backing,
3347 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003348{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003349 bool update_inherits_from =
3350 bdrv_inherits_from_recursive(child_bs, parent_bs);
3351 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3352 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003353
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003354 GLOBAL_STATE_CODE();
3355
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003356 if (!parent_bs->drv) {
3357 /*
3358 * Node without drv is an object without a class :/. TODO: finally fix
3359 * qcow2 driver to never clear bs->drv and implement format corruption
3360 * handling in other way.
3361 */
3362 error_setg(errp, "Node corrupted");
3363 return -EINVAL;
3364 }
3365
3366 if (child && child->frozen) {
3367 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3368 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003369 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003370 }
3371
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003372 if (is_backing && !parent_bs->drv->is_filter &&
3373 !parent_bs->drv->supports_backing)
3374 {
3375 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3376 "files", parent_bs->drv->format_name, parent_bs->node_name);
3377 return -EINVAL;
3378 }
3379
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003380 if (parent_bs->drv->is_filter) {
3381 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3382 } else if (is_backing) {
3383 role = BDRV_CHILD_COW;
3384 } else {
3385 /*
3386 * We only can use same role as it is in existing child. We don't have
3387 * infrastructure to determine role of file child in generic way
3388 */
3389 if (!child) {
3390 error_setg(errp, "Cannot set file child to format node without "
3391 "file child");
3392 return -EINVAL;
3393 }
3394 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003395 }
3396
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003397 if (child) {
3398 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003399 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003400 }
3401
3402 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003403 goto out;
3404 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003405
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003406 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3407 is_backing ? "backing" : "file",
3408 &child_of_bds, role,
3409 tran, errp);
3410 if (!child) {
3411 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003412 }
3413
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003414
3415 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003416 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003417 * point directly to bs (else it will become NULL).
3418 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003419 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003420 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003421 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003422
Fam Zheng8d24cce2014-05-23 21:29:45 +08003423out:
Kevin Wolfe19b1572023-05-04 13:57:50 +02003424 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003425 bdrv_refresh_limits(parent_bs, tran, NULL);
Kevin Wolfe19b1572023-05-04 13:57:50 +02003426 bdrv_graph_rdunlock_main_loop();
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003427
3428 return 0;
3429}
3430
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003431static int bdrv_set_backing_noperm(BlockDriverState *bs,
3432 BlockDriverState *backing_hd,
3433 Transaction *tran, Error **errp)
3434{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003435 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003436 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3437}
3438
Kevin Wolf92140b92022-11-18 18:41:04 +01003439int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3440 BlockDriverState *backing_hd,
3441 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003442{
3443 int ret;
3444 Transaction *tran = tran_new();
3445
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003446 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003447 assert(bs->quiesce_counter > 0);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003448
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003449 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3450 if (ret < 0) {
3451 goto out;
3452 }
3453
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003454 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003455out:
3456 tran_finalize(tran, ret);
Kevin Wolf92140b92022-11-18 18:41:04 +01003457 return ret;
3458}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003459
Kevin Wolf92140b92022-11-18 18:41:04 +01003460int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3461 Error **errp)
3462{
3463 int ret;
3464 GLOBAL_STATE_CODE();
3465
3466 bdrv_drained_begin(bs);
3467 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003468 bdrv_drained_end(bs);
3469
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003470 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003471}
3472
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003473/*
3474 * Opens the backing file for a BlockDriverState if not yet open
3475 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003476 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3477 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3478 * itself, all options starting with "${bdref_key}." are considered part of the
3479 * BlockdevRef.
3480 *
Kevin Wolf2626d272023-05-25 14:47:06 +02003481 * The caller must hold the main AioContext lock.
3482 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003483 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003484 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003485int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3486 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003487{
Max Reitz6b6833c2019-02-01 20:29:15 +01003488 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003489 char *bdref_key_dot;
3490 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003491 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003492 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003493 BlockDriverState *backing_hd;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003494 QDict *options;
3495 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003496 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003497
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003498 GLOBAL_STATE_CODE();
3499
Kevin Wolf760e0062015-06-17 14:55:21 +02003500 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003501 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003502 }
3503
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003504 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003505 if (parent_options == NULL) {
3506 tmp_parent_options = qdict_new();
3507 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003508 }
3509
Paolo Bonzini9156df12012-10-18 16:49:17 +02003510 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003511
3512 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3513 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3514 g_free(bdref_key_dot);
3515
Markus Armbruster129c7d12017-03-30 19:43:12 +02003516 /*
3517 * Caution: while qdict_get_try_str() is fine, getting non-string
3518 * types would require more care. When @parent_options come from
3519 * -blockdev or blockdev_add, its members are typed according to
3520 * the QAPI schema, but when they come from -drive, they're all
3521 * QString.
3522 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003523 reference = qdict_get_try_str(parent_options, bdref_key);
3524 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003525 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003526 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003527 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003528 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003529 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003530 if (qdict_size(options) == 0) {
3531 /* If the user specifies options that do not modify the
3532 * backing file's behavior, we might still consider it the
3533 * implicit backing file. But it's easier this way, and
3534 * just specifying some of the backing BDS's options is
3535 * only possible with -drive anyway (otherwise the QAPI
3536 * schema forces the user to specify everything). */
3537 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3538 }
3539
Max Reitz6b6833c2019-02-01 20:29:15 +01003540 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Max Reitz9f074292014-11-26 17:20:26 +01003541 if (local_err) {
3542 ret = -EINVAL;
3543 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003544 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003545 goto free_exit;
3546 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003547 }
3548
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003549 if (!bs->drv || !bs->drv->supports_backing) {
3550 ret = -EINVAL;
3551 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003552 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003553 goto free_exit;
3554 }
3555
Peter Krempa6bff5972017-10-12 16:14:10 +02003556 if (!reference &&
3557 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003558 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003559 }
3560
Max Reitz6b6833c2019-02-01 20:29:15 +01003561 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003562 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003563 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003564 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003565 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003566 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003567 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003568 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003569
Max Reitz998c2012019-02-01 20:29:08 +01003570 if (implicit_backing) {
3571 bdrv_refresh_filename(backing_hd);
3572 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3573 backing_hd->filename);
3574 }
3575
Kevin Wolf5db15a52015-09-14 15:33:33 +02003576 /* Hook up the backing file link; drop our reference, bs owns the
3577 * backing_hd reference now */
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003578 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003579 bdrv_unref(backing_hd);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003580 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003581 goto free_exit;
3582 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003583
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003584 qdict_del(parent_options, bdref_key);
3585
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003586free_exit:
3587 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003588 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003589 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003590}
3591
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003592static BlockDriverState *
3593bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003594 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003595 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003596{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003597 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003598 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003599 char *bdref_key_dot;
3600 const char *reference;
3601
Max Reitzbd86fb92020-05-13 13:05:13 +02003602 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003603
Max Reitzda557aa2013-12-20 19:28:11 +01003604 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3605 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3606 g_free(bdref_key_dot);
3607
Markus Armbruster129c7d12017-03-30 19:43:12 +02003608 /*
3609 * Caution: while qdict_get_try_str() is fine, getting non-string
3610 * types would require more care. When @options come from
3611 * -blockdev or blockdev_add, its members are typed according to
3612 * the QAPI schema, but when they come from -drive, they're all
3613 * QString.
3614 */
Max Reitzda557aa2013-12-20 19:28:11 +01003615 reference = qdict_get_try_str(options, bdref_key);
3616 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003617 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003618 error_setg(errp, "A block device must be specified for \"%s\"",
3619 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003620 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003621 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003622 goto done;
3623 }
3624
Max Reitz5b363932016-05-17 16:41:31 +02003625 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003626 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003627 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003628 goto done;
3629 }
3630
Max Reitzda557aa2013-12-20 19:28:11 +01003631done:
3632 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003633 return bs;
3634}
3635
3636/*
3637 * Opens a disk image whose options are given as BlockdevRef in another block
3638 * device's options.
3639 *
3640 * If allow_none is true, no image will be opened if filename is false and no
3641 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3642 *
3643 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3644 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3645 * itself, all options starting with "${bdref_key}." are considered part of the
3646 * BlockdevRef.
3647 *
3648 * The BlockdevRef will be removed from the options QDict.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003649 *
3650 * @parent can move to a different AioContext in this function. Callers must
3651 * make sure that their AioContext locking is still correct after this.
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003652 */
3653BdrvChild *bdrv_open_child(const char *filename,
3654 QDict *options, const char *bdref_key,
3655 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003656 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003657 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003658 bool allow_none, Error **errp)
3659{
3660 BlockDriverState *bs;
3661
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003662 GLOBAL_STATE_CODE();
3663
Max Reitzbd86fb92020-05-13 13:05:13 +02003664 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003665 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003666 if (bs == NULL) {
3667 return NULL;
3668 }
3669
Max Reitz258b7762020-05-13 13:05:15 +02003670 return bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3671 errp);
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003672}
3673
Max Reitzbd86fb92020-05-13 13:05:13 +02003674/*
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003675 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003676 *
3677 * @parent can move to a different AioContext in this function. Callers must
3678 * make sure that their AioContext locking is still correct after this.
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003679 */
3680int bdrv_open_file_child(const char *filename,
3681 QDict *options, const char *bdref_key,
3682 BlockDriverState *parent, Error **errp)
3683{
3684 BdrvChildRole role;
3685
3686 /* commit_top and mirror_top don't use this function */
3687 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003688 role = parent->drv->is_filter ?
3689 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3690
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003691 if (!bdrv_open_child(filename, options, bdref_key, parent,
3692 &child_of_bds, role, false, errp))
3693 {
3694 return -EINVAL;
3695 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003696
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003697 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003698}
3699
3700/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003701 * TODO Future callers may need to specify parent/child_class in order for
3702 * option inheritance to work. Existing callers use it for the root node.
3703 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003704BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3705{
3706 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003707 QObject *obj = NULL;
3708 QDict *qdict = NULL;
3709 const char *reference = NULL;
3710 Visitor *v = NULL;
3711
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003712 GLOBAL_STATE_CODE();
3713
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003714 if (ref->type == QTYPE_QSTRING) {
3715 reference = ref->u.reference;
3716 } else {
3717 BlockdevOptions *options = &ref->u.definition;
3718 assert(ref->type == QTYPE_QDICT);
3719
3720 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003721 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003722 visit_complete(v, &obj);
3723
Max Reitz7dc847e2018-02-24 16:40:29 +01003724 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003725 qdict_flatten(qdict);
3726
3727 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3728 * compatibility with other callers) rather than what we want as the
3729 * real defaults. Apply the defaults here instead. */
3730 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3731 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3732 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003733 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3734
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003735 }
3736
Max Reitz272c02e2020-05-13 13:05:17 +02003737 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003738 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003739 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003740 visit_free(v);
3741 return bs;
3742}
3743
Max Reitz66836182016-05-17 16:41:27 +02003744static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3745 int flags,
3746 QDict *snapshot_options,
3747 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003748{
Bin Meng69fbfff2022-10-10 12:04:31 +08003749 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003750 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003751 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003752 BlockDriverState *bs_snapshot = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003753 int ret;
3754
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003755 GLOBAL_STATE_CODE();
3756
Kevin Wolfb9988752014-04-03 12:09:34 +02003757 /* if snapshot, we create a temporary backing file and open it
3758 instead of opening 'filename' directly */
3759
3760 /* Get the required size from the image */
Kevin Wolff1877432014-04-04 17:07:19 +02003761 total_size = bdrv_getlength(bs);
3762 if (total_size < 0) {
3763 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003764 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003765 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003766
3767 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003768 tmp_filename = create_tmp_file(errp);
3769 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003770 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003771 }
3772
Max Reitzef810432014-12-02 18:32:42 +01003773 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003774 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003775 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003776 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003777 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003778 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003779 error_prepend(errp, "Could not create temporary overlay '%s': ",
3780 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003781 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003782 }
3783
Kevin Wolf73176be2016-03-07 13:02:15 +01003784 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003785 qdict_put_str(snapshot_options, "file.driver", "file");
3786 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3787 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003788
Max Reitz5b363932016-05-17 16:41:31 +02003789 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003790 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003791 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003792 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003793 }
3794
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003795 ret = bdrv_append(bs_snapshot, bs, errp);
3796 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003797 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003798 goto out;
3799 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003800
3801out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003802 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003803 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003804}
3805
Max Reitzda557aa2013-12-20 19:28:11 +01003806/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003807 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003808 *
3809 * options is a QDict of options to pass to the block drivers, or NULL for an
3810 * empty set of options. The reference to the QDict belongs to the block layer
3811 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003812 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003813 *
3814 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3815 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003816 *
3817 * The reference parameter may be used to specify an existing block device which
3818 * should be opened. If specified, neither options nor a filename may be given,
3819 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01003820 *
Kevin Wolfae400db2023-05-25 14:47:03 +02003821 * The caller must always hold the main AioContext lock.
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003822 */
Kevin Wolf32192302023-01-26 18:24:32 +01003823static BlockDriverState * no_coroutine_fn
3824bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3825 int flags, BlockDriverState *parent,
3826 const BdrvChildClass *child_class, BdrvChildRole child_role,
3827 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003828{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003829 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003830 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003831 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003832 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003833 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003834 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003835 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003836 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003837 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003838 int snapshot_flags = 0;
bellard712e7872005-04-28 21:09:32 +00003839
Max Reitzbd86fb92020-05-13 13:05:13 +02003840 assert(!child_class || !flags);
3841 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003842 GLOBAL_STATE_CODE();
Kevin Wolf32192302023-01-26 18:24:32 +01003843 assert(!qemu_in_coroutine());
Max Reitzf67503e2014-02-18 18:33:05 +01003844
Max Reitzddf56362014-02-18 18:33:06 +01003845 if (reference) {
3846 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003847 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003848
Max Reitzddf56362014-02-18 18:33:06 +01003849 if (filename || options_non_empty) {
3850 error_setg(errp, "Cannot reference an existing block device with "
3851 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02003852 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003853 }
3854
3855 bs = bdrv_lookup_bs(reference, reference, errp);
3856 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02003857 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01003858 }
Kevin Wolf76b22322016-04-04 17:11:13 +02003859
Max Reitzddf56362014-02-18 18:33:06 +01003860 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02003861 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01003862 }
3863
Max Reitz5b363932016-05-17 16:41:31 +02003864 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01003865
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003866 /* NULL means an empty set of options */
3867 if (options == NULL) {
3868 options = qdict_new();
3869 }
3870
Kevin Wolf145f5982015-05-08 16:15:03 +02003871 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003872 parse_json_protocol(options, &filename, &local_err);
3873 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003874 goto fail;
3875 }
3876
Kevin Wolf145f5982015-05-08 16:15:03 +02003877 bs->explicit_options = qdict_clone_shallow(options);
3878
Max Reitzbd86fb92020-05-13 13:05:13 +02003879 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02003880 bool parent_is_format;
3881
3882 if (parent->drv) {
3883 parent_is_format = parent->drv->is_format;
3884 } else {
3885 /*
3886 * parent->drv is not set yet because this node is opened for
3887 * (potential) format probing. That means that @parent is going
3888 * to be a format node.
3889 */
3890 parent_is_format = true;
3891 }
3892
Kevin Wolfbddcec32015-04-09 18:47:50 +02003893 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02003894 child_class->inherit_options(child_role, parent_is_format,
3895 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02003896 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02003897 }
3898
Kevin Wolfde3b53f2015-10-29 15:24:41 +01003899 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02003900 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02003901 goto fail;
3902 }
3903
Markus Armbruster129c7d12017-03-30 19:43:12 +02003904 /*
3905 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
3906 * Caution: getting a boolean member of @options requires care.
3907 * When @options come from -blockdev or blockdev_add, members are
3908 * typed according to the QAPI schema, but when they come from
3909 * -drive, they're all QString.
3910 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003911 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
3912 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
3913 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
3914 } else {
3915 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03003916 }
3917
3918 if (flags & BDRV_O_SNAPSHOT) {
3919 snapshot_options = qdict_new();
3920 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
3921 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03003922 /* Let bdrv_backing_options() override "read-only" */
3923 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02003924 bdrv_inherited_options(BDRV_CHILD_COW, true,
3925 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03003926 }
3927
Kevin Wolf62392eb2015-04-24 16:38:02 +02003928 bs->open_flags = flags;
3929 bs->options = options;
3930 options = qdict_clone_shallow(options);
3931
Kevin Wolf76c591b2014-06-04 14:19:44 +02003932 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02003933 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02003934 drvname = qdict_get_try_str(options, "driver");
3935 if (drvname) {
3936 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003937 if (!drv) {
3938 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02003939 goto fail;
3940 }
3941 }
3942
3943 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02003944
Markus Armbruster129c7d12017-03-30 19:43:12 +02003945 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003946 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01003947 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
3948 (backing && *backing == '\0'))
3949 {
Max Reitz4f7be282018-02-24 16:40:33 +01003950 if (backing) {
3951 warn_report("Use of \"backing\": \"\" is deprecated; "
3952 "use \"backing\": null instead");
3953 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003954 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01003955 qdict_del(bs->explicit_options, "backing");
3956 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003957 qdict_del(options, "backing");
3958 }
3959
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003960 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003961 * probing, the block drivers will do their own bdrv_open_child() for the
3962 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02003963 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003964 BlockDriverState *file_bs;
3965
3966 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02003967 &child_of_bds, BDRV_CHILD_IMAGE,
3968 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02003969 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01003970 goto fail;
3971 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003972 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01003973 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
3974 * looking at the header to guess the image format. This works even
3975 * in cases where a guest would not see a consistent state. */
Kevin Wolfd861ab32019-04-25 14:25:10 +02003976 file = blk_new(bdrv_get_aio_context(file_bs), 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01003977 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003978 bdrv_unref(file_bs);
Kevin Wolfd7086422017-01-13 19:02:32 +01003979 if (local_err) {
3980 goto fail;
3981 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003982
Eric Blake46f5ac22017-04-27 16:58:17 -05003983 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003984 }
Max Reitz5469a2a2014-02-18 18:33:10 +01003985 }
3986
Kevin Wolf76c591b2014-06-04 14:19:44 +02003987 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01003988 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02003989 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02003990 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02003991 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02003992 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01003993 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02003994 /*
3995 * This option update would logically belong in bdrv_fill_options(),
3996 * but we first need to open bs->file for the probing to work, while
3997 * opening bs->file already requires the (mostly) final set of options
3998 * so that cache mode etc. can be inherited.
3999 *
4000 * Adding the driver later is somewhat ugly, but it's not an option
4001 * that would ever be inherited, so it's correct. We just need to make
4002 * sure to update both bs->options (which has the full effective
4003 * options for bs) and options (which has file.* already removed).
4004 */
Eric Blake46f5ac22017-04-27 16:58:17 -05004005 qdict_put_str(bs->options, "driver", drv->format_name);
4006 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004007 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02004008 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02004009 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01004010 }
4011
Max Reitz53a29512015-03-19 14:53:16 -04004012 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4013 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4014 /* file must be NULL if a protocol BDS is about to be created
4015 * (the inverse results in an error message from bdrv_open_common()) */
4016 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4017
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004018 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01004019 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004020 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004021 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004022 }
4023
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004024 if (file) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004025 blk_unref(file);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004026 file = NULL;
4027 }
4028
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004029 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004030 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004031 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004032 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004033 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004034 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004035 }
4036
Alberto Garcia50196d72018-09-06 12:37:03 +03004037 /* Remove all children options and references
4038 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004039 QLIST_FOREACH(child, &bs->children, next) {
4040 char *child_key_dot;
4041 child_key_dot = g_strdup_printf("%s.", child->name);
4042 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4043 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004044 qdict_del(bs->explicit_options, child->name);
4045 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004046 g_free(child_key_dot);
4047 }
4048
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004049 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004050 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004051 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004052 if (flags & BDRV_O_PROTOCOL) {
4053 error_setg(errp, "Block protocol '%s' doesn't support the option "
4054 "'%s'", drv->format_name, entry->key);
4055 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004056 error_setg(errp,
4057 "Block format '%s' does not support the option '%s'",
4058 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004059 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004060
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004061 goto close_and_fail;
4062 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004063
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004064 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004065
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004066 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004067 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004068
4069 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4070 * temporary snapshot afterwards. */
4071 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004072 BlockDriverState *snapshot_bs;
4073 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4074 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004075 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004076 if (local_err) {
4077 goto close_and_fail;
4078 }
Max Reitz5b363932016-05-17 16:41:31 +02004079 /* We are not going to return bs but the overlay on top of it
4080 * (snapshot_bs); thus, we have to drop the strong reference to bs
4081 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4082 * though, because the overlay still has a reference to it. */
4083 bdrv_unref(bs);
4084 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004085 }
4086
Max Reitz5b363932016-05-17 16:41:31 +02004087 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004088
Kevin Wolf8bfea152014-04-11 19:16:36 +02004089fail:
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004090 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004091 qobject_unref(snapshot_options);
4092 qobject_unref(bs->explicit_options);
4093 qobject_unref(bs->options);
4094 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004095 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004096 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004097 bdrv_unref(bs);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004098 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004099 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004100
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004101close_and_fail:
Max Reitz5b363932016-05-17 16:41:31 +02004102 bdrv_unref(bs);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004103 qobject_unref(snapshot_options);
4104 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004105 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004106 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004107}
4108
Kevin Wolfae400db2023-05-25 14:47:03 +02004109/* The caller must always hold the main AioContext lock. */
Max Reitz5b363932016-05-17 16:41:31 +02004110BlockDriverState *bdrv_open(const char *filename, const char *reference,
4111 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004112{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004113 GLOBAL_STATE_CODE();
4114
Max Reitz5b363932016-05-17 16:41:31 +02004115 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004116 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004117}
4118
Alberto Garciafaf116b2019-03-12 18:48:49 +02004119/* Return true if the NULL-terminated @list contains @str */
4120static bool is_str_in_list(const char *str, const char *const *list)
4121{
4122 if (str && list) {
4123 int i;
4124 for (i = 0; list[i] != NULL; i++) {
4125 if (!strcmp(str, list[i])) {
4126 return true;
4127 }
4128 }
4129 }
4130 return false;
4131}
4132
4133/*
4134 * Check that every option set in @bs->options is also set in
4135 * @new_opts.
4136 *
4137 * Options listed in the common_options list and in
4138 * @bs->drv->mutable_opts are skipped.
4139 *
4140 * Return 0 on success, otherwise return -EINVAL and set @errp.
4141 */
4142static int bdrv_reset_options_allowed(BlockDriverState *bs,
4143 const QDict *new_opts, Error **errp)
4144{
4145 const QDictEntry *e;
4146 /* These options are common to all block drivers and are handled
4147 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4148 const char *const common_options[] = {
4149 "node-name", "discard", "cache.direct", "cache.no-flush",
4150 "read-only", "auto-read-only", "detect-zeroes", NULL
4151 };
4152
4153 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4154 if (!qdict_haskey(new_opts, e->key) &&
4155 !is_str_in_list(e->key, common_options) &&
4156 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4157 error_setg(errp, "Option '%s' cannot be reset "
4158 "to its default value", e->key);
4159 return -EINVAL;
4160 }
4161 }
4162
4163 return 0;
4164}
4165
Jeff Codye971aa12012-09-20 15:13:19 -04004166/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004167 * Returns true if @child can be reached recursively from @bs
4168 */
4169static bool bdrv_recurse_has_child(BlockDriverState *bs,
4170 BlockDriverState *child)
4171{
4172 BdrvChild *c;
4173
4174 if (bs == child) {
4175 return true;
4176 }
4177
4178 QLIST_FOREACH(c, &bs->children, next) {
4179 if (bdrv_recurse_has_child(c->bs, child)) {
4180 return true;
4181 }
4182 }
4183
4184 return false;
4185}
4186
4187/*
Jeff Codye971aa12012-09-20 15:13:19 -04004188 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4189 * reopen of multiple devices.
4190 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004191 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004192 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4193 * be created and initialized. This newly created BlockReopenQueue should be
4194 * passed back in for subsequent calls that are intended to be of the same
4195 * atomic 'set'.
4196 *
4197 * bs is the BlockDriverState to add to the reopen queue.
4198 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004199 * options contains the changed options for the associated bs
4200 * (the BlockReopenQueue takes ownership)
4201 *
Jeff Codye971aa12012-09-20 15:13:19 -04004202 * flags contains the open flags for the associated bs
4203 *
4204 * returns a pointer to bs_queue, which is either the newly allocated
4205 * bs_queue, or the existing bs_queue being used.
4206 *
Kevin Wolfd22933a2022-11-18 18:41:02 +01004207 * bs is drained here and undrained by bdrv_reopen_queue_free().
Kevin Wolf2e117862022-11-18 18:41:01 +01004208 *
4209 * To be called with bs->aio_context locked.
Jeff Codye971aa12012-09-20 15:13:19 -04004210 */
Kevin Wolf28518102015-05-08 17:07:31 +02004211static BlockReopenQueue *bdrv_reopen_queue_child(BlockReopenQueue *bs_queue,
4212 BlockDriverState *bs,
4213 QDict *options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004214 const BdrvChildClass *klass,
Max Reitz272c02e2020-05-13 13:05:17 +02004215 BdrvChildRole role,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004216 bool parent_is_format,
Kevin Wolf28518102015-05-08 17:07:31 +02004217 QDict *parent_options,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004218 int parent_flags,
4219 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004220{
4221 assert(bs != NULL);
4222
4223 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004224 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004225 QDict *old_options, *explicit_options, *options_copy;
4226 int flags;
4227 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004228
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004229 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004230
Kevin Wolfd22933a2022-11-18 18:41:02 +01004231 bdrv_drained_begin(bs);
4232
Jeff Codye971aa12012-09-20 15:13:19 -04004233 if (bs_queue == NULL) {
4234 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004235 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004236 }
4237
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004238 if (!options) {
4239 options = qdict_new();
4240 }
4241
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004242 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004243 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004244 if (bs == bs_entry->state.bs) {
4245 break;
4246 }
4247 }
4248
Kevin Wolf28518102015-05-08 17:07:31 +02004249 /*
4250 * Precedence of options:
4251 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004252 * 2. Retained from explicitly set options of bs
4253 * 3. Inherited from parent node
4254 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004255 */
4256
Kevin Wolf145f5982015-05-08 16:15:03 +02004257 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004258 if (bs_entry || keep_old_opts) {
4259 old_options = qdict_clone_shallow(bs_entry ?
4260 bs_entry->state.explicit_options :
4261 bs->explicit_options);
4262 bdrv_join_options(bs, options, old_options);
4263 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004264 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004265
4266 explicit_options = qdict_clone_shallow(options);
4267
Kevin Wolf28518102015-05-08 17:07:31 +02004268 /* Inherit from parent node */
4269 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004270 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004271 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004272 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004273 } else {
4274 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004275 }
4276
Alberto Garcia077e8e22019-03-12 18:48:44 +02004277 if (keep_old_opts) {
4278 /* Old values are used for options that aren't set yet */
4279 old_options = qdict_clone_shallow(bs->options);
4280 bdrv_join_options(bs, options, old_options);
4281 qobject_unref(old_options);
4282 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004283
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004284 /* We have the final set of options so let's update the flags */
4285 options_copy = qdict_clone_shallow(options);
4286 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4287 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4288 update_flags_from_options(&flags, opts);
4289 qemu_opts_del(opts);
4290 qobject_unref(options_copy);
4291
Kevin Wolffd452022017-08-03 17:02:59 +02004292 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004293 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004294 if (flags & BDRV_O_RDWR) {
4295 flags |= BDRV_O_ALLOW_RDWR;
4296 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004297
Kevin Wolf1857c972017-09-14 14:53:46 +02004298 if (!bs_entry) {
4299 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004300 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004301 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004302 qobject_unref(bs_entry->state.options);
4303 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004304 }
4305
4306 bs_entry->state.bs = bs;
4307 bs_entry->state.options = options;
4308 bs_entry->state.explicit_options = explicit_options;
4309 bs_entry->state.flags = flags;
4310
Alberto Garcia85466322019-03-12 18:48:45 +02004311 /*
4312 * If keep_old_opts is false then it means that unspecified
4313 * options must be reset to their original value. We don't allow
4314 * resetting 'backing' but we need to know if the option is
4315 * missing in order to decide if we have to return an error.
4316 */
4317 if (!keep_old_opts) {
4318 bs_entry->state.backing_missing =
4319 !qdict_haskey(options, "backing") &&
4320 !qdict_haskey(options, "backing.driver");
4321 }
4322
Kevin Wolf67251a32015-04-09 18:54:04 +02004323 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004324 QDict *new_child_options = NULL;
4325 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004326
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004327 /* reopen can only change the options of block devices that were
4328 * implicitly created and inherited options. For other (referenced)
4329 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004330 if (child->bs->inherits_from != bs) {
4331 continue;
4332 }
4333
Alberto Garcia85466322019-03-12 18:48:45 +02004334 /* Check if the options contain a child reference */
4335 if (qdict_haskey(options, child->name)) {
4336 const char *childref = qdict_get_try_str(options, child->name);
4337 /*
4338 * The current child must not be reopened if the child
4339 * reference is null or points to a different node.
4340 */
4341 if (g_strcmp0(childref, child->bs->node_name)) {
4342 continue;
4343 }
4344 /*
4345 * If the child reference points to the current child then
4346 * reopen it with its existing set of options (note that
4347 * it can still inherit new options from the parent).
4348 */
4349 child_keep_old = true;
4350 } else {
4351 /* Extract child options ("child-name.*") */
4352 char *child_key_dot = g_strdup_printf("%s.", child->name);
4353 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4354 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4355 g_free(child_key_dot);
4356 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004357
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004358 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004359 child->klass, child->role, bs->drv->is_format,
4360 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004361 }
4362
Jeff Codye971aa12012-09-20 15:13:19 -04004363 return bs_queue;
4364}
4365
Kevin Wolf2e117862022-11-18 18:41:01 +01004366/* To be called with bs->aio_context locked */
Kevin Wolf28518102015-05-08 17:07:31 +02004367BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4368 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004369 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004370{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004371 GLOBAL_STATE_CODE();
4372
Max Reitz3cdc69d2020-05-13 13:05:18 +02004373 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4374 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004375}
4376
Alberto Garciaab5b52282021-07-08 13:47:05 +02004377void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4378{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004379 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004380 if (bs_queue) {
4381 BlockReopenQueueEntry *bs_entry, *next;
4382 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolfd22933a2022-11-18 18:41:02 +01004383 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4384
4385 aio_context_acquire(ctx);
4386 bdrv_drained_end(bs_entry->state.bs);
4387 aio_context_release(ctx);
4388
Alberto Garciaab5b52282021-07-08 13:47:05 +02004389 qobject_unref(bs_entry->state.explicit_options);
4390 qobject_unref(bs_entry->state.options);
4391 g_free(bs_entry);
4392 }
4393 g_free(bs_queue);
4394 }
4395}
4396
Jeff Codye971aa12012-09-20 15:13:19 -04004397/*
4398 * Reopen multiple BlockDriverStates atomically & transactionally.
4399 *
4400 * The queue passed in (bs_queue) must have been built up previous
4401 * via bdrv_reopen_queue().
4402 *
4403 * Reopens all BDS specified in the queue, with the appropriate
4404 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004405 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004406 * data cleaned up.
4407 *
4408 * If all devices prepare successfully, then the changes are committed
4409 * to all devices.
4410 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004411 * All affected nodes must be drained between bdrv_reopen_queue() and
4412 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004413 *
4414 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004415 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004416int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004417{
4418 int ret = -1;
4419 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004420 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004421 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004422 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004423
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004424 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004425 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004426 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004427
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004428 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004429 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4430 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004431 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004432 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004433 if (ret < 0) {
4434 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004435 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004436 }
4437 }
4438
4439 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004440 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004441 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4442 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004443 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004444 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004445 if (ret < 0) {
4446 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004447 }
4448 bs_entry->prepared = true;
4449 }
4450
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004451 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004452 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004453
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004454 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004455 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004456 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004457 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004458 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004459 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004460 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004461 }
4462
4463 /*
4464 * Note that file-posix driver rely on permission update done during reopen
4465 * (even if no permission changed), because it wants "new" permissions for
4466 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4467 * in raw_reopen_prepare() which is called with "old" permissions.
4468 */
4469 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
4470 if (ret < 0) {
4471 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004472 }
4473
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004474 /*
4475 * If we reach this point, we have success and just need to apply the
4476 * changes.
4477 *
4478 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4479 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4480 * children are usually goes after parents in reopen-queue, so go from last
4481 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004482 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004483 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004484 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4485 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004486 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004487 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004488 }
4489
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004490 tran_commit(tran);
4491
4492 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4493 BlockDriverState *bs = bs_entry->state.bs;
4494
4495 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004496 ctx = bdrv_get_aio_context(bs);
4497 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004498 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004499 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004500 }
4501 }
4502
Jeff Codye971aa12012-09-20 15:13:19 -04004503 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004504 goto cleanup;
4505
4506abort:
4507 tran_abort(tran);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004508 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004509 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004510 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4511 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004512 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004513 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004514 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004515 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004516
Jeff Codye971aa12012-09-20 15:13:19 -04004517cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004518 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004519
Jeff Codye971aa12012-09-20 15:13:19 -04004520 return ret;
4521}
4522
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004523int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4524 Error **errp)
4525{
4526 AioContext *ctx = bdrv_get_aio_context(bs);
4527 BlockReopenQueue *queue;
4528 int ret;
4529
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004530 GLOBAL_STATE_CODE();
4531
Kevin Wolf2e117862022-11-18 18:41:01 +01004532 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4533
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004534 if (ctx != qemu_get_aio_context()) {
4535 aio_context_release(ctx);
4536 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004537 ret = bdrv_reopen_multiple(queue, errp);
4538
4539 if (ctx != qemu_get_aio_context()) {
4540 aio_context_acquire(ctx);
4541 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004542
4543 return ret;
4544}
4545
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004546int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4547 Error **errp)
4548{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004549 QDict *opts = qdict_new();
4550
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004551 GLOBAL_STATE_CODE();
4552
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004553 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4554
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004555 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004556}
4557
Jeff Codye971aa12012-09-20 15:13:19 -04004558/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004559 * Take a BDRVReopenState and check if the value of 'backing' in the
4560 * reopen_state->options QDict is valid or not.
4561 *
4562 * If 'backing' is missing from the QDict then return 0.
4563 *
4564 * If 'backing' contains the node name of the backing file of
4565 * reopen_state->bs then return 0.
4566 *
4567 * If 'backing' contains a different node name (or is null) then check
4568 * whether the current backing file can be replaced with the new one.
4569 * If that's the case then reopen_state->replace_backing_bs is set to
4570 * true and reopen_state->new_backing_bs contains a pointer to the new
4571 * backing BlockDriverState (or NULL).
4572 *
4573 * Return 0 on success, otherwise return < 0 and set @errp.
4574 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004575static int bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4576 bool is_backing, Transaction *tran,
4577 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004578{
4579 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004580 BlockDriverState *new_child_bs;
4581 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4582 child_bs(bs->file);
4583 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004584 QObject *value;
4585 const char *str;
4586
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004587 GLOBAL_STATE_CODE();
4588
Alberto Garciaecd30d22021-06-10 15:05:36 +03004589 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004590 if (value == NULL) {
4591 return 0;
4592 }
4593
4594 switch (qobject_type(value)) {
4595 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004596 assert(is_backing); /* The 'file' option does not allow a null value */
4597 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004598 break;
4599 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004600 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004601 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4602 if (new_child_bs == NULL) {
Alberto Garciacb828c32019-03-12 18:48:47 +02004603 return -EINVAL;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004604 } else if (bdrv_recurse_has_child(new_child_bs, bs)) {
4605 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4606 "cycle", str, child_name, bs->node_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004607 return -EINVAL;
4608 }
4609 break;
4610 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004611 /*
4612 * The options QDict has been flattened, so 'backing' and 'file'
4613 * do not allow any other data type here.
4614 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004615 g_assert_not_reached();
4616 }
4617
Alberto Garciaecd30d22021-06-10 15:05:36 +03004618 if (old_child_bs == new_child_bs) {
4619 return 0;
4620 }
4621
4622 if (old_child_bs) {
4623 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004624 return 0;
4625 }
4626
Alberto Garciaecd30d22021-06-10 15:05:36 +03004627 if (old_child_bs->implicit) {
4628 error_setg(errp, "Cannot replace implicit %s child of %s",
4629 child_name, bs->node_name);
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004630 return -EPERM;
4631 }
4632 }
4633
Alberto Garciaecd30d22021-06-10 15:05:36 +03004634 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004635 /*
4636 * Filters always have a file or a backing child, so we are trying to
4637 * change wrong child
4638 */
4639 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004640 "%s child", bs->node_name, bs->drv->format_name, child_name);
Max Reitz1d42f482019-06-12 17:24:39 +02004641 return -EINVAL;
4642 }
4643
Alberto Garciaecd30d22021-06-10 15:05:36 +03004644 if (is_backing) {
4645 reopen_state->old_backing_bs = old_child_bs;
4646 } else {
4647 reopen_state->old_file_bs = old_child_bs;
4648 }
4649
4650 return bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4651 tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004652}
4653
4654/*
Jeff Codye971aa12012-09-20 15:13:19 -04004655 * Prepares a BlockDriverState for reopen. All changes are staged in the
4656 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4657 * the block driver layer .bdrv_reopen_prepare()
4658 *
4659 * bs is the BlockDriverState to reopen
4660 * flags are the new open flags
4661 * queue is the reopen queue
4662 *
4663 * Returns 0 on success, non-zero on error. On error errp will be set
4664 * as well.
4665 *
4666 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4667 * It is the responsibility of the caller to then call the abort() or
4668 * commit() for any other BDS that have been left in a prepare() state
4669 *
4670 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004671static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004672 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +03004673 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004674{
4675 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004676 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004677 Error *local_err = NULL;
4678 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004679 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004680 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004681 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004682 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004683 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004684
4685 assert(reopen_state != NULL);
4686 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004687 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004688 drv = reopen_state->bs->drv;
4689
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004690 /* This function and each driver's bdrv_reopen_prepare() remove
4691 * entries from reopen_state->options as they are processed, so
4692 * we need to make a copy of the original QDict. */
4693 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4694
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004695 /* Process generic block layer options */
4696 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004697 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004698 ret = -EINVAL;
4699 goto error;
4700 }
4701
Alberto Garciae6d79c42018-11-12 16:00:47 +02004702 /* This was already called in bdrv_reopen_queue_child() so the flags
4703 * are up-to-date. This time we simply want to remove the options from
4704 * QemuOpts in order to indicate that they have been processed. */
4705 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004706 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004707 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004708
Alberto Garcia415bbca2018-10-03 13:23:13 +03004709 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004710 if (discard != NULL) {
4711 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4712 error_setg(errp, "Invalid discard option");
4713 ret = -EINVAL;
4714 goto error;
4715 }
4716 }
4717
Alberto Garcia543770b2018-09-06 12:37:09 +03004718 reopen_state->detect_zeroes =
4719 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4720 if (local_err) {
4721 error_propagate(errp, local_err);
4722 ret = -EINVAL;
4723 goto error;
4724 }
4725
Alberto Garcia57f9db92018-09-06 12:37:06 +03004726 /* All other options (including node-name and driver) must be unchanged.
4727 * Put them back into the QDict, so that they are checked at the end
4728 * of this function. */
4729 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004730
Jeff Cody3d8ce172017-04-07 16:55:30 -04004731 /* If we are to stay read-only, do not allow permission change
4732 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4733 * not set, or if the BDS still has copy_on_read enabled */
4734 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004735 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Jeff Cody3d8ce172017-04-07 16:55:30 -04004736 if (local_err) {
4737 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004738 goto error;
4739 }
4740
Jeff Codye971aa12012-09-20 15:13:19 -04004741 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004742 /*
4743 * If a driver-specific option is missing, it means that we
4744 * should reset it to its default value.
4745 * But not all options allow that, so we need to check it first.
4746 */
4747 ret = bdrv_reset_options_allowed(reopen_state->bs,
4748 reopen_state->options, errp);
4749 if (ret) {
4750 goto error;
4751 }
4752
Jeff Codye971aa12012-09-20 15:13:19 -04004753 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4754 if (ret) {
4755 if (local_err != NULL) {
4756 error_propagate(errp, local_err);
4757 } else {
Max Reitzf30c66b2019-02-01 20:29:05 +01004758 bdrv_refresh_filename(reopen_state->bs);
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004759 error_setg(errp, "failed while preparing to reopen image '%s'",
4760 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04004761 }
4762 goto error;
4763 }
4764 } else {
4765 /* It is currently mandatory to have a bdrv_reopen_prepare()
4766 * handler for each supported drv. */
Alberto Garcia81e5f782015-04-08 12:29:19 +03004767 error_setg(errp, "Block format '%s' used by node '%s' "
4768 "does not support reopening files", drv->format_name,
4769 bdrv_get_device_or_node_name(reopen_state->bs));
Jeff Codye971aa12012-09-20 15:13:19 -04004770 ret = -1;
4771 goto error;
4772 }
4773
Max Reitz9ad08c42018-11-16 17:45:24 +01004774 drv_prepared = true;
4775
Alberto Garciabacd9b82019-03-12 18:48:46 +02004776 /*
4777 * We must provide the 'backing' option if the BDS has a backing
4778 * file or if the image file has a backing file name as part of
4779 * its metadata. Otherwise the 'backing' option can be omitted.
4780 */
4781 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02004782 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02004783 error_setg(errp, "backing is missing for '%s'",
4784 reopen_state->bs->node_name);
4785 ret = -EINVAL;
4786 goto error;
4787 }
4788
Alberto Garciacb828c32019-03-12 18:48:47 +02004789 /*
4790 * Allow changing the 'backing' option. The new value can be
4791 * either a reference to an existing node (using its node name)
4792 * or NULL to simply detach the current backing file.
4793 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03004794 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
4795 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02004796 if (ret < 0) {
4797 goto error;
4798 }
4799 qdict_del(reopen_state->options, "backing");
4800
Alberto Garciaecd30d22021-06-10 15:05:36 +03004801 /* Allow changing the 'file' option. In this case NULL is not allowed */
4802 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
4803 change_child_tran, errp);
4804 if (ret < 0) {
4805 goto error;
4806 }
4807 qdict_del(reopen_state->options, "file");
4808
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004809 /* Options that are not handled are only okay if they are unchanged
4810 * compared to the old state. It is expected that some options are only
4811 * used for the initial open, but not reopen (e.g. filename) */
4812 if (qdict_size(reopen_state->options)) {
4813 const QDictEntry *entry = qdict_first(reopen_state->options);
4814
4815 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01004816 QObject *new = entry->value;
4817 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004818
Alberto Garciadb905282018-09-06 12:37:05 +03004819 /* Allow child references (child_name=node_name) as long as they
4820 * point to the current child (i.e. everything stays the same). */
4821 if (qobject_type(new) == QTYPE_QSTRING) {
4822 BdrvChild *child;
4823 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
4824 if (!strcmp(child->name, entry->key)) {
4825 break;
4826 }
4827 }
4828
4829 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01004830 if (!strcmp(child->bs->node_name,
4831 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03004832 continue; /* Found child with this name, skip option */
4833 }
4834 }
4835 }
4836
Max Reitz54fd1b02017-11-14 19:01:26 +01004837 /*
4838 * TODO: When using -drive to specify blockdev options, all values
4839 * will be strings; however, when using -blockdev, blockdev-add or
4840 * filenames using the json:{} pseudo-protocol, they will be
4841 * correctly typed.
4842 * In contrast, reopening options are (currently) always strings
4843 * (because you can only specify them through qemu-io; all other
4844 * callers do not specify any options).
4845 * Therefore, when using anything other than -drive to create a BDS,
4846 * this cannot detect non-string options as unchanged, because
4847 * qobject_is_equal() always returns false for objects of different
4848 * type. In the future, this should be remedied by correctly typing
4849 * all options. For now, this is not too big of an issue because
4850 * the user can simply omit options which cannot be changed anyway,
4851 * so they will stay unchanged.
4852 */
4853 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004854 error_setg(errp, "Cannot change the option '%s'", entry->key);
4855 ret = -EINVAL;
4856 goto error;
4857 }
4858 } while ((entry = qdict_next(reopen_state->options, entry)));
4859 }
4860
Jeff Codye971aa12012-09-20 15:13:19 -04004861 ret = 0;
4862
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004863 /* Restore the original reopen_state->options QDict */
4864 qobject_unref(reopen_state->options);
4865 reopen_state->options = qobject_ref(orig_reopen_opts);
4866
Jeff Codye971aa12012-09-20 15:13:19 -04004867error:
Max Reitz9ad08c42018-11-16 17:45:24 +01004868 if (ret < 0 && drv_prepared) {
4869 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
4870 * call drv->bdrv_reopen_abort() before signaling an error
4871 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
4872 * when the respective bdrv_reopen_prepare() has failed) */
4873 if (drv->bdrv_reopen_abort) {
4874 drv->bdrv_reopen_abort(reopen_state);
4875 }
4876 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004877 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004878 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03004879 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04004880 return ret;
4881}
4882
4883/*
4884 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
4885 * makes them final by swapping the staging BlockDriverState contents into
4886 * the active BlockDriverState contents.
4887 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004888static void bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004889{
4890 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004891 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03004892 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04004893
4894 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004895 bs = reopen_state->bs;
4896 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04004897 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004898 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004899
4900 /* If there are any driver level actions to take */
4901 if (drv->bdrv_reopen_commit) {
4902 drv->bdrv_reopen_commit(reopen_state);
4903 }
4904
4905 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004906 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004907 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02004908 qobject_ref(reopen_state->explicit_options);
4909 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02004910
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004911 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004912 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03004913 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03004914 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01004915
Alberto Garcia50196d72018-09-06 12:37:03 +03004916 /* Remove child references from bs->options and bs->explicit_options.
4917 * Child options were already removed in bdrv_reopen_queue_child() */
4918 QLIST_FOREACH(child, &bs->children, next) {
4919 qdict_del(bs->explicit_options, child->name);
4920 qdict_del(bs->options, child->name);
4921 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03004922 /* backing is probably removed, so it's not handled by previous loop */
4923 qdict_del(bs->explicit_options, "backing");
4924 qdict_del(bs->options, "backing");
4925
Kevin Wolfe19b1572023-05-04 13:57:50 +02004926 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03004927 bdrv_refresh_limits(bs, NULL, NULL);
Kevin Wolfe19b1572023-05-04 13:57:50 +02004928 bdrv_graph_rdunlock_main_loop();
Paolo Bonzini439cc332023-04-07 17:32:58 +02004929 bdrv_refresh_total_sectors(bs, bs->total_sectors);
Jeff Codye971aa12012-09-20 15:13:19 -04004930}
4931
4932/*
4933 * Abort the reopen, and delete and free the staged changes in
4934 * reopen_state
4935 */
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +03004936static void bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04004937{
4938 BlockDriver *drv;
4939
4940 assert(reopen_state != NULL);
4941 drv = reopen_state->bs->drv;
4942 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004943 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004944
4945 if (drv->bdrv_reopen_abort) {
4946 drv->bdrv_reopen_abort(reopen_state);
4947 }
4948}
4949
4950
Max Reitz64dff522016-01-29 16:36:10 +01004951static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00004952{
Max Reitz33384422014-06-20 21:57:33 +02004953 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004954 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02004955
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004956 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02004957 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03004958
Paolo Bonzinifc272912015-12-23 11:48:24 +01004959 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02004960 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08004961 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01004962
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02004963 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004964 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02004965 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03004966 bs->drv->bdrv_close(bs);
4967 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02004968 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00004969 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08004970
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004971 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03004972 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004973 }
4974
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03004975 assert(!bs->backing);
4976 assert(!bs->file);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004977 g_free(bs->opaque);
4978 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01004979 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004980 bs->backing_file[0] = '\0';
4981 bs->backing_format[0] = '\0';
4982 bs->total_sectors = 0;
4983 bs->encrypted = false;
4984 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004985 qobject_unref(bs->options);
4986 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004987 bs->options = NULL;
4988 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004989 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004990 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02004991 g_free(bs->block_status_cache);
4992 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02004993
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03004994 bdrv_release_named_dirty_bitmaps(bs);
4995 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
4996
Max Reitz33384422014-06-20 21:57:33 +02004997 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
4998 g_free(ban);
4999 }
5000 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01005001 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02005002
5003 /*
5004 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5005 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5006 * gets called.
5007 */
5008 if (bs->quiesce_counter) {
5009 bdrv_drain_all_end_quiesce(bs);
5010 }
bellardb3380822004-03-14 21:38:54 +00005011}
5012
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005013void bdrv_close_all(void)
5014{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005015 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04005016 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005017
Max Reitzca9bd242016-01-29 16:36:14 +01005018 /* Drop references from requests still in flight, such as canceled block
5019 * jobs whose AIO context has not been polled yet */
5020 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005021
Max Reitzca9bd242016-01-29 16:36:14 +01005022 blk_remove_all_bs();
5023 blockdev_close_all_bdrv_states();
5024
Kevin Wolfa1a2af02016-04-08 18:26:37 +02005025 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005026}
5027
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005028static bool should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005029{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005030 GQueue *queue;
5031 GHashTable *found;
5032 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005033
Max Reitzbd86fb92020-05-13 13:05:13 +02005034 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005035 return false;
5036 }
5037
Max Reitzec9f10f2018-06-13 20:18:15 +02005038 /* If the child @c belongs to the BDS @to, replacing the current
5039 * c->bs by @to would mean to create a loop.
5040 *
5041 * Such a case occurs when appending a BDS to a backing chain.
5042 * For instance, imagine the following chain:
5043 *
5044 * guest device -> node A -> further backing chain...
5045 *
5046 * Now we create a new BDS B which we want to put on top of this
5047 * chain, so we first attach A as its backing node:
5048 *
5049 * node B
5050 * |
5051 * v
5052 * guest device -> node A -> further backing chain...
5053 *
5054 * Finally we want to replace A by B. When doing that, we want to
5055 * replace all pointers to A by pointers to B -- except for the
5056 * pointer from B because (1) that would create a loop, and (2)
5057 * that pointer should simply stay intact:
5058 *
5059 * guest device -> node B
5060 * |
5061 * v
5062 * node A -> further backing chain...
5063 *
5064 * In general, when replacing a node A (c->bs) by a node B (@to),
5065 * if A is a child of B, that means we cannot replace A by B there
5066 * because that would create a loop. Silently detaching A from B
5067 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005068 * place there is the most sensible choice.
5069 *
5070 * We would also create a loop in any cases where @c is only
5071 * indirectly referenced by @to. Prevent this by returning false
5072 * if @c is found (by breadth-first search) anywhere in the whole
5073 * subtree of @to.
5074 */
5075
5076 ret = true;
5077 found = g_hash_table_new(NULL, NULL);
5078 g_hash_table_add(found, to);
5079 queue = g_queue_new();
5080 g_queue_push_tail(queue, to);
5081
5082 while (!g_queue_is_empty(queue)) {
5083 BlockDriverState *v = g_queue_pop_head(queue);
5084 BdrvChild *c2;
5085
5086 QLIST_FOREACH(c2, &v->children, next) {
5087 if (c2 == c) {
5088 ret = false;
5089 break;
5090 }
5091
5092 if (g_hash_table_contains(found, c2->bs)) {
5093 continue;
5094 }
5095
5096 g_queue_push_tail(queue, c2->bs);
5097 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005098 }
5099 }
5100
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005101 g_queue_free(queue);
5102 g_hash_table_destroy(found);
5103
5104 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005105}
5106
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005107static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005108{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005109 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005110 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005111}
5112
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005113static TransactionActionDrv bdrv_remove_child_drv = {
5114 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005115};
5116
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005117/* Function doesn't update permissions, caller is responsible for this. */
5118static void bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005119{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005120 if (!child) {
5121 return;
5122 }
5123
5124 if (child->bs) {
Kevin Wolf23987472022-11-18 18:41:09 +01005125 BlockDriverState *bs = child->bs;
5126 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005127 bdrv_replace_child_tran(child, NULL, tran);
Kevin Wolf23987472022-11-18 18:41:09 +01005128 bdrv_drained_end(bs);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005129 }
5130
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005131 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005132}
5133
Kevin Wolf23987472022-11-18 18:41:09 +01005134static void undrain_on_clean_cb(void *opaque)
5135{
5136 bdrv_drained_end(opaque);
5137}
5138
5139static TransactionActionDrv undrain_on_clean = {
5140 .clean = undrain_on_clean_cb,
5141};
5142
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005143static int bdrv_replace_node_noperm(BlockDriverState *from,
5144 BlockDriverState *to,
5145 bool auto_skip, Transaction *tran,
5146 Error **errp)
5147{
5148 BdrvChild *c, *next;
5149
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005150 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005151
Kevin Wolf23987472022-11-18 18:41:09 +01005152 bdrv_drained_begin(from);
5153 bdrv_drained_begin(to);
5154 tran_add(tran, &undrain_on_clean, from);
5155 tran_add(tran, &undrain_on_clean, to);
5156
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005157 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5158 assert(c->bs == from);
5159 if (!should_update_child(c, to)) {
5160 if (auto_skip) {
5161 continue;
5162 }
5163 error_setg(errp, "Should not change '%s' link to '%s'",
5164 c->name, from->node_name);
5165 return -EINVAL;
5166 }
5167 if (c->frozen) {
5168 error_setg(errp, "Cannot change '%s' link to '%s'",
5169 c->name, from->node_name);
5170 return -EPERM;
5171 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005172 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005173 }
5174
5175 return 0;
5176}
5177
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005178/*
5179 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5180 * if it creates a parent-child relation loop or if parent is block-job.
5181 *
5182 * With auto_skip=false the error is returned if from has a parent which should
5183 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005184 *
5185 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5186 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005187 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005188static int bdrv_replace_node_common(BlockDriverState *from,
5189 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005190 bool auto_skip, bool detach_subchain,
5191 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005192{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005193 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005194 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005195 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005196 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005197
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005198 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005199
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005200 if (detach_subchain) {
5201 assert(bdrv_chain_contains(from, to));
5202 assert(from != to);
5203 for (to_cow_parent = from;
5204 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5205 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5206 {
5207 ;
5208 }
5209 }
5210
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005211 /* Make sure that @from doesn't go away until we have successfully attached
5212 * all of its parents to @to. */
5213 bdrv_ref(from);
5214
Kevin Wolff871abd2019-05-21 19:00:25 +02005215 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005216 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005217 bdrv_drained_begin(from);
5218
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005219 /*
5220 * Do the replacement without permission update.
5221 * Replacement may influence the permissions, we should calculate new
5222 * permissions based on new graph. If we fail, we'll roll-back the
5223 * replacement.
5224 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005225 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5226 if (ret < 0) {
5227 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005228 }
5229
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005230 if (detach_subchain) {
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005231 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005232 }
5233
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005234 refresh_list = g_slist_prepend(refresh_list, to);
5235 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005236
5237 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005238 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005239 goto out;
5240 }
5241
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005242 ret = 0;
5243
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005244out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005245 tran_finalize(tran, ret);
5246
Kevin Wolff871abd2019-05-21 19:00:25 +02005247 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005248 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005249
5250 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005251}
5252
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005253int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5254 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005255{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005256 GLOBAL_STATE_CODE();
5257
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005258 return bdrv_replace_node_common(from, to, true, false, errp);
5259}
5260
5261int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5262{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005263 GLOBAL_STATE_CODE();
5264
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005265 return bdrv_replace_node_common(bs, bdrv_filter_or_cow_bs(bs), true, true,
5266 errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005267}
5268
Jeff Cody8802d1f2012-02-28 15:54:06 -05005269/*
5270 * Add new bs contents at the top of an image chain while the chain is
5271 * live, while keeping required fields on the top layer.
5272 *
5273 * This will modify the BlockDriverState fields, and swap contents
5274 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5275 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005276 * bs_new must not be attached to a BlockBackend and must not have backing
5277 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005278 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005279 * This function does not create any image files.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005280 *
5281 * The caller must hold the AioContext lock for @bs_top.
Jeff Cody8802d1f2012-02-28 15:54:06 -05005282 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005283int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5284 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005285{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005286 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005287 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005288 Transaction *tran = tran_new();
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005289 AioContext *old_context, *new_context = NULL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005290
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005291 GLOBAL_STATE_CODE();
5292
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005293 assert(!bs_new->backing);
5294
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005295 old_context = bdrv_get_aio_context(bs_top);
5296
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005297 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5298 &child_of_bds, bdrv_backing_role(bs_new),
5299 tran, errp);
5300 if (!child) {
5301 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005302 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005303 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005304
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005305 /*
5306 * bdrv_attach_child_noperm could change the AioContext of bs_top.
5307 * bdrv_replace_node_noperm calls bdrv_drained_begin, so let's temporarily
5308 * hold the new AioContext, since bdrv_drained_begin calls BDRV_POLL_WHILE
5309 * that assumes the new lock is taken.
5310 */
5311 new_context = bdrv_get_aio_context(bs_top);
5312
5313 if (old_context != new_context) {
5314 aio_context_release(old_context);
5315 aio_context_acquire(new_context);
5316 }
5317
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005318 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005319 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005320 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005321 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005322
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005323 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005324out:
5325 tran_finalize(tran, ret);
5326
Kevin Wolfe19b1572023-05-04 13:57:50 +02005327 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005328 bdrv_refresh_limits(bs_top, NULL, NULL);
Kevin Wolfe19b1572023-05-04 13:57:50 +02005329 bdrv_graph_rdunlock_main_loop();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005330
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005331 if (new_context && old_context != new_context) {
5332 aio_context_release(new_context);
5333 aio_context_acquire(old_context);
5334 }
5335
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005336 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005337}
5338
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005339/* Not for empty child */
5340int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5341 Error **errp)
5342{
5343 int ret;
5344 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005345 g_autoptr(GSList) refresh_list = NULL;
5346 BlockDriverState *old_bs = child->bs;
5347
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005348 GLOBAL_STATE_CODE();
5349
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005350 bdrv_ref(old_bs);
5351 bdrv_drained_begin(old_bs);
5352 bdrv_drained_begin(new_bs);
5353
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005354 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005355
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005356 refresh_list = g_slist_prepend(refresh_list, old_bs);
5357 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005358
5359 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5360
5361 tran_finalize(tran, ret);
5362
5363 bdrv_drained_end(old_bs);
5364 bdrv_drained_end(new_bs);
5365 bdrv_unref(old_bs);
5366
5367 return ret;
5368}
5369
Fam Zheng4f6fd342013-08-23 09:14:47 +08005370static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005371{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005372 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005373 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005374 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005375
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005376 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005377 if (bs->node_name[0] != '\0') {
5378 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5379 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005380 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5381
Anton Kuchin30c321f2019-05-07 11:12:56 +03005382 bdrv_close(bs);
5383
Anthony Liguori7267c092011-08-20 22:09:37 -05005384 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005385}
5386
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005387
5388/*
5389 * Replace @bs by newly created block node.
5390 *
5391 * @options is a QDict of options to pass to the block drivers, or NULL for an
5392 * empty set of options. The reference to the QDict belongs to the block layer
5393 * after the call (even on failure), so if the caller intends to reuse the
5394 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
5395 */
5396BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005397 int flags, Error **errp)
5398{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005399 ERRP_GUARD();
5400 int ret;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005401 BlockDriverState *new_node_bs = NULL;
5402 const char *drvname, *node_name;
5403 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005404
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005405 drvname = qdict_get_try_str(options, "driver");
5406 if (!drvname) {
5407 error_setg(errp, "driver is not specified");
5408 goto fail;
5409 }
5410
5411 drv = bdrv_find_format(drvname);
5412 if (!drv) {
5413 error_setg(errp, "Unknown driver: '%s'", drvname);
5414 goto fail;
5415 }
5416
5417 node_name = qdict_get_try_str(options, "node-name");
5418
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005419 GLOBAL_STATE_CODE();
5420
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005421 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5422 errp);
5423 options = NULL; /* bdrv_new_open_driver() eats options */
5424 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005425 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005426 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005427 }
5428
5429 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005430 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005431 bdrv_drained_end(bs);
5432
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005433 if (ret < 0) {
5434 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005435 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005436 }
5437
5438 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005439
5440fail:
5441 qobject_unref(options);
5442 bdrv_unref(new_node_bs);
5443 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005444}
5445
aliguorie97fc192009-04-21 23:11:50 +00005446/*
5447 * Run consistency checks on an image
5448 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005449 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005450 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005451 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005452 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005453int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5454 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005455{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005456 IO_CODE();
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01005457 assert_bdrv_graph_readable();
Max Reitz908bcd52014-08-07 22:47:55 +02005458 if (bs->drv == NULL) {
5459 return -ENOMEDIUM;
5460 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005461 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005462 return -ENOTSUP;
5463 }
5464
Kevin Wolfe076f332010-06-29 11:43:13 +02005465 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005466 return bs->drv->bdrv_co_check(bs, res, fix);
5467}
5468
Kevin Wolf756e6732010-01-12 12:55:17 +01005469/*
5470 * Return values:
5471 * 0 - success
5472 * -EINVAL - backing format specified, but no file
5473 * -ENOSPC - can't update the backing file because no space is left in the
5474 * image file header
5475 * -ENOTSUP - format driver doesn't support changing the backing file
5476 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005477int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005478 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005479{
5480 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005481 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005482
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005483 GLOBAL_STATE_CODE();
5484
Max Reitzd470ad42017-11-10 21:31:09 +01005485 if (!drv) {
5486 return -ENOMEDIUM;
5487 }
5488
Paolo Bonzini5f377792012-04-12 14:01:01 +02005489 /* Backing file format doesn't make sense without a backing file */
5490 if (backing_fmt && !backing_file) {
5491 return -EINVAL;
5492 }
5493
Eric Blake497a30d2021-05-03 14:36:00 -07005494 if (require && backing_file && !backing_fmt) {
5495 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005496 }
5497
Kevin Wolf756e6732010-01-12 12:55:17 +01005498 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005499 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005500 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005501 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005502 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005503
5504 if (ret == 0) {
5505 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5506 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005507 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5508 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005509 }
5510 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005511}
5512
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005513/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005514 * Finds the first non-filter node above bs in the chain between
5515 * active and bs. The returned node is either an immediate parent of
5516 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005517 *
5518 * Returns NULL if bs is not found in active's image chain,
5519 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005520 *
5521 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005522 */
5523BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5524 BlockDriverState *bs)
5525{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005526
5527 GLOBAL_STATE_CODE();
5528
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005529 bs = bdrv_skip_filters(bs);
5530 active = bdrv_skip_filters(active);
5531
5532 while (active) {
5533 BlockDriverState *next = bdrv_backing_chain_next(active);
5534 if (bs == next) {
5535 return active;
5536 }
5537 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005538 }
5539
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005540 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005541}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005542
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005543/* Given a BDS, searches for the base layer. */
5544BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5545{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005546 GLOBAL_STATE_CODE();
5547
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005548 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005549}
5550
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005551/*
Max Reitz7b99a262019-06-12 16:07:11 +02005552 * Return true if at least one of the COW (backing) and filter links
5553 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005554 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005555 */
5556bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5557 Error **errp)
5558{
5559 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005560 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005561
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005562 GLOBAL_STATE_CODE();
5563
Max Reitz7b99a262019-06-12 16:07:11 +02005564 for (i = bs; i != base; i = child_bs(child)) {
5565 child = bdrv_filter_or_cow_child(i);
5566
5567 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005568 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005569 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005570 return true;
5571 }
5572 }
5573
5574 return false;
5575}
5576
5577/*
Max Reitz7b99a262019-06-12 16:07:11 +02005578 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005579 * If any of the links is already frozen the operation is aborted and
5580 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005581 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005582 * Returns 0 on success. On failure returns < 0 and sets @errp.
5583 */
5584int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5585 Error **errp)
5586{
5587 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005588 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005589
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005590 GLOBAL_STATE_CODE();
5591
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005592 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5593 return -EPERM;
5594 }
5595
Max Reitz7b99a262019-06-12 16:07:11 +02005596 for (i = bs; i != base; i = child_bs(child)) {
5597 child = bdrv_filter_or_cow_child(i);
5598 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005599 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005600 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005601 return -EPERM;
5602 }
5603 }
5604
Max Reitz7b99a262019-06-12 16:07:11 +02005605 for (i = bs; i != base; i = child_bs(child)) {
5606 child = bdrv_filter_or_cow_child(i);
5607 if (child) {
5608 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005609 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005610 }
5611
5612 return 0;
5613}
5614
5615/*
Max Reitz7b99a262019-06-12 16:07:11 +02005616 * Unfreeze all COW (backing) and filter links between @bs and @base.
5617 * The caller must ensure that all links are frozen before using this
5618 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005619 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005620 */
5621void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5622{
5623 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005624 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005625
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005626 GLOBAL_STATE_CODE();
5627
Max Reitz7b99a262019-06-12 16:07:11 +02005628 for (i = bs; i != base; i = child_bs(child)) {
5629 child = bdrv_filter_or_cow_child(i);
5630 if (child) {
5631 assert(child->frozen);
5632 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005633 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005634 }
5635}
5636
5637/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005638 * Drops images above 'base' up to and including 'top', and sets the image
5639 * above 'top' to have base as its backing file.
5640 *
5641 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5642 * information in 'bs' can be properly updated.
5643 *
5644 * E.g., this will convert the following chain:
5645 * bottom <- base <- intermediate <- top <- active
5646 *
5647 * to
5648 *
5649 * bottom <- base <- active
5650 *
5651 * It is allowed for bottom==base, in which case it converts:
5652 *
5653 * base <- intermediate <- top <- active
5654 *
5655 * to
5656 *
5657 * base <- active
5658 *
Jeff Cody54e26902014-06-25 15:40:10 -04005659 * If backing_file_str is non-NULL, it will be used when modifying top's
5660 * overlay image metadata.
5661 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005662 * Error conditions:
5663 * if active == top, that is considered an error
5664 *
5665 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005666int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5667 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005668{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005669 BlockDriverState *explicit_top = top;
5670 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005671 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005672 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005673 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005674 g_autoptr(GSList) updated_children = NULL;
5675 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005676
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005677 GLOBAL_STATE_CODE();
5678
Kevin Wolf6858eba2017-06-29 19:32:21 +02005679 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005680 bdrv_drained_begin(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005681
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005682 if (!top->drv || !base->drv) {
5683 goto exit;
5684 }
5685
Kevin Wolf5db15a52015-09-14 15:33:33 +02005686 /* Make sure that base is in the backing chain of top */
5687 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005688 goto exit;
5689 }
5690
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005691 /* If 'base' recursively inherits from 'top' then we should set
5692 * base->inherits_from to top->inherits_from after 'top' and all
5693 * other intermediate nodes have been dropped.
5694 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5695 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005696 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005697 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5698
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005699 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005700 if (!backing_file_str) {
5701 bdrv_refresh_filename(base);
5702 backing_file_str = base->filename;
5703 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005704
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005705 QLIST_FOREACH(c, &top->parents, next_parent) {
5706 updated_children = g_slist_prepend(updated_children, c);
5707 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005708
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005709 /*
5710 * It seems correct to pass detach_subchain=true here, but it triggers
5711 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
5712 * another drained section, which modify the graph (for example, removing
5713 * the child, which we keep in updated_children list). So, it's a TODO.
5714 *
5715 * Note, bug triggered if pass detach_subchain=true here and run
5716 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
5717 * That's a FIXME.
5718 */
5719 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005720 if (local_err) {
5721 error_report_err(local_err);
5722 goto exit;
5723 }
5724
5725 for (p = updated_children; p; p = p->next) {
5726 c = p->data;
5727
Max Reitzbd86fb92020-05-13 13:05:13 +02005728 if (c->klass->update_filename) {
5729 ret = c->klass->update_filename(c, base, backing_file_str,
5730 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005731 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005732 /*
5733 * TODO: Actually, we want to rollback all previous iterations
5734 * of this loop, and (which is almost impossible) previous
5735 * bdrv_replace_node()...
5736 *
5737 * Note, that c->klass->update_filename may lead to permission
5738 * update, so it's a bad idea to call it inside permission
5739 * update transaction of bdrv_replace_node.
5740 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005741 error_report_err(local_err);
5742 goto exit;
5743 }
5744 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005745 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005746
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005747 if (update_inherits_from) {
5748 base->inherits_from = explicit_top->inherits_from;
5749 }
5750
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005751 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005752exit:
Kevin Wolf631086d2022-11-18 18:41:03 +01005753 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02005754 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005755 return ret;
5756}
5757
bellard83f64092006-08-01 16:21:11 +00005758/**
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005759 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
Max Reitz081e4652019-06-12 18:14:13 +02005760 * sums the size of all data-bearing children. (This excludes backing
5761 * children.)
5762 */
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02005763static int64_t coroutine_fn GRAPH_RDLOCK
5764bdrv_sum_allocated_file_size(BlockDriverState *bs)
Max Reitz081e4652019-06-12 18:14:13 +02005765{
5766 BdrvChild *child;
5767 int64_t child_size, sum = 0;
5768
5769 QLIST_FOREACH(child, &bs->children, next) {
5770 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
5771 BDRV_CHILD_FILTERED))
5772 {
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005773 child_size = bdrv_co_get_allocated_file_size(child->bs);
Max Reitz081e4652019-06-12 18:14:13 +02005774 if (child_size < 0) {
5775 return child_size;
5776 }
5777 sum += child_size;
5778 }
5779 }
5780
5781 return sum;
5782}
5783
5784/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005785 * Length of a allocated file in bytes. Sparse files are counted by actual
5786 * allocated space. Return < 0 if error or unknown.
5787 */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005788int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005789{
5790 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005791 IO_CODE();
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02005792 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005793
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005794 if (!drv) {
5795 return -ENOMEDIUM;
5796 }
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005797 if (drv->bdrv_co_get_allocated_file_size) {
5798 return drv->bdrv_co_get_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005799 }
Max Reitz081e4652019-06-12 18:14:13 +02005800
5801 if (drv->bdrv_file_open) {
5802 /*
5803 * Protocol drivers default to -ENOTSUP (most of their data is
5804 * not stored in any of their children (if they even have any),
5805 * so there is no generic way to figure it out).
5806 */
5807 return -ENOTSUP;
5808 } else if (drv->is_filter) {
5809 /* Filter drivers default to the size of their filtered child */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01005810 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
Max Reitz081e4652019-06-12 18:14:13 +02005811 } else {
5812 /* Other drivers default to summing their children's sizes */
5813 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005814 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005815}
5816
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005817/*
5818 * bdrv_measure:
5819 * @drv: Format driver
5820 * @opts: Creation options for new image
5821 * @in_bs: Existing image containing data for new image (may be NULL)
5822 * @errp: Error object
5823 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
5824 * or NULL on error
5825 *
5826 * Calculate file size required to create a new image.
5827 *
5828 * If @in_bs is given then space for allocated clusters and zero clusters
5829 * from that image are included in the calculation. If @opts contains a
5830 * backing file that is shared by @in_bs then backing clusters may be omitted
5831 * from the calculation.
5832 *
5833 * If @in_bs is NULL then the calculation includes no allocated clusters
5834 * unless a preallocation option is given in @opts.
5835 *
5836 * Note that @in_bs may use a different BlockDriver from @drv.
5837 *
5838 * If an error occurs the @errp pointer is set.
5839 */
5840BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
5841 BlockDriverState *in_bs, Error **errp)
5842{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005843 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01005844 if (!drv->bdrv_measure) {
5845 error_setg(errp, "Block driver '%s' does not support size measurement",
5846 drv->format_name);
5847 return NULL;
5848 }
5849
5850 return drv->bdrv_measure(opts, in_bs, errp);
5851}
5852
Fam Zheng4a1d5e12011-07-12 19:56:39 +08005853/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005854 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00005855 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005856int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00005857{
5858 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005859 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01005860 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005861
bellard83f64092006-08-01 16:21:11 +00005862 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00005863 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01005864
Paolo Bonzini160a29e2023-04-07 17:32:56 +02005865 if (bs->bl.has_variable_length) {
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005866 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolfb94a2612013-10-29 12:18:58 +01005867 if (ret < 0) {
5868 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01005869 }
bellard83f64092006-08-01 16:21:11 +00005870 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005871 return bs->total_sectors;
5872}
5873
Paolo Bonzini81f730d2023-04-07 17:33:03 +02005874/*
5875 * This wrapper is written by hand because this function is in the hot I/O path,
5876 * via blk_get_geometry.
5877 */
5878int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
5879{
5880 BlockDriver *drv = bs->drv;
5881 IO_CODE();
5882
5883 if (!drv)
5884 return -ENOMEDIUM;
5885
5886 if (bs->bl.has_variable_length) {
5887 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
5888 if (ret < 0) {
5889 return ret;
5890 }
5891 }
5892
5893 return bs->total_sectors;
5894}
5895
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005896/**
5897 * Return length in bytes on success, -errno on error.
5898 * The length is always a multiple of BDRV_SECTOR_SIZE.
5899 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005900int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005901{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005902 int64_t ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005903 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01005904 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02005905
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01005906 ret = bdrv_co_nb_sectors(bs);
Eric Blake122860b2020-11-05 09:51:22 -06005907 if (ret < 0) {
5908 return ret;
5909 }
5910 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
5911 return -EFBIG;
5912 }
5913 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00005914}
5915
Eric Blake54115412016-06-23 16:37:26 -06005916bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00005917{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005918 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00005919 return bs->sg;
5920}
5921
Max Reitzae23f782019-06-12 22:57:15 +02005922/**
5923 * Return whether the given node supports compressed writes.
5924 */
5925bool bdrv_supports_compressed_writes(BlockDriverState *bs)
5926{
5927 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005928 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02005929
5930 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
5931 return false;
5932 }
5933
5934 filtered = bdrv_filter_bs(bs);
5935 if (filtered) {
5936 /*
5937 * Filters can only forward compressed writes, so we have to
5938 * check the child.
5939 */
5940 return bdrv_supports_compressed_writes(filtered);
5941 }
5942
5943 return true;
5944}
5945
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005946const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00005947{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05005948 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02005949 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00005950}
5951
Stefan Hajnocziada42402014-08-27 12:08:55 +01005952static int qsort_strcmp(const void *a, const void *b)
5953{
Max Reitzceff5bd2016-10-12 22:49:05 +02005954 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01005955}
5956
ths5fafdf22007-09-16 21:08:06 +00005957void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005958 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00005959{
5960 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04005961 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01005962 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04005963 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00005964
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005965 GLOBAL_STATE_CODE();
5966
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01005967 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04005968 if (drv->format_name) {
5969 bool found = false;
5970 int i = count;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005971
5972 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
5973 continue;
5974 }
5975
Jeff Codye855e4f2014-04-28 18:29:54 -04005976 while (formats && i && !found) {
5977 found = !strcmp(formats[--i], drv->format_name);
5978 }
5979
5980 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02005981 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04005982 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04005983 }
5984 }
bellardea2384d2004-08-01 21:59:26 +00005985 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01005986
Max Reitzeb0df692016-10-12 22:49:06 +02005987 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
5988 const char *format_name = block_driver_modules[i].format_name;
5989
5990 if (format_name) {
5991 bool found = false;
5992 int j = count;
5993
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03005994 if (use_bdrv_whitelist &&
5995 !bdrv_format_is_whitelisted(format_name, read_only)) {
5996 continue;
5997 }
5998
Max Reitzeb0df692016-10-12 22:49:06 +02005999 while (formats && j && !found) {
6000 found = !strcmp(formats[--j], format_name);
6001 }
6002
6003 if (!found) {
6004 formats = g_renew(const char *, formats, count + 1);
6005 formats[count++] = format_name;
6006 }
6007 }
6008 }
6009
Stefan Hajnocziada42402014-08-27 12:08:55 +01006010 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6011
6012 for (i = 0; i < count; i++) {
6013 it(opaque, formats[i]);
6014 }
6015
Jeff Codye855e4f2014-04-28 18:29:54 -04006016 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00006017}
6018
Benoît Canetdc364f42014-01-23 21:31:32 +01006019/* This function is to find a node in the bs graph */
6020BlockDriverState *bdrv_find_node(const char *node_name)
6021{
6022 BlockDriverState *bs;
6023
6024 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006025 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006026
6027 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6028 if (!strcmp(node_name, bs->node_name)) {
6029 return bs;
6030 }
6031 }
6032 return NULL;
6033}
6034
Benoît Canetc13163f2014-01-23 21:31:34 +01006035/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006036BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6037 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006038{
Eric Blake9812e712020-10-27 00:05:47 -05006039 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006040 BlockDriverState *bs;
6041
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006042 GLOBAL_STATE_CODE();
6043
Benoît Canetc13163f2014-01-23 21:31:34 +01006044 list = NULL;
6045 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006046 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006047 if (!info) {
6048 qapi_free_BlockDeviceInfoList(list);
6049 return NULL;
6050 }
Eric Blake9812e712020-10-27 00:05:47 -05006051 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006052 }
6053
6054 return list;
6055}
6056
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006057typedef struct XDbgBlockGraphConstructor {
6058 XDbgBlockGraph *graph;
6059 GHashTable *graph_nodes;
6060} XDbgBlockGraphConstructor;
6061
6062static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6063{
6064 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6065
6066 gr->graph = g_new0(XDbgBlockGraph, 1);
6067 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6068
6069 return gr;
6070}
6071
6072static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6073{
6074 XDbgBlockGraph *graph = gr->graph;
6075
6076 g_hash_table_destroy(gr->graph_nodes);
6077 g_free(gr);
6078
6079 return graph;
6080}
6081
6082static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6083{
6084 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6085
6086 if (ret != 0) {
6087 return ret;
6088 }
6089
6090 /*
6091 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6092 * answer of g_hash_table_lookup.
6093 */
6094 ret = g_hash_table_size(gr->graph_nodes) + 1;
6095 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6096
6097 return ret;
6098}
6099
6100static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6101 XDbgBlockGraphNodeType type, const char *name)
6102{
6103 XDbgBlockGraphNode *n;
6104
6105 n = g_new0(XDbgBlockGraphNode, 1);
6106
6107 n->id = xdbg_graph_node_num(gr, node);
6108 n->type = type;
6109 n->name = g_strdup(name);
6110
Eric Blake9812e712020-10-27 00:05:47 -05006111 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006112}
6113
6114static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6115 const BdrvChild *child)
6116{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006117 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006118 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006119 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006120
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006121 edge = g_new0(XDbgBlockGraphEdge, 1);
6122
6123 edge->parent = xdbg_graph_node_num(gr, parent);
6124 edge->child = xdbg_graph_node_num(gr, child->bs);
6125 edge->name = g_strdup(child->name);
6126
Max Reitzcdb1cec2019-11-08 13:34:52 +01006127 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6128 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6129
6130 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006131 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006132 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006133 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006134 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006135 }
6136 }
6137
Eric Blake9812e712020-10-27 00:05:47 -05006138 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006139}
6140
6141
6142XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6143{
6144 BlockBackend *blk;
6145 BlockJob *job;
6146 BlockDriverState *bs;
6147 BdrvChild *child;
6148 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6149
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006150 GLOBAL_STATE_CODE();
6151
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006152 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6153 char *allocated_name = NULL;
6154 const char *name = blk_name(blk);
6155
6156 if (!*name) {
6157 name = allocated_name = blk_get_attached_dev_id(blk);
6158 }
6159 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6160 name);
6161 g_free(allocated_name);
6162 if (blk_root(blk)) {
6163 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6164 }
6165 }
6166
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006167 WITH_JOB_LOCK_GUARD() {
6168 for (job = block_job_next_locked(NULL); job;
6169 job = block_job_next_locked(job)) {
6170 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006171
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006172 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6173 job->job.id);
6174 for (el = job->nodes; el; el = el->next) {
6175 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6176 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006177 }
6178 }
6179
6180 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6181 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6182 bs->node_name);
6183 QLIST_FOREACH(child, &bs->children, next) {
6184 xdbg_graph_add_edge(gr, bs, child);
6185 }
6186 }
6187
6188 return xdbg_graph_finalize(gr);
6189}
6190
Benoît Canet12d3ba82014-01-23 21:31:35 +01006191BlockDriverState *bdrv_lookup_bs(const char *device,
6192 const char *node_name,
6193 Error **errp)
6194{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006195 BlockBackend *blk;
6196 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006197
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006198 GLOBAL_STATE_CODE();
6199
Benoît Canet12d3ba82014-01-23 21:31:35 +01006200 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006201 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006202
Markus Armbruster7f06d472014-10-07 13:59:12 +02006203 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006204 bs = blk_bs(blk);
6205 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006206 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006207 }
6208
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006209 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006210 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006211 }
6212
Benoît Canetdd67fa52014-02-12 17:15:06 +01006213 if (node_name) {
6214 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006215
Benoît Canetdd67fa52014-02-12 17:15:06 +01006216 if (bs) {
6217 return bs;
6218 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006219 }
6220
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006221 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006222 device ? device : "",
6223 node_name ? node_name : "");
6224 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006225}
6226
Jeff Cody5a6684d2014-06-25 15:40:09 -04006227/* If 'base' is in the same chain as 'top', return true. Otherwise,
6228 * return false. If either argument is NULL, return false. */
6229bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6230{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006231
6232 GLOBAL_STATE_CODE();
6233
Jeff Cody5a6684d2014-06-25 15:40:09 -04006234 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006235 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006236 }
6237
6238 return top != NULL;
6239}
6240
Fam Zheng04df7652014-10-31 11:32:54 +08006241BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6242{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006243 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006244 if (!bs) {
6245 return QTAILQ_FIRST(&graph_bdrv_states);
6246 }
6247 return QTAILQ_NEXT(bs, node_list);
6248}
6249
Kevin Wolf0f122642018-03-28 18:29:18 +02006250BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6251{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006252 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006253 if (!bs) {
6254 return QTAILQ_FIRST(&all_bdrv_states);
6255 }
6256 return QTAILQ_NEXT(bs, bs_list);
6257}
6258
Fam Zheng20a9e772014-10-31 11:32:55 +08006259const char *bdrv_get_node_name(const BlockDriverState *bs)
6260{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006261 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006262 return bs->node_name;
6263}
6264
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006265const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006266{
6267 BdrvChild *c;
6268 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006269 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006270
6271 /* If multiple parents have a name, just pick the first one. */
6272 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006273 if (c->klass->get_name) {
6274 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006275 if (name && *name) {
6276 return name;
6277 }
6278 }
6279 }
6280
6281 return NULL;
6282}
6283
Markus Armbruster7f06d472014-10-07 13:59:12 +02006284/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006285const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006286{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006287 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006288 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006289}
6290
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006291/* This can be used to identify nodes that might not have a device
6292 * name associated. Since node and device names live in the same
6293 * namespace, the result is unambiguous. The exception is if both are
6294 * absent, then this returns an empty (non-null) string. */
6295const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6296{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006297 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006298 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006299}
6300
Markus Armbrusterc8433282012-06-05 16:49:24 +02006301int bdrv_get_flags(BlockDriverState *bs)
6302{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006303 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006304 return bs->open_flags;
6305}
6306
Peter Lieven3ac21622013-06-28 12:47:42 +02006307int bdrv_has_zero_init_1(BlockDriverState *bs)
6308{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006309 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006310 return 1;
6311}
6312
Kevin Wolff2feebb2010-04-14 17:30:35 +02006313int bdrv_has_zero_init(BlockDriverState *bs)
6314{
Max Reitz93393e62019-06-12 17:03:38 +02006315 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006316 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006317
Max Reitzd470ad42017-11-10 21:31:09 +01006318 if (!bs->drv) {
6319 return 0;
6320 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006321
Paolo Bonzini11212d82013-09-04 19:00:27 +02006322 /* If BS is a copy on write image, it is initialized to
6323 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006324 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006325 return 0;
6326 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006327 if (bs->drv->bdrv_has_zero_init) {
6328 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006329 }
Max Reitz93393e62019-06-12 17:03:38 +02006330
6331 filtered = bdrv_filter_bs(bs);
6332 if (filtered) {
6333 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006334 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006335
Peter Lieven3ac21622013-06-28 12:47:42 +02006336 /* safe default */
6337 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006338}
6339
Peter Lieven4ce78692013-10-24 12:06:54 +02006340bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6341{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006342 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006343 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006344 return false;
6345 }
6346
Eric Blakee24d8132018-01-26 13:34:39 -06006347 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006348}
6349
ths5fafdf22007-09-16 21:08:06 +00006350void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006351 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006352{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006353 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006354 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006355}
6356
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006357int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
bellardfaea38e2006-08-05 21:31:00 +00006358{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006359 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006360 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006361 IO_CODE();
Emanuele Giuseppe Espositoa00e70c2023-05-04 13:57:44 +02006362 assert_bdrv_graph_readable();
6363
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006364 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6365 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006366 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006367 }
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006368 if (!drv->bdrv_co_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006369 BlockDriverState *filtered = bdrv_filter_bs(bs);
6370 if (filtered) {
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006371 return bdrv_co_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006372 }
bellardfaea38e2006-08-05 21:31:00 +00006373 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006374 }
bellardfaea38e2006-08-05 21:31:00 +00006375 memset(bdi, 0, sizeof(*bdi));
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006376 ret = drv->bdrv_co_get_info(bs, bdi);
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006377 if (ret < 0) {
6378 return ret;
6379 }
6380
6381 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6382 return -EINVAL;
6383 }
6384
6385 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006386}
6387
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006388ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6389 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006390{
6391 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006392 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006393 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006394 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006395 }
6396 return NULL;
6397}
6398
Anton Nefedovd9245592019-09-23 15:17:37 +03006399BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6400{
6401 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006402 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006403 if (!drv || !drv->bdrv_get_specific_stats) {
6404 return NULL;
6405 }
6406 return drv->bdrv_get_specific_stats(bs);
6407}
6408
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006409void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006410{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006411 IO_CODE();
Emanuele Giuseppe Espositocb2bfaa2023-05-04 13:57:45 +02006412 assert_bdrv_graph_readable();
6413
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006414 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006415 return;
6416 }
6417
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006418 bs->drv->bdrv_co_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006419}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006420
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006421static BlockDriverState *bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006422{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006423 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006424 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006425 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006426 }
6427
6428 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006429 assert(bs->drv->bdrv_debug_remove_breakpoint);
6430 return bs;
6431 }
6432
6433 return NULL;
6434}
6435
6436int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6437 const char *tag)
6438{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006439 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006440 bs = bdrv_find_debug_node(bs);
6441 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006442 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6443 }
6444
6445 return -ENOTSUP;
6446}
6447
Fam Zheng4cc70e92013-11-20 10:01:54 +08006448int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6449{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006450 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006451 bs = bdrv_find_debug_node(bs);
6452 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006453 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6454 }
6455
6456 return -ENOTSUP;
6457}
6458
Kevin Wolf41c695c2012-12-06 14:32:58 +01006459int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6460{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006461 GLOBAL_STATE_CODE();
Max Reitz938789e2014-03-10 23:44:08 +01006462 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006463 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006464 }
6465
6466 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6467 return bs->drv->bdrv_debug_resume(bs, tag);
6468 }
6469
6470 return -ENOTSUP;
6471}
6472
6473bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6474{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006475 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006476 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006477 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006478 }
6479
6480 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6481 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6482 }
6483
6484 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006485}
6486
Jeff Codyb1b1d782012-10-16 15:49:09 -04006487/* backing_file can either be relative, or absolute, or a protocol. If it is
6488 * relative, it must be relative to the chain. So, passing in bs->filename
6489 * from a BDS as backing_file should not be done, as that may be relative to
6490 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006491BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6492 const char *backing_file)
6493{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006494 char *filename_full = NULL;
6495 char *backing_file_full = NULL;
6496 char *filename_tmp = NULL;
6497 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006498 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006499 BlockDriverState *curr_bs = NULL;
6500 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006501 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006502
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006503 GLOBAL_STATE_CODE();
6504
Jeff Codyb1b1d782012-10-16 15:49:09 -04006505 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006506 return NULL;
6507 }
6508
Jeff Codyb1b1d782012-10-16 15:49:09 -04006509 filename_full = g_malloc(PATH_MAX);
6510 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006511
6512 is_protocol = path_has_protocol(backing_file);
6513
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006514 /*
6515 * Being largely a legacy function, skip any filters here
6516 * (because filters do not have normal filenames, so they cannot
6517 * match anyway; and allowing json:{} filenames is a bit out of
6518 * scope).
6519 */
6520 for (curr_bs = bdrv_skip_filters(bs);
6521 bdrv_cow_child(curr_bs) != NULL;
6522 curr_bs = bs_below)
6523 {
6524 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006525
Max Reitz0b877d02018-08-01 20:34:11 +02006526 if (bdrv_backing_overridden(curr_bs)) {
6527 /*
6528 * If the backing file was overridden, we can only compare
6529 * directly against the backing node's filename.
6530 */
6531
6532 if (!filenames_refreshed) {
6533 /*
6534 * This will automatically refresh all of the
6535 * filenames in the rest of the backing chain, so we
6536 * only need to do this once.
6537 */
6538 bdrv_refresh_filename(bs_below);
6539 filenames_refreshed = true;
6540 }
6541
6542 if (strcmp(backing_file, bs_below->filename) == 0) {
6543 retval = bs_below;
6544 break;
6545 }
6546 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6547 /*
6548 * If either of the filename paths is actually a protocol, then
6549 * compare unmodified paths; otherwise make paths relative.
6550 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006551 char *backing_file_full_ret;
6552
Jeff Codyb1b1d782012-10-16 15:49:09 -04006553 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006554 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006555 break;
6556 }
Jeff Cody418661e2017-01-25 20:08:20 -05006557 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006558 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6559 NULL);
6560 if (backing_file_full_ret) {
6561 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6562 g_free(backing_file_full_ret);
6563 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006564 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006565 break;
6566 }
Jeff Cody418661e2017-01-25 20:08:20 -05006567 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006568 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006569 /* If not an absolute filename path, make it relative to the current
6570 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006571 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6572 NULL);
6573 /* We are going to compare canonicalized absolute pathnames */
6574 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6575 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006576 continue;
6577 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006578 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006579
6580 /* We need to make sure the backing filename we are comparing against
6581 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006582 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6583 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6584 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006585 continue;
6586 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006587 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006588
6589 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006590 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006591 break;
6592 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006593 }
6594 }
6595
Jeff Codyb1b1d782012-10-16 15:49:09 -04006596 g_free(filename_full);
6597 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006598 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006599}
6600
bellardea2384d2004-08-01 21:59:26 +00006601void bdrv_init(void)
6602{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006603#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6604 use_bdrv_whitelist = 1;
6605#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006606 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006607}
pbrookce1a14d2006-08-07 02:38:06 +00006608
Markus Armbrustereb852012009-10-27 18:41:44 +01006609void bdrv_init_with_whitelist(void)
6610{
6611 use_bdrv_whitelist = 1;
6612 bdrv_init();
6613}
6614
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006615int bdrv_activate(BlockDriverState *bs, Error **errp)
6616{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006617 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006618 Error *local_err = NULL;
6619 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006620 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006621
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006622 GLOBAL_STATE_CODE();
6623
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006624 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006625 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006626 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006627
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006628 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006629 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006630 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006631 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006632 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006633 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006634 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006635
Kevin Wolfdafe0962017-11-16 13:00:01 +01006636 /*
6637 * Update permissions, they may differ for inactive nodes.
6638 *
6639 * Note that the required permissions of inactive images are always a
6640 * subset of the permissions required after activating the image. This
6641 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006642 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006643 *
6644 * It also means that in error cases, we don't have to try and revert to
6645 * the old permissions (which is an operation that could fail, too). We can
6646 * just keep the extended permissions for the next time that an activation
6647 * of the image is tried.
6648 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006649 if (bs->open_flags & BDRV_O_INACTIVE) {
6650 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006651 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006652 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006653 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006654 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006655 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006656
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006657 ret = bdrv_invalidate_cache(bs, errp);
6658 if (ret < 0) {
6659 bs->open_flags |= BDRV_O_INACTIVE;
6660 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006661 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006662
Kevin Wolf7bb49412019-12-17 15:06:38 +01006663 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6664 bdrv_dirty_bitmap_skip_store(bm, false);
6665 }
6666
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01006667 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006668 if (ret < 0) {
6669 bs->open_flags |= BDRV_O_INACTIVE;
6670 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006671 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006672 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006673 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006674
6675 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006676 if (parent->klass->activate) {
6677 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006678 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006679 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006680 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006681 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006682 }
6683 }
6684 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006685
6686 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006687}
6688
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006689int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
6690{
6691 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05006692 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006693
6694 assert(!(bs->open_flags & BDRV_O_INACTIVE));
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01006695 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006696
6697 if (bs->drv->bdrv_co_invalidate_cache) {
6698 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
6699 if (local_err) {
6700 error_propagate(errp, local_err);
6701 return -EINVAL;
6702 }
6703 }
6704
6705 return 0;
6706}
6707
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05006708void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06006709{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01006710 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006711 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06006712
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006713 GLOBAL_STATE_CODE();
6714
Kevin Wolf88be7b42016-05-20 18:49:07 +02006715 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006716 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006717 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006718
6719 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006720 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02006721 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006722 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01006723 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006724 return;
6725 }
Anthony Liguori0f154232011-11-14 15:09:45 -06006726 }
6727}
6728
Kevin Wolf9e372712018-11-23 15:11:14 +01006729static bool bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
6730{
6731 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006732 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01006733
6734 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006735 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006736 BlockDriverState *parent_bs = parent->opaque;
6737 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
6738 return true;
6739 }
6740 }
6741 }
6742
6743 return false;
6744}
6745
6746static int bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006747{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006748 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006749 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006750 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006751
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05006752 GLOBAL_STATE_CODE();
6753
Max Reitzd470ad42017-11-10 21:31:09 +01006754 if (!bs->drv) {
6755 return -ENOMEDIUM;
6756 }
6757
Kevin Wolf9e372712018-11-23 15:11:14 +01006758 /* Make sure that we don't inactivate a child before its parent.
6759 * It will be covered by recursion from the yet active parent. */
6760 if (bdrv_has_bds_parent(bs, true)) {
6761 return 0;
6762 }
6763
6764 assert(!(bs->open_flags & BDRV_O_INACTIVE));
6765
6766 /* Inactivate this node */
6767 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006768 ret = bs->drv->bdrv_inactivate(bs);
6769 if (ret < 0) {
6770 return ret;
6771 }
6772 }
6773
Kevin Wolf9e372712018-11-23 15:11:14 +01006774 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006775 if (parent->klass->inactivate) {
6776 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01006777 if (ret < 0) {
6778 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02006779 }
6780 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006781 }
Kevin Wolf38701b62017-05-04 18:52:39 +02006782
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03006783 bdrv_get_cumulative_perm(bs, &cumulative_perms,
6784 &cumulative_shared_perms);
6785 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
6786 /* Our inactive parents still need write access. Inactivation failed. */
6787 return -EPERM;
6788 }
6789
Kevin Wolf9e372712018-11-23 15:11:14 +01006790 bs->open_flags |= BDRV_O_INACTIVE;
6791
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03006792 /*
6793 * Update permissions, they may differ for inactive nodes.
6794 * We only tried to loosen restrictions, so errors are not fatal, ignore
6795 * them.
6796 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006797 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01006798
6799 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02006800 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01006801 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02006802 if (ret < 0) {
6803 return ret;
6804 }
6805 }
6806
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006807 return 0;
6808}
6809
6810int bdrv_inactivate_all(void)
6811{
Max Reitz79720af2016-03-16 19:54:44 +01006812 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02006813 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006814 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006815 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006816
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006817 GLOBAL_STATE_CODE();
6818
Kevin Wolf88be7b42016-05-20 18:49:07 +02006819 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006820 AioContext *aio_context = bdrv_get_aio_context(bs);
6821
6822 if (!g_slist_find(aio_ctxs, aio_context)) {
6823 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
6824 aio_context_acquire(aio_context);
6825 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006826 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006827
Kevin Wolf9e372712018-11-23 15:11:14 +01006828 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
6829 /* Nodes with BDS parents are covered by recursion from the last
6830 * parent that gets inactivated. Don't inactivate them a second
6831 * time if that has already happened. */
6832 if (bdrv_has_bds_parent(bs, false)) {
6833 continue;
6834 }
6835 ret = bdrv_inactivate_recurse(bs);
6836 if (ret < 0) {
6837 bdrv_next_cleanup(&it);
6838 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006839 }
6840 }
6841
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006842out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006843 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
6844 AioContext *aio_context = ctx->data;
6845 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006846 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00006847 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08006848
6849 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01006850}
6851
Kevin Wolff9f05dc2011-07-15 13:50:26 +02006852/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00006853/* removable device support */
6854
6855/**
6856 * Return TRUE if the media is present
6857 */
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006858bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00006859{
6860 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02006861 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006862 IO_CODE();
Emanuele Giuseppe Espositoc73ff922023-02-03 16:21:57 +01006863 assert_bdrv_graph_readable();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02006864
Max Reitze031f752015-10-19 17:53:11 +02006865 if (!drv) {
6866 return false;
6867 }
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006868 if (drv->bdrv_co_is_inserted) {
6869 return drv->bdrv_co_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02006870 }
Max Reitz28d7a782015-10-19 17:53:13 +02006871 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01006872 if (!bdrv_co_is_inserted(child->bs)) {
Max Reitz28d7a782015-10-19 17:53:13 +02006873 return false;
6874 }
6875 }
6876 return true;
bellard19cb3732006-08-19 11:45:59 +00006877}
6878
6879/**
bellard19cb3732006-08-19 11:45:59 +00006880 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
6881 */
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01006882void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00006883{
6884 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006885 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01006886 assert_bdrv_graph_readable();
bellard19cb3732006-08-19 11:45:59 +00006887
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01006888 if (drv && drv->bdrv_co_eject) {
6889 drv->bdrv_co_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00006890 }
bellard19cb3732006-08-19 11:45:59 +00006891}
6892
bellard19cb3732006-08-19 11:45:59 +00006893/**
6894 * Lock or unlock the media (if it is locked, the user won't be able
6895 * to eject it manually).
6896 */
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01006897void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00006898{
6899 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006900 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01006901 assert_bdrv_graph_readable();
Markus Armbruster025e8492011-09-06 18:58:47 +02006902 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01006903
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01006904 if (drv && drv->bdrv_co_lock_medium) {
6905 drv->bdrv_co_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00006906 }
6907}
ths985a03b2007-12-24 16:10:43 +00006908
Fam Zheng9fcb0252013-08-23 09:14:46 +08006909/* Get a reference to bs */
6910void bdrv_ref(BlockDriverState *bs)
6911{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006912 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08006913 bs->refcnt++;
6914}
6915
6916/* Release a previously grabbed reference to bs.
6917 * If after releasing, reference count is zero, the BlockDriverState is
6918 * deleted. */
6919void bdrv_unref(BlockDriverState *bs)
6920{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006921 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04006922 if (!bs) {
6923 return;
6924 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08006925 assert(bs->refcnt > 0);
6926 if (--bs->refcnt == 0) {
6927 bdrv_delete(bs);
6928 }
6929}
6930
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006931struct BdrvOpBlocker {
6932 Error *reason;
6933 QLIST_ENTRY(BdrvOpBlocker) list;
6934};
6935
6936bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
6937{
6938 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006939 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006940 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6941 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
6942 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02006943 error_propagate_prepend(errp, error_copy(blocker->reason),
6944 "Node '%s' is busy: ",
6945 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006946 return true;
6947 }
6948 return false;
6949}
6950
6951void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
6952{
6953 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006954 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006955 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6956
Markus Armbruster5839e532014-08-19 10:31:08 +02006957 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006958 blocker->reason = reason;
6959 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
6960}
6961
6962void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
6963{
6964 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006965 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006966 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
6967 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
6968 if (blocker->reason == reason) {
6969 QLIST_REMOVE(blocker, list);
6970 g_free(blocker);
6971 }
6972 }
6973}
6974
6975void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
6976{
6977 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006978 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006979 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6980 bdrv_op_block(bs, i, reason);
6981 }
6982}
6983
6984void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
6985{
6986 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006987 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006988 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6989 bdrv_op_unblock(bs, i, reason);
6990 }
6991}
6992
6993bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
6994{
6995 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006996 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08006997 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
6998 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
6999 return false;
7000 }
7001 }
7002 return true;
7003}
7004
Kevin Wolfe1355052022-12-07 14:18:30 +01007005/*
7006 * Must not be called while holding the lock of an AioContext other than the
7007 * current one.
7008 */
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007009void bdrv_img_create(const char *filename, const char *fmt,
7010 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08007011 char *options, uint64_t img_size, int flags, bool quiet,
7012 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007013{
Chunyan Liu83d05212014-06-05 17:20:51 +08007014 QemuOptsList *create_opts = NULL;
7015 QemuOpts *opts = NULL;
7016 const char *backing_fmt, *backing_file;
7017 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007018 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02007019 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007020 int ret = 0;
7021
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007022 GLOBAL_STATE_CODE();
7023
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007024 /* Find driver and parse its options */
7025 drv = bdrv_find_format(fmt);
7026 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007027 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007028 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007029 }
7030
Max Reitzb65a5e12015-02-05 13:58:12 -05007031 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007032 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007033 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007034 }
7035
Max Reitzc6149722014-12-02 18:32:45 +01007036 if (!drv->create_opts) {
7037 error_setg(errp, "Format driver '%s' does not support image creation",
7038 drv->format_name);
7039 return;
7040 }
7041
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007042 if (!proto_drv->create_opts) {
7043 error_setg(errp, "Protocol driver '%s' does not support image creation",
7044 proto_drv->format_name);
7045 return;
7046 }
7047
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007048 aio_context_acquire(qemu_get_aio_context());
7049
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007050 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007051 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007052 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007053
Chunyan Liu83d05212014-06-05 17:20:51 +08007054 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007055
7056 /* Parse -o options */
7057 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007058 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007059 goto out;
7060 }
7061 }
7062
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007063 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7064 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7065 } else if (img_size != UINT64_C(-1)) {
7066 error_setg(errp, "The image size must be specified only once");
7067 goto out;
7068 }
7069
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007070 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007071 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007072 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007073 error_setg(errp, "Backing file not supported for file format '%s'",
7074 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007075 goto out;
7076 }
7077 }
7078
7079 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007080 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007081 error_setg(errp, "Backing file format not supported for file "
7082 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007083 goto out;
7084 }
7085 }
7086
Chunyan Liu83d05212014-06-05 17:20:51 +08007087 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7088 if (backing_file) {
7089 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007090 error_setg(errp, "Error: Trying to create an image with the "
7091 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007092 goto out;
7093 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007094 if (backing_file[0] == '\0') {
7095 error_setg(errp, "Expected backing file name, got empty string");
7096 goto out;
7097 }
Jes Sorensen792da932010-12-16 13:52:17 +01007098 }
7099
Chunyan Liu83d05212014-06-05 17:20:51 +08007100 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007101
John Snow6e6e55f2017-07-17 20:34:22 -04007102 /* The size for the image must always be specified, unless we have a backing
7103 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007104 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007105 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7106 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007107 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007108 int back_flags;
7109 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007110
Max Reitz645ae7d2019-02-01 20:29:14 +01007111 full_backing =
7112 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7113 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007114 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007115 goto out;
7116 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007117 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007118
Max Reitzd5b23992021-06-22 16:00:30 +02007119 /*
7120 * No need to do I/O here, which allows us to open encrypted
7121 * backing images without needing the secret
7122 */
John Snow6e6e55f2017-07-17 20:34:22 -04007123 back_flags = flags;
7124 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007125 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007126
Fam Zhengcc954f02017-12-15 16:04:45 +08007127 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007128 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007129 qdict_put_str(backing_options, "driver", backing_fmt);
7130 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007131 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007132
7133 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7134 &local_err);
7135 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007136 if (!bs) {
7137 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007138 goto out;
7139 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007140 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007141 error_setg(&local_err,
7142 "Backing file specified without backing format");
7143 error_append_hint(&local_err, "Detected format of %s.",
7144 bs->drv->format_name);
7145 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007146 }
John Snow6e6e55f2017-07-17 20:34:22 -04007147 if (size == -1) {
7148 /* Opened BS, have no size */
7149 size = bdrv_getlength(bs);
7150 if (size < 0) {
7151 error_setg_errno(errp, -size, "Could not get size of '%s'",
7152 backing_file);
7153 bdrv_unref(bs);
7154 goto out;
7155 }
7156 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7157 }
7158 bdrv_unref(bs);
7159 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007160 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7161 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007162 error_setg(&local_err,
7163 "Backing file specified without backing format");
7164 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007165 }
John Snow6e6e55f2017-07-17 20:34:22 -04007166
7167 if (size == -1) {
7168 error_setg(errp, "Image creation needs a size parameter");
7169 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007170 }
7171
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007172 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007173 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007174 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007175 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007176 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007177 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007178
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007179 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007180
Max Reitzcc84d902013-09-06 17:14:26 +02007181 if (ret == -EFBIG) {
7182 /* This is generally a better message than whatever the driver would
7183 * deliver (especially because of the cluster_size_hint), since that
7184 * is most probably not much different from "image too large". */
7185 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007186 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007187 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007188 }
Max Reitzcc84d902013-09-06 17:14:26 +02007189 error_setg(errp, "The image size is too large for file format '%s'"
7190 "%s", fmt, cluster_size_hint);
7191 error_free(local_err);
7192 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007193 }
7194
7195out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007196 qemu_opts_del(opts);
7197 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007198 error_propagate(errp, local_err);
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007199 aio_context_release(qemu_get_aio_context());
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007200}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007201
7202AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7203{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007204 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007205 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007206}
7207
Kevin Wolfe336fd42020-10-05 17:58:53 +02007208AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7209{
7210 Coroutine *self = qemu_coroutine_self();
7211 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7212 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007213 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007214
7215 /*
7216 * Increase bs->in_flight to ensure that this operation is completed before
7217 * moving the node to a different AioContext. Read new_ctx only afterwards.
7218 */
7219 bdrv_inc_in_flight(bs);
7220
7221 new_ctx = bdrv_get_aio_context(bs);
7222 aio_co_reschedule_self(new_ctx);
7223 return old_ctx;
7224}
7225
7226void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7227{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007228 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007229 aio_co_reschedule_self(old_ctx);
7230 bdrv_dec_in_flight(bs);
7231}
7232
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007233void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7234{
7235 AioContext *ctx = bdrv_get_aio_context(bs);
7236
7237 /* In the main thread, bs->aio_context won't change concurrently */
7238 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7239
7240 /*
7241 * We're in coroutine context, so we already hold the lock of the main
7242 * loop AioContext. Don't lock it twice to avoid deadlocks.
7243 */
7244 assert(qemu_in_coroutine());
7245 if (ctx != qemu_get_aio_context()) {
7246 aio_context_acquire(ctx);
7247 }
7248}
7249
7250void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7251{
7252 AioContext *ctx = bdrv_get_aio_context(bs);
7253
7254 assert(qemu_in_coroutine());
7255 if (ctx != qemu_get_aio_context()) {
7256 aio_context_release(ctx);
7257 }
7258}
7259
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007260static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7261{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007262 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007263 QLIST_REMOVE(ban, list);
7264 g_free(ban);
7265}
7266
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007267static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007268{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007269 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007270
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007271 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007272 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007273 bs->walking_aio_notifiers = true;
7274 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7275 if (baf->deleted) {
7276 bdrv_do_remove_aio_context_notifier(baf);
7277 } else {
7278 baf->detach_aio_context(baf->opaque);
7279 }
Max Reitz33384422014-06-20 21:57:33 +02007280 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007281 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7282 * remove remaining aio notifiers if we aren't called again.
7283 */
7284 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007285
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007286 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007287 bs->drv->bdrv_detach_aio_context(bs);
7288 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007289
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007290 if (bs->quiesce_counter) {
7291 aio_enable_external(bs->aio_context);
7292 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007293 bs->aio_context = NULL;
7294}
7295
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007296static void bdrv_attach_aio_context(BlockDriverState *bs,
7297 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007298{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007299 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007300 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007301
Kevin Wolfe64f25f2019-02-08 16:51:17 +01007302 if (bs->quiesce_counter) {
7303 aio_disable_external(new_context);
7304 }
7305
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007306 bs->aio_context = new_context;
7307
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007308 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007309 bs->drv->bdrv_attach_aio_context(bs, new_context);
7310 }
Max Reitz33384422014-06-20 21:57:33 +02007311
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007312 assert(!bs->walking_aio_notifiers);
7313 bs->walking_aio_notifiers = true;
7314 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7315 if (ban->deleted) {
7316 bdrv_do_remove_aio_context_notifier(ban);
7317 } else {
7318 ban->attached_aio_context(new_context, ban->opaque);
7319 }
Max Reitz33384422014-06-20 21:57:33 +02007320 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007321 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007322}
7323
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007324typedef struct BdrvStateSetAioContext {
7325 AioContext *new_ctx;
7326 BlockDriverState *bs;
7327} BdrvStateSetAioContext;
7328
7329static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007330 GHashTable *visited,
7331 Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007332 Error **errp)
7333{
7334 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007335 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007336 return true;
7337 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007338 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007339
7340 /*
7341 * A BdrvChildClass that doesn't handle AioContext changes cannot
7342 * tolerate any AioContext changes
7343 */
7344 if (!c->klass->change_aio_ctx) {
7345 char *user = bdrv_child_user_desc(c);
7346 error_setg(errp, "Changing iothreads is not supported by %s", user);
7347 g_free(user);
7348 return false;
7349 }
7350 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7351 assert(!errp || *errp);
7352 return false;
7353 }
7354 return true;
7355}
7356
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007357bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007358 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007359 Error **errp)
7360{
7361 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007362 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007363 return true;
7364 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007365 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007366 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7367}
7368
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007369static void bdrv_set_aio_context_clean(void *opaque)
7370{
7371 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7372 BlockDriverState *bs = (BlockDriverState *) state->bs;
7373
7374 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7375 bdrv_drained_end(bs);
7376
7377 g_free(state);
7378}
7379
7380static void bdrv_set_aio_context_commit(void *opaque)
7381{
7382 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7383 BlockDriverState *bs = (BlockDriverState *) state->bs;
7384 AioContext *new_context = state->new_ctx;
7385 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007386
7387 /*
7388 * Take the old AioContex when detaching it from bs.
7389 * At this point, new_context lock is already acquired, and we are now
7390 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7391 * does not call AIO_POLL_WHILE().
7392 */
7393 if (old_context != qemu_get_aio_context()) {
7394 aio_context_acquire(old_context);
7395 }
7396 bdrv_detach_aio_context(bs);
7397 if (old_context != qemu_get_aio_context()) {
7398 aio_context_release(old_context);
7399 }
7400 bdrv_attach_aio_context(bs, new_context);
7401}
7402
7403static TransactionActionDrv set_aio_context = {
7404 .commit = bdrv_set_aio_context_commit,
7405 .clean = bdrv_set_aio_context_clean,
7406};
7407
Kevin Wolf42a65f02019-05-07 18:31:38 +02007408/*
7409 * Changes the AioContext used for fd handlers, timers, and BHs by this
7410 * BlockDriverState and all its children and parents.
7411 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007412 * Must be called from the main AioContext.
7413 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007414 * The caller must own the AioContext lock for the old AioContext of bs, but it
7415 * must not own the AioContext lock for new_context (unless new_context is the
7416 * same as the current context of bs).
7417 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007418 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007419 * responsible for freeing the list afterwards.
7420 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007421static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007422 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007423 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007424{
7425 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007426 BdrvStateSetAioContext *state;
7427
7428 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007429
7430 if (bdrv_get_aio_context(bs) == ctx) {
7431 return true;
7432 }
7433
7434 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007435 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007436 return false;
7437 }
7438 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007439
Kevin Wolf5d231842019-05-06 19:17:56 +02007440 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007441 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf5d231842019-05-06 19:17:56 +02007442 return false;
7443 }
7444 }
7445
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007446 state = g_new(BdrvStateSetAioContext, 1);
7447 *state = (BdrvStateSetAioContext) {
7448 .new_ctx = ctx,
7449 .bs = bs,
7450 };
7451
7452 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7453 bdrv_drained_begin(bs);
7454
7455 tran_add(tran, &set_aio_context, state);
7456
Kevin Wolf5d231842019-05-06 19:17:56 +02007457 return true;
7458}
7459
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007460/*
7461 * Change bs's and recursively all of its parents' and children's AioContext
7462 * to the given new context, returning an error if that isn't possible.
7463 *
7464 * If ignore_child is not NULL, that child (and its subgraph) will not
7465 * be touched.
7466 *
7467 * This function still requires the caller to take the bs current
7468 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7469 * assumes the lock is always held if bs is in another AioContext.
7470 * For the same reason, it temporarily also holds the new AioContext, since
7471 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7472 * Therefore the new AioContext lock must not be taken by the caller.
7473 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007474int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7475 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007476{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007477 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007478 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007479 int ret;
7480 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007481 GLOBAL_STATE_CODE();
7482
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007483 /*
7484 * Recursion phase: go through all nodes of the graph.
7485 * Take care of checking that all nodes support changing AioContext
7486 * and drain them, builing a linear list of callbacks to run if everything
7487 * is successful (the transaction itself).
7488 */
7489 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007490 visited = g_hash_table_new(NULL, NULL);
7491 if (ignore_child) {
7492 g_hash_table_add(visited, ignore_child);
7493 }
7494 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7495 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007496
7497 /*
7498 * Linear phase: go through all callbacks collected in the transaction.
7499 * Run all callbacks collected in the recursion to switch all nodes
7500 * AioContext lock (transaction commit), or undo all changes done in the
7501 * recursion (transaction abort).
7502 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007503
7504 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007505 /* Just run clean() callbacks. No AioContext changed. */
7506 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007507 return -EPERM;
7508 }
7509
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007510 /*
7511 * Release old AioContext, it won't be needed anymore, as all
7512 * bdrv_drained_begin() have been called already.
7513 */
7514 if (qemu_get_aio_context() != old_context) {
7515 aio_context_release(old_context);
7516 }
7517
7518 /*
7519 * Acquire new AioContext since bdrv_drained_end() is going to be called
7520 * after we switched all nodes in the new AioContext, and the function
7521 * assumes that the lock of the bs is always taken.
7522 */
7523 if (qemu_get_aio_context() != ctx) {
7524 aio_context_acquire(ctx);
7525 }
7526
7527 tran_commit(tran);
7528
7529 if (qemu_get_aio_context() != ctx) {
7530 aio_context_release(ctx);
7531 }
7532
7533 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7534 if (qemu_get_aio_context() != old_context) {
7535 aio_context_acquire(old_context);
7536 }
Kevin Wolf53a7d042019-05-06 19:17:59 +02007537
Kevin Wolf5d231842019-05-06 19:17:56 +02007538 return 0;
7539}
7540
Max Reitz33384422014-06-20 21:57:33 +02007541void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7542 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7543 void (*detach_aio_context)(void *opaque), void *opaque)
7544{
7545 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7546 *ban = (BdrvAioNotifier){
7547 .attached_aio_context = attached_aio_context,
7548 .detach_aio_context = detach_aio_context,
7549 .opaque = opaque
7550 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007551 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007552
7553 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7554}
7555
7556void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7557 void (*attached_aio_context)(AioContext *,
7558 void *),
7559 void (*detach_aio_context)(void *),
7560 void *opaque)
7561{
7562 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007563 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007564
7565 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7566 if (ban->attached_aio_context == attached_aio_context &&
7567 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007568 ban->opaque == opaque &&
7569 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007570 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007571 if (bs->walking_aio_notifiers) {
7572 ban->deleted = true;
7573 } else {
7574 bdrv_do_remove_aio_context_notifier(ban);
7575 }
Max Reitz33384422014-06-20 21:57:33 +02007576 return;
7577 }
7578 }
7579
7580 abort();
7581}
7582
Max Reitz77485432014-10-27 11:12:50 +01007583int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007584 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007585 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007586 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007587{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007588 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007589 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007590 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007591 return -ENOMEDIUM;
7592 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007593 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007594 error_setg(errp, "Block driver '%s' does not support option amendment",
7595 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007596 return -ENOTSUP;
7597 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007598 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7599 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007600}
Benoît Canetf6186f42013-10-02 14:33:48 +02007601
Max Reitz5d69b5a2020-02-18 11:34:41 +01007602/*
7603 * This function checks whether the given @to_replace is allowed to be
7604 * replaced by a node that always shows the same data as @bs. This is
7605 * used for example to verify whether the mirror job can replace
7606 * @to_replace by the target mirrored from @bs.
7607 * To be replaceable, @bs and @to_replace may either be guaranteed to
7608 * always show the same data (because they are only connected through
7609 * filters), or some driver may allow replacing one of its children
7610 * because it can guarantee that this child's data is not visible at
7611 * all (for example, for dissenting quorum children that have no other
7612 * parents).
7613 */
7614bool bdrv_recurse_can_replace(BlockDriverState *bs,
7615 BlockDriverState *to_replace)
7616{
Max Reitz93393e62019-06-12 17:03:38 +02007617 BlockDriverState *filtered;
7618
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007619 GLOBAL_STATE_CODE();
7620
Max Reitz5d69b5a2020-02-18 11:34:41 +01007621 if (!bs || !bs->drv) {
7622 return false;
7623 }
7624
7625 if (bs == to_replace) {
7626 return true;
7627 }
7628
7629 /* See what the driver can do */
7630 if (bs->drv->bdrv_recurse_can_replace) {
7631 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7632 }
7633
7634 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007635 filtered = bdrv_filter_bs(bs);
7636 if (filtered) {
7637 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007638 }
7639
7640 /* Safe default */
7641 return false;
7642}
7643
Max Reitz810803a2020-02-18 11:34:44 +01007644/*
7645 * Check whether the given @node_name can be replaced by a node that
7646 * has the same data as @parent_bs. If so, return @node_name's BDS;
7647 * NULL otherwise.
7648 *
7649 * @node_name must be a (recursive) *child of @parent_bs (or this
7650 * function will return NULL).
7651 *
7652 * The result (whether the node can be replaced or not) is only valid
7653 * for as long as no graph or permission changes occur.
7654 */
Wen Congyange12f3782015-07-17 10:12:22 +08007655BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7656 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007657{
7658 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007659 AioContext *aio_context;
7660
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007661 GLOBAL_STATE_CODE();
7662
Benoît Canet09158f02014-06-27 18:25:25 +02007663 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007664 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007665 return NULL;
7666 }
7667
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007668 aio_context = bdrv_get_aio_context(to_replace_bs);
7669 aio_context_acquire(aio_context);
7670
Benoît Canet09158f02014-06-27 18:25:25 +02007671 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007672 to_replace_bs = NULL;
7673 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007674 }
7675
7676 /* We don't want arbitrary node of the BDS chain to be replaced only the top
7677 * most non filter in order to prevent data corruption.
7678 * Another benefit is that this tests exclude backing files which are
7679 * blocked by the backing blockers.
7680 */
Max Reitz810803a2020-02-18 11:34:44 +01007681 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
7682 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
7683 "because it cannot be guaranteed that doing so would not "
7684 "lead to an abrupt change of visible data",
7685 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007686 to_replace_bs = NULL;
7687 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02007688 }
7689
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007690out:
7691 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02007692 return to_replace_bs;
7693}
Ming Lei448ad912014-07-04 18:04:33 +08007694
Max Reitz97e2f022019-02-01 20:29:27 +01007695/**
7696 * Iterates through the list of runtime option keys that are said to
7697 * be "strong" for a BDS. An option is called "strong" if it changes
7698 * a BDS's data. For example, the null block driver's "size" and
7699 * "read-zeroes" options are strong, but its "latency-ns" option is
7700 * not.
7701 *
7702 * If a key returned by this function ends with a dot, all options
7703 * starting with that prefix are strong.
7704 */
7705static const char *const *strong_options(BlockDriverState *bs,
7706 const char *const *curopt)
7707{
7708 static const char *const global_options[] = {
7709 "driver", "filename", NULL
7710 };
7711
7712 if (!curopt) {
7713 return &global_options[0];
7714 }
7715
7716 curopt++;
7717 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
7718 curopt = bs->drv->strong_runtime_opts;
7719 }
7720
7721 return (curopt && *curopt) ? curopt : NULL;
7722}
7723
7724/**
7725 * Copies all strong runtime options from bs->options to the given
7726 * QDict. The set of strong option keys is determined by invoking
7727 * strong_options().
7728 *
7729 * Returns true iff any strong option was present in bs->options (and
7730 * thus copied to the target QDict) with the exception of "filename"
7731 * and "driver". The caller is expected to use this value to decide
7732 * whether the existence of strong options prevents the generation of
7733 * a plain filename.
7734 */
7735static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
7736{
7737 bool found_any = false;
7738 const char *const *option_name = NULL;
7739
7740 if (!bs->drv) {
7741 return false;
7742 }
7743
7744 while ((option_name = strong_options(bs, option_name))) {
7745 bool option_given = false;
7746
7747 assert(strlen(*option_name) > 0);
7748 if ((*option_name)[strlen(*option_name) - 1] != '.') {
7749 QObject *entry = qdict_get(bs->options, *option_name);
7750 if (!entry) {
7751 continue;
7752 }
7753
7754 qdict_put_obj(d, *option_name, qobject_ref(entry));
7755 option_given = true;
7756 } else {
7757 const QDictEntry *entry;
7758 for (entry = qdict_first(bs->options); entry;
7759 entry = qdict_next(bs->options, entry))
7760 {
7761 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
7762 qdict_put_obj(d, qdict_entry_key(entry),
7763 qobject_ref(qdict_entry_value(entry)));
7764 option_given = true;
7765 }
7766 }
7767 }
7768
7769 /* While "driver" and "filename" need to be included in a JSON filename,
7770 * their existence does not prohibit generation of a plain filename. */
7771 if (!found_any && option_given &&
7772 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
7773 {
7774 found_any = true;
7775 }
7776 }
7777
Max Reitz62a01a272019-02-01 20:29:34 +01007778 if (!qdict_haskey(d, "driver")) {
7779 /* Drivers created with bdrv_new_open_driver() may not have a
7780 * @driver option. Add it here. */
7781 qdict_put_str(d, "driver", bs->drv->format_name);
7782 }
7783
Max Reitz97e2f022019-02-01 20:29:27 +01007784 return found_any;
7785}
7786
Max Reitz90993622019-02-01 20:29:09 +01007787/* Note: This function may return false positives; it may return true
7788 * even if opening the backing file specified by bs's image header
7789 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05007790static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01007791{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007792 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01007793 if (bs->backing) {
7794 return strcmp(bs->auto_backing_file,
7795 bs->backing->bs->filename);
7796 } else {
7797 /* No backing BDS, so if the image header reports any backing
7798 * file, it must have been suppressed */
7799 return bs->auto_backing_file[0] != '\0';
7800 }
7801}
7802
Max Reitz91af7012014-07-18 20:24:56 +02007803/* Updates the following BDS fields:
7804 * - exact_filename: A filename which may be used for opening a block device
7805 * which (mostly) equals the given BDS (even without any
7806 * other options; so reading and writing must return the same
7807 * results, but caching etc. may be different)
7808 * - full_open_options: Options which, when given when opening a block device
7809 * (without a filename), result in a BDS (mostly)
7810 * equalling the given one
7811 * - filename: If exact_filename is set, it is copied here. Otherwise,
7812 * full_open_options is converted to a JSON object, prefixed with
7813 * "json:" (for use through the JSON pseudo protocol) and put here.
7814 */
7815void bdrv_refresh_filename(BlockDriverState *bs)
7816{
7817 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01007818 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02007819 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02007820 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01007821 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01007822 bool generate_json_filename; /* Whether our default implementation should
7823 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02007824
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007825 GLOBAL_STATE_CODE();
7826
Max Reitz91af7012014-07-18 20:24:56 +02007827 if (!drv) {
7828 return;
7829 }
7830
Max Reitze24518e2019-02-01 20:29:06 +01007831 /* This BDS's file name may depend on any of its children's file names, so
7832 * refresh those first */
7833 QLIST_FOREACH(child, &bs->children, next) {
7834 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02007835 }
7836
Max Reitzbb808d52019-02-01 20:29:07 +01007837 if (bs->implicit) {
7838 /* For implicit nodes, just copy everything from the single child */
7839 child = QLIST_FIRST(&bs->children);
7840 assert(QLIST_NEXT(child, next) == NULL);
7841
7842 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
7843 child->bs->exact_filename);
7844 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
7845
Pan Nengyuancb895612020-01-16 16:56:00 +08007846 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01007847 bs->full_open_options = qobject_ref(child->bs->full_open_options);
7848
7849 return;
7850 }
7851
Max Reitz90993622019-02-01 20:29:09 +01007852 backing_overridden = bdrv_backing_overridden(bs);
7853
7854 if (bs->open_flags & BDRV_O_NO_IO) {
7855 /* Without I/O, the backing file does not change anything.
7856 * Therefore, in such a case (primarily qemu-img), we can
7857 * pretend the backing file has not been overridden even if
7858 * it technically has been. */
7859 backing_overridden = false;
7860 }
7861
Max Reitz97e2f022019-02-01 20:29:27 +01007862 /* Gather the options QDict */
7863 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01007864 generate_json_filename = append_strong_runtime_options(opts, bs);
7865 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01007866
7867 if (drv->bdrv_gather_child_options) {
7868 /* Some block drivers may not want to present all of their children's
7869 * options, or name them differently from BdrvChild.name */
7870 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
7871 } else {
7872 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02007873 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01007874 /* We can skip the backing BDS if it has not been overridden */
7875 continue;
7876 }
7877
7878 qdict_put(opts, child->name,
7879 qobject_ref(child->bs->full_open_options));
7880 }
7881
7882 if (backing_overridden && !bs->backing) {
7883 /* Force no backing file */
7884 qdict_put_null(opts, "backing");
7885 }
7886 }
7887
7888 qobject_unref(bs->full_open_options);
7889 bs->full_open_options = opts;
7890
Max Reitz52f72d62019-06-12 17:43:03 +02007891 primary_child_bs = bdrv_primary_bs(bs);
7892
Max Reitz998b3a12019-02-01 20:29:28 +01007893 if (drv->bdrv_refresh_filename) {
7894 /* Obsolete information is of no use here, so drop the old file name
7895 * information before refreshing it */
7896 bs->exact_filename[0] = '\0';
7897
7898 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02007899 } else if (primary_child_bs) {
7900 /*
7901 * Try to reconstruct valid information from the underlying
7902 * file -- this only works for format nodes (filter nodes
7903 * cannot be probed and as such must be selected by the user
7904 * either through an options dict, or through a special
7905 * filename which the filter driver must construct in its
7906 * .bdrv_refresh_filename() implementation).
7907 */
Max Reitz998b3a12019-02-01 20:29:28 +01007908
7909 bs->exact_filename[0] = '\0';
7910
Max Reitzfb695c72019-02-01 20:29:29 +01007911 /*
7912 * We can use the underlying file's filename if:
7913 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02007914 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01007915 * - the file is a protocol BDS, and
7916 * - opening that file (as this BDS's format) will automatically create
7917 * the BDS tree we have right now, that is:
7918 * - the user did not significantly change this BDS's behavior with
7919 * some explicit (strong) options
7920 * - no non-file child of this BDS has been overridden by the user
7921 * Both of these conditions are represented by generate_json_filename.
7922 */
Max Reitz52f72d62019-06-12 17:43:03 +02007923 if (primary_child_bs->exact_filename[0] &&
7924 primary_child_bs->drv->bdrv_file_open &&
7925 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01007926 {
Max Reitz52f72d62019-06-12 17:43:03 +02007927 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01007928 }
7929 }
7930
Max Reitz91af7012014-07-18 20:24:56 +02007931 if (bs->exact_filename[0]) {
7932 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01007933 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01007934 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05007935 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01007936 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05007937 /* Give user a hint if we truncated things. */
7938 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
7939 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01007940 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02007941 }
7942}
Wen Congyange06018a2016-05-10 15:36:37 +08007943
Max Reitz1e89d0f2019-02-01 20:29:18 +01007944char *bdrv_dirname(BlockDriverState *bs, Error **errp)
7945{
7946 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02007947 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01007948
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007949 GLOBAL_STATE_CODE();
7950
Max Reitz1e89d0f2019-02-01 20:29:18 +01007951 if (!drv) {
7952 error_setg(errp, "Node '%s' is ejected", bs->node_name);
7953 return NULL;
7954 }
7955
7956 if (drv->bdrv_dirname) {
7957 return drv->bdrv_dirname(bs, errp);
7958 }
7959
Max Reitz52f72d62019-06-12 17:43:03 +02007960 child_bs = bdrv_primary_bs(bs);
7961 if (child_bs) {
7962 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01007963 }
7964
7965 bdrv_refresh_filename(bs);
7966 if (bs->exact_filename[0] != '\0') {
7967 return path_combine(bs->exact_filename, "");
7968 }
7969
7970 error_setg(errp, "Cannot generate a base directory for %s nodes",
7971 drv->format_name);
7972 return NULL;
7973}
7974
Wen Congyange06018a2016-05-10 15:36:37 +08007975/*
7976 * Hot add/remove a BDS's child. So the user can take a child offline when
7977 * it is broken and take a new child online
7978 */
7979void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
7980 Error **errp)
7981{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007982 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08007983 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
7984 error_setg(errp, "The node %s does not support adding a child",
7985 bdrv_get_device_or_node_name(parent_bs));
7986 return;
7987 }
7988
Sam Li774c7262023-05-08 12:55:30 +08007989 /*
7990 * Non-zoned block drivers do not follow zoned storage constraints
7991 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
7992 * drivers in a graph.
7993 */
7994 if (!parent_bs->drv->supports_zoned_children &&
7995 child_bs->bl.zoned == BLK_Z_HM) {
7996 /*
7997 * The host-aware model allows zoned storage constraints and random
7998 * write. Allow mixing host-aware and non-zoned drivers. Using
7999 * host-aware device as a regular device.
8000 */
8001 error_setg(errp, "Cannot add a %s child to a %s parent",
8002 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8003 parent_bs->drv->supports_zoned_children ?
8004 "support zoned children" : "not support zoned children");
8005 return;
8006 }
8007
Wen Congyange06018a2016-05-10 15:36:37 +08008008 if (!QLIST_EMPTY(&child_bs->parents)) {
8009 error_setg(errp, "The node %s already has a parent",
8010 child_bs->node_name);
8011 return;
8012 }
8013
8014 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8015}
8016
8017void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8018{
8019 BdrvChild *tmp;
8020
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008021 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008022 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8023 error_setg(errp, "The node %s does not support removing a child",
8024 bdrv_get_device_or_node_name(parent_bs));
8025 return;
8026 }
8027
8028 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8029 if (tmp == child) {
8030 break;
8031 }
8032 }
8033
8034 if (!tmp) {
8035 error_setg(errp, "The node %s does not have a child named %s",
8036 bdrv_get_device_or_node_name(parent_bs),
8037 bdrv_get_device_or_node_name(child->bs));
8038 return;
8039 }
8040
8041 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8042}
Max Reitz6f7a3b52020-04-29 16:11:23 +02008043
8044int bdrv_make_empty(BdrvChild *c, Error **errp)
8045{
8046 BlockDriver *drv = c->bs->drv;
8047 int ret;
8048
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008049 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02008050 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8051
8052 if (!drv->bdrv_make_empty) {
8053 error_setg(errp, "%s does not support emptying nodes",
8054 drv->format_name);
8055 return -ENOTSUP;
8056 }
8057
8058 ret = drv->bdrv_make_empty(c->bs);
8059 if (ret < 0) {
8060 error_setg_errno(errp, -ret, "Failed to empty %s",
8061 c->bs->filename);
8062 return ret;
8063 }
8064
8065 return 0;
8066}
Max Reitz9a6fc882019-05-31 15:23:11 +02008067
8068/*
8069 * Return the child that @bs acts as an overlay for, and from which data may be
8070 * copied in COW or COR operations. Usually this is the backing file.
8071 */
8072BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8073{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008074 IO_CODE();
8075
Max Reitz9a6fc882019-05-31 15:23:11 +02008076 if (!bs || !bs->drv) {
8077 return NULL;
8078 }
8079
8080 if (bs->drv->is_filter) {
8081 return NULL;
8082 }
8083
8084 if (!bs->backing) {
8085 return NULL;
8086 }
8087
8088 assert(bs->backing->role & BDRV_CHILD_COW);
8089 return bs->backing;
8090}
8091
8092/*
8093 * If @bs acts as a filter for exactly one of its children, return
8094 * that child.
8095 */
8096BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8097{
8098 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008099 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008100
8101 if (!bs || !bs->drv) {
8102 return NULL;
8103 }
8104
8105 if (!bs->drv->is_filter) {
8106 return NULL;
8107 }
8108
8109 /* Only one of @backing or @file may be used */
8110 assert(!(bs->backing && bs->file));
8111
8112 c = bs->backing ?: bs->file;
8113 if (!c) {
8114 return NULL;
8115 }
8116
8117 assert(c->role & BDRV_CHILD_FILTERED);
8118 return c;
8119}
8120
8121/*
8122 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8123 * whichever is non-NULL.
8124 *
8125 * Return NULL if both are NULL.
8126 */
8127BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8128{
8129 BdrvChild *cow_child = bdrv_cow_child(bs);
8130 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008131 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008132
8133 /* Filter nodes cannot have COW backing files */
8134 assert(!(cow_child && filter_child));
8135
8136 return cow_child ?: filter_child;
8137}
8138
8139/*
8140 * Return the primary child of this node: For filters, that is the
8141 * filtered child. For other nodes, that is usually the child storing
8142 * metadata.
8143 * (A generally more helpful description is that this is (usually) the
8144 * child that has the same filename as @bs.)
8145 *
8146 * Drivers do not necessarily have a primary child; for example quorum
8147 * does not.
8148 */
8149BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8150{
8151 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008152 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008153
8154 QLIST_FOREACH(c, &bs->children, next) {
8155 if (c->role & BDRV_CHILD_PRIMARY) {
8156 assert(!found);
8157 found = c;
8158 }
8159 }
8160
8161 return found;
8162}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008163
8164static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8165 bool stop_on_explicit_filter)
8166{
8167 BdrvChild *c;
8168
8169 if (!bs) {
8170 return NULL;
8171 }
8172
8173 while (!(stop_on_explicit_filter && !bs->implicit)) {
8174 c = bdrv_filter_child(bs);
8175 if (!c) {
8176 /*
8177 * A filter that is embedded in a working block graph must
8178 * have a child. Assert this here so this function does
8179 * not return a filter node that is not expected by the
8180 * caller.
8181 */
8182 assert(!bs->drv || !bs->drv->is_filter);
8183 break;
8184 }
8185 bs = c->bs;
8186 }
8187 /*
8188 * Note that this treats nodes with bs->drv == NULL as not being
8189 * filters (bs->drv == NULL should be replaced by something else
8190 * anyway).
8191 * The advantage of this behavior is that this function will thus
8192 * always return a non-NULL value (given a non-NULL @bs).
8193 */
8194
8195 return bs;
8196}
8197
8198/*
8199 * Return the first BDS that has not been added implicitly or that
8200 * does not have a filtered child down the chain starting from @bs
8201 * (including @bs itself).
8202 */
8203BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8204{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008205 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008206 return bdrv_do_skip_filters(bs, true);
8207}
8208
8209/*
8210 * Return the first BDS that does not have a filtered child down the
8211 * chain starting from @bs (including @bs itself).
8212 */
8213BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8214{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008215 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008216 return bdrv_do_skip_filters(bs, false);
8217}
8218
8219/*
8220 * For a backing chain, return the first non-filter backing image of
8221 * the first non-filter image.
8222 */
8223BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8224{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008225 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008226 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8227}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008228
8229/**
8230 * Check whether [offset, offset + bytes) overlaps with the cached
8231 * block-status data region.
8232 *
8233 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8234 * which is what bdrv_bsc_is_data()'s interface needs.
8235 * Otherwise, *pnum is not touched.
8236 */
8237static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8238 int64_t offset, int64_t bytes,
8239 int64_t *pnum)
8240{
8241 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8242 bool overlaps;
8243
8244 overlaps =
8245 qatomic_read(&bsc->valid) &&
8246 ranges_overlap(offset, bytes, bsc->data_start,
8247 bsc->data_end - bsc->data_start);
8248
8249 if (overlaps && pnum) {
8250 *pnum = bsc->data_end - offset;
8251 }
8252
8253 return overlaps;
8254}
8255
8256/**
8257 * See block_int.h for this function's documentation.
8258 */
8259bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8260{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008261 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008262 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008263 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8264}
8265
8266/**
8267 * See block_int.h for this function's documentation.
8268 */
8269void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8270 int64_t offset, int64_t bytes)
8271{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008272 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008273 RCU_READ_LOCK_GUARD();
8274
8275 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8276 qatomic_set(&bs->block_status_cache->valid, false);
8277 }
8278}
8279
8280/**
8281 * See block_int.h for this function's documentation.
8282 */
8283void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8284{
8285 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8286 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008287 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008288
8289 *new_bsc = (BdrvBlockStatusCache) {
8290 .valid = true,
8291 .data_start = offset,
8292 .data_end = offset + bytes,
8293 };
8294
8295 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8296
8297 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8298 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8299 if (old_bsc) {
8300 g_free_rcu(old_bsc, rcu);
8301 }
8302}