blob: 7e8b39711b8fa52bf75c938c8ba7d6fc50d569d9 [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
Kevin Wolfad29eb32023-09-11 11:46:07 +020094static void GRAPH_WRLOCK
95bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs);
96
Kevin Wolf2f64e1f2023-09-11 11:46:08 +020097static void GRAPH_WRLOCK
98bdrv_remove_child(BdrvChild *child, Transaction *tran);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +030099
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +0300100static int bdrv_reopen_prepare(BDRVReopenState *reopen_state,
101 BlockReopenQueue *queue,
Alberto Garciaecd30d22021-06-10 15:05:36 +0300102 Transaction *change_child_tran, Error **errp);
Vladimir Sementsov-Ogievskiy53e96d12021-04-28 18:17:35 +0300103static void bdrv_reopen_commit(BDRVReopenState *reopen_state);
104static void bdrv_reopen_abort(BDRVReopenState *reopen_state);
105
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -0500106static bool bdrv_backing_overridden(BlockDriverState *bs);
107
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400108static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -0400109 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -0400110 Error **errp);
111
Markus Armbrustereb852012009-10-27 18:41:44 +0100112/* If non-zero, use only whitelisted block drivers */
113static int use_bdrv_whitelist;
114
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000115#ifdef _WIN32
116static int is_windows_drive_prefix(const char *filename)
117{
118 return (((filename[0] >= 'a' && filename[0] <= 'z') ||
119 (filename[0] >= 'A' && filename[0] <= 'Z')) &&
120 filename[1] == ':');
121}
122
123int is_windows_drive(const char *filename)
124{
125 if (is_windows_drive_prefix(filename) &&
126 filename[2] == '\0')
127 return 1;
128 if (strstart(filename, "\\\\.\\", NULL) ||
129 strstart(filename, "//./", NULL))
130 return 1;
131 return 0;
132}
133#endif
134
Kevin Wolf339064d2013-11-28 10:23:32 +0100135size_t bdrv_opt_mem_align(BlockDriverState *bs)
136{
137 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300138 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400139 return MAX(4096, qemu_real_host_page_size());
Kevin Wolf339064d2013-11-28 10:23:32 +0100140 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500141 IO_CODE();
Kevin Wolf339064d2013-11-28 10:23:32 +0100142
143 return bs->bl.opt_mem_alignment;
144}
145
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300146size_t bdrv_min_mem_align(BlockDriverState *bs)
147{
148 if (!bs || !bs->drv) {
Denis V. Lunev459b4e62015-05-12 17:30:56 +0300149 /* page size or 4k (hdd sector size) should be on the safe side */
Marc-André Lureau8e3b0cb2022-03-23 19:57:22 +0400150 return MAX(4096, qemu_real_host_page_size());
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300151 }
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500152 IO_CODE();
Denis V. Lunev4196d2f2015-05-12 17:30:55 +0300153
154 return bs->bl.min_mem_alignment;
155}
156
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000157/* check if the path starts with "<protocol>:" */
Max Reitz5c984152014-12-03 14:57:22 +0100158int path_has_protocol(const char *path)
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000159{
Paolo Bonzini947995c2012-05-08 16:51:48 +0200160 const char *p;
161
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000162#ifdef _WIN32
163 if (is_windows_drive(path) ||
164 is_windows_drive_prefix(path)) {
165 return 0;
166 }
Paolo Bonzini947995c2012-05-08 16:51:48 +0200167 p = path + strcspn(path, ":/\\");
168#else
169 p = path + strcspn(path, ":/");
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000170#endif
171
Paolo Bonzini947995c2012-05-08 16:51:48 +0200172 return *p == ':';
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000173}
174
bellard83f64092006-08-01 16:21:11 +0000175int path_is_absolute(const char *path)
176{
bellard21664422007-01-07 18:22:37 +0000177#ifdef _WIN32
178 /* specific case for names like: "\\.\d:" */
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200179 if (is_windows_drive(path) || is_windows_drive_prefix(path)) {
bellard21664422007-01-07 18:22:37 +0000180 return 1;
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200181 }
182 return (*path == '/' || *path == '\\');
bellard3b9f94e2007-01-07 17:27:07 +0000183#else
Paolo Bonzinif53f4da2012-05-08 16:51:47 +0200184 return (*path == '/');
bellard3b9f94e2007-01-07 17:27:07 +0000185#endif
bellard83f64092006-08-01 16:21:11 +0000186}
187
Max Reitz009b03a2019-02-01 20:29:13 +0100188/* if filename is absolute, just return its duplicate. Otherwise, build a
bellard83f64092006-08-01 16:21:11 +0000189 path to it by considering it is relative to base_path. URL are
190 supported. */
Max Reitz009b03a2019-02-01 20:29:13 +0100191char *path_combine(const char *base_path, const char *filename)
bellard83f64092006-08-01 16:21:11 +0000192{
Max Reitz009b03a2019-02-01 20:29:13 +0100193 const char *protocol_stripped = NULL;
bellard83f64092006-08-01 16:21:11 +0000194 const char *p, *p1;
Max Reitz009b03a2019-02-01 20:29:13 +0100195 char *result;
bellard83f64092006-08-01 16:21:11 +0000196 int len;
197
bellard83f64092006-08-01 16:21:11 +0000198 if (path_is_absolute(filename)) {
Max Reitz009b03a2019-02-01 20:29:13 +0100199 return g_strdup(filename);
bellard83f64092006-08-01 16:21:11 +0000200 }
Max Reitz009b03a2019-02-01 20:29:13 +0100201
202 if (path_has_protocol(base_path)) {
203 protocol_stripped = strchr(base_path, ':');
204 if (protocol_stripped) {
205 protocol_stripped++;
206 }
207 }
208 p = protocol_stripped ?: base_path;
209
210 p1 = strrchr(base_path, '/');
211#ifdef _WIN32
212 {
213 const char *p2;
214 p2 = strrchr(base_path, '\\');
215 if (!p1 || p2 > p1) {
216 p1 = p2;
217 }
218 }
219#endif
220 if (p1) {
221 p1++;
222 } else {
223 p1 = base_path;
224 }
225 if (p1 > p) {
226 p = p1;
227 }
228 len = p - base_path;
229
230 result = g_malloc(len + strlen(filename) + 1);
231 memcpy(result, base_path, len);
232 strcpy(result + len, filename);
233
234 return result;
235}
236
Max Reitz03c320d2017-05-22 21:52:16 +0200237/*
238 * Helper function for bdrv_parse_filename() implementations to remove optional
239 * protocol prefixes (especially "file:") from a filename and for putting the
240 * stripped filename into the options QDict if there is such a prefix.
241 */
242void bdrv_parse_filename_strip_prefix(const char *filename, const char *prefix,
243 QDict *options)
244{
245 if (strstart(filename, prefix, &filename)) {
246 /* Stripping the explicit protocol prefix may result in a protocol
247 * prefix being (wrongly) detected (if the filename contains a colon) */
248 if (path_has_protocol(filename)) {
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100249 GString *fat_filename;
Max Reitz03c320d2017-05-22 21:52:16 +0200250
251 /* This means there is some colon before the first slash; therefore,
252 * this cannot be an absolute path */
253 assert(!path_is_absolute(filename));
254
255 /* And we can thus fix the protocol detection issue by prefixing it
256 * by "./" */
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100257 fat_filename = g_string_new("./");
258 g_string_append(fat_filename, filename);
Max Reitz03c320d2017-05-22 21:52:16 +0200259
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100260 assert(!path_has_protocol(fat_filename->str));
Max Reitz03c320d2017-05-22 21:52:16 +0200261
Markus Armbruster18cf67c2020-12-11 18:11:51 +0100262 qdict_put(options, "filename",
263 qstring_from_gstring(fat_filename));
Max Reitz03c320d2017-05-22 21:52:16 +0200264 } else {
265 /* If no protocol prefix was detected, we can use the shortened
266 * filename as-is */
267 qdict_put_str(options, "filename", filename);
268 }
269 }
270}
271
272
Kevin Wolf9c5e6592017-05-04 18:52:40 +0200273/* Returns whether the image file is opened as read-only. Note that this can
274 * return false and writing to the image file is still not possible because the
275 * image is inactivated. */
Jeff Cody93ed5242017-04-07 16:55:28 -0400276bool bdrv_is_read_only(BlockDriverState *bs)
277{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500278 IO_CODE();
Vladimir Sementsov-Ogievskiy975da072021-05-27 18:40:55 +0300279 return !(bs->open_flags & BDRV_O_RDWR);
Jeff Cody93ed5242017-04-07 16:55:28 -0400280}
281
Kevin Wolf4026f1c2023-09-29 16:51:47 +0200282static int GRAPH_RDLOCK
283bdrv_can_set_read_only(BlockDriverState *bs, bool read_only,
284 bool ignore_allow_rdw, Error **errp)
Jeff Codyfe5241b2017-04-07 16:55:25 -0400285{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500286 IO_CODE();
287
Jeff Codye2b82472017-04-07 16:55:26 -0400288 /* Do not set read_only if copy_on_read is enabled */
289 if (bs->copy_on_read && read_only) {
290 error_setg(errp, "Can't set node '%s' to r/o with copy-on-read enabled",
291 bdrv_get_device_or_node_name(bs));
292 return -EINVAL;
293 }
294
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400295 /* Do not clear read_only if it is prohibited */
Kevin Wolf54a32bf2017-08-03 17:02:58 +0200296 if (!read_only && !(bs->open_flags & BDRV_O_ALLOW_RDWR) &&
297 !ignore_allow_rdw)
298 {
Jeff Codyd6fcdf02017-04-07 16:55:27 -0400299 error_setg(errp, "Node '%s' is read only",
300 bdrv_get_device_or_node_name(bs));
301 return -EPERM;
302 }
303
Jeff Cody45803a02017-04-07 16:55:29 -0400304 return 0;
305}
306
Kevin Wolfeaa24102018-10-12 11:27:41 +0200307/*
308 * Called by a driver that can only provide a read-only image.
309 *
310 * Returns 0 if the node is already read-only or it could switch the node to
311 * read-only because BDRV_O_AUTO_RDONLY is set.
312 *
313 * Returns -EACCES if the node is read-write and BDRV_O_AUTO_RDONLY is not set
314 * or bdrv_can_set_read_only() forbids making the node read-only. If @errmsg
315 * is not NULL, it is used as the error message for the Error object.
316 */
317int bdrv_apply_auto_read_only(BlockDriverState *bs, const char *errmsg,
318 Error **errp)
Jeff Cody45803a02017-04-07 16:55:29 -0400319{
320 int ret = 0;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500321 IO_CODE();
Jeff Cody45803a02017-04-07 16:55:29 -0400322
Kevin Wolfeaa24102018-10-12 11:27:41 +0200323 if (!(bs->open_flags & BDRV_O_RDWR)) {
324 return 0;
325 }
326 if (!(bs->open_flags & BDRV_O_AUTO_RDONLY)) {
327 goto fail;
328 }
329
330 ret = bdrv_can_set_read_only(bs, true, false, NULL);
Jeff Cody45803a02017-04-07 16:55:29 -0400331 if (ret < 0) {
Kevin Wolfeaa24102018-10-12 11:27:41 +0200332 goto fail;
Jeff Cody45803a02017-04-07 16:55:29 -0400333 }
334
Kevin Wolfeaa24102018-10-12 11:27:41 +0200335 bs->open_flags &= ~BDRV_O_RDWR;
Kevin Wolfeeae6a52018-10-09 16:57:12 +0200336
Jeff Codye2b82472017-04-07 16:55:26 -0400337 return 0;
Kevin Wolfeaa24102018-10-12 11:27:41 +0200338
339fail:
340 error_setg(errp, "%s", errmsg ?: "Image is read-only");
341 return -EACCES;
Jeff Codyfe5241b2017-04-07 16:55:25 -0400342}
343
Max Reitz645ae7d2019-02-01 20:29:14 +0100344/*
345 * If @backing is empty, this function returns NULL without setting
346 * @errp. In all other cases, NULL will only be returned with @errp
347 * set.
348 *
349 * Therefore, a return value of NULL without @errp set means that
350 * there is no backing file; if @errp is set, there is one but its
351 * absolute filename cannot be generated.
352 */
353char *bdrv_get_full_backing_filename_from_filename(const char *backed,
354 const char *backing,
355 Error **errp)
Max Reitz0a828552014-11-26 17:20:25 +0100356{
Max Reitz645ae7d2019-02-01 20:29:14 +0100357 if (backing[0] == '\0') {
358 return NULL;
359 } else if (path_has_protocol(backing) || path_is_absolute(backing)) {
360 return g_strdup(backing);
Max Reitz9f074292014-11-26 17:20:26 +0100361 } else if (backed[0] == '\0' || strstart(backed, "json:", NULL)) {
362 error_setg(errp, "Cannot use relative backing file names for '%s'",
363 backed);
Max Reitz645ae7d2019-02-01 20:29:14 +0100364 return NULL;
Max Reitz0a828552014-11-26 17:20:25 +0100365 } else {
Max Reitz645ae7d2019-02-01 20:29:14 +0100366 return path_combine(backed, backing);
Max Reitz0a828552014-11-26 17:20:25 +0100367 }
368}
369
Max Reitz9f4793d2019-02-01 20:29:16 +0100370/*
371 * If @filename is empty or NULL, this function returns NULL without
372 * setting @errp. In all other cases, NULL will only be returned with
373 * @errp set.
374 */
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +0200375static char * GRAPH_RDLOCK
376bdrv_make_absolute_filename(BlockDriverState *relative_to,
377 const char *filename, Error **errp)
Max Reitz9f4793d2019-02-01 20:29:16 +0100378{
Max Reitz8df68612019-02-01 20:29:23 +0100379 char *dir, *full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100380
Max Reitz8df68612019-02-01 20:29:23 +0100381 if (!filename || filename[0] == '\0') {
382 return NULL;
383 } else if (path_has_protocol(filename) || path_is_absolute(filename)) {
384 return g_strdup(filename);
385 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100386
Max Reitz8df68612019-02-01 20:29:23 +0100387 dir = bdrv_dirname(relative_to, errp);
388 if (!dir) {
389 return NULL;
390 }
Max Reitz9f4793d2019-02-01 20:29:16 +0100391
Max Reitz8df68612019-02-01 20:29:23 +0100392 full_name = g_strconcat(dir, filename, NULL);
393 g_free(dir);
394 return full_name;
Max Reitz9f4793d2019-02-01 20:29:16 +0100395}
396
Max Reitz6b6833c2019-02-01 20:29:15 +0100397char *bdrv_get_full_backing_filename(BlockDriverState *bs, Error **errp)
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200398{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500399 GLOBAL_STATE_CODE();
Max Reitz9f4793d2019-02-01 20:29:16 +0100400 return bdrv_make_absolute_filename(bs, bs->backing_file, errp);
Paolo Bonzinidc5a1372012-05-08 16:51:50 +0200401}
402
Stefan Hajnoczi0eb72172015-04-28 14:27:51 +0100403void bdrv_register(BlockDriver *bdrv)
404{
Philippe Mathieu-Daudéa15f08d2020-03-18 23:22:35 +0100405 assert(bdrv->format_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500406 GLOBAL_STATE_CODE();
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100407 QLIST_INSERT_HEAD(&bdrv_drivers, bdrv, list);
bellardea2384d2004-08-01 21:59:26 +0000408}
bellardb3380822004-03-14 21:38:54 +0000409
Markus Armbrustere4e99862014-10-07 13:59:03 +0200410BlockDriverState *bdrv_new(void)
411{
412 BlockDriverState *bs;
413 int i;
414
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500415 GLOBAL_STATE_CODE();
416
Markus Armbruster5839e532014-08-19 10:31:08 +0200417 bs = g_new0(BlockDriverState, 1);
Fam Zhenge4654d22013-11-13 18:29:43 +0800418 QLIST_INIT(&bs->dirty_bitmaps);
Fam Zhengfbe40ff2014-05-23 21:29:42 +0800419 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
420 QLIST_INIT(&bs->op_blockers[i]);
421 }
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -0400422 qemu_mutex_init(&bs->reqs_lock);
Paolo Bonzini21198822017-06-05 14:39:03 +0200423 qemu_mutex_init(&bs->dirty_bitmap_mutex);
Fam Zheng9fcb0252013-08-23 09:14:46 +0800424 bs->refcnt = 1;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +0200425 bs->aio_context = qemu_get_aio_context();
Paolo Bonzinid7d512f2012-08-23 11:20:36 +0200426
Evgeny Yakovlev3ff2f672016-07-18 22:39:52 +0300427 qemu_co_queue_init(&bs->flush_queue);
428
Hanna Reitz0bc329f2021-08-12 10:41:44 +0200429 qemu_co_mutex_init(&bs->bsc_modify_lock);
430 bs->block_status_cache = g_new0(BdrvBlockStatusCache, 1);
431
Kevin Wolf0f122642018-03-28 18:29:18 +0200432 for (i = 0; i < bdrv_drain_all_count; i++) {
433 bdrv_drained_begin(bs);
434 }
435
Max Reitz2c1d04e2016-01-29 16:36:11 +0100436 QTAILQ_INSERT_TAIL(&all_bdrv_states, bs, bs_list);
437
bellardb3380822004-03-14 21:38:54 +0000438 return bs;
439}
440
Marc Mari88d88792016-08-12 09:27:03 -0400441static BlockDriver *bdrv_do_find_format(const char *format_name)
bellardea2384d2004-08-01 21:59:26 +0000442{
443 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500444 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400445
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100446 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
447 if (!strcmp(drv1->format_name, format_name)) {
bellardea2384d2004-08-01 21:59:26 +0000448 return drv1;
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100449 }
bellardea2384d2004-08-01 21:59:26 +0000450 }
Marc Mari88d88792016-08-12 09:27:03 -0400451
bellardea2384d2004-08-01 21:59:26 +0000452 return NULL;
453}
454
Marc Mari88d88792016-08-12 09:27:03 -0400455BlockDriver *bdrv_find_format(const char *format_name)
456{
457 BlockDriver *drv1;
458 int i;
459
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500460 GLOBAL_STATE_CODE();
461
Marc Mari88d88792016-08-12 09:27:03 -0400462 drv1 = bdrv_do_find_format(format_name);
463 if (drv1) {
464 return drv1;
465 }
466
467 /* The driver isn't registered, maybe we need to load a module */
468 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
469 if (!strcmp(block_driver_modules[i].format_name, format_name)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200470 Error *local_err = NULL;
471 int rv = block_module_load(block_driver_modules[i].library_name,
472 &local_err);
473 if (rv > 0) {
474 return bdrv_do_find_format(format_name);
475 } else if (rv < 0) {
476 error_report_err(local_err);
477 }
Marc Mari88d88792016-08-12 09:27:03 -0400478 break;
479 }
480 }
Claudio Fontanac551fb02022-09-29 11:30:33 +0200481 return NULL;
Marc Mari88d88792016-08-12 09:27:03 -0400482}
483
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300484static int bdrv_format_is_whitelisted(const char *format_name, bool read_only)
Markus Armbrustereb852012009-10-27 18:41:44 +0100485{
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800486 static const char *whitelist_rw[] = {
487 CONFIG_BDRV_RW_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200488 NULL
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800489 };
490 static const char *whitelist_ro[] = {
491 CONFIG_BDRV_RO_WHITELIST
Paolo Bonzini859aef02020-08-04 18:14:26 +0200492 NULL
Markus Armbrustereb852012009-10-27 18:41:44 +0100493 };
494 const char **p;
495
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800496 if (!whitelist_rw[0] && !whitelist_ro[0]) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100497 return 1; /* no whitelist, anything goes */
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800498 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100499
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800500 for (p = whitelist_rw; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300501 if (!strcmp(format_name, *p)) {
Markus Armbrustereb852012009-10-27 18:41:44 +0100502 return 1;
503 }
504 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800505 if (read_only) {
506 for (p = whitelist_ro; *p; p++) {
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300507 if (!strcmp(format_name, *p)) {
Fam Zhengb64ec4e2013-05-29 19:35:40 +0800508 return 1;
509 }
510 }
511 }
Markus Armbrustereb852012009-10-27 18:41:44 +0100512 return 0;
513}
514
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300515int bdrv_is_whitelisted(BlockDriver *drv, bool read_only)
516{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500517 GLOBAL_STATE_CODE();
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +0300518 return bdrv_format_is_whitelisted(drv->format_name, read_only);
519}
520
Daniel P. Berrangee6ff69b2016-03-21 14:11:48 +0000521bool bdrv_uses_whitelist(void)
522{
523 return use_bdrv_whitelist;
524}
525
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800526typedef struct CreateCo {
527 BlockDriver *drv;
528 char *filename;
Chunyan Liu83d05212014-06-05 17:20:51 +0800529 QemuOpts *opts;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800530 int ret;
Max Reitzcc84d902013-09-06 17:14:26 +0200531 Error *err;
Zhi Yong Wu5b7e1542012-05-07 16:50:42 +0800532} CreateCo;
533
Emanuele Giuseppe Esposito741443e2022-11-28 09:23:36 -0500534int coroutine_fn bdrv_co_create(BlockDriver *drv, const char *filename,
535 QemuOpts *opts, Error **errp)
Emanuele Giuseppe Esposito84bdf212022-11-28 09:23:30 -0500536{
537 int ret;
538 GLOBAL_STATE_CODE();
539 ERRP_GUARD();
540
541 if (!drv->bdrv_co_create_opts) {
542 error_setg(errp, "Driver '%s' does not support image creation",
543 drv->format_name);
544 return -ENOTSUP;
545 }
546
547 ret = drv->bdrv_co_create_opts(drv, filename, opts, errp);
548 if (ret < 0 && !*errp) {
549 error_setg_errno(errp, -ret, "Could not create image");
550 }
551
552 return ret;
553}
554
Max Reitzfd171462020-01-22 17:45:29 +0100555/**
556 * Helper function for bdrv_create_file_fallback(): Resize @blk to at
557 * least the given @minimum_size.
558 *
559 * On success, return @blk's actual length.
560 * Otherwise, return -errno.
561 */
Paolo Bonzini84569a72023-06-01 13:51:38 +0200562static int64_t coroutine_fn GRAPH_UNLOCKED
563create_file_fallback_truncate(BlockBackend *blk, int64_t minimum_size,
564 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100565{
566 Error *local_err = NULL;
567 int64_t size;
568 int ret;
569
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500570 GLOBAL_STATE_CODE();
571
Paolo Bonzini84569a72023-06-01 13:51:38 +0200572 ret = blk_co_truncate(blk, minimum_size, false, PREALLOC_MODE_OFF, 0,
573 &local_err);
Max Reitzfd171462020-01-22 17:45:29 +0100574 if (ret < 0 && ret != -ENOTSUP) {
575 error_propagate(errp, local_err);
576 return ret;
577 }
578
Paolo Bonzini84569a72023-06-01 13:51:38 +0200579 size = blk_co_getlength(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100580 if (size < 0) {
581 error_free(local_err);
582 error_setg_errno(errp, -size,
583 "Failed to inquire the new image file's length");
584 return size;
585 }
586
587 if (size < minimum_size) {
588 /* Need to grow the image, but we failed to do that */
589 error_propagate(errp, local_err);
590 return -ENOTSUP;
591 }
592
593 error_free(local_err);
594 local_err = NULL;
595
596 return size;
597}
598
599/**
600 * Helper function for bdrv_create_file_fallback(): Zero the first
601 * sector to remove any potentially pre-existing image header.
602 */
Paolo Bonzini881a4c52022-09-22 10:49:00 +0200603static int coroutine_fn
604create_file_fallback_zero_first_sector(BlockBackend *blk,
605 int64_t current_size,
606 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100607{
608 int64_t bytes_to_clear;
609 int ret;
610
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500611 GLOBAL_STATE_CODE();
612
Max Reitzfd171462020-01-22 17:45:29 +0100613 bytes_to_clear = MIN(current_size, BDRV_SECTOR_SIZE);
614 if (bytes_to_clear) {
Alberto Fariace47ff22022-10-13 14:37:02 +0200615 ret = blk_co_pwrite_zeroes(blk, 0, bytes_to_clear, BDRV_REQ_MAY_UNMAP);
Max Reitzfd171462020-01-22 17:45:29 +0100616 if (ret < 0) {
617 error_setg_errno(errp, -ret,
618 "Failed to clear the new image's first sector");
619 return ret;
620 }
621 }
622
623 return 0;
624}
625
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +0200626/**
627 * Simple implementation of bdrv_co_create_opts for protocol drivers
628 * which only support creation via opening a file
629 * (usually existing raw storage device)
630 */
631int coroutine_fn bdrv_co_create_opts_simple(BlockDriver *drv,
632 const char *filename,
633 QemuOpts *opts,
634 Error **errp)
Max Reitzfd171462020-01-22 17:45:29 +0100635{
636 BlockBackend *blk;
Max Reitzeeea1fa2020-02-25 16:56:18 +0100637 QDict *options;
Max Reitzfd171462020-01-22 17:45:29 +0100638 int64_t size = 0;
639 char *buf = NULL;
640 PreallocMode prealloc;
641 Error *local_err = NULL;
642 int ret;
643
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -0500644 GLOBAL_STATE_CODE();
645
Max Reitzfd171462020-01-22 17:45:29 +0100646 size = qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0);
647 buf = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
648 prealloc = qapi_enum_parse(&PreallocMode_lookup, buf,
649 PREALLOC_MODE_OFF, &local_err);
650 g_free(buf);
651 if (local_err) {
652 error_propagate(errp, local_err);
653 return -EINVAL;
654 }
655
656 if (prealloc != PREALLOC_MODE_OFF) {
657 error_setg(errp, "Unsupported preallocation mode '%s'",
658 PreallocMode_str(prealloc));
659 return -ENOTSUP;
660 }
661
Max Reitzeeea1fa2020-02-25 16:56:18 +0100662 options = qdict_new();
Max Reitzfd171462020-01-22 17:45:29 +0100663 qdict_put_str(options, "driver", drv->format_name);
664
Kevin Wolfbe1a7322023-01-26 18:24:31 +0100665 blk = blk_co_new_open(filename, NULL, options,
666 BDRV_O_RDWR | BDRV_O_RESIZE, errp);
Max Reitzfd171462020-01-22 17:45:29 +0100667 if (!blk) {
Hanna Czenczek81624862023-07-20 16:00:24 +0200668 error_prepend(errp, "Protocol driver '%s' does not support creating "
669 "new images, so an existing image must be selected as "
670 "the target; however, opening the given target as an "
671 "existing image failed: ",
Max Reitzfd171462020-01-22 17:45:29 +0100672 drv->format_name);
673 return -EINVAL;
674 }
675
676 size = create_file_fallback_truncate(blk, size, errp);
677 if (size < 0) {
678 ret = size;
679 goto out;
680 }
681
682 ret = create_file_fallback_zero_first_sector(blk, size, errp);
683 if (ret < 0) {
684 goto out;
685 }
686
687 ret = 0;
688out:
Kevin Wolfb2ab5f52023-05-04 13:57:33 +0200689 blk_co_unref(blk);
Max Reitzfd171462020-01-22 17:45:29 +0100690 return ret;
691}
692
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500693int coroutine_fn bdrv_co_create_file(const char *filename, QemuOpts *opts,
694 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200695{
Stefano Garzarella729222a2021-03-08 17:12:32 +0100696 QemuOpts *protocol_opts;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200697 BlockDriver *drv;
Stefano Garzarella729222a2021-03-08 17:12:32 +0100698 QDict *qdict;
699 int ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200700
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500701 GLOBAL_STATE_CODE();
702
Max Reitzb65a5e12015-02-05 13:58:12 -0500703 drv = bdrv_find_protocol(filename, true, errp);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200704 if (drv == NULL) {
Stefan Hajnoczi16905d72010-11-30 15:14:14 +0000705 return -ENOENT;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200706 }
707
Stefano Garzarella729222a2021-03-08 17:12:32 +0100708 if (!drv->create_opts) {
709 error_setg(errp, "Driver '%s' does not support image creation",
710 drv->format_name);
711 return -ENOTSUP;
712 }
713
714 /*
715 * 'opts' contains a QemuOptsList with a combination of format and protocol
716 * default values.
717 *
718 * The format properly removes its options, but the default values remain
719 * in 'opts->list'. So if the protocol has options with the same name
720 * (e.g. rbd has 'cluster_size' as qcow2), it will see the default values
721 * of the format, since for overlapping options, the format wins.
722 *
723 * To avoid this issue, lets convert QemuOpts to QDict, in this way we take
724 * only the set options, and then convert it back to QemuOpts, using the
725 * create_opts of the protocol. So the new QemuOpts, will contain only the
726 * protocol defaults.
727 */
728 qdict = qemu_opts_to_qdict(opts, NULL);
729 protocol_opts = qemu_opts_from_qdict(drv->create_opts, qdict, errp);
730 if (protocol_opts == NULL) {
731 ret = -EINVAL;
732 goto out;
733 }
734
Emanuele Giuseppe Esposito2475a0d2022-11-28 09:23:31 -0500735 ret = bdrv_co_create(drv, filename, protocol_opts, errp);
Stefano Garzarella729222a2021-03-08 17:12:32 +0100736out:
737 qemu_opts_del(protocol_opts);
738 qobject_unref(qdict);
739 return ret;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200740}
741
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300742int coroutine_fn bdrv_co_delete_file(BlockDriverState *bs, Error **errp)
743{
744 Error *local_err = NULL;
745 int ret;
746
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500747 IO_CODE();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300748 assert(bs != NULL);
Kevin Wolf48aef792023-02-03 16:22:00 +0100749 assert_bdrv_graph_readable();
Daniel Henrique Barbozae1d7f8b2020-01-30 18:39:05 -0300750
751 if (!bs->drv) {
752 error_setg(errp, "Block node '%s' is not opened", bs->filename);
753 return -ENOMEDIUM;
754 }
755
756 if (!bs->drv->bdrv_co_delete_file) {
757 error_setg(errp, "Driver '%s' does not support image deletion",
758 bs->drv->format_name);
759 return -ENOTSUP;
760 }
761
762 ret = bs->drv->bdrv_co_delete_file(bs, &local_err);
763 if (ret < 0) {
764 error_propagate(errp, local_err);
765 }
766
767 return ret;
768}
769
Maxim Levitskya890f082020-12-17 19:09:03 +0200770void coroutine_fn bdrv_co_delete_file_noerr(BlockDriverState *bs)
771{
772 Error *local_err = NULL;
773 int ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -0500774 IO_CODE();
Maxim Levitskya890f082020-12-17 19:09:03 +0200775
776 if (!bs) {
777 return;
778 }
779
780 ret = bdrv_co_delete_file(bs, &local_err);
781 /*
782 * ENOTSUP will happen if the block driver doesn't support
783 * the 'bdrv_co_delete_file' interface. This is a predictable
784 * scenario and shouldn't be reported back to the user.
785 */
786 if (ret == -ENOTSUP) {
787 error_free(local_err);
788 } else if (ret < 0) {
789 error_report_err(local_err);
790 }
791}
792
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100793/**
794 * Try to get @bs's logical and physical block size.
795 * On success, store them in @bsz struct and return 0.
796 * On failure return -errno.
797 * @bs must not be empty.
798 */
799int bdrv_probe_blocksizes(BlockDriverState *bs, BlockSizes *bsz)
800{
801 BlockDriver *drv = bs->drv;
Max Reitz93393e62019-06-12 17:03:38 +0200802 BlockDriverState *filtered = bdrv_filter_bs(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500803 GLOBAL_STATE_CODE();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100804
805 if (drv && drv->bdrv_probe_blocksizes) {
806 return drv->bdrv_probe_blocksizes(bs, bsz);
Max Reitz93393e62019-06-12 17:03:38 +0200807 } else if (filtered) {
808 return bdrv_probe_blocksizes(filtered, bsz);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100809 }
810
811 return -ENOTSUP;
812}
813
814/**
815 * Try to get @bs's geometry (cyls, heads, sectors).
816 * On success, store them in @geo struct and return 0.
817 * On failure return -errno.
818 * @bs must not be empty.
819 */
820int bdrv_probe_geometry(BlockDriverState *bs, HDGeometry *geo)
821{
822 BlockDriver *drv = bs->drv;
Kevin Wolff5a3a272023-10-27 17:53:12 +0200823 BlockDriverState *filtered;
824
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500825 GLOBAL_STATE_CODE();
Kevin Wolff5a3a272023-10-27 17:53:12 +0200826 GRAPH_RDLOCK_GUARD_MAINLOOP();
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100827
828 if (drv && drv->bdrv_probe_geometry) {
829 return drv->bdrv_probe_geometry(bs, geo);
Kevin Wolff5a3a272023-10-27 17:53:12 +0200830 }
831
832 filtered = bdrv_filter_bs(bs);
833 if (filtered) {
Max Reitz93393e62019-06-12 17:03:38 +0200834 return bdrv_probe_geometry(filtered, geo);
Ekaterina Tumanova892b7de2015-02-16 12:47:54 +0100835 }
836
837 return -ENOTSUP;
838}
839
Jim Meyeringeba25052012-05-28 09:27:54 +0200840/*
841 * Create a uniquely-named empty temporary file.
Bin Meng69fbfff2022-10-10 12:04:31 +0800842 * Return the actual file name used upon success, otherwise NULL.
843 * This string should be freed with g_free() when not needed any longer.
844 *
845 * Note: creating a temporary file for the caller to (re)open is
846 * inherently racy. Use g_file_open_tmp() instead whenever practical.
Jim Meyeringeba25052012-05-28 09:27:54 +0200847 */
Bin Meng69fbfff2022-10-10 12:04:31 +0800848char *create_tmp_file(Error **errp)
Jim Meyeringeba25052012-05-28 09:27:54 +0200849{
bellardea2384d2004-08-01 21:59:26 +0000850 int fd;
blueswir17ccfb2e2008-09-14 06:45:34 +0000851 const char *tmpdir;
Bin Meng69fbfff2022-10-10 12:04:31 +0800852 g_autofree char *filename = NULL;
853
854 tmpdir = g_get_tmp_dir();
855#ifndef _WIN32
856 /*
857 * See commit 69bef79 ("block: use /var/tmp instead of /tmp for -snapshot")
858 *
859 * This function is used to create temporary disk images (like -snapshot),
860 * so the files can become very large. /tmp is often a tmpfs where as
861 * /var/tmp is usually on a disk, so more appropriate for disk images.
862 */
863 if (!g_strcmp0(tmpdir, "/tmp")) {
Amit Shah69bef792014-02-26 15:12:37 +0530864 tmpdir = "/var/tmp";
865 }
bellardd5249392004-08-03 21:14:23 +0000866#endif
Bin Meng69fbfff2022-10-10 12:04:31 +0800867
868 filename = g_strdup_printf("%s/vl.XXXXXX", tmpdir);
869 fd = g_mkstemp(filename);
bellardea2384d2004-08-01 21:59:26 +0000870 if (fd < 0) {
Bin Meng69fbfff2022-10-10 12:04:31 +0800871 error_setg_errno(errp, errno, "Could not open temporary file '%s'",
872 filename);
873 return NULL;
bellardea2384d2004-08-01 21:59:26 +0000874 }
Bin Meng6b6471e2022-10-10 12:04:30 +0800875 close(fd);
Bin Meng69fbfff2022-10-10 12:04:31 +0800876
877 return g_steal_pointer(&filename);
Jim Meyeringeba25052012-05-28 09:27:54 +0200878}
bellardea2384d2004-08-01 21:59:26 +0000879
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200880/*
881 * Detect host devices. By convention, /dev/cdrom[N] is always
882 * recognized as a host CDROM.
883 */
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200884static BlockDriver *find_hdev_driver(const char *filename)
885{
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200886 int score_max = 0, score;
887 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500888 GLOBAL_STATE_CODE();
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200889
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +0100890 QLIST_FOREACH(d, &bdrv_drivers, list) {
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200891 if (d->bdrv_probe_device) {
892 score = d->bdrv_probe_device(filename);
893 if (score > score_max) {
894 score_max = score;
895 drv = d;
896 }
897 }
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200898 }
899
Christoph Hellwig508c7cb2009-06-15 14:04:22 +0200900 return drv;
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200901}
Christoph Hellwigf3a5d3f2009-06-15 13:55:19 +0200902
Marc Mari88d88792016-08-12 09:27:03 -0400903static BlockDriver *bdrv_do_find_protocol(const char *protocol)
904{
905 BlockDriver *drv1;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -0500906 GLOBAL_STATE_CODE();
Marc Mari88d88792016-08-12 09:27:03 -0400907
908 QLIST_FOREACH(drv1, &bdrv_drivers, list) {
909 if (drv1->protocol_name && !strcmp(drv1->protocol_name, protocol)) {
910 return drv1;
911 }
912 }
913
914 return NULL;
915}
916
Kevin Wolf98289622013-07-10 15:47:39 +0200917BlockDriver *bdrv_find_protocol(const char *filename,
Max Reitzb65a5e12015-02-05 13:58:12 -0500918 bool allow_protocol_prefix,
919 Error **errp)
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200920{
921 BlockDriver *drv1;
922 char protocol[128];
923 int len;
924 const char *p;
Marc Mari88d88792016-08-12 09:27:03 -0400925 int i;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200926
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -0500927 GLOBAL_STATE_CODE();
Kevin Wolf66f82ce2010-04-14 14:17:38 +0200928 /* TODO Drivers without bdrv_file_open must be specified explicitly */
929
Christoph Hellwig39508e72010-06-23 12:25:17 +0200930 /*
931 * XXX(hch): we really should not let host device detection
932 * override an explicit protocol specification, but moving this
933 * later breaks access to device names with colons in them.
934 * Thanks to the brain-dead persistent naming schemes on udev-
935 * based Linux systems those actually are quite common.
936 */
937 drv1 = find_hdev_driver(filename);
938 if (drv1) {
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200939 return drv1;
940 }
Christoph Hellwig39508e72010-06-23 12:25:17 +0200941
Kevin Wolf98289622013-07-10 15:47:39 +0200942 if (!path_has_protocol(filename) || !allow_protocol_prefix) {
Max Reitzef810432014-12-02 18:32:42 +0100943 return &bdrv_file;
Christoph Hellwig39508e72010-06-23 12:25:17 +0200944 }
Kevin Wolf98289622013-07-10 15:47:39 +0200945
Stefan Hajnoczi9e0b22f2010-12-09 11:53:00 +0000946 p = strchr(filename, ':');
947 assert(p != NULL);
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200948 len = p - filename;
949 if (len > sizeof(protocol) - 1)
950 len = sizeof(protocol) - 1;
951 memcpy(protocol, filename, len);
952 protocol[len] = '\0';
Marc Mari88d88792016-08-12 09:27:03 -0400953
954 drv1 = bdrv_do_find_protocol(protocol);
955 if (drv1) {
956 return drv1;
957 }
958
959 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); ++i) {
960 if (block_driver_modules[i].protocol_name &&
961 !strcmp(block_driver_modules[i].protocol_name, protocol)) {
Claudio Fontanac551fb02022-09-29 11:30:33 +0200962 int rv = block_module_load(block_driver_modules[i].library_name, errp);
963 if (rv > 0) {
964 drv1 = bdrv_do_find_protocol(protocol);
965 } else if (rv < 0) {
966 return NULL;
967 }
Marc Mari88d88792016-08-12 09:27:03 -0400968 break;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200969 }
970 }
Max Reitzb65a5e12015-02-05 13:58:12 -0500971
Marc Mari88d88792016-08-12 09:27:03 -0400972 if (!drv1) {
973 error_setg(errp, "Unknown protocol '%s'", protocol);
974 }
975 return drv1;
Christoph Hellwig84a12e62010-04-07 22:30:24 +0200976}
977
Markus Armbrusterc6684242014-11-20 16:27:10 +0100978/*
979 * Guess image format by probing its contents.
980 * This is not a good idea when your image is raw (CVE-2008-2004), but
981 * we do it anyway for backward compatibility.
982 *
983 * @buf contains the image's first @buf_size bytes.
Kevin Wolf7cddd372014-11-20 16:27:11 +0100984 * @buf_size is the buffer size in bytes (generally BLOCK_PROBE_BUF_SIZE,
985 * but can be smaller if the image file is smaller)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100986 * @filename is its filename.
987 *
988 * For all block drivers, call the bdrv_probe() method to get its
989 * probing score.
990 * Return the first block driver with the highest probing score.
991 */
Kevin Wolf38f3ef52014-11-20 16:27:12 +0100992BlockDriver *bdrv_probe_all(const uint8_t *buf, int buf_size,
993 const char *filename)
Markus Armbrusterc6684242014-11-20 16:27:10 +0100994{
995 int score_max = 0, score;
996 BlockDriver *drv = NULL, *d;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -0500997 IO_CODE();
Markus Armbrusterc6684242014-11-20 16:27:10 +0100998
999 QLIST_FOREACH(d, &bdrv_drivers, list) {
1000 if (d->bdrv_probe) {
1001 score = d->bdrv_probe(buf, buf_size, filename);
1002 if (score > score_max) {
1003 score_max = score;
1004 drv = d;
1005 }
1006 }
1007 }
1008
1009 return drv;
1010}
1011
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001012static int find_image_format(BlockBackend *file, const char *filename,
Max Reitz34b5d2c2013-09-05 14:45:29 +02001013 BlockDriver **pdrv, Error **errp)
bellardea2384d2004-08-01 21:59:26 +00001014{
Markus Armbrusterc6684242014-11-20 16:27:10 +01001015 BlockDriver *drv;
Kevin Wolf7cddd372014-11-20 16:27:11 +01001016 uint8_t buf[BLOCK_PROBE_BUF_SIZE];
Kevin Wolff500a6d2012-11-12 17:35:27 +01001017 int ret = 0;
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001018
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001019 GLOBAL_STATE_CODE();
1020
Kevin Wolf08a00552010-06-01 18:37:31 +02001021 /* Return the raw BlockDriver * to scsi-generic devices or empty drives */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001022 if (blk_is_sg(file) || !blk_is_inserted(file) || blk_getlength(file) == 0) {
Max Reitzef810432014-12-02 18:32:42 +01001023 *pdrv = &bdrv_raw;
Stefan Weilc98ac352010-07-21 21:51:51 +02001024 return ret;
Nicholas A. Bellinger1a396852010-05-27 08:56:28 -07001025 }
Nicholas Bellingerf8ea0b02010-05-17 09:45:57 -07001026
Alberto Fariaa9262f52022-07-05 17:15:11 +01001027 ret = blk_pread(file, 0, sizeof(buf), buf, 0);
bellard83f64092006-08-01 16:21:11 +00001028 if (ret < 0) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001029 error_setg_errno(errp, -ret, "Could not read image for determining its "
1030 "format");
Stefan Weilc98ac352010-07-21 21:51:51 +02001031 *pdrv = NULL;
1032 return ret;
bellard83f64092006-08-01 16:21:11 +00001033 }
1034
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001035 drv = bdrv_probe_all(buf, sizeof(buf), filename);
Stefan Weilc98ac352010-07-21 21:51:51 +02001036 if (!drv) {
Max Reitz34b5d2c2013-09-05 14:45:29 +02001037 error_setg(errp, "Could not determine image format: No compatible "
1038 "driver found");
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001039 *pdrv = NULL;
1040 return -ENOENT;
Stefan Weilc98ac352010-07-21 21:51:51 +02001041 }
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001042
Stefan Weilc98ac352010-07-21 21:51:51 +02001043 *pdrv = drv;
Alberto Fariabf5b16f2022-07-05 17:15:09 +01001044 return 0;
bellardea2384d2004-08-01 21:59:26 +00001045}
1046
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001047/**
1048 * Set the current 'total_sectors' value
Markus Armbruster65a9bb22014-06-26 13:23:17 +02001049 * Return 0 on success, -errno on error.
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001050 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001051int coroutine_fn bdrv_co_refresh_total_sectors(BlockDriverState *bs,
1052 int64_t hint)
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001053{
1054 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05001055 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01001056 assert_bdrv_graph_readable();
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001057
Max Reitzd470ad42017-11-10 21:31:09 +01001058 if (!drv) {
1059 return -ENOMEDIUM;
1060 }
1061
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001062 /* Do not attempt drv->bdrv_co_getlength() on scsi-generic devices */
Dimitris Aragiorgisb192af82015-06-23 13:44:56 +03001063 if (bdrv_is_sg(bs))
Nicholas Bellinger396759a2010-05-17 09:46:04 -07001064 return 0;
1065
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001066 /* query actual device if possible, otherwise just trust the hint */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001067 if (drv->bdrv_co_getlength) {
1068 int64_t length = drv->bdrv_co_getlength(bs);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001069 if (length < 0) {
1070 return length;
1071 }
Fam Zheng7e382002013-11-06 19:48:06 +08001072 hint = DIV_ROUND_UP(length, BDRV_SECTOR_SIZE);
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001073 }
1074
1075 bs->total_sectors = hint;
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03001076
1077 if (bs->total_sectors * BDRV_SECTOR_SIZE > BDRV_MAX_LENGTH) {
1078 return -EFBIG;
1079 }
1080
Stefan Hajnoczi51762282010-04-19 16:56:41 +01001081 return 0;
1082}
1083
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001084/**
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001085 * Combines a QDict of new block driver @options with any missing options taken
1086 * from @old_options, so that leaving out an option defaults to its old value.
1087 */
1088static void bdrv_join_options(BlockDriverState *bs, QDict *options,
1089 QDict *old_options)
1090{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001091 GLOBAL_STATE_CODE();
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001092 if (bs->drv && bs->drv->bdrv_join_options) {
1093 bs->drv->bdrv_join_options(options, old_options);
1094 } else {
1095 qdict_join(options, old_options, false);
1096 }
1097}
1098
Alberto Garcia543770b2018-09-06 12:37:09 +03001099static BlockdevDetectZeroesOptions bdrv_parse_detect_zeroes(QemuOpts *opts,
1100 int open_flags,
1101 Error **errp)
1102{
1103 Error *local_err = NULL;
1104 char *value = qemu_opt_get_del(opts, "detect-zeroes");
1105 BlockdevDetectZeroesOptions detect_zeroes =
1106 qapi_enum_parse(&BlockdevDetectZeroesOptions_lookup, value,
1107 BLOCKDEV_DETECT_ZEROES_OPTIONS_OFF, &local_err);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001108 GLOBAL_STATE_CODE();
Alberto Garcia543770b2018-09-06 12:37:09 +03001109 g_free(value);
1110 if (local_err) {
1111 error_propagate(errp, local_err);
1112 return detect_zeroes;
1113 }
1114
1115 if (detect_zeroes == BLOCKDEV_DETECT_ZEROES_OPTIONS_UNMAP &&
1116 !(open_flags & BDRV_O_UNMAP))
1117 {
1118 error_setg(errp, "setting detect-zeroes to unmap is not allowed "
1119 "without setting discard operation to unmap");
1120 }
1121
1122 return detect_zeroes;
1123}
1124
Kevin Wolfcddff5b2015-11-16 16:43:27 +01001125/**
Aarushi Mehtaf80f2672020-01-20 14:18:50 +00001126 * Set open flags for aio engine
1127 *
1128 * Return 0 on success, -1 if the engine specified is invalid
1129 */
1130int bdrv_parse_aio(const char *mode, int *flags)
1131{
1132 if (!strcmp(mode, "threads")) {
1133 /* do nothing, default */
1134 } else if (!strcmp(mode, "native")) {
1135 *flags |= BDRV_O_NATIVE_AIO;
1136#ifdef CONFIG_LINUX_IO_URING
1137 } else if (!strcmp(mode, "io_uring")) {
1138 *flags |= BDRV_O_IO_URING;
1139#endif
1140 } else {
1141 return -1;
1142 }
1143
1144 return 0;
1145}
1146
1147/**
Paolo Bonzini9e8f1832013-02-08 14:06:11 +01001148 * Set open flags for a given discard mode
1149 *
1150 * Return 0 on success, -1 if the discard mode was invalid.
1151 */
1152int bdrv_parse_discard_flags(const char *mode, int *flags)
1153{
1154 *flags &= ~BDRV_O_UNMAP;
1155
1156 if (!strcmp(mode, "off") || !strcmp(mode, "ignore")) {
1157 /* do nothing */
1158 } else if (!strcmp(mode, "on") || !strcmp(mode, "unmap")) {
1159 *flags |= BDRV_O_UNMAP;
1160 } else {
1161 return -1;
1162 }
1163
1164 return 0;
1165}
1166
1167/**
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001168 * Set open flags for a given cache mode
1169 *
1170 * Return 0 on success, -1 if the cache mode was invalid.
1171 */
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001172int bdrv_parse_cache_mode(const char *mode, int *flags, bool *writethrough)
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001173{
1174 *flags &= ~BDRV_O_CACHE_MASK;
1175
1176 if (!strcmp(mode, "off") || !strcmp(mode, "none")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001177 *writethrough = false;
1178 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001179 } else if (!strcmp(mode, "directsync")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001180 *writethrough = true;
Stefan Hajnoczi92196b22011-08-04 12:26:52 +01001181 *flags |= BDRV_O_NOCACHE;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001182 } else if (!strcmp(mode, "writeback")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001183 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001184 } else if (!strcmp(mode, "unsafe")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001185 *writethrough = false;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001186 *flags |= BDRV_O_NO_FLUSH;
1187 } else if (!strcmp(mode, "writethrough")) {
Kevin Wolf53e8ae02016-03-18 15:36:58 +01001188 *writethrough = true;
Stefan Hajnoczic3993cd2011-08-04 12:26:51 +01001189 } else {
1190 return -1;
1191 }
1192
1193 return 0;
1194}
1195
Kevin Wolfb5411552017-01-17 15:56:16 +01001196static char *bdrv_child_get_parent_desc(BdrvChild *c)
1197{
1198 BlockDriverState *parent = c->opaque;
Vladimir Sementsov-Ogievskiy2c0a3ac2021-06-01 10:52:15 +03001199 return g_strdup_printf("node '%s'", bdrv_get_node_name(parent));
Kevin Wolfb5411552017-01-17 15:56:16 +01001200}
1201
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001202static void GRAPH_RDLOCK bdrv_child_cb_drained_begin(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001203{
1204 BlockDriverState *bs = child->opaque;
Kevin Wolfa82a3bd2022-11-18 18:41:07 +01001205 bdrv_do_drained_begin_quiesce(bs, NULL);
Kevin Wolf20018e12016-05-23 18:46:59 +02001206}
1207
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001208static bool GRAPH_RDLOCK bdrv_child_cb_drained_poll(BdrvChild *child)
Kevin Wolf89bd0302018-03-22 14:11:20 +01001209{
1210 BlockDriverState *bs = child->opaque;
Kevin Wolf299403a2022-11-18 18:41:05 +01001211 return bdrv_drain_poll(bs, NULL, false);
Kevin Wolf89bd0302018-03-22 14:11:20 +01001212}
1213
Emanuele Giuseppe Espositod05ab382023-09-29 16:51:40 +02001214static void GRAPH_RDLOCK bdrv_child_cb_drained_end(BdrvChild *child)
Kevin Wolf20018e12016-05-23 18:46:59 +02001215{
1216 BlockDriverState *bs = child->opaque;
Kevin Wolf2f65df62022-11-18 18:40:59 +01001217 bdrv_drained_end(bs);
Kevin Wolf20018e12016-05-23 18:46:59 +02001218}
1219
Kevin Wolf38701b62017-05-04 18:52:39 +02001220static int bdrv_child_cb_inactivate(BdrvChild *child)
1221{
1222 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001223 GLOBAL_STATE_CODE();
Kevin Wolf38701b62017-05-04 18:52:39 +02001224 assert(bs->open_flags & BDRV_O_INACTIVE);
1225 return 0;
1226}
1227
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001228static bool bdrv_child_cb_change_aio_ctx(BdrvChild *child, AioContext *ctx,
1229 GHashTable *visited, Transaction *tran,
1230 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02001231{
1232 BlockDriverState *bs = child->opaque;
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001233 return bdrv_change_aio_context(bs, ctx, visited, tran, errp);
Kevin Wolf53a7d042019-05-06 19:17:59 +02001234}
1235
Kevin Wolf0b50cc82014-04-11 21:29:52 +02001236/*
Kevin Wolf73176be2016-03-07 13:02:15 +01001237 * Returns the options and flags that a temporary snapshot should get, based on
1238 * the originally requested flags (the originally requested image will have
1239 * flags like a backing file)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001240 */
Kevin Wolf73176be2016-03-07 13:02:15 +01001241static void bdrv_temp_snapshot_options(int *child_flags, QDict *child_options,
1242 int parent_flags, QDict *parent_options)
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001243{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001244 GLOBAL_STATE_CODE();
Kevin Wolf73176be2016-03-07 13:02:15 +01001245 *child_flags = (parent_flags & ~BDRV_O_SNAPSHOT) | BDRV_O_TEMPORARY;
1246
1247 /* For temporary files, unconditional cache=unsafe is fine */
Kevin Wolf73176be2016-03-07 13:02:15 +01001248 qdict_set_default_str(child_options, BDRV_OPT_CACHE_DIRECT, "off");
1249 qdict_set_default_str(child_options, BDRV_OPT_CACHE_NO_FLUSH, "on");
Kevin Wolf41869042016-06-16 12:59:30 +02001250
Kevin Wolf3f486862019-04-04 17:04:43 +02001251 /* Copy the read-only and discard options from the parent */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001252 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
Kevin Wolf3f486862019-04-04 17:04:43 +02001253 qdict_copy_default(child_options, parent_options, BDRV_OPT_DISCARD);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001254
Kevin Wolf41869042016-06-16 12:59:30 +02001255 /* aio=native doesn't work for cache.direct=off, so disable it for the
1256 * temporary snapshot */
1257 *child_flags &= ~BDRV_O_NATIVE_AIO;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02001258}
1259
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001260static void GRAPH_WRLOCK bdrv_backing_attach(BdrvChild *c)
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001261{
1262 BlockDriverState *parent = c->opaque;
1263 BlockDriverState *backing_hd = c->bs;
1264
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001265 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001266 assert(!parent->backing_blocker);
1267 error_setg(&parent->backing_blocker,
1268 "node is used as backing hd of '%s'",
1269 bdrv_get_device_or_node_name(parent));
1270
Max Reitzf30c66b2019-02-01 20:29:05 +01001271 bdrv_refresh_filename(backing_hd);
1272
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001273 parent->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001274
1275 bdrv_op_block_all(backing_hd, parent->backing_blocker);
1276 /* Otherwise we won't be able to commit or stream */
1277 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_COMMIT_TARGET,
1278 parent->backing_blocker);
1279 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_STREAM,
1280 parent->backing_blocker);
1281 /*
1282 * We do backup in 3 ways:
1283 * 1. drive backup
1284 * The target bs is new opened, and the source is top BDS
1285 * 2. blockdev backup
1286 * Both the source and the target are top BDSes.
1287 * 3. internal backup(used for block replication)
1288 * Both the source and the target are backing file
1289 *
1290 * In case 1 and 2, neither the source nor the target is the backing file.
1291 * In case 3, we will block the top BDS, so there is only one block job
1292 * for the top BDS and its backing chain.
1293 */
1294 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_SOURCE,
1295 parent->backing_blocker);
1296 bdrv_op_unblock(backing_hd, BLOCK_OP_TYPE_BACKUP_TARGET,
1297 parent->backing_blocker);
Max Reitzca2f1232020-05-13 13:05:22 +02001298}
Kevin Wolfd736f112017-12-18 16:05:48 +01001299
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001300static void bdrv_backing_detach(BdrvChild *c)
1301{
1302 BlockDriverState *parent = c->opaque;
1303
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001304 GLOBAL_STATE_CODE();
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01001305 assert(parent->backing_blocker);
1306 bdrv_op_unblock_all(c->bs, parent->backing_blocker);
1307 error_free(parent->backing_blocker);
1308 parent->backing_blocker = NULL;
Max Reitz48e08282020-05-13 13:05:23 +02001309}
Kevin Wolfd736f112017-12-18 16:05:48 +01001310
Kevin Wolf6858eba2017-06-29 19:32:21 +02001311static int bdrv_backing_update_filename(BdrvChild *c, BlockDriverState *base,
1312 const char *filename, Error **errp)
1313{
1314 BlockDriverState *parent = c->opaque;
Alberto Garciae94d3db2018-11-12 16:00:34 +02001315 bool read_only = bdrv_is_read_only(parent);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001316 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001317 GLOBAL_STATE_CODE();
Kevin Wolf6858eba2017-06-29 19:32:21 +02001318
Alberto Garciae94d3db2018-11-12 16:00:34 +02001319 if (read_only) {
1320 ret = bdrv_reopen_set_read_only(parent, false, errp);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001321 if (ret < 0) {
1322 return ret;
1323 }
1324 }
1325
Kevin Wolf6858eba2017-06-29 19:32:21 +02001326 ret = bdrv_change_backing_file(parent, filename,
Eric Blakee54ee1b2020-07-06 15:39:53 -05001327 base->drv ? base->drv->format_name : "",
1328 false);
Kevin Wolf6858eba2017-06-29 19:32:21 +02001329 if (ret < 0) {
Kevin Wolf64730692017-11-06 17:52:58 +01001330 error_setg_errno(errp, -ret, "Could not update backing file link");
Kevin Wolf6858eba2017-06-29 19:32:21 +02001331 }
1332
Alberto Garciae94d3db2018-11-12 16:00:34 +02001333 if (read_only) {
1334 bdrv_reopen_set_read_only(parent, true, NULL);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02001335 }
1336
Kevin Wolf6858eba2017-06-29 19:32:21 +02001337 return ret;
1338}
1339
Max Reitzfae8bd32020-05-13 13:05:20 +02001340/*
1341 * Returns the options and flags that a generic child of a BDS should
1342 * get, based on the given options and flags for the parent BDS.
1343 */
Max Reitz00ff7ff2020-05-13 13:05:21 +02001344static void bdrv_inherited_options(BdrvChildRole role, bool parent_is_format,
1345 int *child_flags, QDict *child_options,
1346 int parent_flags, QDict *parent_options)
Max Reitzfae8bd32020-05-13 13:05:20 +02001347{
1348 int flags = parent_flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001349 GLOBAL_STATE_CODE();
Max Reitzfae8bd32020-05-13 13:05:20 +02001350
1351 /*
1352 * First, decide whether to set, clear, or leave BDRV_O_PROTOCOL.
1353 * Generally, the question to answer is: Should this child be
1354 * format-probed by default?
1355 */
1356
1357 /*
1358 * Pure and non-filtered data children of non-format nodes should
1359 * be probed by default (even when the node itself has BDRV_O_PROTOCOL
1360 * set). This only affects a very limited set of drivers (namely
1361 * quorum and blkverify when this comment was written).
1362 * Force-clear BDRV_O_PROTOCOL then.
1363 */
1364 if (!parent_is_format &&
1365 (role & BDRV_CHILD_DATA) &&
1366 !(role & (BDRV_CHILD_METADATA | BDRV_CHILD_FILTERED)))
1367 {
1368 flags &= ~BDRV_O_PROTOCOL;
1369 }
1370
1371 /*
1372 * All children of format nodes (except for COW children) and all
1373 * metadata children in general should never be format-probed.
1374 * Force-set BDRV_O_PROTOCOL then.
1375 */
1376 if ((parent_is_format && !(role & BDRV_CHILD_COW)) ||
1377 (role & BDRV_CHILD_METADATA))
1378 {
1379 flags |= BDRV_O_PROTOCOL;
1380 }
1381
1382 /*
1383 * If the cache mode isn't explicitly set, inherit direct and no-flush from
1384 * the parent.
1385 */
1386 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_DIRECT);
1387 qdict_copy_default(child_options, parent_options, BDRV_OPT_CACHE_NO_FLUSH);
1388 qdict_copy_default(child_options, parent_options, BDRV_OPT_FORCE_SHARE);
1389
1390 if (role & BDRV_CHILD_COW) {
1391 /* backing files are opened read-only by default */
1392 qdict_set_default_str(child_options, BDRV_OPT_READ_ONLY, "on");
1393 qdict_set_default_str(child_options, BDRV_OPT_AUTO_READ_ONLY, "off");
1394 } else {
1395 /* Inherit the read-only option from the parent if it's not set */
1396 qdict_copy_default(child_options, parent_options, BDRV_OPT_READ_ONLY);
1397 qdict_copy_default(child_options, parent_options,
1398 BDRV_OPT_AUTO_READ_ONLY);
1399 }
1400
1401 /*
1402 * bdrv_co_pdiscard() respects unmap policy for the parent, so we
1403 * can default to enable it on lower layers regardless of the
1404 * parent option.
1405 */
1406 qdict_set_default_str(child_options, BDRV_OPT_DISCARD, "unmap");
1407
1408 /* Clear flags that only apply to the top layer */
1409 flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_COPY_ON_READ);
1410
1411 if (role & BDRV_CHILD_METADATA) {
1412 flags &= ~BDRV_O_NO_IO;
1413 }
1414 if (role & BDRV_CHILD_COW) {
1415 flags &= ~BDRV_O_TEMPORARY;
1416 }
1417
1418 *child_flags = flags;
1419}
1420
Kevin Wolf303de472022-12-07 14:18:35 +01001421static void GRAPH_WRLOCK bdrv_child_cb_attach(BdrvChild *child)
Max Reitzca2f1232020-05-13 13:05:22 +02001422{
1423 BlockDriverState *bs = child->opaque;
1424
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001425 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001426 QLIST_INSERT_HEAD(&bs->children, child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001427 if (bs->drv->is_filter || (child->role & BDRV_CHILD_FILTERED)) {
1428 /*
1429 * Here we handle filters and block/raw-format.c when it behave like
1430 * filter. They generally have a single PRIMARY child, which is also the
1431 * FILTERED child, and that they may have multiple more children, which
1432 * are neither PRIMARY nor FILTERED. And never we have a COW child here.
1433 * So bs->file will be the PRIMARY child, unless the PRIMARY child goes
1434 * into bs->backing on exceptional cases; and bs->backing will be
1435 * nothing else.
1436 */
1437 assert(!(child->role & BDRV_CHILD_COW));
1438 if (child->role & BDRV_CHILD_PRIMARY) {
1439 assert(child->role & BDRV_CHILD_FILTERED);
1440 assert(!bs->backing);
1441 assert(!bs->file);
Hanna Reitza2253692021-11-15 15:53:58 +01001442
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001443 if (bs->drv->filtered_child_is_backing) {
1444 bs->backing = child;
1445 } else {
1446 bs->file = child;
1447 }
1448 } else {
1449 assert(!(child->role & BDRV_CHILD_FILTERED));
1450 }
1451 } else if (child->role & BDRV_CHILD_COW) {
1452 assert(bs->drv->supports_backing);
1453 assert(!(child->role & BDRV_CHILD_PRIMARY));
1454 assert(!bs->backing);
1455 bs->backing = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001456 bdrv_backing_attach(child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001457 } else if (child->role & BDRV_CHILD_PRIMARY) {
1458 assert(!bs->file);
1459 bs->file = child;
Max Reitzca2f1232020-05-13 13:05:22 +02001460 }
Max Reitzca2f1232020-05-13 13:05:22 +02001461}
1462
Kevin Wolf303de472022-12-07 14:18:35 +01001463static void GRAPH_WRLOCK bdrv_child_cb_detach(BdrvChild *child)
Max Reitz48e08282020-05-13 13:05:23 +02001464{
1465 BlockDriverState *bs = child->opaque;
1466
1467 if (child->role & BDRV_CHILD_COW) {
1468 bdrv_backing_detach(child);
1469 }
1470
Emanuele Giuseppe Esposito3f35f822022-12-07 14:18:33 +01001471 assert_bdrv_graph_writable();
Hanna Reitza2253692021-11-15 15:53:58 +01001472 QLIST_REMOVE(child, next);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001473 if (child == bs->backing) {
1474 assert(child != bs->file);
1475 bs->backing = NULL;
1476 } else if (child == bs->file) {
1477 bs->file = NULL;
1478 }
Max Reitz48e08282020-05-13 13:05:23 +02001479}
1480
Max Reitz43483552020-05-13 13:05:24 +02001481static int bdrv_child_cb_update_filename(BdrvChild *c, BlockDriverState *base,
1482 const char *filename, Error **errp)
1483{
1484 if (c->role & BDRV_CHILD_COW) {
1485 return bdrv_backing_update_filename(c, base, filename, errp);
1486 }
1487 return 0;
1488}
1489
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001490AioContext *child_of_bds_get_parent_aio_context(BdrvChild *c)
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001491{
1492 BlockDriverState *bs = c->opaque;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05001493 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001494
1495 return bdrv_get_aio_context(bs);
1496}
1497
Max Reitz43483552020-05-13 13:05:24 +02001498const BdrvChildClass child_of_bds = {
1499 .parent_is_bds = true,
1500 .get_parent_desc = bdrv_child_get_parent_desc,
1501 .inherit_options = bdrv_inherited_options,
1502 .drained_begin = bdrv_child_cb_drained_begin,
1503 .drained_poll = bdrv_child_cb_drained_poll,
1504 .drained_end = bdrv_child_cb_drained_end,
1505 .attach = bdrv_child_cb_attach,
1506 .detach = bdrv_child_cb_detach,
1507 .inactivate = bdrv_child_cb_inactivate,
Emanuele Giuseppe Esposito27633e72022-10-25 04:49:47 -04001508 .change_aio_ctx = bdrv_child_cb_change_aio_ctx,
Max Reitz43483552020-05-13 13:05:24 +02001509 .update_filename = bdrv_child_cb_update_filename,
Vladimir Sementsov-Ogievskiyfb62b582021-05-24 13:12:56 +03001510 .get_parent_aio_context = child_of_bds_get_parent_aio_context,
Max Reitz43483552020-05-13 13:05:24 +02001511};
1512
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001513AioContext *bdrv_child_get_parent_aio_context(BdrvChild *c)
1514{
Hanna Reitzd5f8d792022-11-07 16:13:19 +01001515 IO_CODE();
Vladimir Sementsov-Ogievskiy3ca1f322021-04-28 18:17:33 +03001516 return c->klass->get_parent_aio_context(c);
1517}
1518
Kevin Wolf7b272452012-11-12 17:05:39 +01001519static int bdrv_open_flags(BlockDriverState *bs, int flags)
1520{
Kevin Wolf61de4c62016-03-18 17:46:45 +01001521 int open_flags = flags;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001522 GLOBAL_STATE_CODE();
Kevin Wolf7b272452012-11-12 17:05:39 +01001523
1524 /*
1525 * Clear flags that are internal to the block layer before opening the
1526 * image.
1527 */
Kevin Wolf20cca272014-06-04 14:33:27 +02001528 open_flags &= ~(BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING | BDRV_O_PROTOCOL);
Kevin Wolf7b272452012-11-12 17:05:39 +01001529
Kevin Wolf7b272452012-11-12 17:05:39 +01001530 return open_flags;
1531}
1532
Kevin Wolf91a097e2015-05-08 17:49:53 +02001533static void update_flags_from_options(int *flags, QemuOpts *opts)
1534{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001535 GLOBAL_STATE_CODE();
1536
Alberto Garcia2a3d4332018-11-12 16:00:48 +02001537 *flags &= ~(BDRV_O_CACHE_MASK | BDRV_O_RDWR | BDRV_O_AUTO_RDONLY);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001538
Alberto Garcia57f9db92018-09-06 12:37:06 +03001539 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_NO_FLUSH, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001540 *flags |= BDRV_O_NO_FLUSH;
1541 }
1542
Alberto Garcia57f9db92018-09-06 12:37:06 +03001543 if (qemu_opt_get_bool_del(opts, BDRV_OPT_CACHE_DIRECT, false)) {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001544 *flags |= BDRV_O_NOCACHE;
1545 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001546
Alberto Garcia57f9db92018-09-06 12:37:06 +03001547 if (!qemu_opt_get_bool_del(opts, BDRV_OPT_READ_ONLY, false)) {
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001548 *flags |= BDRV_O_RDWR;
1549 }
1550
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001551 if (qemu_opt_get_bool_del(opts, BDRV_OPT_AUTO_READ_ONLY, false)) {
1552 *flags |= BDRV_O_AUTO_RDONLY;
1553 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001554}
1555
1556static void update_options_from_flags(QDict *options, int flags)
1557{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001558 GLOBAL_STATE_CODE();
Kevin Wolf91a097e2015-05-08 17:49:53 +02001559 if (!qdict_haskey(options, BDRV_OPT_CACHE_DIRECT)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001560 qdict_put_bool(options, BDRV_OPT_CACHE_DIRECT, flags & BDRV_O_NOCACHE);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001561 }
1562 if (!qdict_haskey(options, BDRV_OPT_CACHE_NO_FLUSH)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001563 qdict_put_bool(options, BDRV_OPT_CACHE_NO_FLUSH,
1564 flags & BDRV_O_NO_FLUSH);
Kevin Wolf91a097e2015-05-08 17:49:53 +02001565 }
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001566 if (!qdict_haskey(options, BDRV_OPT_READ_ONLY)) {
Eric Blake46f5ac22017-04-27 16:58:17 -05001567 qdict_put_bool(options, BDRV_OPT_READ_ONLY, !(flags & BDRV_O_RDWR));
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001568 }
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001569 if (!qdict_haskey(options, BDRV_OPT_AUTO_READ_ONLY)) {
1570 qdict_put_bool(options, BDRV_OPT_AUTO_READ_ONLY,
1571 flags & BDRV_O_AUTO_RDONLY);
1572 }
Kevin Wolf91a097e2015-05-08 17:49:53 +02001573}
1574
Kevin Wolf636ea372014-01-24 14:11:52 +01001575static void bdrv_assign_node_name(BlockDriverState *bs,
1576 const char *node_name,
1577 Error **errp)
Benoît Canet6913c0c2014-01-23 21:31:33 +01001578{
Jeff Cody15489c72015-10-12 19:36:50 -04001579 char *gen_node_name = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001580 GLOBAL_STATE_CODE();
Benoît Canet6913c0c2014-01-23 21:31:33 +01001581
Jeff Cody15489c72015-10-12 19:36:50 -04001582 if (!node_name) {
1583 node_name = gen_node_name = id_generate(ID_BLOCK);
1584 } else if (!id_wellformed(node_name)) {
1585 /*
1586 * Check for empty string or invalid characters, but not if it is
1587 * generated (generated names use characters not available to the user)
1588 */
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001589 error_setg(errp, "Invalid node-name: '%s'", node_name);
Kevin Wolf636ea372014-01-24 14:11:52 +01001590 return;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001591 }
1592
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001593 /* takes care of avoiding namespaces collisions */
Markus Armbruster7f06d472014-10-07 13:59:12 +02001594 if (blk_by_name(node_name)) {
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001595 error_setg(errp, "node-name=%s is conflicting with a device id",
1596 node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001597 goto out;
Benoît Canet0c5e94e2014-02-12 17:15:07 +01001598 }
1599
Benoît Canet6913c0c2014-01-23 21:31:33 +01001600 /* takes care of avoiding duplicates node names */
1601 if (bdrv_find_node(node_name)) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06001602 error_setg(errp, "Duplicate nodes with node-name='%s'", node_name);
Jeff Cody15489c72015-10-12 19:36:50 -04001603 goto out;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001604 }
1605
Kevin Wolf824808d2018-07-04 13:28:29 +02001606 /* Make sure that the node name isn't truncated */
1607 if (strlen(node_name) >= sizeof(bs->node_name)) {
1608 error_setg(errp, "Node name too long");
1609 goto out;
1610 }
1611
Benoît Canet6913c0c2014-01-23 21:31:33 +01001612 /* copy node name into the bs and insert it into the graph list */
1613 pstrcpy(bs->node_name, sizeof(bs->node_name), node_name);
1614 QTAILQ_INSERT_TAIL(&graph_bdrv_states, bs, node_list);
Jeff Cody15489c72015-10-12 19:36:50 -04001615out:
1616 g_free(gen_node_name);
Benoît Canet6913c0c2014-01-23 21:31:33 +01001617}
1618
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01001619/*
1620 * The caller must always hold @bs AioContext lock, because this function calls
1621 * bdrv_refresh_total_sectors() which polls when called from non-coroutine
1622 * context.
1623 */
Kevin Wolf1a30b0f2023-05-04 13:57:38 +02001624static int no_coroutine_fn GRAPH_UNLOCKED
1625bdrv_open_driver(BlockDriverState *bs, BlockDriver *drv, const char *node_name,
1626 QDict *options, int open_flags, Error **errp)
Kevin Wolf01a56502017-01-18 15:51:56 +01001627{
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001628 AioContext *ctx;
Kevin Wolf01a56502017-01-18 15:51:56 +01001629 Error *local_err = NULL;
Kevin Wolf0f122642018-03-28 18:29:18 +02001630 int i, ret;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05001631 GLOBAL_STATE_CODE();
Kevin Wolf01a56502017-01-18 15:51:56 +01001632
1633 bdrv_assign_node_name(bs, node_name, &local_err);
1634 if (local_err) {
1635 error_propagate(errp, local_err);
1636 return -EINVAL;
1637 }
1638
1639 bs->drv = drv;
1640 bs->opaque = g_malloc0(drv->instance_size);
1641
1642 if (drv->bdrv_file_open) {
1643 assert(!drv->bdrv_needs_filename || bs->filename[0]);
1644 ret = drv->bdrv_file_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001645 } else if (drv->bdrv_open) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001646 ret = drv->bdrv_open(bs, options, open_flags, &local_err);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001647 } else {
1648 ret = 0;
Kevin Wolf01a56502017-01-18 15:51:56 +01001649 }
1650
1651 if (ret < 0) {
1652 if (local_err) {
1653 error_propagate(errp, local_err);
1654 } else if (bs->filename[0]) {
1655 error_setg_errno(errp, -ret, "Could not open '%s'", bs->filename);
1656 } else {
1657 error_setg_errno(errp, -ret, "Could not open image");
1658 }
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001659 goto open_failed;
Kevin Wolf01a56502017-01-18 15:51:56 +01001660 }
1661
Stefan Hajnoczie8b65352022-10-13 14:59:01 -04001662 assert(!(bs->supported_read_flags & ~BDRV_REQ_MASK));
1663 assert(!(bs->supported_write_flags & ~BDRV_REQ_MASK));
1664
1665 /*
1666 * Always allow the BDRV_REQ_REGISTERED_BUF optimization hint. This saves
1667 * drivers that pass read/write requests through to a child the trouble of
1668 * declaring support explicitly.
1669 *
1670 * Drivers must not propagate this flag accidentally when they initiate I/O
1671 * to a bounce buffer. That case should be rare though.
1672 */
1673 bs->supported_read_flags |= BDRV_REQ_REGISTERED_BUF;
1674 bs->supported_write_flags |= BDRV_REQ_REGISTERED_BUF;
1675
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001676 /* Get the context after .bdrv_open, it can change the context */
1677 ctx = bdrv_get_aio_context(bs);
1678 aio_context_acquire(ctx);
1679
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01001680 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf01a56502017-01-18 15:51:56 +01001681 if (ret < 0) {
1682 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001683 aio_context_release(ctx);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001684 return ret;
Kevin Wolf01a56502017-01-18 15:51:56 +01001685 }
1686
Kevin Wolfe19b1572023-05-04 13:57:50 +02001687 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03001688 bdrv_refresh_limits(bs, NULL, &local_err);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001689 bdrv_graph_rdunlock_main_loop();
Kevin Wolf8dc8a602023-05-25 14:47:10 +02001690 aio_context_release(ctx);
Kevin Wolfe19b1572023-05-04 13:57:50 +02001691
Kevin Wolf01a56502017-01-18 15:51:56 +01001692 if (local_err) {
1693 error_propagate(errp, local_err);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001694 return -EINVAL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001695 }
1696
1697 assert(bdrv_opt_mem_align(bs) != 0);
1698 assert(bdrv_min_mem_align(bs) != 0);
1699 assert(is_power_of_2(bs->bl.request_alignment));
1700
Kevin Wolf0f122642018-03-28 18:29:18 +02001701 for (i = 0; i < bs->quiesce_counter; i++) {
Kevin Wolf5e8ac212022-11-18 18:40:58 +01001702 if (drv->bdrv_drain_begin) {
1703 drv->bdrv_drain_begin(bs);
Kevin Wolf0f122642018-03-28 18:29:18 +02001704 }
1705 }
1706
Kevin Wolf01a56502017-01-18 15:51:56 +01001707 return 0;
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001708open_failed:
1709 bs->drv = NULL;
1710 if (bs->file != NULL) {
Kevin Wolf32a8aba2023-09-11 11:46:19 +02001711 bdrv_graph_wrlock(NULL);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001712 bdrv_unref_child(bs, bs->file);
Kevin Wolf32a8aba2023-09-11 11:46:19 +02001713 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03001714 assert(!bs->file);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001715 }
Kevin Wolf01a56502017-01-18 15:51:56 +01001716 g_free(bs->opaque);
1717 bs->opaque = NULL;
Kevin Wolf01a56502017-01-18 15:51:56 +01001718 return ret;
1719}
1720
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001721/*
1722 * Create and open a block node.
1723 *
1724 * @options is a QDict of options to pass to the block drivers, or NULL for an
1725 * empty set of options. The reference to the QDict belongs to the block layer
1726 * after the call (even on failure), so if the caller intends to reuse the
1727 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
1728 */
1729BlockDriverState *bdrv_new_open_driver_opts(BlockDriver *drv,
1730 const char *node_name,
1731 QDict *options, int flags,
1732 Error **errp)
Kevin Wolf680c7f92017-01-18 17:16:41 +01001733{
1734 BlockDriverState *bs;
1735 int ret;
1736
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001737 GLOBAL_STATE_CODE();
1738
Kevin Wolf680c7f92017-01-18 17:16:41 +01001739 bs = bdrv_new();
1740 bs->open_flags = flags;
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001741 bs->options = options ?: qdict_new();
1742 bs->explicit_options = qdict_clone_shallow(bs->options);
Kevin Wolf680c7f92017-01-18 17:16:41 +01001743 bs->opaque = NULL;
1744
1745 update_options_from_flags(bs->options, flags);
1746
1747 ret = bdrv_open_driver(bs, drv, node_name, bs->options, flags, errp);
1748 if (ret < 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001749 qobject_unref(bs->explicit_options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001750 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02001751 qobject_unref(bs->options);
Manos Pitsidianakis180ca192017-07-14 17:35:48 +03001752 bs->options = NULL;
Kevin Wolf680c7f92017-01-18 17:16:41 +01001753 bdrv_unref(bs);
1754 return NULL;
1755 }
1756
1757 return bs;
1758}
1759
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001760/* Create and open a block node. */
1761BlockDriverState *bdrv_new_open_driver(BlockDriver *drv, const char *node_name,
1762 int flags, Error **errp)
1763{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05001764 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy621d1732021-09-20 14:55:34 +03001765 return bdrv_new_open_driver_opts(drv, node_name, NULL, flags, errp);
1766}
1767
Kevin Wolfc5f30142016-10-06 11:33:17 +02001768QemuOptsList bdrv_runtime_opts = {
Kevin Wolf18edf282015-04-07 17:12:56 +02001769 .name = "bdrv_common",
1770 .head = QTAILQ_HEAD_INITIALIZER(bdrv_runtime_opts.head),
1771 .desc = {
1772 {
1773 .name = "node-name",
1774 .type = QEMU_OPT_STRING,
1775 .help = "Node name of the block device node",
1776 },
Kevin Wolf62392eb2015-04-24 16:38:02 +02001777 {
1778 .name = "driver",
1779 .type = QEMU_OPT_STRING,
1780 .help = "Block driver to use for the node",
1781 },
Kevin Wolf91a097e2015-05-08 17:49:53 +02001782 {
Kevin Wolf91a097e2015-05-08 17:49:53 +02001783 .name = BDRV_OPT_CACHE_DIRECT,
1784 .type = QEMU_OPT_BOOL,
1785 .help = "Bypass software writeback cache on the host",
1786 },
1787 {
1788 .name = BDRV_OPT_CACHE_NO_FLUSH,
1789 .type = QEMU_OPT_BOOL,
1790 .help = "Ignore flush requests",
1791 },
Alberto Garciaf87a0e22016-09-15 17:53:02 +03001792 {
1793 .name = BDRV_OPT_READ_ONLY,
1794 .type = QEMU_OPT_BOOL,
1795 .help = "Node is opened in read-only mode",
1796 },
Kevin Wolf692e01a2016-09-12 21:00:41 +02001797 {
Kevin Wolfe35bdc12018-10-05 18:57:40 +02001798 .name = BDRV_OPT_AUTO_READ_ONLY,
1799 .type = QEMU_OPT_BOOL,
1800 .help = "Node can become read-only if opening read-write fails",
1801 },
1802 {
Kevin Wolf692e01a2016-09-12 21:00:41 +02001803 .name = "detect-zeroes",
1804 .type = QEMU_OPT_STRING,
1805 .help = "try to optimize zero writes (off, on, unmap)",
1806 },
Kevin Wolf818584a2016-09-12 18:03:18 +02001807 {
Alberto Garcia415bbca2018-10-03 13:23:13 +03001808 .name = BDRV_OPT_DISCARD,
Kevin Wolf818584a2016-09-12 18:03:18 +02001809 .type = QEMU_OPT_STRING,
1810 .help = "discard operation (ignore/off, unmap/on)",
1811 },
Fam Zheng5a9347c2017-05-03 00:35:37 +08001812 {
1813 .name = BDRV_OPT_FORCE_SHARE,
1814 .type = QEMU_OPT_BOOL,
1815 .help = "always accept other writers (default: off)",
1816 },
Kevin Wolf18edf282015-04-07 17:12:56 +02001817 { /* end of list */ }
1818 },
1819};
1820
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02001821QemuOptsList bdrv_create_opts_simple = {
1822 .name = "simple-create-opts",
1823 .head = QTAILQ_HEAD_INITIALIZER(bdrv_create_opts_simple.head),
Max Reitzfd171462020-01-22 17:45:29 +01001824 .desc = {
1825 {
1826 .name = BLOCK_OPT_SIZE,
1827 .type = QEMU_OPT_SIZE,
1828 .help = "Virtual disk size"
1829 },
1830 {
1831 .name = BLOCK_OPT_PREALLOC,
1832 .type = QEMU_OPT_STRING,
1833 .help = "Preallocation mode (allowed values: off)"
1834 },
1835 { /* end of list */ }
1836 }
1837};
1838
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02001839/*
Kevin Wolf57915332010-04-14 15:24:50 +02001840 * Common part for opening disk images and files
Kevin Wolfb6ad4912013-03-15 10:35:04 +01001841 *
1842 * Removes all processed options from *options.
Kevin Wolf57915332010-04-14 15:24:50 +02001843 */
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001844static int bdrv_open_common(BlockDriverState *bs, BlockBackend *file,
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001845 QDict *options, Error **errp)
Kevin Wolf57915332010-04-14 15:24:50 +02001846{
1847 int ret, open_flags;
Kevin Wolf035fccd2013-04-09 14:34:19 +02001848 const char *filename;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001849 const char *driver_name = NULL;
Benoît Canet6913c0c2014-01-23 21:31:33 +01001850 const char *node_name = NULL;
Kevin Wolf818584a2016-09-12 18:03:18 +02001851 const char *discard;
Kevin Wolf18edf282015-04-07 17:12:56 +02001852 QemuOpts *opts;
Kevin Wolf62392eb2015-04-24 16:38:02 +02001853 BlockDriver *drv;
Max Reitz34b5d2c2013-09-05 14:45:29 +02001854 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001855 bool ro;
Kevin Wolf57915332010-04-14 15:24:50 +02001856
Paolo Bonzini64058752012-05-08 16:51:49 +02001857 assert(bs->file == NULL);
Kevin Wolf707ff822013-03-06 12:20:31 +01001858 assert(options != NULL && bs->options != options);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001859 GLOBAL_STATE_CODE();
Kevin Wolf57915332010-04-14 15:24:50 +02001860
Kevin Wolf62392eb2015-04-24 16:38:02 +02001861 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02001862 if (!qemu_opts_absorb_qdict(opts, options, errp)) {
Kevin Wolf62392eb2015-04-24 16:38:02 +02001863 ret = -EINVAL;
1864 goto fail_opts;
1865 }
1866
Alberto Garcia9b7e8692016-09-15 17:53:01 +03001867 update_flags_from_options(&bs->open_flags, opts);
1868
Kevin Wolf62392eb2015-04-24 16:38:02 +02001869 driver_name = qemu_opt_get(opts, "driver");
1870 drv = bdrv_find_format(driver_name);
1871 assert(drv != NULL);
1872
Fam Zheng5a9347c2017-05-03 00:35:37 +08001873 bs->force_share = qemu_opt_get_bool(opts, BDRV_OPT_FORCE_SHARE, false);
1874
1875 if (bs->force_share && (bs->open_flags & BDRV_O_RDWR)) {
1876 error_setg(errp,
1877 BDRV_OPT_FORCE_SHARE
1878 "=on can only be used with read-only images");
1879 ret = -EINVAL;
1880 goto fail_opts;
1881 }
1882
Kevin Wolf45673672013-04-22 17:48:40 +02001883 if (file != NULL) {
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001884 bdrv_graph_rdlock_main_loop();
Max Reitzf30c66b2019-02-01 20:29:05 +01001885 bdrv_refresh_filename(blk_bs(file));
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02001886 bdrv_graph_rdunlock_main_loop();
1887
Kevin Wolf5696c6e2017-02-17 18:39:24 +01001888 filename = blk_bs(file)->filename;
Kevin Wolf45673672013-04-22 17:48:40 +02001889 } else {
Markus Armbruster129c7d12017-03-30 19:43:12 +02001890 /*
1891 * Caution: while qdict_get_try_str() is fine, getting
1892 * non-string types would require more care. When @options
1893 * come from -blockdev or blockdev_add, its members are typed
1894 * according to the QAPI schema, but when they come from
1895 * -drive, they're all QString.
1896 */
Kevin Wolf45673672013-04-22 17:48:40 +02001897 filename = qdict_get_try_str(options, "filename");
1898 }
1899
Max Reitz4a008242017-04-13 18:06:24 +02001900 if (drv->bdrv_needs_filename && (!filename || !filename[0])) {
Kevin Wolf765003d2014-02-03 14:49:42 +01001901 error_setg(errp, "The '%s' block driver requires a file name",
1902 drv->format_name);
Kevin Wolf18edf282015-04-07 17:12:56 +02001903 ret = -EINVAL;
1904 goto fail_opts;
1905 }
1906
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001907 trace_bdrv_open_common(bs, filename ?: "", bs->open_flags,
1908 drv->format_name);
Kevin Wolf62392eb2015-04-24 16:38:02 +02001909
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001910 ro = bdrv_is_read_only(bs);
1911
1912 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, ro)) {
1913 if (!ro && bdrv_is_whitelisted(drv, true)) {
Kevin Wolf018f9de2023-09-29 16:51:53 +02001914 bdrv_graph_rdlock_main_loop();
Kevin Wolf8be25de2019-01-22 13:15:31 +01001915 ret = bdrv_apply_auto_read_only(bs, NULL, NULL);
Kevin Wolf018f9de2023-09-29 16:51:53 +02001916 bdrv_graph_rdunlock_main_loop();
Kevin Wolf8be25de2019-01-22 13:15:31 +01001917 } else {
1918 ret = -ENOTSUP;
1919 }
1920 if (ret < 0) {
1921 error_setg(errp,
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001922 !ro && bdrv_is_whitelisted(drv, true)
Kevin Wolf8be25de2019-01-22 13:15:31 +01001923 ? "Driver '%s' can only be used for read-only devices"
1924 : "Driver '%s' is not whitelisted",
1925 drv->format_name);
1926 goto fail_opts;
1927 }
Fam Zhengb64ec4e2013-05-29 19:35:40 +08001928 }
Kevin Wolf57915332010-04-14 15:24:50 +02001929
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001930 /* bdrv_new() and bdrv_close() make it so */
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01001931 assert(qatomic_read(&bs->copy_on_read) == 0);
Paolo Bonzinid3faa132017-06-05 14:38:50 +02001932
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001933 if (bs->open_flags & BDRV_O_COPY_ON_READ) {
Vladimir Sementsov-Ogievskiy307261b2021-05-27 18:40:54 +03001934 if (!ro) {
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001935 bdrv_enable_copy_on_read(bs);
1936 } else {
1937 error_setg(errp, "Can't use copy-on-read on read-only device");
Kevin Wolf18edf282015-04-07 17:12:56 +02001938 ret = -EINVAL;
1939 goto fail_opts;
Kevin Wolf0ebd24e2013-09-19 15:12:18 +02001940 }
Stefan Hajnoczi53fec9d2011-11-28 16:08:47 +00001941 }
1942
Alberto Garcia415bbca2018-10-03 13:23:13 +03001943 discard = qemu_opt_get(opts, BDRV_OPT_DISCARD);
Kevin Wolf818584a2016-09-12 18:03:18 +02001944 if (discard != NULL) {
1945 if (bdrv_parse_discard_flags(discard, &bs->open_flags) != 0) {
1946 error_setg(errp, "Invalid discard option");
1947 ret = -EINVAL;
1948 goto fail_opts;
1949 }
1950 }
1951
Alberto Garcia543770b2018-09-06 12:37:09 +03001952 bs->detect_zeroes =
1953 bdrv_parse_detect_zeroes(opts, bs->open_flags, &local_err);
1954 if (local_err) {
1955 error_propagate(errp, local_err);
1956 ret = -EINVAL;
1957 goto fail_opts;
Kevin Wolf692e01a2016-09-12 21:00:41 +02001958 }
1959
Kevin Wolfc2ad1b02013-03-18 16:40:51 +01001960 if (filename != NULL) {
1961 pstrcpy(bs->filename, sizeof(bs->filename), filename);
1962 } else {
1963 bs->filename[0] = '\0';
1964 }
Max Reitz91af7012014-07-18 20:24:56 +02001965 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename), bs->filename);
Kevin Wolf57915332010-04-14 15:24:50 +02001966
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001967 /* Open the image, either directly or using a protocol */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01001968 open_flags = bdrv_open_flags(bs, bs->open_flags);
Kevin Wolf01a56502017-01-18 15:51:56 +01001969 node_name = qemu_opt_get(opts, "node-name");
Kevin Wolf66f82ce2010-04-14 14:17:38 +02001970
Kevin Wolf01a56502017-01-18 15:51:56 +01001971 assert(!drv->bdrv_file_open || file == NULL);
1972 ret = bdrv_open_driver(bs, drv, node_name, options, open_flags, errp);
Kevin Wolf57915332010-04-14 15:24:50 +02001973 if (ret < 0) {
Kevin Wolf01a56502017-01-18 15:51:56 +01001974 goto fail_opts;
Kevin Wolf57915332010-04-14 15:24:50 +02001975 }
1976
Kevin Wolf18edf282015-04-07 17:12:56 +02001977 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001978 return 0;
1979
Kevin Wolf18edf282015-04-07 17:12:56 +02001980fail_opts:
1981 qemu_opts_del(opts);
Kevin Wolf57915332010-04-14 15:24:50 +02001982 return ret;
1983}
1984
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001985static QDict *parse_json_filename(const char *filename, Error **errp)
1986{
1987 QObject *options_obj;
1988 QDict *options;
1989 int ret;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05001990 GLOBAL_STATE_CODE();
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001991
1992 ret = strstart(filename, "json:", &filename);
1993 assert(ret);
1994
Markus Armbruster5577fff2017-02-28 22:26:59 +01001995 options_obj = qobject_from_json(filename, errp);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001996 if (!options_obj) {
Markus Armbruster5577fff2017-02-28 22:26:59 +01001997 error_prepend(errp, "Could not parse the JSON options: ");
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02001998 return NULL;
1999 }
2000
Max Reitz7dc847e2018-02-24 16:40:29 +01002001 options = qobject_to(QDict, options_obj);
Markus Armbrusterca6b6e12017-02-17 21:38:18 +01002002 if (!options) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002003 qobject_unref(options_obj);
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002004 error_setg(errp, "Invalid JSON object given");
2005 return NULL;
2006 }
2007
Kevin Wolf5e5c4f62014-05-26 11:45:08 +02002008 qdict_flatten(options);
2009
2010 return options;
2011}
2012
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002013static void parse_json_protocol(QDict *options, const char **pfilename,
2014 Error **errp)
2015{
2016 QDict *json_options;
2017 Error *local_err = NULL;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002018 GLOBAL_STATE_CODE();
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002019
2020 /* Parse json: pseudo-protocol */
2021 if (!*pfilename || !g_str_has_prefix(*pfilename, "json:")) {
2022 return;
2023 }
2024
2025 json_options = parse_json_filename(*pfilename, &local_err);
2026 if (local_err) {
2027 error_propagate(errp, local_err);
2028 return;
2029 }
2030
2031 /* Options given in the filename have lower priority than options
2032 * specified directly */
2033 qdict_join(options, json_options, false);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02002034 qobject_unref(json_options);
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002035 *pfilename = NULL;
2036}
2037
Kevin Wolf57915332010-04-14 15:24:50 +02002038/*
Kevin Wolff54120f2014-05-26 11:09:59 +02002039 * Fills in default options for opening images and converts the legacy
2040 * filename/flags pair to option QDict entries.
Max Reitz53a29512015-03-19 14:53:16 -04002041 * The BDRV_O_PROTOCOL flag in *flags will be set or cleared accordingly if a
2042 * block driver has been specified explicitly.
Kevin Wolff54120f2014-05-26 11:09:59 +02002043 */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01002044static int bdrv_fill_options(QDict **options, const char *filename,
Max Reitz053e1572015-08-26 19:47:51 +02002045 int *flags, Error **errp)
Kevin Wolff54120f2014-05-26 11:09:59 +02002046{
2047 const char *drvname;
Max Reitz53a29512015-03-19 14:53:16 -04002048 bool protocol = *flags & BDRV_O_PROTOCOL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002049 bool parse_filename = false;
Max Reitz053e1572015-08-26 19:47:51 +02002050 BlockDriver *drv = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002051 Error *local_err = NULL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002052
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002053 GLOBAL_STATE_CODE();
2054
Markus Armbruster129c7d12017-03-30 19:43:12 +02002055 /*
2056 * Caution: while qdict_get_try_str() is fine, getting non-string
2057 * types would require more care. When @options come from
2058 * -blockdev or blockdev_add, its members are typed according to
2059 * the QAPI schema, but when they come from -drive, they're all
2060 * QString.
2061 */
Max Reitz53a29512015-03-19 14:53:16 -04002062 drvname = qdict_get_try_str(*options, "driver");
Max Reitz053e1572015-08-26 19:47:51 +02002063 if (drvname) {
2064 drv = bdrv_find_format(drvname);
2065 if (!drv) {
2066 error_setg(errp, "Unknown driver '%s'", drvname);
2067 return -ENOENT;
2068 }
2069 /* If the user has explicitly specified the driver, this choice should
2070 * override the BDRV_O_PROTOCOL flag */
2071 protocol = drv->bdrv_file_open;
Max Reitz53a29512015-03-19 14:53:16 -04002072 }
2073
2074 if (protocol) {
2075 *flags |= BDRV_O_PROTOCOL;
2076 } else {
2077 *flags &= ~BDRV_O_PROTOCOL;
2078 }
2079
Kevin Wolf91a097e2015-05-08 17:49:53 +02002080 /* Translate cache options from flags into options */
2081 update_options_from_flags(*options, *flags);
2082
Kevin Wolff54120f2014-05-26 11:09:59 +02002083 /* Fetch the file name from the options QDict if necessary */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002084 if (protocol && filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002085 if (!qdict_haskey(*options, "filename")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05002086 qdict_put_str(*options, "filename", filename);
Kevin Wolff54120f2014-05-26 11:09:59 +02002087 parse_filename = true;
2088 } else {
2089 error_setg(errp, "Can't specify 'file' and 'filename' options at "
2090 "the same time");
2091 return -EINVAL;
2092 }
2093 }
2094
2095 /* Find the right block driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02002096 /* See cautionary note on accessing @options above */
Kevin Wolff54120f2014-05-26 11:09:59 +02002097 filename = qdict_get_try_str(*options, "filename");
Kevin Wolff54120f2014-05-26 11:09:59 +02002098
Max Reitz053e1572015-08-26 19:47:51 +02002099 if (!drvname && protocol) {
2100 if (filename) {
2101 drv = bdrv_find_protocol(filename, parse_filename, errp);
2102 if (!drv) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002103 return -EINVAL;
2104 }
Max Reitz053e1572015-08-26 19:47:51 +02002105
2106 drvname = drv->format_name;
Eric Blake46f5ac22017-04-27 16:58:17 -05002107 qdict_put_str(*options, "driver", drvname);
Max Reitz053e1572015-08-26 19:47:51 +02002108 } else {
2109 error_setg(errp, "Must specify either driver or file");
2110 return -EINVAL;
Kevin Wolff54120f2014-05-26 11:09:59 +02002111 }
2112 }
2113
Kevin Wolf17b005f2014-05-27 10:50:29 +02002114 assert(drv || !protocol);
Kevin Wolff54120f2014-05-26 11:09:59 +02002115
2116 /* Driver-specific filename parsing */
Kevin Wolf17b005f2014-05-27 10:50:29 +02002117 if (drv && drv->bdrv_parse_filename && parse_filename) {
Kevin Wolff54120f2014-05-26 11:09:59 +02002118 drv->bdrv_parse_filename(filename, *options, &local_err);
2119 if (local_err) {
2120 error_propagate(errp, local_err);
2121 return -EINVAL;
2122 }
2123
2124 if (!drv->bdrv_needs_filename) {
2125 qdict_del(*options, "filename");
2126 }
2127 }
2128
2129 return 0;
2130}
2131
Kevin Wolf148eb132017-09-14 14:32:04 +02002132typedef struct BlockReopenQueueEntry {
2133 bool prepared;
2134 BDRVReopenState state;
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002135 QTAILQ_ENTRY(BlockReopenQueueEntry) entry;
Kevin Wolf148eb132017-09-14 14:32:04 +02002136} BlockReopenQueueEntry;
2137
2138/*
2139 * Return the flags that @bs will have after the reopens in @q have
2140 * successfully completed. If @q is NULL (or @bs is not contained in @q),
2141 * return the current flags.
2142 */
2143static int bdrv_reopen_get_flags(BlockReopenQueue *q, BlockDriverState *bs)
2144{
2145 BlockReopenQueueEntry *entry;
2146
2147 if (q != NULL) {
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03002148 QTAILQ_FOREACH(entry, q, entry) {
Kevin Wolf148eb132017-09-14 14:32:04 +02002149 if (entry->state.bs == bs) {
2150 return entry->state.flags;
2151 }
2152 }
2153 }
2154
2155 return bs->open_flags;
2156}
2157
2158/* Returns whether the image file can be written to after the reopen queue @q
2159 * has been successfully applied, or right now if @q is NULL. */
Max Reitzcc022142018-06-06 21:37:00 +02002160static bool bdrv_is_writable_after_reopen(BlockDriverState *bs,
2161 BlockReopenQueue *q)
Kevin Wolf148eb132017-09-14 14:32:04 +02002162{
2163 int flags = bdrv_reopen_get_flags(q, bs);
2164
2165 return (flags & (BDRV_O_RDWR | BDRV_O_INACTIVE)) == BDRV_O_RDWR;
2166}
2167
Max Reitzcc022142018-06-06 21:37:00 +02002168/*
2169 * Return whether the BDS can be written to. This is not necessarily
2170 * the same as !bdrv_is_read_only(bs), as inactivated images may not
2171 * be written to but do not count as read-only images.
2172 */
2173bool bdrv_is_writable(BlockDriverState *bs)
2174{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05002175 IO_CODE();
Max Reitzcc022142018-06-06 21:37:00 +02002176 return bdrv_is_writable_after_reopen(bs, NULL);
2177}
2178
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002179static char *bdrv_child_user_desc(BdrvChild *c)
2180{
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002181 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03002182 return c->klass->get_parent_desc(c);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002183}
2184
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002185/*
2186 * Check that @a allows everything that @b needs. @a and @b must reference same
2187 * child node.
2188 */
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002189static bool bdrv_a_allow_b(BdrvChild *a, BdrvChild *b, Error **errp)
2190{
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002191 const char *child_bs_name;
2192 g_autofree char *a_user = NULL;
2193 g_autofree char *b_user = NULL;
2194 g_autofree char *perms = NULL;
2195
2196 assert(a->bs);
2197 assert(a->bs == b->bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002198 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002199
2200 if ((b->perm & a->shared_perm) == b->perm) {
2201 return true;
2202 }
2203
Vladimir Sementsov-Ogievskiy30ebb9a2021-06-01 10:52:18 +03002204 child_bs_name = bdrv_get_node_name(b->bs);
2205 a_user = bdrv_child_user_desc(a);
2206 b_user = bdrv_child_user_desc(b);
2207 perms = bdrv_perm_names(b->perm & ~a->shared_perm);
2208
2209 error_setg(errp, "Permission conflict on node '%s': permissions '%s' are "
2210 "both required by %s (uses node '%s' as '%s' child) and "
2211 "unshared by %s (uses node '%s' as '%s' child).",
2212 child_bs_name, perms,
2213 b_user, child_bs_name, b->name,
2214 a_user, child_bs_name, a->name);
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002215
2216 return false;
2217}
2218
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002219static bool GRAPH_RDLOCK
2220bdrv_parent_perms_conflict(BlockDriverState *bs, Error **errp)
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002221{
2222 BdrvChild *a, *b;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002223 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002224
2225 /*
2226 * During the loop we'll look at each pair twice. That's correct because
2227 * bdrv_a_allow_b() is asymmetric and we should check each pair in both
2228 * directions.
2229 */
2230 QLIST_FOREACH(a, &bs->parents, next_parent) {
2231 QLIST_FOREACH(b, &bs->parents, next_parent) {
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002232 if (a == b) {
Vladimir Sementsov-Ogievskiy3bf416b2021-04-28 18:17:37 +03002233 continue;
2234 }
2235
2236 if (!bdrv_a_allow_b(a, b, errp)) {
2237 return true;
2238 }
2239 }
2240 }
2241
2242 return false;
2243}
2244
Kevin Wolfc629b6d2023-09-11 11:46:14 +02002245static void GRAPH_RDLOCK
2246bdrv_child_perm(BlockDriverState *bs, BlockDriverState *child_bs,
2247 BdrvChild *c, BdrvChildRole role,
2248 BlockReopenQueue *reopen_queue,
2249 uint64_t parent_perm, uint64_t parent_shared,
2250 uint64_t *nperm, uint64_t *nshared)
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002251{
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002252 assert(bs->drv && bs->drv->bdrv_child_perm);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002253 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002254 bs->drv->bdrv_child_perm(bs, c, role, reopen_queue,
Alberto Garcia0b3ca762019-04-04 14:29:53 +03002255 parent_perm, parent_shared,
2256 nperm, nshared);
Kevin Wolfe0995dc2017-09-14 12:47:11 +02002257 /* TODO Take force_share from reopen_queue */
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002258 if (child_bs && child_bs->force_share) {
2259 *nshared = BLK_PERM_ALL;
2260 }
2261}
2262
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002263/*
2264 * Adds the whole subtree of @bs (including @bs itself) to the @list (except for
2265 * nodes that are already in the @list, of course) so that final list is
2266 * topologically sorted. Return the result (GSList @list object is updated, so
2267 * don't use old reference after function call).
2268 *
2269 * On function start @list must be already topologically sorted and for any node
2270 * in the @list the whole subtree of the node must be in the @list as well. The
2271 * simplest way to satisfy this criteria: use only result of
2272 * bdrv_topological_dfs() or NULL as @list parameter.
2273 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002274static GSList * GRAPH_RDLOCK
2275bdrv_topological_dfs(GSList *list, GHashTable *found, BlockDriverState *bs)
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002276{
2277 BdrvChild *child;
2278 g_autoptr(GHashTable) local_found = NULL;
2279
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002280 GLOBAL_STATE_CODE();
2281
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002282 if (!found) {
2283 assert(!list);
2284 found = local_found = g_hash_table_new(NULL, NULL);
2285 }
2286
2287 if (g_hash_table_contains(found, bs)) {
2288 return list;
2289 }
2290 g_hash_table_add(found, bs);
2291
2292 QLIST_FOREACH(child, &bs->children, next) {
2293 list = bdrv_topological_dfs(list, found, child->bs);
2294 }
2295
2296 return g_slist_prepend(list, bs);
2297}
2298
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002299typedef struct BdrvChildSetPermState {
2300 BdrvChild *child;
2301 uint64_t old_perm;
2302 uint64_t old_shared_perm;
2303} BdrvChildSetPermState;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002304
2305static void bdrv_child_set_perm_abort(void *opaque)
2306{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002307 BdrvChildSetPermState *s = opaque;
2308
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002309 GLOBAL_STATE_CODE();
2310
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002311 s->child->perm = s->old_perm;
2312 s->child->shared_perm = s->old_shared_perm;
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002313}
2314
2315static TransactionActionDrv bdrv_child_set_pem_drv = {
2316 .abort = bdrv_child_set_perm_abort,
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002317 .clean = g_free,
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002318};
2319
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002320static void bdrv_child_set_perm(BdrvChild *c, uint64_t perm,
2321 uint64_t shared, Transaction *tran)
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002322{
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002323 BdrvChildSetPermState *s = g_new(BdrvChildSetPermState, 1);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002324 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002325
2326 *s = (BdrvChildSetPermState) {
2327 .child = c,
2328 .old_perm = c->perm,
2329 .old_shared_perm = c->shared_perm,
2330 };
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002331
2332 c->perm = perm;
2333 c->shared_perm = shared;
2334
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002335 tran_add(tran, &bdrv_child_set_pem_drv, s);
Vladimir Sementsov-Ogievskiyb0defa82021-04-28 18:17:38 +03002336}
2337
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002338static void GRAPH_RDLOCK bdrv_drv_set_perm_commit(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002339{
2340 BlockDriverState *bs = opaque;
2341 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002342 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002343
2344 if (bs->drv->bdrv_set_perm) {
2345 bdrv_get_cumulative_perm(bs, &cumulative_perms,
2346 &cumulative_shared_perms);
2347 bs->drv->bdrv_set_perm(bs, cumulative_perms, cumulative_shared_perms);
2348 }
2349}
2350
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002351static void GRAPH_RDLOCK bdrv_drv_set_perm_abort(void *opaque)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002352{
2353 BlockDriverState *bs = opaque;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002354 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002355
2356 if (bs->drv->bdrv_abort_perm_update) {
2357 bs->drv->bdrv_abort_perm_update(bs);
2358 }
2359}
2360
2361TransactionActionDrv bdrv_drv_set_perm_drv = {
2362 .abort = bdrv_drv_set_perm_abort,
2363 .commit = bdrv_drv_set_perm_commit,
2364};
2365
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002366/*
2367 * After calling this function, the transaction @tran may only be completed
2368 * while holding a reader lock for the graph.
2369 */
2370static int GRAPH_RDLOCK
2371bdrv_drv_set_perm(BlockDriverState *bs, uint64_t perm, uint64_t shared_perm,
2372 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002373{
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05002374 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002375 if (!bs->drv) {
2376 return 0;
2377 }
2378
2379 if (bs->drv->bdrv_check_perm) {
2380 int ret = bs->drv->bdrv_check_perm(bs, perm, shared_perm, errp);
2381 if (ret < 0) {
2382 return ret;
2383 }
2384 }
2385
2386 if (tran) {
2387 tran_add(tran, &bdrv_drv_set_perm_drv, bs);
2388 }
2389
2390 return 0;
2391}
2392
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002393typedef struct BdrvReplaceChildState {
2394 BdrvChild *child;
2395 BlockDriverState *old_bs;
2396} BdrvReplaceChildState;
2397
Kevin Wolf5661a002023-09-11 11:46:10 +02002398static void GRAPH_WRLOCK bdrv_replace_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002399{
2400 BdrvReplaceChildState *s = opaque;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002401 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002402
Kevin Wolf5661a002023-09-11 11:46:10 +02002403 bdrv_schedule_unref(s->old_bs);
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002404}
2405
Kevin Wolf5661a002023-09-11 11:46:10 +02002406static void GRAPH_WRLOCK bdrv_replace_child_abort(void *opaque)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002407{
2408 BdrvReplaceChildState *s = opaque;
2409 BlockDriverState *new_bs = s->child->bs;
2410
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002411 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02002412 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02002413
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002414 /* old_bs reference is transparently moved from @s to @s->child */
Kevin Wolf23987472022-11-18 18:41:09 +01002415 if (!s->child->bs) {
2416 /*
2417 * The parents were undrained when removing old_bs from the child. New
2418 * requests can't have been made, though, because the child was empty.
2419 *
2420 * TODO Make bdrv_replace_child_noperm() transactionable to avoid
2421 * undraining the parent in the first place. Once this is done, having
2422 * new_bs drained when calling bdrv_replace_child_tran() is not a
2423 * requirement any more.
2424 */
Kevin Wolf606ed752022-11-18 18:41:10 +01002425 bdrv_parent_drained_begin_single(s->child);
Kevin Wolf23987472022-11-18 18:41:09 +01002426 assert(!bdrv_parent_drained_poll_single(s->child));
2427 }
2428 assert(s->child->quiesced_parent);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002429 bdrv_replace_child_noperm(s->child, s->old_bs);
Kevin Wolfad29eb32023-09-11 11:46:07 +02002430
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002431 bdrv_unref(new_bs);
2432}
2433
2434static TransactionActionDrv bdrv_replace_child_drv = {
2435 .commit = bdrv_replace_child_commit,
2436 .abort = bdrv_replace_child_abort,
2437 .clean = g_free,
2438};
2439
2440/*
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002441 * bdrv_replace_child_tran
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002442 *
2443 * Note: real unref of old_bs is done only on commit.
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002444 *
Kevin Wolf23987472022-11-18 18:41:09 +01002445 * Both @child->bs and @new_bs (if non-NULL) must be drained. @new_bs must be
2446 * kept drained until the transaction is completed.
2447 *
Kevin Wolf5661a002023-09-11 11:46:10 +02002448 * After calling this function, the transaction @tran may only be completed
2449 * while holding a writer lock for the graph.
2450 *
Vladimir Sementsov-Ogievskiy4bf021d2021-06-10 14:25:44 +03002451 * The function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002452 */
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02002453static void GRAPH_WRLOCK
2454bdrv_replace_child_tran(BdrvChild *child, BlockDriverState *new_bs,
2455 Transaction *tran)
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002456{
2457 BdrvReplaceChildState *s = g_new(BdrvReplaceChildState, 1);
Kevin Wolf23987472022-11-18 18:41:09 +01002458
2459 assert(child->quiesced_parent);
2460 assert(!new_bs || new_bs->quiesce_counter);
2461
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002462 *s = (BdrvReplaceChildState) {
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002463 .child = child,
2464 .old_bs = child->bs,
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002465 };
2466 tran_add(tran, &bdrv_replace_child_drv, s);
2467
2468 if (new_bs) {
2469 bdrv_ref(new_bs);
2470 }
Kevin Wolfad29eb32023-09-11 11:46:07 +02002471
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03002472 bdrv_replace_child_noperm(child, new_bs);
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03002473 /* old_bs reference is transparently moved from @child to @s */
Vladimir Sementsov-Ogievskiy09786232021-04-28 18:17:44 +03002474}
2475
Kevin Wolf33a610c2016-12-15 13:04:20 +01002476/*
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002477 * Refresh permissions in @bs subtree. The function is intended to be called
2478 * after some graph modification that was done without permission update.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002479 *
2480 * After calling this function, the transaction @tran may only be completed
2481 * while holding a reader lock for the graph.
Kevin Wolf33a610c2016-12-15 13:04:20 +01002482 */
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002483static int GRAPH_RDLOCK
2484bdrv_node_refresh_perm(BlockDriverState *bs, BlockReopenQueue *q,
2485 Transaction *tran, Error **errp)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002486{
2487 BlockDriver *drv = bs->drv;
2488 BdrvChild *c;
2489 int ret;
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002490 uint64_t cumulative_perms, cumulative_shared_perms;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002491 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002492
2493 bdrv_get_cumulative_perm(bs, &cumulative_perms, &cumulative_shared_perms);
Kevin Wolf33a610c2016-12-15 13:04:20 +01002494
2495 /* Write permissions never work with read-only images */
2496 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
Max Reitzcc022142018-06-06 21:37:00 +02002497 !bdrv_is_writable_after_reopen(bs, q))
Kevin Wolf33a610c2016-12-15 13:04:20 +01002498 {
Max Reitz481e0ee2019-05-15 22:15:00 +02002499 if (!bdrv_is_writable_after_reopen(bs, NULL)) {
2500 error_setg(errp, "Block node is read-only");
2501 } else {
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002502 error_setg(errp, "Read-only block node '%s' cannot support "
2503 "read-write users", bdrv_get_node_name(bs));
Max Reitz481e0ee2019-05-15 22:15:00 +02002504 }
2505
Kevin Wolf33a610c2016-12-15 13:04:20 +01002506 return -EPERM;
2507 }
2508
Kevin Wolf9c60a5d2020-07-16 16:26:00 +02002509 /*
2510 * Unaligned requests will automatically be aligned to bl.request_alignment
2511 * and without RESIZE we can't extend requests to write to space beyond the
2512 * end of the image, so it's required that the image size is aligned.
2513 */
2514 if ((cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) &&
2515 !(cumulative_perms & BLK_PERM_RESIZE))
2516 {
2517 if ((bs->total_sectors * BDRV_SECTOR_SIZE) % bs->bl.request_alignment) {
2518 error_setg(errp, "Cannot get 'write' permission without 'resize': "
2519 "Image size is not a multiple of request "
2520 "alignment");
2521 return -EPERM;
2522 }
2523 }
2524
Kevin Wolf33a610c2016-12-15 13:04:20 +01002525 /* Check this node */
2526 if (!drv) {
2527 return 0;
2528 }
2529
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002530 ret = bdrv_drv_set_perm(bs, cumulative_perms, cumulative_shared_perms, tran,
Vladimir Sementsov-Ogievskiy2513ef52021-04-28 18:17:42 +03002531 errp);
2532 if (ret < 0) {
2533 return ret;
Kevin Wolf33a610c2016-12-15 13:04:20 +01002534 }
2535
Kevin Wolf78e421c2016-12-20 23:25:12 +01002536 /* Drivers that never have children can omit .bdrv_child_perm() */
Kevin Wolf33a610c2016-12-15 13:04:20 +01002537 if (!drv->bdrv_child_perm) {
Kevin Wolf78e421c2016-12-20 23:25:12 +01002538 assert(QLIST_EMPTY(&bs->children));
Kevin Wolf33a610c2016-12-15 13:04:20 +01002539 return 0;
2540 }
2541
2542 /* Check all children */
2543 QLIST_FOREACH(c, &bs->children, next) {
2544 uint64_t cur_perm, cur_shared;
Max Reitz9eab1542019-05-22 19:03:50 +02002545
Max Reitze5d8a402020-05-13 13:05:44 +02002546 bdrv_child_perm(bs, c->bs, c, c->role, q,
Fam Zhengffd1a5a2017-05-03 00:35:38 +08002547 cumulative_perms, cumulative_shared_perms,
2548 &cur_perm, &cur_shared);
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002549 bdrv_child_set_perm(c, cur_perm, cur_shared, tran);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002550 }
2551
2552 return 0;
2553}
2554
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002555/*
2556 * @list is a product of bdrv_topological_dfs() (may be called several times) -
2557 * a topologically sorted subgraph.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002558 *
2559 * After calling this function, the transaction @tran may only be completed
2560 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002561 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002562static int GRAPH_RDLOCK
2563bdrv_do_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2564 Error **errp)
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002565{
2566 int ret;
2567 BlockDriverState *bs;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002568 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002569
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002570 for ( ; list; list = list->next) {
2571 bs = list->data;
2572
Vladimir Sementsov-Ogievskiy9397c142021-04-28 18:17:53 +03002573 if (bdrv_parent_perms_conflict(bs, errp)) {
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002574 return -EINVAL;
2575 }
2576
Vladimir Sementsov-Ogievskiyc20555e2021-04-28 18:18:04 +03002577 ret = bdrv_node_refresh_perm(bs, q, tran, errp);
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002578 if (ret < 0) {
2579 return ret;
2580 }
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002581 }
Vladimir Sementsov-Ogievskiy3ef45e02021-04-28 18:17:40 +03002582
Vladimir Sementsov-Ogievskiybd57f8f2021-04-28 18:17:41 +03002583 return 0;
2584}
2585
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002586/*
2587 * @list is any list of nodes. List is completed by all subtrees and
2588 * topologically sorted. It's not a problem if some node occurs in the @list
2589 * several times.
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002590 *
2591 * After calling this function, the transaction @tran may only be completed
2592 * while holding a reader lock for the graph.
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002593 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002594static int GRAPH_RDLOCK
2595bdrv_list_refresh_perms(GSList *list, BlockReopenQueue *q, Transaction *tran,
2596 Error **errp)
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002597{
2598 g_autoptr(GHashTable) found = g_hash_table_new(NULL, NULL);
2599 g_autoptr(GSList) refresh_list = NULL;
2600
2601 for ( ; list; list = list->next) {
2602 refresh_list = bdrv_topological_dfs(refresh_list, found, list->data);
2603 }
2604
2605 return bdrv_do_refresh_perms(refresh_list, q, tran, errp);
2606}
2607
Kevin Wolfc7a0f2b2020-03-10 12:38:25 +01002608void bdrv_get_cumulative_perm(BlockDriverState *bs, uint64_t *perm,
2609 uint64_t *shared_perm)
Kevin Wolf33a610c2016-12-15 13:04:20 +01002610{
2611 BdrvChild *c;
2612 uint64_t cumulative_perms = 0;
2613 uint64_t cumulative_shared_perms = BLK_PERM_ALL;
2614
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002615 GLOBAL_STATE_CODE();
2616
Kevin Wolf33a610c2016-12-15 13:04:20 +01002617 QLIST_FOREACH(c, &bs->parents, next_parent) {
2618 cumulative_perms |= c->perm;
2619 cumulative_shared_perms &= c->shared_perm;
2620 }
2621
2622 *perm = cumulative_perms;
2623 *shared_perm = cumulative_shared_perms;
2624}
2625
Fam Zheng51761962017-05-03 00:35:36 +08002626char *bdrv_perm_names(uint64_t perm)
Kevin Wolfd0833192017-01-16 18:26:20 +01002627{
2628 struct perm_name {
2629 uint64_t perm;
2630 const char *name;
2631 } permissions[] = {
2632 { BLK_PERM_CONSISTENT_READ, "consistent read" },
2633 { BLK_PERM_WRITE, "write" },
2634 { BLK_PERM_WRITE_UNCHANGED, "write unchanged" },
2635 { BLK_PERM_RESIZE, "resize" },
Kevin Wolfd0833192017-01-16 18:26:20 +01002636 { 0, NULL }
2637 };
2638
Alberto Garciae2a74232020-01-10 18:15:18 +01002639 GString *result = g_string_sized_new(30);
Kevin Wolfd0833192017-01-16 18:26:20 +01002640 struct perm_name *p;
2641
2642 for (p = permissions; p->name; p++) {
2643 if (perm & p->perm) {
Alberto Garciae2a74232020-01-10 18:15:18 +01002644 if (result->len > 0) {
2645 g_string_append(result, ", ");
2646 }
2647 g_string_append(result, p->name);
Kevin Wolfd0833192017-01-16 18:26:20 +01002648 }
2649 }
2650
Alberto Garciae2a74232020-01-10 18:15:18 +01002651 return g_string_free(result, FALSE);
Kevin Wolfd0833192017-01-16 18:26:20 +01002652}
2653
Kevin Wolf33a610c2016-12-15 13:04:20 +01002654
Kevin Wolfbce73bc2023-09-11 11:46:13 +02002655/*
2656 * @tran is allowed to be NULL. In this case no rollback is possible.
2657 *
2658 * After calling this function, the transaction @tran may only be completed
2659 * while holding a reader lock for the graph.
2660 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02002661static int GRAPH_RDLOCK
2662bdrv_refresh_perms(BlockDriverState *bs, Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002663{
2664 int ret;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002665 Transaction *local_tran = NULL;
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002666 g_autoptr(GSList) list = bdrv_topological_dfs(NULL, NULL, bs);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002667 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002668
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002669 if (!tran) {
2670 tran = local_tran = tran_new();
2671 }
2672
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03002673 ret = bdrv_do_refresh_perms(list, NULL, tran, errp);
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002674
2675 if (local_tran) {
2676 tran_finalize(local_tran, ret);
2677 }
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002678
Vladimir Sementsov-Ogievskiyb1d2bbe2021-04-28 18:17:43 +03002679 return ret;
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03002680}
2681
Kevin Wolf33a610c2016-12-15 13:04:20 +01002682int bdrv_child_try_set_perm(BdrvChild *c, uint64_t perm, uint64_t shared,
2683 Error **errp)
2684{
Max Reitz10467792019-05-22 19:03:51 +02002685 Error *local_err = NULL;
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002686 Transaction *tran = tran_new();
Kevin Wolf33a610c2016-12-15 13:04:20 +01002687 int ret;
2688
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002689 GLOBAL_STATE_CODE();
2690
Vladimir Sementsov-Ogievskiyecb776b2021-04-28 18:18:02 +03002691 bdrv_child_set_perm(c, perm, shared, tran);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002692
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03002693 ret = bdrv_refresh_perms(c->bs, tran, &local_err);
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002694
2695 tran_finalize(tran, ret);
2696
Kevin Wolf33a610c2016-12-15 13:04:20 +01002697 if (ret < 0) {
Vladimir Sementsov-Ogievskiy071b4742020-11-06 15:42:41 +03002698 if ((perm & ~c->perm) || (c->shared_perm & ~shared)) {
2699 /* tighten permissions */
Max Reitz10467792019-05-22 19:03:51 +02002700 error_propagate(errp, local_err);
2701 } else {
2702 /*
2703 * Our caller may intend to only loosen restrictions and
2704 * does not expect this function to fail. Errors are not
2705 * fatal in such a case, so we can just hide them from our
2706 * caller.
2707 */
2708 error_free(local_err);
2709 ret = 0;
2710 }
Kevin Wolf33a610c2016-12-15 13:04:20 +01002711 }
2712
Vladimir Sementsov-Ogievskiy83928dc2021-04-28 18:17:39 +03002713 return ret;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01002714}
2715
Max Reitzc1087f12019-05-22 19:03:46 +02002716int bdrv_child_refresh_perms(BlockDriverState *bs, BdrvChild *c, Error **errp)
2717{
2718 uint64_t parent_perms, parent_shared;
2719 uint64_t perms, shared;
2720
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002721 GLOBAL_STATE_CODE();
2722
Max Reitzc1087f12019-05-22 19:03:46 +02002723 bdrv_get_cumulative_perm(bs, &parent_perms, &parent_shared);
Max Reitze5d8a402020-05-13 13:05:44 +02002724 bdrv_child_perm(bs, c->bs, c, c->role, NULL,
Max Reitzbf8e9252020-05-13 13:05:16 +02002725 parent_perms, parent_shared, &perms, &shared);
Max Reitzc1087f12019-05-22 19:03:46 +02002726
2727 return bdrv_child_try_set_perm(c, perms, shared, errp);
2728}
2729
Max Reitz87278af2020-05-13 13:05:40 +02002730/*
2731 * Default implementation for .bdrv_child_perm() for block filters:
2732 * Forward CONSISTENT_READ, WRITE, WRITE_UNCHANGED, and RESIZE to the
2733 * filtered child.
2734 */
2735static void bdrv_filter_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitz87278af2020-05-13 13:05:40 +02002736 BdrvChildRole role,
2737 BlockReopenQueue *reopen_queue,
2738 uint64_t perm, uint64_t shared,
2739 uint64_t *nperm, uint64_t *nshared)
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002740{
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002741 GLOBAL_STATE_CODE();
Kevin Wolfe444fa82019-08-02 15:59:41 +02002742 *nperm = perm & DEFAULT_PERM_PASSTHROUGH;
2743 *nshared = (shared & DEFAULT_PERM_PASSTHROUGH) | DEFAULT_PERM_UNCHANGED;
Kevin Wolf6a1b9ee2016-12-15 11:27:32 +01002744}
2745
Max Reitz70082db2020-05-13 13:05:26 +02002746static void bdrv_default_perms_for_cow(BlockDriverState *bs, BdrvChild *c,
Max Reitz70082db2020-05-13 13:05:26 +02002747 BdrvChildRole role,
2748 BlockReopenQueue *reopen_queue,
2749 uint64_t perm, uint64_t shared,
2750 uint64_t *nperm, uint64_t *nshared)
2751{
Max Reitze5d8a402020-05-13 13:05:44 +02002752 assert(role & BDRV_CHILD_COW);
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002753 GLOBAL_STATE_CODE();
Max Reitz70082db2020-05-13 13:05:26 +02002754
2755 /*
2756 * We want consistent read from backing files if the parent needs it.
2757 * No other operations are performed on backing files.
2758 */
2759 perm &= BLK_PERM_CONSISTENT_READ;
2760
2761 /*
2762 * If the parent can deal with changing data, we're okay with a
2763 * writable and resizable backing file.
2764 * TODO Require !(perm & BLK_PERM_CONSISTENT_READ), too?
2765 */
2766 if (shared & BLK_PERM_WRITE) {
2767 shared = BLK_PERM_WRITE | BLK_PERM_RESIZE;
2768 } else {
2769 shared = 0;
2770 }
2771
Vladimir Sementsov-Ogievskiy64631f32021-09-02 12:37:54 +03002772 shared |= BLK_PERM_CONSISTENT_READ | BLK_PERM_WRITE_UNCHANGED;
Max Reitz70082db2020-05-13 13:05:26 +02002773
2774 if (bs->open_flags & BDRV_O_INACTIVE) {
2775 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2776 }
2777
2778 *nperm = perm;
2779 *nshared = shared;
2780}
2781
Max Reitz6f838a42020-05-13 13:05:27 +02002782static void bdrv_default_perms_for_storage(BlockDriverState *bs, BdrvChild *c,
Max Reitz6f838a42020-05-13 13:05:27 +02002783 BdrvChildRole role,
2784 BlockReopenQueue *reopen_queue,
2785 uint64_t perm, uint64_t shared,
2786 uint64_t *nperm, uint64_t *nshared)
2787{
2788 int flags;
2789
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05002790 GLOBAL_STATE_CODE();
Max Reitze5d8a402020-05-13 13:05:44 +02002791 assert(role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA));
Max Reitz6f838a42020-05-13 13:05:27 +02002792
2793 flags = bdrv_reopen_get_flags(reopen_queue, bs);
2794
2795 /*
2796 * Apart from the modifications below, the same permissions are
2797 * forwarded and left alone as for filters
2798 */
Max Reitze5d8a402020-05-13 13:05:44 +02002799 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz6f838a42020-05-13 13:05:27 +02002800 perm, shared, &perm, &shared);
2801
Max Reitzf8890542020-05-13 13:05:28 +02002802 if (role & BDRV_CHILD_METADATA) {
2803 /* Format drivers may touch metadata even if the guest doesn't write */
2804 if (bdrv_is_writable_after_reopen(bs, reopen_queue)) {
2805 perm |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2806 }
2807
2808 /*
2809 * bs->file always needs to be consistent because of the
2810 * metadata. We can never allow other users to resize or write
2811 * to it.
2812 */
2813 if (!(flags & BDRV_O_NO_IO)) {
2814 perm |= BLK_PERM_CONSISTENT_READ;
2815 }
2816 shared &= ~(BLK_PERM_WRITE | BLK_PERM_RESIZE);
Max Reitz6f838a42020-05-13 13:05:27 +02002817 }
2818
Max Reitzf8890542020-05-13 13:05:28 +02002819 if (role & BDRV_CHILD_DATA) {
2820 /*
2821 * Technically, everything in this block is a subset of the
2822 * BDRV_CHILD_METADATA path taken above, and so this could
2823 * be an "else if" branch. However, that is not obvious, and
2824 * this function is not performance critical, therefore we let
2825 * this be an independent "if".
2826 */
2827
2828 /*
2829 * We cannot allow other users to resize the file because the
2830 * format driver might have some assumptions about the size
2831 * (e.g. because it is stored in metadata, or because the file
2832 * is split into fixed-size data files).
2833 */
2834 shared &= ~BLK_PERM_RESIZE;
2835
2836 /*
2837 * WRITE_UNCHANGED often cannot be performed as such on the
2838 * data file. For example, the qcow2 driver may still need to
2839 * write copied clusters on copy-on-read.
2840 */
2841 if (perm & BLK_PERM_WRITE_UNCHANGED) {
2842 perm |= BLK_PERM_WRITE;
2843 }
2844
2845 /*
2846 * If the data file is written to, the format driver may
2847 * expect to be able to resize it by writing beyond the EOF.
2848 */
2849 if (perm & BLK_PERM_WRITE) {
2850 perm |= BLK_PERM_RESIZE;
2851 }
Max Reitz6f838a42020-05-13 13:05:27 +02002852 }
Max Reitz6f838a42020-05-13 13:05:27 +02002853
2854 if (bs->open_flags & BDRV_O_INACTIVE) {
2855 shared |= BLK_PERM_WRITE | BLK_PERM_RESIZE;
2856 }
2857
2858 *nperm = perm;
2859 *nshared = shared;
2860}
2861
Max Reitz2519f542020-05-13 13:05:29 +02002862void bdrv_default_perms(BlockDriverState *bs, BdrvChild *c,
Max Reitze5d8a402020-05-13 13:05:44 +02002863 BdrvChildRole role, BlockReopenQueue *reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002864 uint64_t perm, uint64_t shared,
2865 uint64_t *nperm, uint64_t *nshared)
2866{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05002867 GLOBAL_STATE_CODE();
Max Reitz2519f542020-05-13 13:05:29 +02002868 if (role & BDRV_CHILD_FILTERED) {
2869 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
2870 BDRV_CHILD_COW)));
Max Reitze5d8a402020-05-13 13:05:44 +02002871 bdrv_filter_default_perms(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002872 perm, shared, nperm, nshared);
2873 } else if (role & BDRV_CHILD_COW) {
2874 assert(!(role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA)));
Max Reitze5d8a402020-05-13 13:05:44 +02002875 bdrv_default_perms_for_cow(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002876 perm, shared, nperm, nshared);
2877 } else if (role & (BDRV_CHILD_METADATA | BDRV_CHILD_DATA)) {
Max Reitze5d8a402020-05-13 13:05:44 +02002878 bdrv_default_perms_for_storage(bs, c, role, reopen_queue,
Max Reitz2519f542020-05-13 13:05:29 +02002879 perm, shared, nperm, nshared);
2880 } else {
2881 g_assert_not_reached();
2882 }
2883}
2884
Max Reitz7b1d9c42019-11-08 13:34:51 +01002885uint64_t bdrv_qapi_perm_to_blk_perm(BlockPermission qapi_perm)
2886{
2887 static const uint64_t permissions[] = {
2888 [BLOCK_PERMISSION_CONSISTENT_READ] = BLK_PERM_CONSISTENT_READ,
2889 [BLOCK_PERMISSION_WRITE] = BLK_PERM_WRITE,
2890 [BLOCK_PERMISSION_WRITE_UNCHANGED] = BLK_PERM_WRITE_UNCHANGED,
2891 [BLOCK_PERMISSION_RESIZE] = BLK_PERM_RESIZE,
Max Reitz7b1d9c42019-11-08 13:34:51 +01002892 };
2893
2894 QEMU_BUILD_BUG_ON(ARRAY_SIZE(permissions) != BLOCK_PERMISSION__MAX);
2895 QEMU_BUILD_BUG_ON(1UL << ARRAY_SIZE(permissions) != BLK_PERM_ALL + 1);
2896
2897 assert(qapi_perm < BLOCK_PERMISSION__MAX);
2898
2899 return permissions[qapi_perm];
2900}
2901
Kevin Wolf23987472022-11-18 18:41:09 +01002902/*
2903 * Replaces the node that a BdrvChild points to without updating permissions.
2904 *
2905 * If @new_bs is non-NULL, the parent of @child must already be drained through
Kevin Wolf31b2ddf2023-06-05 10:57:10 +02002906 * @child and the caller must hold the AioContext lock for @new_bs.
Kevin Wolf23987472022-11-18 18:41:09 +01002907 */
Kevin Wolfad29eb32023-09-11 11:46:07 +02002908static void GRAPH_WRLOCK
2909bdrv_replace_child_noperm(BdrvChild *child, BlockDriverState *new_bs)
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002910{
2911 BlockDriverState *old_bs = child->bs;
Max Reitzdebc2922019-07-22 15:33:44 +02002912 int new_bs_quiesce_counter;
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002913
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002914 assert(!child->frozen);
Kevin Wolf23987472022-11-18 18:41:09 +01002915
2916 /*
2917 * If we want to change the BdrvChild to point to a drained node as its new
2918 * child->bs, we need to make sure that its new parent is drained, too. In
2919 * other words, either child->quiesce_parent must already be true or we must
2920 * be able to set it and keep the parent's quiesce_counter consistent with
2921 * that, but without polling or starting new requests (this function
2922 * guarantees that it doesn't poll, and starting new requests would be
2923 * against the invariants of drain sections).
2924 *
2925 * To keep things simple, we pick the first option (child->quiesce_parent
2926 * must already be true). We also generalise the rule a bit to make it
2927 * easier to verify in callers and more likely to be covered in test cases:
2928 * The parent must be quiesced through this child even if new_bs isn't
2929 * currently drained.
2930 *
2931 * The only exception is for callers that always pass new_bs == NULL. In
2932 * this case, we obviously never need to consider the case of a drained
2933 * new_bs, so we can keep the callers simpler by allowing them not to drain
2934 * the parent.
2935 */
2936 assert(!new_bs || child->quiesced_parent);
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02002937 assert(old_bs != new_bs);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05002938 GLOBAL_STATE_CODE();
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02002939
Fam Zhengbb2614e2017-04-07 14:54:10 +08002940 if (old_bs && new_bs) {
2941 assert(bdrv_get_aio_context(old_bs) == bdrv_get_aio_context(new_bs));
2942 }
Max Reitzdebc2922019-07-22 15:33:44 +02002943
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002944 if (old_bs) {
Max Reitzbd86fb92020-05-13 13:05:13 +02002945 if (child->klass->detach) {
2946 child->klass->detach(child);
Kevin Wolfd736f112017-12-18 16:05:48 +01002947 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002948 QLIST_REMOVE(child, next_parent);
2949 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002950
2951 child->bs = new_bs;
Kevin Wolf36fe1332016-05-17 14:51:55 +02002952
2953 if (new_bs) {
2954 QLIST_INSERT_HEAD(&new_bs->parents, child, next_parent);
Max Reitzbd86fb92020-05-13 13:05:13 +02002955 if (child->klass->attach) {
2956 child->klass->attach(child);
Kevin Wolfdb95dbb2017-02-08 11:28:52 +01002957 }
Kevin Wolf36fe1332016-05-17 14:51:55 +02002958 }
Max Reitzdebc2922019-07-22 15:33:44 +02002959
2960 /*
Kevin Wolf23987472022-11-18 18:41:09 +01002961 * If the parent was drained through this BdrvChild previously, but new_bs
2962 * is not drained, allow requests to come in only after the new node has
2963 * been attached.
Max Reitzdebc2922019-07-22 15:33:44 +02002964 */
Kevin Wolf57e05be2022-11-18 18:41:06 +01002965 new_bs_quiesce_counter = (new_bs ? new_bs->quiesce_counter : 0);
2966 if (!new_bs_quiesce_counter && child->quiesced_parent) {
Max Reitzdebc2922019-07-22 15:33:44 +02002967 bdrv_parent_drained_end_single(child);
Max Reitzdebc2922019-07-22 15:33:44 +02002968 }
Kevin Wolfe9740bc2016-05-23 15:52:26 +02002969}
2970
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002971/**
2972 * Free the given @child.
2973 *
2974 * The child must be empty (i.e. `child->bs == NULL`) and it must be
2975 * unused (i.e. not in a children list).
2976 */
2977static void bdrv_child_free(BdrvChild *child)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002978{
2979 assert(!child->bs);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05002980 GLOBAL_STATE_CODE();
Kevin Wolf680e0cc2023-09-29 16:51:56 +02002981 GRAPH_RDLOCK_GUARD_MAINLOOP();
2982
Hanna Reitza2253692021-11-15 15:53:58 +01002983 assert(!child->next.le_prev); /* not in children list */
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01002984
2985 g_free(child->name);
2986 g_free(child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002987}
2988
2989typedef struct BdrvAttachChildCommonState {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002990 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002991 AioContext *old_parent_ctx;
2992 AioContext *old_child_ctx;
2993} BdrvAttachChildCommonState;
2994
Kevin Wolf5661a002023-09-11 11:46:10 +02002995static void GRAPH_WRLOCK bdrv_attach_child_common_abort(void *opaque)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002996{
2997 BdrvAttachChildCommonState *s = opaque;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03002998 BlockDriverState *bs = s->child->bs;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03002999
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003000 GLOBAL_STATE_CODE();
Kevin Wolf5661a002023-09-11 11:46:10 +02003001 assert_bdrv_graph_writable();
Kevin Wolfad29eb32023-09-11 11:46:07 +02003002
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003003 bdrv_replace_child_noperm(s->child, NULL);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003004
3005 if (bdrv_get_aio_context(bs) != s->old_child_ctx) {
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003006 bdrv_try_change_aio_context(bs, s->old_child_ctx, NULL, &error_abort);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003007 }
3008
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003009 if (bdrv_child_get_parent_aio_context(s->child) != s->old_parent_ctx) {
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003010 Transaction *tran;
3011 GHashTable *visited;
3012 bool ret;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003013
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003014 tran = tran_new();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003015
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003016 /* No need to visit `child`, because it has been detached already */
3017 visited = g_hash_table_new(NULL, NULL);
3018 ret = s->child->klass->change_aio_ctx(s->child, s->old_parent_ctx,
3019 visited, tran, &error_abort);
3020 g_hash_table_destroy(visited);
3021
3022 /* transaction is supposed to always succeed */
3023 assert(ret == true);
3024 tran_commit(tran);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003025 }
3026
Kevin Wolf5661a002023-09-11 11:46:10 +02003027 bdrv_schedule_unref(bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003028 bdrv_child_free(s->child);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003029}
3030
3031static TransactionActionDrv bdrv_attach_child_common_drv = {
3032 .abort = bdrv_attach_child_common_abort,
3033 .clean = g_free,
3034};
3035
3036/*
3037 * Common part of attaching bdrv child to bs or to blk or to job
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003038 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003039 * Function doesn't update permissions, caller is responsible for this.
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003040 *
Kevin Wolf5661a002023-09-11 11:46:10 +02003041 * After calling this function, the transaction @tran may only be completed
3042 * while holding a writer lock for the graph.
3043 *
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003044 * Returns new created child.
Kevin Wolfc066e802023-06-05 10:57:05 +02003045 *
3046 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3047 * @child_bs can move to a different AioContext in this function. Callers must
3048 * make sure that their AioContext locking is still correct after this.
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003049 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003050static BdrvChild * GRAPH_WRLOCK
3051bdrv_attach_child_common(BlockDriverState *child_bs,
3052 const char *child_name,
3053 const BdrvChildClass *child_class,
3054 BdrvChildRole child_role,
3055 uint64_t perm, uint64_t shared_perm,
3056 void *opaque,
3057 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003058{
3059 BdrvChild *new_child;
Kevin Wolfc066e802023-06-05 10:57:05 +02003060 AioContext *parent_ctx, *new_child_ctx;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003061 AioContext *child_ctx = bdrv_get_aio_context(child_bs);
3062
Vladimir Sementsov-Ogievskiyda261b62021-06-01 10:52:17 +03003063 assert(child_class->get_parent_desc);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003064 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003065
3066 new_child = g_new(BdrvChild, 1);
3067 *new_child = (BdrvChild) {
3068 .bs = NULL,
3069 .name = g_strdup(child_name),
3070 .klass = child_class,
3071 .role = child_role,
3072 .perm = perm,
3073 .shared_perm = shared_perm,
3074 .opaque = opaque,
3075 };
3076
3077 /*
3078 * If the AioContexts don't match, first try to move the subtree of
3079 * child_bs into the AioContext of the new parent. If this doesn't work,
3080 * try moving the parent into the AioContext of child_bs instead.
3081 */
3082 parent_ctx = bdrv_child_get_parent_aio_context(new_child);
3083 if (child_ctx != parent_ctx) {
3084 Error *local_err = NULL;
Emanuele Giuseppe Esposito142e6902022-10-25 04:49:52 -04003085 int ret = bdrv_try_change_aio_context(child_bs, parent_ctx, NULL,
3086 &local_err);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003087
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003088 if (ret < 0 && child_class->change_aio_ctx) {
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003089 Transaction *aio_ctx_tran = tran_new();
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003090 GHashTable *visited = g_hash_table_new(NULL, NULL);
3091 bool ret_child;
3092
3093 g_hash_table_add(visited, new_child);
3094 ret_child = child_class->change_aio_ctx(new_child, child_ctx,
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003095 visited, aio_ctx_tran,
3096 NULL);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003097 if (ret_child == true) {
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003098 error_free(local_err);
3099 ret = 0;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003100 }
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02003101 tran_finalize(aio_ctx_tran, ret_child == true ? 0 : -1);
Emanuele Giuseppe Espositof8be48a2022-10-25 04:49:49 -04003102 g_hash_table_destroy(visited);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003103 }
3104
3105 if (ret < 0) {
3106 error_propagate(errp, local_err);
Hanna Reitz04c9c3a2021-11-15 15:53:59 +01003107 bdrv_child_free(new_child);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003108 return NULL;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003109 }
3110 }
3111
Kevin Wolfc066e802023-06-05 10:57:05 +02003112 new_child_ctx = bdrv_get_aio_context(child_bs);
3113 if (new_child_ctx != child_ctx) {
3114 aio_context_release(child_ctx);
3115 aio_context_acquire(new_child_ctx);
3116 }
3117
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003118 bdrv_ref(child_bs);
Kevin Wolf23987472022-11-18 18:41:09 +01003119 /*
3120 * Let every new BdrvChild start with a drained parent. Inserting the child
3121 * in the graph with bdrv_replace_child_noperm() will undrain it if
3122 * @child_bs is not drained.
3123 *
3124 * The child was only just created and is not yet visible in global state
3125 * until bdrv_replace_child_noperm() inserts it into the graph, so nobody
3126 * could have sent requests and polling is not necessary.
3127 *
3128 * Note that this means that the parent isn't fully drained yet, we only
3129 * stop new requests from coming in. This is fine, we don't care about the
3130 * old requests here, they are not for this child. If another place enters a
3131 * drain section for the same parent, but wants it to be fully quiesced, it
3132 * will not run most of the the code in .drained_begin() again (which is not
3133 * a problem, we already did this), but it will still poll until the parent
3134 * is fully quiesced, so it will not be negatively affected either.
3135 */
Kevin Wolf606ed752022-11-18 18:41:10 +01003136 bdrv_parent_drained_begin_single(new_child);
Vladimir Sementsov-Ogievskiy544acc72022-07-26 23:11:31 +03003137 bdrv_replace_child_noperm(new_child, child_bs);
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003138
3139 BdrvAttachChildCommonState *s = g_new(BdrvAttachChildCommonState, 1);
3140 *s = (BdrvAttachChildCommonState) {
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003141 .child = new_child,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003142 .old_parent_ctx = parent_ctx,
3143 .old_child_ctx = child_ctx,
3144 };
3145 tran_add(tran, &bdrv_attach_child_common_drv, s);
3146
Kevin Wolfc066e802023-06-05 10:57:05 +02003147 if (new_child_ctx != child_ctx) {
3148 aio_context_release(new_child_ctx);
3149 aio_context_acquire(child_ctx);
3150 }
3151
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003152 return new_child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003153}
3154
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003155/*
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003156 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolfc066e802023-06-05 10:57:05 +02003157 *
3158 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3159 * @child_bs can move to a different AioContext in this function. Callers must
3160 * make sure that their AioContext locking is still correct after this.
Kevin Wolf5661a002023-09-11 11:46:10 +02003161 *
3162 * After calling this function, the transaction @tran may only be completed
3163 * while holding a writer lock for the graph.
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003164 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003165static BdrvChild * GRAPH_WRLOCK
3166bdrv_attach_child_noperm(BlockDriverState *parent_bs,
3167 BlockDriverState *child_bs,
3168 const char *child_name,
3169 const BdrvChildClass *child_class,
3170 BdrvChildRole child_role,
3171 Transaction *tran,
3172 Error **errp)
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003173{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003174 uint64_t perm, shared_perm;
3175
3176 assert(parent_bs->drv);
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003177 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003178
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003179 if (bdrv_recurse_has_child(child_bs, parent_bs)) {
3180 error_setg(errp, "Making '%s' a %s child of '%s' would create a cycle",
3181 child_bs->node_name, child_name, parent_bs->node_name);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003182 return NULL;
Kevin Wolfbfb8aa62021-10-18 15:47:14 +02003183 }
3184
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003185 bdrv_get_cumulative_perm(parent_bs, &perm, &shared_perm);
3186 bdrv_child_perm(parent_bs, child_bs, NULL, child_role, NULL,
3187 perm, shared_perm, &perm, &shared_perm);
3188
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003189 return bdrv_attach_child_common(child_bs, child_name, child_class,
3190 child_role, perm, shared_perm, parent_bs,
3191 tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003192}
3193
Alberto Garciab441dc72019-05-13 16:46:18 +03003194/*
3195 * This function steals the reference to child_bs from the caller.
3196 * That reference is later dropped by bdrv_root_unref_child().
3197 *
3198 * On failure NULL is returned, errp is set and the reference to
3199 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003200 *
3201 * The caller must hold the AioContext lock @child_bs, but not that of @ctx
3202 * (unless @child_bs is already in @ctx).
Alberto Garciab441dc72019-05-13 16:46:18 +03003203 */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003204BdrvChild *bdrv_root_attach_child(BlockDriverState *child_bs,
3205 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003206 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003207 BdrvChildRole child_role,
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003208 uint64_t perm, uint64_t shared_perm,
3209 void *opaque, Error **errp)
Kevin Wolfdf581792015-06-15 11:53:47 +02003210{
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003211 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003212 BdrvChild *child;
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003213 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003214
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05003215 GLOBAL_STATE_CODE();
3216
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003217 child = bdrv_attach_child_common(child_bs, child_name, child_class,
Vladimir Sementsov-Ogievskiy548a74c2021-04-28 18:17:46 +03003218 child_role, perm, shared_perm, opaque,
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003219 tran, errp);
3220 if (!child) {
3221 ret = -EINVAL;
Kevin Wolfe878bb12021-05-03 13:05:54 +02003222 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003223 }
3224
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003225 ret = bdrv_refresh_perms(child_bs, tran, errp);
Kevin Wolfdf581792015-06-15 11:53:47 +02003226
Kevin Wolfe878bb12021-05-03 13:05:54 +02003227out:
3228 tran_finalize(tran, ret);
Vladimir Sementsov-Ogievskiyf8d2ad72021-06-01 10:52:13 +03003229
Kevin Wolf03b9eac2023-10-27 17:53:13 +02003230 bdrv_schedule_unref(child_bs);
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003231
3232 return ret < 0 ? NULL : child;
Kevin Wolfdf581792015-06-15 11:53:47 +02003233}
3234
Alberto Garciab441dc72019-05-13 16:46:18 +03003235/*
3236 * This function transfers the reference to child_bs from the caller
3237 * to parent_bs. That reference is later dropped by parent_bs on
3238 * bdrv_close() or if someone calls bdrv_unref_child().
3239 *
3240 * On failure NULL is returned, errp is set and the reference to
3241 * child_bs is also dropped.
Kevin Wolf132ada82019-04-24 17:41:46 +02003242 *
3243 * If @parent_bs and @child_bs are in different AioContexts, the caller must
3244 * hold the AioContext lock for @child_bs, but not for @parent_bs.
Alberto Garciab441dc72019-05-13 16:46:18 +03003245 */
Wen Congyang98292c62016-05-10 15:36:38 +08003246BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
3247 BlockDriverState *child_bs,
3248 const char *child_name,
Max Reitzbd86fb92020-05-13 13:05:13 +02003249 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003250 BdrvChildRole child_role,
Kevin Wolf8b2ff522016-12-20 22:21:17 +01003251 Error **errp)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003252{
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003253 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003254 BdrvChild *child;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003255 Transaction *tran = tran_new();
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003256
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003257 GLOBAL_STATE_CODE();
3258
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003259 child = bdrv_attach_child_noperm(parent_bs, child_bs, child_name,
3260 child_class, child_role, tran, errp);
3261 if (!child) {
3262 ret = -EINVAL;
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003263 goto out;
Kevin Wolfd5e6f432016-12-14 17:24:36 +01003264 }
3265
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003266 ret = bdrv_refresh_perms(parent_bs, tran, errp);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003267 if (ret < 0) {
3268 goto out;
3269 }
3270
3271out:
3272 tran_finalize(tran, ret);
3273
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003274 bdrv_schedule_unref(child_bs);
Vladimir Sementsov-Ogievskiyaa5a04c2021-04-28 18:17:47 +03003275
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003276 return ret < 0 ? NULL : child;
Kevin Wolff21d96d2016-03-08 13:47:46 +01003277}
3278
Max Reitz7b99a262019-06-12 16:07:11 +02003279/* Callers must ensure that child->frozen is false. */
Kevin Wolff21d96d2016-03-08 13:47:46 +01003280void bdrv_root_unref_child(BdrvChild *child)
Kevin Wolf33a60402015-06-15 13:51:04 +02003281{
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003282 BlockDriverState *child_bs = child->bs;
Kevin Wolf779020c2015-10-13 14:09:44 +02003283
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003284 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003285 bdrv_replace_child_noperm(child, NULL);
3286 bdrv_child_free(child);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003287
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003288 if (child_bs) {
3289 /*
3290 * Update permissions for old node. We're just taking a parent away, so
3291 * we're loosening restrictions. Errors of permission update are not
3292 * fatal in this case, ignore them.
3293 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003294 bdrv_refresh_perms(child_bs, NULL, NULL);
Vladimir Sementsov-Ogievskiy00eb93b2022-11-07 19:35:55 +03003295
3296 /*
3297 * When the parent requiring a non-default AioContext is removed, the
3298 * node moves back to the main AioContext
3299 */
3300 bdrv_try_change_aio_context(child_bs, qemu_get_aio_context(), NULL,
3301 NULL);
3302 }
3303
Kevin Wolfede01e42023-09-11 11:46:18 +02003304 bdrv_schedule_unref(child_bs);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003305}
3306
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003307typedef struct BdrvSetInheritsFrom {
3308 BlockDriverState *bs;
3309 BlockDriverState *old_inherits_from;
3310} BdrvSetInheritsFrom;
3311
3312static void bdrv_set_inherits_from_abort(void *opaque)
3313{
3314 BdrvSetInheritsFrom *s = opaque;
3315
3316 s->bs->inherits_from = s->old_inherits_from;
3317}
3318
3319static TransactionActionDrv bdrv_set_inherits_from_drv = {
3320 .abort = bdrv_set_inherits_from_abort,
3321 .clean = g_free,
3322};
3323
3324/* @tran is allowed to be NULL. In this case no rollback is possible */
3325static void bdrv_set_inherits_from(BlockDriverState *bs,
3326 BlockDriverState *new_inherits_from,
3327 Transaction *tran)
3328{
3329 if (tran) {
3330 BdrvSetInheritsFrom *s = g_new(BdrvSetInheritsFrom, 1);
3331
3332 *s = (BdrvSetInheritsFrom) {
3333 .bs = bs,
3334 .old_inherits_from = bs->inherits_from,
3335 };
3336
3337 tran_add(tran, &bdrv_set_inherits_from_drv, s);
3338 }
3339
3340 bs->inherits_from = new_inherits_from;
3341}
3342
Max Reitz3cf746b2019-07-03 19:28:07 +02003343/**
3344 * Clear all inherits_from pointers from children and grandchildren of
3345 * @root that point to @root, where necessary.
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003346 * @tran is allowed to be NULL. In this case no rollback is possible
Max Reitz3cf746b2019-07-03 19:28:07 +02003347 */
Kevin Wolf32a8aba2023-09-11 11:46:19 +02003348static void GRAPH_WRLOCK
3349bdrv_unset_inherits_from(BlockDriverState *root, BdrvChild *child,
3350 Transaction *tran)
Kevin Wolff21d96d2016-03-08 13:47:46 +01003351{
Max Reitz3cf746b2019-07-03 19:28:07 +02003352 BdrvChild *c;
Kevin Wolf33a60402015-06-15 13:51:04 +02003353
Max Reitz3cf746b2019-07-03 19:28:07 +02003354 if (child->bs->inherits_from == root) {
3355 /*
3356 * Remove inherits_from only when the last reference between root and
3357 * child->bs goes away.
3358 */
3359 QLIST_FOREACH(c, &root->children, next) {
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003360 if (c != child && c->bs == child->bs) {
3361 break;
3362 }
3363 }
3364 if (c == NULL) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003365 bdrv_set_inherits_from(child->bs, NULL, tran);
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01003366 }
Kevin Wolf33a60402015-06-15 13:51:04 +02003367 }
3368
Max Reitz3cf746b2019-07-03 19:28:07 +02003369 QLIST_FOREACH(c, &child->bs->children, next) {
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003370 bdrv_unset_inherits_from(root, c, tran);
Max Reitz3cf746b2019-07-03 19:28:07 +02003371 }
3372}
3373
Max Reitz7b99a262019-06-12 16:07:11 +02003374/* Callers must ensure that child->frozen is false. */
Max Reitz3cf746b2019-07-03 19:28:07 +02003375void bdrv_unref_child(BlockDriverState *parent, BdrvChild *child)
3376{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003377 GLOBAL_STATE_CODE();
Max Reitz3cf746b2019-07-03 19:28:07 +02003378 if (child == NULL) {
3379 return;
3380 }
3381
Vladimir Sementsov-Ogievskiy332b3a12021-04-28 18:17:54 +03003382 bdrv_unset_inherits_from(parent, child, NULL);
Kevin Wolff21d96d2016-03-08 13:47:46 +01003383 bdrv_root_unref_child(child);
Kevin Wolf33a60402015-06-15 13:51:04 +02003384}
3385
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003386
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003387static void GRAPH_RDLOCK
3388bdrv_parent_cb_change_media(BlockDriverState *bs, bool load)
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003389{
3390 BdrvChild *c;
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003391 GLOBAL_STATE_CODE();
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003392 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02003393 if (c->klass->change_media) {
3394 c->klass->change_media(c, load);
Kevin Wolf5c8cab42016-02-24 15:13:35 +01003395 }
3396 }
3397}
3398
Alberto Garcia0065c452018-10-31 18:16:37 +02003399/* Return true if you can reach parent going through child->inherits_from
3400 * recursively. If parent or child are NULL, return false */
3401static bool bdrv_inherits_from_recursive(BlockDriverState *child,
3402 BlockDriverState *parent)
3403{
3404 while (child && child != parent) {
3405 child = child->inherits_from;
3406 }
3407
3408 return child != NULL;
3409}
3410
Kevin Wolf5db15a52015-09-14 15:33:33 +02003411/*
Max Reitz25191e52020-05-13 13:05:33 +02003412 * Return the BdrvChildRole for @bs's backing child. bs->backing is
3413 * mostly used for COW backing children (role = COW), but also for
3414 * filtered children (role = FILTERED | PRIMARY).
3415 */
3416static BdrvChildRole bdrv_backing_role(BlockDriverState *bs)
3417{
3418 if (bs->drv && bs->drv->is_filter) {
3419 return BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3420 } else {
3421 return BDRV_CHILD_COW;
3422 }
3423}
3424
3425/*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003426 * Sets the bs->backing or bs->file link of a BDS. A new reference is created;
3427 * callers which don't need their own reference any more must call bdrv_unref().
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003428 *
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003429 * If the respective child is already present (i.e. we're detaching a node),
3430 * that child node must be drained.
3431 *
Vladimir Sementsov-Ogievskiy7ec390d2021-06-10 14:25:45 +03003432 * Function doesn't update permissions, caller is responsible for this.
Kevin Wolf4b408662023-06-05 10:57:06 +02003433 *
3434 * The caller must hold the AioContext lock for @child_bs. Both @parent_bs and
3435 * @child_bs can move to a different AioContext in this function. Callers must
3436 * make sure that their AioContext locking is still correct after this.
Kevin Wolf5661a002023-09-11 11:46:10 +02003437 *
3438 * After calling this function, the transaction @tran may only be completed
3439 * while holding a writer lock for the graph.
Kevin Wolf5db15a52015-09-14 15:33:33 +02003440 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003441static int GRAPH_WRLOCK
3442bdrv_set_file_or_backing_noperm(BlockDriverState *parent_bs,
3443 BlockDriverState *child_bs,
3444 bool is_backing,
3445 Transaction *tran, Error **errp)
Fam Zheng8d24cce2014-05-23 21:29:45 +08003446{
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003447 bool update_inherits_from =
3448 bdrv_inherits_from_recursive(child_bs, parent_bs);
3449 BdrvChild *child = is_backing ? parent_bs->backing : parent_bs->file;
3450 BdrvChildRole role;
Alberto Garcia0065c452018-10-31 18:16:37 +02003451
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003452 GLOBAL_STATE_CODE();
3453
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003454 if (!parent_bs->drv) {
3455 /*
3456 * Node without drv is an object without a class :/. TODO: finally fix
3457 * qcow2 driver to never clear bs->drv and implement format corruption
3458 * handling in other way.
3459 */
3460 error_setg(errp, "Node corrupted");
3461 return -EINVAL;
3462 }
3463
3464 if (child && child->frozen) {
3465 error_setg(errp, "Cannot change frozen '%s' link from '%s' to '%s'",
3466 child->name, parent_bs->node_name, child->bs->node_name);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003467 return -EPERM;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02003468 }
3469
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03003470 if (is_backing && !parent_bs->drv->is_filter &&
3471 !parent_bs->drv->supports_backing)
3472 {
3473 error_setg(errp, "Driver '%s' of node '%s' does not support backing "
3474 "files", parent_bs->drv->format_name, parent_bs->node_name);
3475 return -EINVAL;
3476 }
3477
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003478 if (parent_bs->drv->is_filter) {
3479 role = BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY;
3480 } else if (is_backing) {
3481 role = BDRV_CHILD_COW;
3482 } else {
3483 /*
3484 * We only can use same role as it is in existing child. We don't have
3485 * infrastructure to determine role of file child in generic way
3486 */
3487 if (!child) {
3488 error_setg(errp, "Cannot set file child to format node without "
3489 "file child");
3490 return -EINVAL;
3491 }
3492 role = child->role;
Fam Zheng826b6ca2014-05-23 21:29:47 +08003493 }
3494
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003495 if (child) {
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003496 assert(child->bs->quiesce_counter);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003497 bdrv_unset_inherits_from(parent_bs, child, tran);
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03003498 bdrv_remove_child(child, tran);
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003499 }
3500
3501 if (!child_bs) {
Fam Zheng8d24cce2014-05-23 21:29:45 +08003502 goto out;
3503 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003504
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003505 child = bdrv_attach_child_noperm(parent_bs, child_bs,
3506 is_backing ? "backing" : "file",
3507 &child_of_bds, role,
3508 tran, errp);
3509 if (!child) {
3510 return -EINVAL;
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003511 }
3512
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003513
3514 /*
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003515 * If inherits_from pointed recursively to bs then let's update it to
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003516 * point directly to bs (else it will become NULL).
3517 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003518 if (update_inherits_from) {
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003519 bdrv_set_inherits_from(child_bs, parent_bs, tran);
Alberto Garcia0065c452018-10-31 18:16:37 +02003520 }
Fam Zheng826b6ca2014-05-23 21:29:47 +08003521
Fam Zheng8d24cce2014-05-23 21:29:45 +08003522out:
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003523 bdrv_refresh_limits(parent_bs, tran, NULL);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003524
3525 return 0;
3526}
3527
Kevin Wolf4b408662023-06-05 10:57:06 +02003528/*
3529 * The caller must hold the AioContext lock for @backing_hd. Both @bs and
3530 * @backing_hd can move to a different AioContext in this function. Callers must
3531 * make sure that their AioContext locking is still correct after this.
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003532 *
3533 * If a backing child is already present (i.e. we're detaching a node), that
3534 * child node must be drained.
Kevin Wolf5661a002023-09-11 11:46:10 +02003535 *
3536 * After calling this function, the transaction @tran may only be completed
3537 * while holding a writer lock for the graph.
Kevin Wolf4b408662023-06-05 10:57:06 +02003538 */
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003539static int GRAPH_WRLOCK
3540bdrv_set_backing_noperm(BlockDriverState *bs,
3541 BlockDriverState *backing_hd,
3542 Transaction *tran, Error **errp)
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003543{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003544 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiye9238272021-06-10 15:05:30 +03003545 return bdrv_set_file_or_backing_noperm(bs, backing_hd, true, tran, errp);
3546}
3547
Kevin Wolf92140b92022-11-18 18:41:04 +01003548int bdrv_set_backing_hd_drained(BlockDriverState *bs,
3549 BlockDriverState *backing_hd,
3550 Error **errp)
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003551{
3552 int ret;
3553 Transaction *tran = tran_new();
3554
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003555 GLOBAL_STATE_CODE();
Kevin Wolf92140b92022-11-18 18:41:04 +01003556 assert(bs->quiesce_counter > 0);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003557 if (bs->backing) {
3558 assert(bs->backing->bs->quiesce_counter > 0);
3559 }
3560 bdrv_graph_wrlock(backing_hd);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003561
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003562 ret = bdrv_set_backing_noperm(bs, backing_hd, tran, errp);
3563 if (ret < 0) {
3564 goto out;
3565 }
3566
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03003567 ret = bdrv_refresh_perms(bs, tran, errp);
Vladimir Sementsov-Ogievskiy160333e2021-04-28 18:17:56 +03003568out:
3569 tran_finalize(tran, ret);
Kevin Wolf5661a002023-09-11 11:46:10 +02003570 bdrv_graph_wrunlock();
Kevin Wolf92140b92022-11-18 18:41:04 +01003571 return ret;
3572}
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003573
Kevin Wolf92140b92022-11-18 18:41:04 +01003574int bdrv_set_backing_hd(BlockDriverState *bs, BlockDriverState *backing_hd,
3575 Error **errp)
3576{
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003577 BlockDriverState *drain_bs = bs->backing ? bs->backing->bs : bs;
Kevin Wolf92140b92022-11-18 18:41:04 +01003578 int ret;
3579 GLOBAL_STATE_CODE();
3580
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003581 bdrv_ref(drain_bs);
3582 bdrv_drained_begin(drain_bs);
Kevin Wolf92140b92022-11-18 18:41:04 +01003583 ret = bdrv_set_backing_hd_drained(bs, backing_hd, errp);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02003584 bdrv_drained_end(drain_bs);
3585 bdrv_unref(drain_bs);
Vladimir Sementsov-Ogievskiyc0829cb2022-01-24 18:37:41 +01003586
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03003587 return ret;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003588}
3589
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003590/*
3591 * Opens the backing file for a BlockDriverState if not yet open
3592 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003593 * bdref_key specifies the key for the image's BlockdevRef in the options QDict.
3594 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3595 * itself, all options starting with "${bdref_key}." are considered part of the
3596 * BlockdevRef.
3597 *
Kevin Wolf2626d272023-05-25 14:47:06 +02003598 * The caller must hold the main AioContext lock.
3599 *
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003600 * TODO Can this be unified with bdrv_open_image()?
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003601 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003602int bdrv_open_backing_file(BlockDriverState *bs, QDict *parent_options,
3603 const char *bdref_key, Error **errp)
Paolo Bonzini9156df12012-10-18 16:49:17 +02003604{
Max Reitz6b6833c2019-02-01 20:29:15 +01003605 char *backing_filename = NULL;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003606 char *bdref_key_dot;
3607 const char *reference = NULL;
Kevin Wolf317fc442014-04-25 13:27:34 +02003608 int ret = 0;
Max Reitz998c2012019-02-01 20:29:08 +01003609 bool implicit_backing = false;
Fam Zheng8d24cce2014-05-23 21:29:45 +08003610 BlockDriverState *backing_hd;
Kevin Wolf8aa04542023-06-05 10:57:08 +02003611 AioContext *backing_hd_ctx;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003612 QDict *options;
3613 QDict *tmp_parent_options = NULL;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003614 Error *local_err = NULL;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003615
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003616 GLOBAL_STATE_CODE();
3617
Kevin Wolf760e0062015-06-17 14:55:21 +02003618 if (bs->backing != NULL) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003619 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003620 }
3621
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003622 /* NULL means an empty set of options */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003623 if (parent_options == NULL) {
3624 tmp_parent_options = qdict_new();
3625 parent_options = tmp_parent_options;
Kevin Wolf31ca6d02013-03-28 15:29:24 +01003626 }
3627
Paolo Bonzini9156df12012-10-18 16:49:17 +02003628 bs->open_flags &= ~BDRV_O_NO_BACKING;
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003629
3630 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3631 qdict_extract_subqdict(parent_options, &options, bdref_key_dot);
3632 g_free(bdref_key_dot);
3633
Markus Armbruster129c7d12017-03-30 19:43:12 +02003634 /*
3635 * Caution: while qdict_get_try_str() is fine, getting non-string
3636 * types would require more care. When @parent_options come from
3637 * -blockdev or blockdev_add, its members are typed according to
3638 * the QAPI schema, but when they come from -drive, they're all
3639 * QString.
3640 */
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003641 reference = qdict_get_try_str(parent_options, bdref_key);
3642 if (reference || qdict_haskey(options, "file.filename")) {
Max Reitz6b6833c2019-02-01 20:29:15 +01003643 /* keep backing_filename NULL */
Kevin Wolf1cb6f502013-04-12 20:27:07 +02003644 } else if (bs->backing_file[0] == '\0' && qdict_size(options) == 0) {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003645 qobject_unref(options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003646 goto free_exit;
Fam Zhengdbecebd2013-09-22 20:05:06 +08003647 } else {
Max Reitz998c2012019-02-01 20:29:08 +01003648 if (qdict_size(options) == 0) {
3649 /* If the user specifies options that do not modify the
3650 * backing file's behavior, we might still consider it the
3651 * implicit backing file. But it's easier this way, and
3652 * just specifying some of the backing BDS's options is
3653 * only possible with -drive anyway (otherwise the QAPI
3654 * schema forces the user to specify everything). */
3655 implicit_backing = !strcmp(bs->auto_backing_file, bs->backing_file);
3656 }
3657
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02003658 bdrv_graph_rdlock_main_loop();
Max Reitz6b6833c2019-02-01 20:29:15 +01003659 backing_filename = bdrv_get_full_backing_filename(bs, &local_err);
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02003660 bdrv_graph_rdunlock_main_loop();
3661
Max Reitz9f074292014-11-26 17:20:26 +01003662 if (local_err) {
3663 ret = -EINVAL;
3664 error_propagate(errp, local_err);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003665 qobject_unref(options);
Max Reitz9f074292014-11-26 17:20:26 +01003666 goto free_exit;
3667 }
Paolo Bonzini9156df12012-10-18 16:49:17 +02003668 }
3669
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003670 if (!bs->drv || !bs->drv->supports_backing) {
3671 ret = -EINVAL;
3672 error_setg(errp, "Driver doesn't support backing files");
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003673 qobject_unref(options);
Kevin Wolf8ee79e72014-06-04 15:09:35 +02003674 goto free_exit;
3675 }
3676
Peter Krempa6bff5972017-10-12 16:14:10 +02003677 if (!reference &&
3678 bs->backing_format[0] != '\0' && !qdict_haskey(options, "driver")) {
Eric Blake46f5ac22017-04-27 16:58:17 -05003679 qdict_put_str(options, "driver", bs->backing_format);
Paolo Bonzini9156df12012-10-18 16:49:17 +02003680 }
3681
Max Reitz6b6833c2019-02-01 20:29:15 +01003682 backing_hd = bdrv_open_inherit(backing_filename, reference, options, 0, bs,
Max Reitz25191e52020-05-13 13:05:33 +02003683 &child_of_bds, bdrv_backing_role(bs), errp);
Max Reitz5b363932016-05-17 16:41:31 +02003684 if (!backing_hd) {
Paolo Bonzini9156df12012-10-18 16:49:17 +02003685 bs->open_flags |= BDRV_O_NO_BACKING;
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003686 error_prepend(errp, "Could not open backing file: ");
Max Reitz5b363932016-05-17 16:41:31 +02003687 ret = -EINVAL;
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003688 goto free_exit;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003689 }
Kevin Wolfdf581792015-06-15 11:53:47 +02003690
Max Reitz998c2012019-02-01 20:29:08 +01003691 if (implicit_backing) {
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02003692 bdrv_graph_rdlock_main_loop();
Max Reitz998c2012019-02-01 20:29:08 +01003693 bdrv_refresh_filename(backing_hd);
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02003694 bdrv_graph_rdunlock_main_loop();
Max Reitz998c2012019-02-01 20:29:08 +01003695 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
3696 backing_hd->filename);
3697 }
3698
Kevin Wolf5db15a52015-09-14 15:33:33 +02003699 /* Hook up the backing file link; drop our reference, bs owns the
3700 * backing_hd reference now */
Kevin Wolf8aa04542023-06-05 10:57:08 +02003701 backing_hd_ctx = bdrv_get_aio_context(backing_hd);
3702 aio_context_acquire(backing_hd_ctx);
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003703 ret = bdrv_set_backing_hd(bs, backing_hd, errp);
Kevin Wolf5db15a52015-09-14 15:33:33 +02003704 bdrv_unref(backing_hd);
Kevin Wolf8aa04542023-06-05 10:57:08 +02003705 aio_context_release(backing_hd_ctx);
3706
Vladimir Sementsov-Ogievskiydc9c10a2021-02-02 15:49:47 +03003707 if (ret < 0) {
Kevin Wolf12fa4af2017-02-17 20:42:32 +01003708 goto free_exit;
3709 }
Peter Feinerd80ac652014-01-08 19:43:25 +00003710
Kevin Wolfd9b7b052015-01-16 18:23:41 +01003711 qdict_del(parent_options, bdref_key);
3712
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003713free_exit:
3714 g_free(backing_filename);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003715 qobject_unref(tmp_parent_options);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003716 return ret;
Paolo Bonzini9156df12012-10-18 16:49:17 +02003717}
3718
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003719static BlockDriverState *
3720bdrv_open_child_bs(const char *filename, QDict *options, const char *bdref_key,
Max Reitzbd86fb92020-05-13 13:05:13 +02003721 BlockDriverState *parent, const BdrvChildClass *child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003722 BdrvChildRole child_role, bool allow_none, Error **errp)
Max Reitzda557aa2013-12-20 19:28:11 +01003723{
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003724 BlockDriverState *bs = NULL;
Max Reitzda557aa2013-12-20 19:28:11 +01003725 QDict *image_options;
Max Reitzda557aa2013-12-20 19:28:11 +01003726 char *bdref_key_dot;
3727 const char *reference;
3728
Max Reitzbd86fb92020-05-13 13:05:13 +02003729 assert(child_class != NULL);
Max Reitzf67503e2014-02-18 18:33:05 +01003730
Max Reitzda557aa2013-12-20 19:28:11 +01003731 bdref_key_dot = g_strdup_printf("%s.", bdref_key);
3732 qdict_extract_subqdict(options, &image_options, bdref_key_dot);
3733 g_free(bdref_key_dot);
3734
Markus Armbruster129c7d12017-03-30 19:43:12 +02003735 /*
3736 * Caution: while qdict_get_try_str() is fine, getting non-string
3737 * types would require more care. When @options come from
3738 * -blockdev or blockdev_add, its members are typed according to
3739 * the QAPI schema, but when they come from -drive, they're all
3740 * QString.
3741 */
Max Reitzda557aa2013-12-20 19:28:11 +01003742 reference = qdict_get_try_str(options, bdref_key);
3743 if (!filename && !reference && !qdict_size(image_options)) {
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003744 if (!allow_none) {
Max Reitzda557aa2013-12-20 19:28:11 +01003745 error_setg(errp, "A block device must be specified for \"%s\"",
3746 bdref_key);
Max Reitzda557aa2013-12-20 19:28:11 +01003747 }
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003748 qobject_unref(image_options);
Max Reitzda557aa2013-12-20 19:28:11 +01003749 goto done;
3750 }
3751
Max Reitz5b363932016-05-17 16:41:31 +02003752 bs = bdrv_open_inherit(filename, reference, image_options, 0,
Max Reitz272c02e2020-05-13 13:05:17 +02003753 parent, child_class, child_role, errp);
Max Reitz5b363932016-05-17 16:41:31 +02003754 if (!bs) {
Kevin Wolfdf581792015-06-15 11:53:47 +02003755 goto done;
3756 }
3757
Max Reitzda557aa2013-12-20 19:28:11 +01003758done:
3759 qdict_del(options, bdref_key);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003760 return bs;
3761}
3762
3763/*
3764 * Opens a disk image whose options are given as BlockdevRef in another block
3765 * device's options.
3766 *
3767 * If allow_none is true, no image will be opened if filename is false and no
3768 * BlockdevRef is given. NULL will be returned, but errp remains unset.
3769 *
3770 * bdrev_key specifies the key for the image's BlockdevRef in the options QDict.
3771 * That QDict has to be flattened; therefore, if the BlockdevRef is a QDict
3772 * itself, all options starting with "${bdref_key}." are considered part of the
3773 * BlockdevRef.
3774 *
3775 * The BlockdevRef will be removed from the options QDict.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003776 *
Kevin Wolf8394c352023-06-05 10:57:04 +02003777 * The caller must hold the lock of the main AioContext and no other AioContext.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003778 * @parent can move to a different AioContext in this function. Callers must
3779 * make sure that their AioContext locking is still correct after this.
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003780 */
3781BdrvChild *bdrv_open_child(const char *filename,
3782 QDict *options, const char *bdref_key,
3783 BlockDriverState *parent,
Max Reitzbd86fb92020-05-13 13:05:13 +02003784 const BdrvChildClass *child_class,
Max Reitz258b7762020-05-13 13:05:15 +02003785 BdrvChildRole child_role,
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003786 bool allow_none, Error **errp)
3787{
3788 BlockDriverState *bs;
Kevin Wolf8394c352023-06-05 10:57:04 +02003789 BdrvChild *child;
3790 AioContext *ctx;
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003791
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003792 GLOBAL_STATE_CODE();
3793
Max Reitzbd86fb92020-05-13 13:05:13 +02003794 bs = bdrv_open_child_bs(filename, options, bdref_key, parent, child_class,
Max Reitz272c02e2020-05-13 13:05:17 +02003795 child_role, allow_none, errp);
Kevin Wolf2d6b86a2017-02-17 17:43:59 +01003796 if (bs == NULL) {
3797 return NULL;
3798 }
3799
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003800 bdrv_graph_wrlock(NULL);
Kevin Wolf8394c352023-06-05 10:57:04 +02003801 ctx = bdrv_get_aio_context(bs);
3802 aio_context_acquire(ctx);
3803 child = bdrv_attach_child(parent, bs, bdref_key, child_class, child_role,
3804 errp);
3805 aio_context_release(ctx);
Kevin Wolfafdaeb92023-09-11 11:46:11 +02003806 bdrv_graph_wrunlock();
Kevin Wolf8394c352023-06-05 10:57:04 +02003807
3808 return child;
Kevin Wolfb4b059f2015-06-15 13:24:19 +02003809}
3810
Max Reitzbd86fb92020-05-13 13:05:13 +02003811/*
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003812 * Wrapper on bdrv_open_child() for most popular case: open primary child of bs.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003813 *
Kevin Wolf8394c352023-06-05 10:57:04 +02003814 * The caller must hold the lock of the main AioContext and no other AioContext.
Kevin Wolfaa269ff2023-05-25 14:47:07 +02003815 * @parent can move to a different AioContext in this function. Callers must
3816 * make sure that their AioContext locking is still correct after this.
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003817 */
3818int bdrv_open_file_child(const char *filename,
3819 QDict *options, const char *bdref_key,
3820 BlockDriverState *parent, Error **errp)
3821{
3822 BdrvChildRole role;
3823
3824 /* commit_top and mirror_top don't use this function */
3825 assert(!parent->drv->filtered_child_is_backing);
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003826 role = parent->drv->is_filter ?
3827 (BDRV_CHILD_FILTERED | BDRV_CHILD_PRIMARY) : BDRV_CHILD_IMAGE;
3828
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003829 if (!bdrv_open_child(filename, options, bdref_key, parent,
3830 &child_of_bds, role, false, errp))
3831 {
3832 return -EINVAL;
3833 }
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003834
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03003835 return 0;
Vladimir Sementsov-Ogievskiy83930782022-07-26 23:11:21 +03003836}
3837
3838/*
Max Reitzbd86fb92020-05-13 13:05:13 +02003839 * TODO Future callers may need to specify parent/child_class in order for
3840 * option inheritance to work. Existing callers use it for the root node.
3841 */
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003842BlockDriverState *bdrv_open_blockdev_ref(BlockdevRef *ref, Error **errp)
3843{
3844 BlockDriverState *bs = NULL;
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003845 QObject *obj = NULL;
3846 QDict *qdict = NULL;
3847 const char *reference = NULL;
3848 Visitor *v = NULL;
3849
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05003850 GLOBAL_STATE_CODE();
3851
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003852 if (ref->type == QTYPE_QSTRING) {
3853 reference = ref->u.reference;
3854 } else {
3855 BlockdevOptions *options = &ref->u.definition;
3856 assert(ref->type == QTYPE_QDICT);
3857
3858 v = qobject_output_visitor_new(&obj);
Markus Armbruster1f584242020-04-24 10:43:35 +02003859 visit_type_BlockdevOptions(v, NULL, &options, &error_abort);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003860 visit_complete(v, &obj);
3861
Max Reitz7dc847e2018-02-24 16:40:29 +01003862 qdict = qobject_to(QDict, obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003863 qdict_flatten(qdict);
3864
3865 /* bdrv_open_inherit() defaults to the values in bdrv_flags (for
3866 * compatibility with other callers) rather than what we want as the
3867 * real defaults. Apply the defaults here instead. */
3868 qdict_set_default_str(qdict, BDRV_OPT_CACHE_DIRECT, "off");
3869 qdict_set_default_str(qdict, BDRV_OPT_CACHE_NO_FLUSH, "off");
3870 qdict_set_default_str(qdict, BDRV_OPT_READ_ONLY, "off");
Kevin Wolfe35bdc12018-10-05 18:57:40 +02003871 qdict_set_default_str(qdict, BDRV_OPT_AUTO_READ_ONLY, "off");
3872
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003873 }
3874
Max Reitz272c02e2020-05-13 13:05:17 +02003875 bs = bdrv_open_inherit(NULL, reference, qdict, 0, NULL, NULL, 0, errp);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003876 obj = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003877 qobject_unref(obj);
Kevin Wolfe1d74bc2018-01-10 15:52:33 +01003878 visit_free(v);
3879 return bs;
3880}
3881
Max Reitz66836182016-05-17 16:41:27 +02003882static BlockDriverState *bdrv_append_temp_snapshot(BlockDriverState *bs,
3883 int flags,
3884 QDict *snapshot_options,
3885 Error **errp)
Kevin Wolfb9988752014-04-03 12:09:34 +02003886{
Bin Meng69fbfff2022-10-10 12:04:31 +08003887 g_autofree char *tmp_filename = NULL;
Kevin Wolfb9988752014-04-03 12:09:34 +02003888 int64_t total_size;
Chunyan Liu83d05212014-06-05 17:20:51 +08003889 QemuOpts *opts = NULL;
Eric Blakeff6ed712017-04-27 16:58:18 -05003890 BlockDriverState *bs_snapshot = NULL;
Kevin Wolff665f012023-06-05 10:57:07 +02003891 AioContext *ctx = bdrv_get_aio_context(bs);
Kevin Wolfb9988752014-04-03 12:09:34 +02003892 int ret;
3893
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05003894 GLOBAL_STATE_CODE();
3895
Kevin Wolfb9988752014-04-03 12:09:34 +02003896 /* if snapshot, we create a temporary backing file and open it
3897 instead of opening 'filename' directly */
3898
3899 /* Get the required size from the image */
Kevin Wolff665f012023-06-05 10:57:07 +02003900 aio_context_acquire(ctx);
Kevin Wolff1877432014-04-04 17:07:19 +02003901 total_size = bdrv_getlength(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02003902 aio_context_release(ctx);
3903
Kevin Wolff1877432014-04-04 17:07:19 +02003904 if (total_size < 0) {
3905 error_setg_errno(errp, -total_size, "Could not get image size");
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003906 goto out;
Kevin Wolff1877432014-04-04 17:07:19 +02003907 }
Kevin Wolfb9988752014-04-03 12:09:34 +02003908
3909 /* Create the temporary image */
Bin Meng69fbfff2022-10-10 12:04:31 +08003910 tmp_filename = create_tmp_file(errp);
3911 if (!tmp_filename) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003912 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003913 }
3914
Max Reitzef810432014-12-02 18:32:42 +01003915 opts = qemu_opts_create(bdrv_qcow2.create_opts, NULL, 0,
Chunyan Liuc282e1f2014-06-05 17:21:11 +08003916 &error_abort);
Markus Armbruster39101f22015-02-12 16:46:36 +01003917 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, total_size, &error_abort);
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003918 ret = bdrv_create(&bdrv_qcow2, tmp_filename, opts, errp);
Chunyan Liu83d05212014-06-05 17:20:51 +08003919 qemu_opts_del(opts);
Kevin Wolfb9988752014-04-03 12:09:34 +02003920 if (ret < 0) {
Markus Armbrustere43bfd92015-12-18 16:35:15 +01003921 error_prepend(errp, "Could not create temporary overlay '%s': ",
3922 tmp_filename);
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003923 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003924 }
3925
Kevin Wolf73176be2016-03-07 13:02:15 +01003926 /* Prepare options QDict for the temporary file */
Eric Blake46f5ac22017-04-27 16:58:17 -05003927 qdict_put_str(snapshot_options, "file.driver", "file");
3928 qdict_put_str(snapshot_options, "file.filename", tmp_filename);
3929 qdict_put_str(snapshot_options, "driver", "qcow2");
Kevin Wolfb9988752014-04-03 12:09:34 +02003930
Max Reitz5b363932016-05-17 16:41:31 +02003931 bs_snapshot = bdrv_open(NULL, NULL, snapshot_options, flags, errp);
Kevin Wolf73176be2016-03-07 13:02:15 +01003932 snapshot_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02003933 if (!bs_snapshot) {
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003934 goto out;
Kevin Wolfb9988752014-04-03 12:09:34 +02003935 }
3936
Kevin Wolff665f012023-06-05 10:57:07 +02003937 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003938 ret = bdrv_append(bs_snapshot, bs, errp);
Kevin Wolff665f012023-06-05 10:57:07 +02003939 aio_context_release(ctx);
3940
Vladimir Sementsov-Ogievskiy934aee12021-02-02 15:49:44 +03003941 if (ret < 0) {
Eric Blakeff6ed712017-04-27 16:58:18 -05003942 bs_snapshot = NULL;
Kevin Wolfb2c28322017-02-20 12:46:42 +01003943 goto out;
3944 }
Benoît Canet1ba4b6a2014-04-22 17:05:27 +02003945
3946out:
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003947 qobject_unref(snapshot_options);
Eric Blakeff6ed712017-04-27 16:58:18 -05003948 return bs_snapshot;
Kevin Wolfb9988752014-04-03 12:09:34 +02003949}
3950
Max Reitzda557aa2013-12-20 19:28:11 +01003951/*
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003952 * Opens a disk image (raw, qcow2, vmdk, ...)
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01003953 *
3954 * options is a QDict of options to pass to the block drivers, or NULL for an
3955 * empty set of options. The reference to the QDict belongs to the block layer
3956 * after the call (even on failure), so if the caller intends to reuse the
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003957 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Max Reitzf67503e2014-02-18 18:33:05 +01003958 *
3959 * If *pbs is NULL, a new BDS will be created with a pointer to it stored there.
3960 * If it is not NULL, the referenced BDS will be reused.
Max Reitzddf56362014-02-18 18:33:06 +01003961 *
3962 * The reference parameter may be used to specify an existing block device which
3963 * should be opened. If specified, neither options nor a filename may be given,
3964 * nor can an existing BDS be reused (that is, *pbs has to be NULL).
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01003965 *
Kevin Wolfae400db2023-05-25 14:47:03 +02003966 * The caller must always hold the main AioContext lock.
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003967 */
Kevin Wolf32192302023-01-26 18:24:32 +01003968static BlockDriverState * no_coroutine_fn
3969bdrv_open_inherit(const char *filename, const char *reference, QDict *options,
3970 int flags, BlockDriverState *parent,
3971 const BdrvChildClass *child_class, BdrvChildRole child_role,
3972 Error **errp)
bellardea2384d2004-08-01 21:59:26 +00003973{
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02003974 int ret;
Kevin Wolf5696c6e2017-02-17 18:39:24 +01003975 BlockBackend *file = NULL;
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02003976 BlockDriverState *bs;
Max Reitzce343772015-08-26 19:47:50 +02003977 BlockDriver *drv = NULL;
Alberto Garcia2f624b82018-06-29 14:37:00 +03003978 BdrvChild *child;
Kevin Wolf74fe54f2013-07-09 11:09:02 +02003979 const char *drvname;
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02003980 const char *backing;
Max Reitz34b5d2c2013-09-05 14:45:29 +02003981 Error *local_err = NULL;
Kevin Wolf73176be2016-03-07 13:02:15 +01003982 QDict *snapshot_options = NULL;
Kevin Wolfb1e6fc02014-05-06 12:11:42 +02003983 int snapshot_flags = 0;
Kevin Wolff665f012023-06-05 10:57:07 +02003984 AioContext *ctx = qemu_get_aio_context();
bellard712e7872005-04-28 21:09:32 +00003985
Max Reitzbd86fb92020-05-13 13:05:13 +02003986 assert(!child_class || !flags);
3987 assert(!child_class == !parent);
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05003988 GLOBAL_STATE_CODE();
Kevin Wolf32192302023-01-26 18:24:32 +01003989 assert(!qemu_in_coroutine());
Max Reitzf67503e2014-02-18 18:33:05 +01003990
Kevin Wolf356f4ef2023-09-11 11:46:15 +02003991 /* TODO We'll eventually have to take a writer lock in this function */
3992 GRAPH_RDLOCK_GUARD_MAINLOOP();
3993
Max Reitzddf56362014-02-18 18:33:06 +01003994 if (reference) {
3995 bool options_non_empty = options ? qdict_size(options) : false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02003996 qobject_unref(options);
Max Reitzddf56362014-02-18 18:33:06 +01003997
Max Reitzddf56362014-02-18 18:33:06 +01003998 if (filename || options_non_empty) {
3999 error_setg(errp, "Cannot reference an existing block device with "
4000 "additional options or a new filename");
Max Reitz5b363932016-05-17 16:41:31 +02004001 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01004002 }
4003
4004 bs = bdrv_lookup_bs(reference, reference, errp);
4005 if (!bs) {
Max Reitz5b363932016-05-17 16:41:31 +02004006 return NULL;
Max Reitzddf56362014-02-18 18:33:06 +01004007 }
Kevin Wolf76b22322016-04-04 17:11:13 +02004008
Max Reitzddf56362014-02-18 18:33:06 +01004009 bdrv_ref(bs);
Max Reitz5b363932016-05-17 16:41:31 +02004010 return bs;
Max Reitzddf56362014-02-18 18:33:06 +01004011 }
4012
Max Reitz5b363932016-05-17 16:41:31 +02004013 bs = bdrv_new();
Max Reitzf67503e2014-02-18 18:33:05 +01004014
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004015 /* NULL means an empty set of options */
4016 if (options == NULL) {
4017 options = qdict_new();
4018 }
4019
Kevin Wolf145f5982015-05-08 16:15:03 +02004020 /* json: syntax counts as explicit options, as if in the QDict */
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004021 parse_json_protocol(options, &filename, &local_err);
4022 if (local_err) {
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004023 goto fail;
4024 }
4025
Kevin Wolf145f5982015-05-08 16:15:03 +02004026 bs->explicit_options = qdict_clone_shallow(options);
4027
Max Reitzbd86fb92020-05-13 13:05:13 +02004028 if (child_class) {
Max Reitz3cdc69d2020-05-13 13:05:18 +02004029 bool parent_is_format;
4030
4031 if (parent->drv) {
4032 parent_is_format = parent->drv->is_format;
4033 } else {
4034 /*
4035 * parent->drv is not set yet because this node is opened for
4036 * (potential) format probing. That means that @parent is going
4037 * to be a format node.
4038 */
4039 parent_is_format = true;
4040 }
4041
Kevin Wolfbddcec32015-04-09 18:47:50 +02004042 bs->inherits_from = parent;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004043 child_class->inherit_options(child_role, parent_is_format,
4044 &flags, options,
Max Reitzbd86fb92020-05-13 13:05:13 +02004045 parent->open_flags, parent->options);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004046 }
4047
Kevin Wolfde3b53f2015-10-29 15:24:41 +01004048 ret = bdrv_fill_options(&options, filename, &flags, &local_err);
Philippe Mathieu-Daudédfde4832020-04-22 15:31:44 +02004049 if (ret < 0) {
Kevin Wolf462f5bc2014-05-26 11:39:55 +02004050 goto fail;
4051 }
4052
Markus Armbruster129c7d12017-03-30 19:43:12 +02004053 /*
4054 * Set the BDRV_O_RDWR and BDRV_O_ALLOW_RDWR flags.
4055 * Caution: getting a boolean member of @options requires care.
4056 * When @options come from -blockdev or blockdev_add, members are
4057 * typed according to the QAPI schema, but when they come from
4058 * -drive, they're all QString.
4059 */
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004060 if (g_strcmp0(qdict_get_try_str(options, BDRV_OPT_READ_ONLY), "on") &&
4061 !qdict_get_try_bool(options, BDRV_OPT_READ_ONLY, false)) {
4062 flags |= (BDRV_O_RDWR | BDRV_O_ALLOW_RDWR);
4063 } else {
4064 flags &= ~BDRV_O_RDWR;
Alberto Garcia14499ea2016-09-15 17:53:00 +03004065 }
4066
4067 if (flags & BDRV_O_SNAPSHOT) {
4068 snapshot_options = qdict_new();
4069 bdrv_temp_snapshot_options(&snapshot_flags, snapshot_options,
4070 flags, options);
Alberto Garciaf87a0e22016-09-15 17:53:02 +03004071 /* Let bdrv_backing_options() override "read-only" */
4072 qdict_del(options, BDRV_OPT_READ_ONLY);
Max Reitz00ff7ff2020-05-13 13:05:21 +02004073 bdrv_inherited_options(BDRV_CHILD_COW, true,
4074 &flags, options, flags, options);
Alberto Garcia14499ea2016-09-15 17:53:00 +03004075 }
4076
Kevin Wolf62392eb2015-04-24 16:38:02 +02004077 bs->open_flags = flags;
4078 bs->options = options;
4079 options = qdict_clone_shallow(options);
4080
Kevin Wolf76c591b2014-06-04 14:19:44 +02004081 /* Find the right image format driver */
Markus Armbruster129c7d12017-03-30 19:43:12 +02004082 /* See cautionary note on accessing @options above */
Kevin Wolf76c591b2014-06-04 14:19:44 +02004083 drvname = qdict_get_try_str(options, "driver");
4084 if (drvname) {
4085 drv = bdrv_find_format(drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004086 if (!drv) {
4087 error_setg(errp, "Unknown driver: '%s'", drvname);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004088 goto fail;
4089 }
4090 }
4091
4092 assert(drvname || !(flags & BDRV_O_PROTOCOL));
Kevin Wolf76c591b2014-06-04 14:19:44 +02004093
Markus Armbruster129c7d12017-03-30 19:43:12 +02004094 /* See cautionary note on accessing @options above */
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004095 backing = qdict_get_try_str(options, "backing");
Max Reitze59a0cf2018-02-24 16:40:32 +01004096 if (qobject_to(QNull, qdict_get(options, "backing")) != NULL ||
4097 (backing && *backing == '\0'))
4098 {
Max Reitz4f7be282018-02-24 16:40:33 +01004099 if (backing) {
4100 warn_report("Use of \"backing\": \"\" is deprecated; "
4101 "use \"backing\": null instead");
4102 }
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004103 flags |= BDRV_O_NO_BACKING;
Kevin Wolfae0f57f2019-11-08 09:36:35 +01004104 qdict_del(bs->explicit_options, "backing");
4105 qdict_del(bs->options, "backing");
Alberto Garcia3e8c2e52015-10-26 14:27:15 +02004106 qdict_del(options, "backing");
4107 }
4108
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004109 /* Open image file without format layer. This BlockBackend is only used for
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004110 * probing, the block drivers will do their own bdrv_open_child() for the
4111 * same BDS, which is why we put the node name back into options. */
Kevin Wolff4788ad2014-06-03 16:44:19 +02004112 if ((flags & BDRV_O_PROTOCOL) == 0) {
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004113 BlockDriverState *file_bs;
4114
4115 file_bs = bdrv_open_child_bs(filename, options, "file", bs,
Max Reitz58944402020-05-13 13:05:37 +02004116 &child_of_bds, BDRV_CHILD_IMAGE,
4117 true, &local_err);
Kevin Wolf1fdd6932015-06-15 14:11:51 +02004118 if (local_err) {
Max Reitz5469a2a2014-02-18 18:33:10 +01004119 goto fail;
4120 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004121 if (file_bs != NULL) {
Kevin Wolfdacaa162017-11-20 14:59:13 +01004122 /* Not requesting BLK_PERM_CONSISTENT_READ because we're only
4123 * looking at the header to guess the image format. This works even
4124 * in cases where a guest would not see a consistent state. */
Kevin Wolff665f012023-06-05 10:57:07 +02004125 ctx = bdrv_get_aio_context(file_bs);
4126 aio_context_acquire(ctx);
4127 file = blk_new(ctx, 0, BLK_PERM_ALL);
Kevin Wolfd7086422017-01-13 19:02:32 +01004128 blk_insert_bs(file, file_bs, &local_err);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004129 bdrv_unref(file_bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004130 aio_context_release(ctx);
4131
Kevin Wolfd7086422017-01-13 19:02:32 +01004132 if (local_err) {
4133 goto fail;
4134 }
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004135
Eric Blake46f5ac22017-04-27 16:58:17 -05004136 qdict_put_str(options, "file", bdrv_get_node_name(file_bs));
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004137 }
Max Reitz5469a2a2014-02-18 18:33:10 +01004138 }
4139
Kevin Wolf76c591b2014-06-04 14:19:44 +02004140 /* Image format probing */
Kevin Wolf38f3ef52014-11-20 16:27:12 +01004141 bs->probed = !drv;
Kevin Wolf76c591b2014-06-04 14:19:44 +02004142 if (!drv && file) {
Kevin Wolfcf2ab8f2016-06-20 18:24:02 +02004143 ret = find_image_format(file, filename, &drv, &local_err);
Kevin Wolf17b005f2014-05-27 10:50:29 +02004144 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004145 goto fail;
Max Reitz2a05cbe2013-12-20 19:28:10 +01004146 }
Kevin Wolf62392eb2015-04-24 16:38:02 +02004147 /*
4148 * This option update would logically belong in bdrv_fill_options(),
4149 * but we first need to open bs->file for the probing to work, while
4150 * opening bs->file already requires the (mostly) final set of options
4151 * so that cache mode etc. can be inherited.
4152 *
4153 * Adding the driver later is somewhat ugly, but it's not an option
4154 * that would ever be inherited, so it's correct. We just need to make
4155 * sure to update both bs->options (which has the full effective
4156 * options for bs) and options (which has file.* already removed).
4157 */
Eric Blake46f5ac22017-04-27 16:58:17 -05004158 qdict_put_str(bs->options, "driver", drv->format_name);
4159 qdict_put_str(options, "driver", drv->format_name);
Kevin Wolf76c591b2014-06-04 14:19:44 +02004160 } else if (!drv) {
Kevin Wolf17b005f2014-05-27 10:50:29 +02004161 error_setg(errp, "Must specify either driver or file");
Kevin Wolf8bfea152014-04-11 19:16:36 +02004162 goto fail;
Kevin Wolff500a6d2012-11-12 17:35:27 +01004163 }
4164
Max Reitz53a29512015-03-19 14:53:16 -04004165 /* BDRV_O_PROTOCOL must be set iff a protocol BDS is about to be created */
4166 assert(!!(flags & BDRV_O_PROTOCOL) == !!drv->bdrv_file_open);
4167 /* file must be NULL if a protocol BDS is about to be created
4168 * (the inverse results in an error message from bdrv_open_common()) */
4169 assert(!(flags & BDRV_O_PROTOCOL) || !file);
4170
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004171 /* Open the image */
Kevin Wolf82dc8b42016-01-11 19:07:50 +01004172 ret = bdrv_open_common(bs, file, options, &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004173 if (ret < 0) {
Kevin Wolf8bfea152014-04-11 19:16:36 +02004174 goto fail;
Christoph Hellwig69873072010-01-20 18:13:25 +01004175 }
4176
Kevin Wolff665f012023-06-05 10:57:07 +02004177 /* The AioContext could have changed during bdrv_open_common() */
4178 ctx = bdrv_get_aio_context(bs);
4179
Kevin Wolf4e4bf5c2016-12-16 18:52:37 +01004180 if (file) {
Kevin Wolff665f012023-06-05 10:57:07 +02004181 aio_context_acquire(ctx);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004182 blk_unref(file);
Kevin Wolff665f012023-06-05 10:57:07 +02004183 aio_context_release(ctx);
Kevin Wolff500a6d2012-11-12 17:35:27 +01004184 file = NULL;
4185 }
4186
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004187 /* If there is a backing file, use it */
Paolo Bonzini9156df12012-10-18 16:49:17 +02004188 if ((flags & BDRV_O_NO_BACKING) == 0) {
Kevin Wolfd9b7b052015-01-16 18:23:41 +01004189 ret = bdrv_open_backing_file(bs, options, "backing", &local_err);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004190 if (ret < 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004191 goto close_and_fail;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004192 }
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004193 }
4194
Alberto Garcia50196d72018-09-06 12:37:03 +03004195 /* Remove all children options and references
4196 * from bs->options and bs->explicit_options */
Alberto Garcia2f624b82018-06-29 14:37:00 +03004197 QLIST_FOREACH(child, &bs->children, next) {
4198 char *child_key_dot;
4199 child_key_dot = g_strdup_printf("%s.", child->name);
4200 qdict_extract_subqdict(bs->explicit_options, NULL, child_key_dot);
4201 qdict_extract_subqdict(bs->options, NULL, child_key_dot);
Alberto Garcia50196d72018-09-06 12:37:03 +03004202 qdict_del(bs->explicit_options, child->name);
4203 qdict_del(bs->options, child->name);
Alberto Garcia2f624b82018-06-29 14:37:00 +03004204 g_free(child_key_dot);
4205 }
4206
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004207 /* Check if any unknown options were used */
Paolo Bonzini7ad27572017-01-04 15:59:14 +01004208 if (qdict_size(options) != 0) {
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004209 const QDictEntry *entry = qdict_first(options);
Max Reitz5acd9d82014-02-18 18:33:11 +01004210 if (flags & BDRV_O_PROTOCOL) {
4211 error_setg(errp, "Block protocol '%s' doesn't support the option "
4212 "'%s'", drv->format_name, entry->key);
4213 } else {
Max Reitzd0e46a52016-03-16 19:54:34 +01004214 error_setg(errp,
4215 "Block format '%s' does not support the option '%s'",
4216 drv->format_name, entry->key);
Max Reitz5acd9d82014-02-18 18:33:11 +01004217 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004218
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004219 goto close_and_fail;
4220 }
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004221
Daniel P. Berrangec01c2142017-06-23 17:24:16 +01004222 bdrv_parent_cb_change_media(bs, true);
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004223
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004224 qobject_unref(options);
Alberto Garcia8961be32018-09-06 17:25:41 +03004225 options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004226
4227 /* For snapshot=on, create a temporary qcow2 overlay. bs points to the
4228 * temporary snapshot afterwards. */
4229 if (snapshot_flags) {
Max Reitz66836182016-05-17 16:41:27 +02004230 BlockDriverState *snapshot_bs;
4231 snapshot_bs = bdrv_append_temp_snapshot(bs, snapshot_flags,
4232 snapshot_options, &local_err);
Kevin Wolf73176be2016-03-07 13:02:15 +01004233 snapshot_options = NULL;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02004234 if (local_err) {
4235 goto close_and_fail;
4236 }
Max Reitz5b363932016-05-17 16:41:31 +02004237 /* We are not going to return bs but the overlay on top of it
4238 * (snapshot_bs); thus, we have to drop the strong reference to bs
4239 * (which we obtained by calling bdrv_new()). bs will not be deleted,
4240 * though, because the overlay still has a reference to it. */
Kevin Wolff665f012023-06-05 10:57:07 +02004241 aio_context_acquire(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004242 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004243 aio_context_release(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004244 bs = snapshot_bs;
Max Reitz66836182016-05-17 16:41:27 +02004245 }
4246
Max Reitz5b363932016-05-17 16:41:31 +02004247 return bs;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004248
Kevin Wolf8bfea152014-04-11 19:16:36 +02004249fail:
Kevin Wolff665f012023-06-05 10:57:07 +02004250 aio_context_acquire(ctx);
Kevin Wolf5696c6e2017-02-17 18:39:24 +01004251 blk_unref(file);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004252 qobject_unref(snapshot_options);
4253 qobject_unref(bs->explicit_options);
4254 qobject_unref(bs->options);
4255 qobject_unref(options);
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004256 bs->options = NULL;
Manos Pitsidianakis998cbd62017-07-14 17:35:47 +03004257 bs->explicit_options = NULL;
Max Reitz5b363932016-05-17 16:41:31 +02004258 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004259 aio_context_release(ctx);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004260 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004261 return NULL;
Kevin Wolfde9c0ce2013-03-15 10:35:02 +01004262
Kevin Wolfb6ad4912013-03-15 10:35:04 +01004263close_and_fail:
Kevin Wolff665f012023-06-05 10:57:07 +02004264 aio_context_acquire(ctx);
Max Reitz5b363932016-05-17 16:41:31 +02004265 bdrv_unref(bs);
Kevin Wolff665f012023-06-05 10:57:07 +02004266 aio_context_release(ctx);
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004267 qobject_unref(snapshot_options);
4268 qobject_unref(options);
Eduardo Habkost621ff942016-06-13 18:57:56 -03004269 error_propagate(errp, local_err);
Max Reitz5b363932016-05-17 16:41:31 +02004270 return NULL;
Kevin Wolfb6ce07a2010-04-12 16:37:13 +02004271}
4272
Kevin Wolfae400db2023-05-25 14:47:03 +02004273/* The caller must always hold the main AioContext lock. */
Max Reitz5b363932016-05-17 16:41:31 +02004274BlockDriverState *bdrv_open(const char *filename, const char *reference,
4275 QDict *options, int flags, Error **errp)
Kevin Wolff3930ed2015-04-08 13:43:47 +02004276{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004277 GLOBAL_STATE_CODE();
4278
Max Reitz5b363932016-05-17 16:41:31 +02004279 return bdrv_open_inherit(filename, reference, options, flags, NULL,
Max Reitz272c02e2020-05-13 13:05:17 +02004280 NULL, 0, errp);
Kevin Wolff3930ed2015-04-08 13:43:47 +02004281}
4282
Alberto Garciafaf116b2019-03-12 18:48:49 +02004283/* Return true if the NULL-terminated @list contains @str */
4284static bool is_str_in_list(const char *str, const char *const *list)
4285{
4286 if (str && list) {
4287 int i;
4288 for (i = 0; list[i] != NULL; i++) {
4289 if (!strcmp(str, list[i])) {
4290 return true;
4291 }
4292 }
4293 }
4294 return false;
4295}
4296
4297/*
4298 * Check that every option set in @bs->options is also set in
4299 * @new_opts.
4300 *
4301 * Options listed in the common_options list and in
4302 * @bs->drv->mutable_opts are skipped.
4303 *
4304 * Return 0 on success, otherwise return -EINVAL and set @errp.
4305 */
4306static int bdrv_reset_options_allowed(BlockDriverState *bs,
4307 const QDict *new_opts, Error **errp)
4308{
4309 const QDictEntry *e;
4310 /* These options are common to all block drivers and are handled
4311 * in bdrv_reopen_prepare() so they can be left out of @new_opts */
4312 const char *const common_options[] = {
4313 "node-name", "discard", "cache.direct", "cache.no-flush",
4314 "read-only", "auto-read-only", "detect-zeroes", NULL
4315 };
4316
4317 for (e = qdict_first(bs->options); e; e = qdict_next(bs->options, e)) {
4318 if (!qdict_haskey(new_opts, e->key) &&
4319 !is_str_in_list(e->key, common_options) &&
4320 !is_str_in_list(e->key, bs->drv->mutable_opts)) {
4321 error_setg(errp, "Option '%s' cannot be reset "
4322 "to its default value", e->key);
4323 return -EINVAL;
4324 }
4325 }
4326
4327 return 0;
4328}
4329
Jeff Codye971aa12012-09-20 15:13:19 -04004330/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004331 * Returns true if @child can be reached recursively from @bs
4332 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004333static bool GRAPH_RDLOCK
4334bdrv_recurse_has_child(BlockDriverState *bs, BlockDriverState *child)
Alberto Garciacb828c32019-03-12 18:48:47 +02004335{
4336 BdrvChild *c;
4337
4338 if (bs == child) {
4339 return true;
4340 }
4341
4342 QLIST_FOREACH(c, &bs->children, next) {
4343 if (bdrv_recurse_has_child(c->bs, child)) {
4344 return true;
4345 }
4346 }
4347
4348 return false;
4349}
4350
4351/*
Jeff Codye971aa12012-09-20 15:13:19 -04004352 * Adds a BlockDriverState to a simple queue for an atomic, transactional
4353 * reopen of multiple devices.
4354 *
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004355 * bs_queue can either be an existing BlockReopenQueue that has had QTAILQ_INIT
Jeff Codye971aa12012-09-20 15:13:19 -04004356 * already performed, or alternatively may be NULL a new BlockReopenQueue will
4357 * be created and initialized. This newly created BlockReopenQueue should be
4358 * passed back in for subsequent calls that are intended to be of the same
4359 * atomic 'set'.
4360 *
4361 * bs is the BlockDriverState to add to the reopen queue.
4362 *
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004363 * options contains the changed options for the associated bs
4364 * (the BlockReopenQueue takes ownership)
4365 *
Jeff Codye971aa12012-09-20 15:13:19 -04004366 * flags contains the open flags for the associated bs
4367 *
4368 * returns a pointer to bs_queue, which is either the newly allocated
4369 * bs_queue, or the existing bs_queue being used.
4370 *
Kevin Wolfd22933a2022-11-18 18:41:02 +01004371 * bs is drained here and undrained by bdrv_reopen_queue_free().
Kevin Wolf2e117862022-11-18 18:41:01 +01004372 *
4373 * To be called with bs->aio_context locked.
Jeff Codye971aa12012-09-20 15:13:19 -04004374 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004375static BlockReopenQueue * GRAPH_RDLOCK
4376bdrv_reopen_queue_child(BlockReopenQueue *bs_queue, BlockDriverState *bs,
4377 QDict *options, const BdrvChildClass *klass,
4378 BdrvChildRole role, bool parent_is_format,
4379 QDict *parent_options, int parent_flags,
4380 bool keep_old_opts)
Jeff Codye971aa12012-09-20 15:13:19 -04004381{
4382 assert(bs != NULL);
4383
4384 BlockReopenQueueEntry *bs_entry;
Kevin Wolf67251a32015-04-09 18:54:04 +02004385 BdrvChild *child;
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004386 QDict *old_options, *explicit_options, *options_copy;
4387 int flags;
4388 QemuOpts *opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004389
Emanuele Giuseppe Espositof0c28322022-03-03 10:16:13 -05004390 GLOBAL_STATE_CODE();
Kevin Wolf1a63a902017-12-06 20:24:44 +01004391
Kevin Wolfce433d22023-09-29 16:51:43 +02004392 /*
4393 * Strictly speaking, draining is illegal under GRAPH_RDLOCK. We know that
4394 * we've been called with bdrv_graph_rdlock_main_loop(), though, so it's ok
4395 * in practice.
4396 */
Kevin Wolfd22933a2022-11-18 18:41:02 +01004397 bdrv_drained_begin(bs);
4398
Jeff Codye971aa12012-09-20 15:13:19 -04004399 if (bs_queue == NULL) {
4400 bs_queue = g_new0(BlockReopenQueue, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004401 QTAILQ_INIT(bs_queue);
Jeff Codye971aa12012-09-20 15:13:19 -04004402 }
4403
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004404 if (!options) {
4405 options = qdict_new();
4406 }
4407
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004408 /* Check if this BlockDriverState is already in the queue */
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004409 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004410 if (bs == bs_entry->state.bs) {
4411 break;
4412 }
4413 }
4414
Kevin Wolf28518102015-05-08 17:07:31 +02004415 /*
4416 * Precedence of options:
4417 * 1. Explicitly passed in options (highest)
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004418 * 2. Retained from explicitly set options of bs
4419 * 3. Inherited from parent node
4420 * 4. Retained from effective options of bs
Kevin Wolf28518102015-05-08 17:07:31 +02004421 */
4422
Kevin Wolf145f5982015-05-08 16:15:03 +02004423 /* Old explicitly set values (don't overwrite by inherited value) */
Alberto Garcia077e8e22019-03-12 18:48:44 +02004424 if (bs_entry || keep_old_opts) {
4425 old_options = qdict_clone_shallow(bs_entry ?
4426 bs_entry->state.explicit_options :
4427 bs->explicit_options);
4428 bdrv_join_options(bs, options, old_options);
4429 qobject_unref(old_options);
Alberto Garcia5b7ba052016-09-15 17:53:03 +03004430 }
Kevin Wolf145f5982015-05-08 16:15:03 +02004431
4432 explicit_options = qdict_clone_shallow(options);
4433
Kevin Wolf28518102015-05-08 17:07:31 +02004434 /* Inherit from parent node */
4435 if (parent_options) {
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004436 flags = 0;
Max Reitz3cdc69d2020-05-13 13:05:18 +02004437 klass->inherit_options(role, parent_is_format, &flags, options,
Max Reitz272c02e2020-05-13 13:05:17 +02004438 parent_flags, parent_options);
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004439 } else {
4440 flags = bdrv_get_flags(bs);
Kevin Wolf28518102015-05-08 17:07:31 +02004441 }
4442
Alberto Garcia077e8e22019-03-12 18:48:44 +02004443 if (keep_old_opts) {
4444 /* Old values are used for options that aren't set yet */
4445 old_options = qdict_clone_shallow(bs->options);
4446 bdrv_join_options(bs, options, old_options);
4447 qobject_unref(old_options);
4448 }
Kevin Wolf4d2cb092015-04-10 17:50:50 +02004449
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004450 /* We have the final set of options so let's update the flags */
4451 options_copy = qdict_clone_shallow(options);
4452 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
4453 qemu_opts_absorb_qdict(opts, options_copy, NULL);
4454 update_flags_from_options(&flags, opts);
4455 qemu_opts_del(opts);
4456 qobject_unref(options_copy);
4457
Kevin Wolffd452022017-08-03 17:02:59 +02004458 /* bdrv_open_inherit() sets and clears some additional flags internally */
Kevin Wolff1f25a22014-04-25 19:04:55 +02004459 flags &= ~BDRV_O_PROTOCOL;
Kevin Wolffd452022017-08-03 17:02:59 +02004460 if (flags & BDRV_O_RDWR) {
4461 flags |= BDRV_O_ALLOW_RDWR;
4462 }
Kevin Wolff1f25a22014-04-25 19:04:55 +02004463
Kevin Wolf1857c972017-09-14 14:53:46 +02004464 if (!bs_entry) {
4465 bs_entry = g_new0(BlockReopenQueueEntry, 1);
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004466 QTAILQ_INSERT_TAIL(bs_queue, bs_entry, entry);
Kevin Wolf1857c972017-09-14 14:53:46 +02004467 } else {
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02004468 qobject_unref(bs_entry->state.options);
4469 qobject_unref(bs_entry->state.explicit_options);
Kevin Wolf1857c972017-09-14 14:53:46 +02004470 }
4471
4472 bs_entry->state.bs = bs;
4473 bs_entry->state.options = options;
4474 bs_entry->state.explicit_options = explicit_options;
4475 bs_entry->state.flags = flags;
4476
Alberto Garcia85466322019-03-12 18:48:45 +02004477 /*
4478 * If keep_old_opts is false then it means that unspecified
4479 * options must be reset to their original value. We don't allow
4480 * resetting 'backing' but we need to know if the option is
4481 * missing in order to decide if we have to return an error.
4482 */
4483 if (!keep_old_opts) {
4484 bs_entry->state.backing_missing =
4485 !qdict_haskey(options, "backing") &&
4486 !qdict_haskey(options, "backing.driver");
4487 }
4488
Kevin Wolf67251a32015-04-09 18:54:04 +02004489 QLIST_FOREACH(child, &bs->children, next) {
Alberto Garcia85466322019-03-12 18:48:45 +02004490 QDict *new_child_options = NULL;
4491 bool child_keep_old = keep_old_opts;
Kevin Wolf67251a32015-04-09 18:54:04 +02004492
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004493 /* reopen can only change the options of block devices that were
4494 * implicitly created and inherited options. For other (referenced)
4495 * block devices, a syntax like "backing.foo" results in an error. */
Kevin Wolf67251a32015-04-09 18:54:04 +02004496 if (child->bs->inherits_from != bs) {
4497 continue;
4498 }
4499
Alberto Garcia85466322019-03-12 18:48:45 +02004500 /* Check if the options contain a child reference */
4501 if (qdict_haskey(options, child->name)) {
4502 const char *childref = qdict_get_try_str(options, child->name);
4503 /*
4504 * The current child must not be reopened if the child
4505 * reference is null or points to a different node.
4506 */
4507 if (g_strcmp0(childref, child->bs->node_name)) {
4508 continue;
4509 }
4510 /*
4511 * If the child reference points to the current child then
4512 * reopen it with its existing set of options (note that
4513 * it can still inherit new options from the parent).
4514 */
4515 child_keep_old = true;
4516 } else {
4517 /* Extract child options ("child-name.*") */
4518 char *child_key_dot = g_strdup_printf("%s.", child->name);
4519 qdict_extract_subqdict(explicit_options, NULL, child_key_dot);
4520 qdict_extract_subqdict(options, &new_child_options, child_key_dot);
4521 g_free(child_key_dot);
4522 }
Kevin Wolf4c9dfe52015-05-08 15:14:15 +02004523
Alberto Garcia9aa09dd2018-11-12 16:00:45 +02004524 bdrv_reopen_queue_child(bs_queue, child->bs, new_child_options,
Max Reitz3cdc69d2020-05-13 13:05:18 +02004525 child->klass, child->role, bs->drv->is_format,
4526 options, flags, child_keep_old);
Jeff Codye971aa12012-09-20 15:13:19 -04004527 }
4528
Jeff Codye971aa12012-09-20 15:13:19 -04004529 return bs_queue;
4530}
4531
Kevin Wolf2e117862022-11-18 18:41:01 +01004532/* To be called with bs->aio_context locked */
Kevin Wolf28518102015-05-08 17:07:31 +02004533BlockReopenQueue *bdrv_reopen_queue(BlockReopenQueue *bs_queue,
4534 BlockDriverState *bs,
Alberto Garcia077e8e22019-03-12 18:48:44 +02004535 QDict *options, bool keep_old_opts)
Kevin Wolf28518102015-05-08 17:07:31 +02004536{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004537 GLOBAL_STATE_CODE();
Kevin Wolfce433d22023-09-29 16:51:43 +02004538 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004539
Max Reitz3cdc69d2020-05-13 13:05:18 +02004540 return bdrv_reopen_queue_child(bs_queue, bs, options, NULL, 0, false,
4541 NULL, 0, keep_old_opts);
Kevin Wolf28518102015-05-08 17:07:31 +02004542}
4543
Alberto Garciaab5b52282021-07-08 13:47:05 +02004544void bdrv_reopen_queue_free(BlockReopenQueue *bs_queue)
4545{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004546 GLOBAL_STATE_CODE();
Alberto Garciaab5b52282021-07-08 13:47:05 +02004547 if (bs_queue) {
4548 BlockReopenQueueEntry *bs_entry, *next;
4549 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Kevin Wolfd22933a2022-11-18 18:41:02 +01004550 AioContext *ctx = bdrv_get_aio_context(bs_entry->state.bs);
4551
4552 aio_context_acquire(ctx);
4553 bdrv_drained_end(bs_entry->state.bs);
4554 aio_context_release(ctx);
4555
Alberto Garciaab5b52282021-07-08 13:47:05 +02004556 qobject_unref(bs_entry->state.explicit_options);
4557 qobject_unref(bs_entry->state.options);
4558 g_free(bs_entry);
4559 }
4560 g_free(bs_queue);
4561 }
4562}
4563
Jeff Codye971aa12012-09-20 15:13:19 -04004564/*
4565 * Reopen multiple BlockDriverStates atomically & transactionally.
4566 *
4567 * The queue passed in (bs_queue) must have been built up previous
4568 * via bdrv_reopen_queue().
4569 *
4570 * Reopens all BDS specified in the queue, with the appropriate
4571 * flags. All devices are prepared for reopen, and failure of any
Stefan Weil50d6a8a2018-07-12 21:51:20 +02004572 * device will cause all device changes to be abandoned, and intermediate
Jeff Codye971aa12012-09-20 15:13:19 -04004573 * data cleaned up.
4574 *
4575 * If all devices prepare successfully, then the changes are committed
4576 * to all devices.
4577 *
Kevin Wolf1a63a902017-12-06 20:24:44 +01004578 * All affected nodes must be drained between bdrv_reopen_queue() and
4579 * bdrv_reopen_multiple().
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004580 *
4581 * To be called from the main thread, with all other AioContexts unlocked.
Jeff Codye971aa12012-09-20 15:13:19 -04004582 */
Alberto Garcia5019aec2019-03-12 18:48:50 +02004583int bdrv_reopen_multiple(BlockReopenQueue *bs_queue, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004584{
4585 int ret = -1;
4586 BlockReopenQueueEntry *bs_entry, *next;
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004587 AioContext *ctx;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004588 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004589 g_autoptr(GSList) refresh_list = NULL;
Jeff Codye971aa12012-09-20 15:13:19 -04004590
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004591 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Jeff Codye971aa12012-09-20 15:13:19 -04004592 assert(bs_queue != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004593 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004594
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004595 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004596 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4597 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004598 ret = bdrv_flush(bs_entry->state.bs);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004599 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004600 if (ret < 0) {
4601 error_setg_errno(errp, -ret, "Error flushing drive");
Kevin Wolfe3fc91a2021-05-03 13:05:55 +02004602 goto abort;
Vladimir Sementsov-Ogievskiya2aabf82021-04-28 18:17:57 +03004603 }
4604 }
4605
4606 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf1a63a902017-12-06 20:24:44 +01004607 assert(bs_entry->state.bs->quiesce_counter > 0);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004608 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4609 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004610 ret = bdrv_reopen_prepare(&bs_entry->state, bs_queue, tran, errp);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004611 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004612 if (ret < 0) {
4613 goto abort;
Jeff Codye971aa12012-09-20 15:13:19 -04004614 }
4615 bs_entry->prepared = true;
4616 }
4617
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004618 QTAILQ_FOREACH(bs_entry, bs_queue, entry) {
Kevin Wolf69b736e2019-03-05 17:18:22 +01004619 BDRVReopenState *state = &bs_entry->state;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004620
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004621 refresh_list = g_slist_prepend(refresh_list, state->bs);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004622 if (state->old_backing_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004623 refresh_list = g_slist_prepend(refresh_list, state->old_backing_bs);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004624 }
Alberto Garciaecd30d22021-06-10 15:05:36 +03004625 if (state->old_file_bs) {
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03004626 refresh_list = g_slist_prepend(refresh_list, state->old_file_bs);
Alberto Garciaecd30d22021-06-10 15:05:36 +03004627 }
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004628 }
4629
4630 /*
4631 * Note that file-posix driver rely on permission update done during reopen
4632 * (even if no permission changed), because it wants "new" permissions for
4633 * reconfiguring the fd and that's why it does it in raw_check_perm(), not
4634 * in raw_reopen_prepare() which is called with "old" permissions.
4635 */
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004636 bdrv_graph_rdlock_main_loop();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004637 ret = bdrv_list_refresh_perms(refresh_list, bs_queue, tran, errp);
Kevin Wolf3804e3c2023-09-11 11:46:12 +02004638 bdrv_graph_rdunlock_main_loop();
4639
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004640 if (ret < 0) {
4641 goto abort;
Kevin Wolf69b736e2019-03-05 17:18:22 +01004642 }
4643
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004644 /*
4645 * If we reach this point, we have success and just need to apply the
4646 * changes.
4647 *
4648 * Reverse order is used to comfort qcow2 driver: on commit it need to write
4649 * IN_USE flag to the image, to mark bitmaps in the image as invalid. But
4650 * children are usually goes after parents in reopen-queue, so go from last
4651 * to first element.
Jeff Codye971aa12012-09-20 15:13:19 -04004652 */
Vladimir Sementsov-Ogievskiyfcd6a4f2019-09-27 15:23:48 +03004653 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004654 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4655 aio_context_acquire(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004656 bdrv_reopen_commit(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004657 aio_context_release(ctx);
Jeff Codye971aa12012-09-20 15:13:19 -04004658 }
4659
Kevin Wolf5661a002023-09-11 11:46:10 +02004660 bdrv_graph_wrlock(NULL);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004661 tran_commit(tran);
Kevin Wolf5661a002023-09-11 11:46:10 +02004662 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004663
4664 QTAILQ_FOREACH_REVERSE(bs_entry, bs_queue, entry) {
4665 BlockDriverState *bs = bs_entry->state.bs;
4666
4667 if (bs->drv->bdrv_reopen_commit_post) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004668 ctx = bdrv_get_aio_context(bs);
4669 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004670 bs->drv->bdrv_reopen_commit_post(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004671 aio_context_release(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004672 }
4673 }
4674
Jeff Codye971aa12012-09-20 15:13:19 -04004675 ret = 0;
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004676 goto cleanup;
4677
4678abort:
Kevin Wolf5661a002023-09-11 11:46:10 +02004679 bdrv_graph_wrlock(NULL);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004680 tran_abort(tran);
Kevin Wolf5661a002023-09-11 11:46:10 +02004681 bdrv_graph_wrunlock();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004682
Vladimir Sementsov-Ogievskiy859443b2019-09-27 15:23:47 +03004683 QTAILQ_FOREACH_SAFE(bs_entry, bs_queue, entry, next) {
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004684 if (bs_entry->prepared) {
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004685 ctx = bdrv_get_aio_context(bs_entry->state.bs);
4686 aio_context_acquire(ctx);
Vladimir Sementsov-Ogievskiy72373e42021-04-28 18:17:58 +03004687 bdrv_reopen_abort(&bs_entry->state);
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004688 aio_context_release(ctx);
Kevin Wolf69b736e2019-03-05 17:18:22 +01004689 }
Kevin Wolf69b736e2019-03-05 17:18:22 +01004690 }
Peter Krempa17e1e2b2020-02-28 13:44:46 +01004691
Jeff Codye971aa12012-09-20 15:13:19 -04004692cleanup:
Alberto Garciaab5b52282021-07-08 13:47:05 +02004693 bdrv_reopen_queue_free(bs_queue);
Alberto Garcia40840e42016-10-28 10:08:03 +03004694
Jeff Codye971aa12012-09-20 15:13:19 -04004695 return ret;
4696}
4697
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004698int bdrv_reopen(BlockDriverState *bs, QDict *opts, bool keep_old_opts,
4699 Error **errp)
4700{
4701 AioContext *ctx = bdrv_get_aio_context(bs);
4702 BlockReopenQueue *queue;
4703 int ret;
4704
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004705 GLOBAL_STATE_CODE();
4706
Kevin Wolf2e117862022-11-18 18:41:01 +01004707 queue = bdrv_reopen_queue(NULL, bs, opts, keep_old_opts);
4708
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004709 if (ctx != qemu_get_aio_context()) {
4710 aio_context_release(ctx);
4711 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004712 ret = bdrv_reopen_multiple(queue, errp);
4713
4714 if (ctx != qemu_get_aio_context()) {
4715 aio_context_acquire(ctx);
4716 }
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004717
4718 return ret;
4719}
4720
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004721int bdrv_reopen_set_read_only(BlockDriverState *bs, bool read_only,
4722 Error **errp)
4723{
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004724 QDict *opts = qdict_new();
4725
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05004726 GLOBAL_STATE_CODE();
4727
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004728 qdict_put_bool(opts, BDRV_OPT_READ_ONLY, read_only);
4729
Kevin Wolf6cf42ca2021-07-08 13:47:06 +02004730 return bdrv_reopen(bs, opts, true, errp);
Alberto Garcia6e1000a2018-11-12 16:00:33 +02004731}
4732
Jeff Codye971aa12012-09-20 15:13:19 -04004733/*
Alberto Garciacb828c32019-03-12 18:48:47 +02004734 * Take a BDRVReopenState and check if the value of 'backing' in the
4735 * reopen_state->options QDict is valid or not.
4736 *
4737 * If 'backing' is missing from the QDict then return 0.
4738 *
4739 * If 'backing' contains the node name of the backing file of
4740 * reopen_state->bs then return 0.
4741 *
4742 * If 'backing' contains a different node name (or is null) then check
4743 * whether the current backing file can be replaced with the new one.
4744 * If that's the case then reopen_state->replace_backing_bs is set to
4745 * true and reopen_state->new_backing_bs contains a pointer to the new
4746 * backing BlockDriverState (or NULL).
4747 *
Kevin Wolf5661a002023-09-11 11:46:10 +02004748 * After calling this function, the transaction @tran may only be completed
4749 * while holding a writer lock for the graph.
4750 *
Alberto Garciacb828c32019-03-12 18:48:47 +02004751 * Return 0 on success, otherwise return < 0 and set @errp.
Kevin Wolf4b408662023-06-05 10:57:06 +02004752 *
4753 * The caller must hold the AioContext lock of @reopen_state->bs.
4754 * @reopen_state->bs can move to a different AioContext in this function.
4755 * Callers must make sure that their AioContext locking is still correct after
4756 * this.
Alberto Garciacb828c32019-03-12 18:48:47 +02004757 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004758static int GRAPH_UNLOCKED
4759bdrv_reopen_parse_file_or_backing(BDRVReopenState *reopen_state,
4760 bool is_backing, Transaction *tran,
4761 Error **errp)
Alberto Garciacb828c32019-03-12 18:48:47 +02004762{
4763 BlockDriverState *bs = reopen_state->bs;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004764 BlockDriverState *new_child_bs;
4765 BlockDriverState *old_child_bs = is_backing ? child_bs(bs->backing) :
4766 child_bs(bs->file);
4767 const char *child_name = is_backing ? "backing" : "file";
Alberto Garciacb828c32019-03-12 18:48:47 +02004768 QObject *value;
4769 const char *str;
Kevin Wolf4b408662023-06-05 10:57:06 +02004770 AioContext *ctx, *old_ctx;
Kevin Wolfce433d22023-09-29 16:51:43 +02004771 bool has_child;
Kevin Wolf4b408662023-06-05 10:57:06 +02004772 int ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004773
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05004774 GLOBAL_STATE_CODE();
4775
Alberto Garciaecd30d22021-06-10 15:05:36 +03004776 value = qdict_get(reopen_state->options, child_name);
Alberto Garciacb828c32019-03-12 18:48:47 +02004777 if (value == NULL) {
4778 return 0;
4779 }
4780
Kevin Wolf430da832023-10-27 17:53:16 +02004781 bdrv_graph_rdlock_main_loop();
4782
Alberto Garciacb828c32019-03-12 18:48:47 +02004783 switch (qobject_type(value)) {
4784 case QTYPE_QNULL:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004785 assert(is_backing); /* The 'file' option does not allow a null value */
4786 new_child_bs = NULL;
Alberto Garciacb828c32019-03-12 18:48:47 +02004787 break;
4788 case QTYPE_QSTRING:
Markus Armbruster410f44f2020-12-11 18:11:42 +01004789 str = qstring_get_str(qobject_to(QString, value));
Alberto Garciaecd30d22021-06-10 15:05:36 +03004790 new_child_bs = bdrv_lookup_bs(NULL, str, errp);
4791 if (new_child_bs == NULL) {
Kevin Wolf430da832023-10-27 17:53:16 +02004792 ret = -EINVAL;
4793 goto out_rdlock;
Kevin Wolfce433d22023-09-29 16:51:43 +02004794 }
4795
Kevin Wolfce433d22023-09-29 16:51:43 +02004796 has_child = bdrv_recurse_has_child(new_child_bs, bs);
Kevin Wolfce433d22023-09-29 16:51:43 +02004797 if (has_child) {
Alberto Garciaecd30d22021-06-10 15:05:36 +03004798 error_setg(errp, "Making '%s' a %s child of '%s' would create a "
4799 "cycle", str, child_name, bs->node_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004800 ret = -EINVAL;
4801 goto out_rdlock;
Alberto Garciacb828c32019-03-12 18:48:47 +02004802 }
4803 break;
4804 default:
Alberto Garciaecd30d22021-06-10 15:05:36 +03004805 /*
4806 * The options QDict has been flattened, so 'backing' and 'file'
4807 * do not allow any other data type here.
4808 */
Alberto Garciacb828c32019-03-12 18:48:47 +02004809 g_assert_not_reached();
4810 }
4811
Alberto Garciaecd30d22021-06-10 15:05:36 +03004812 if (old_child_bs == new_child_bs) {
Kevin Wolf430da832023-10-27 17:53:16 +02004813 ret = 0;
4814 goto out_rdlock;
Alberto Garciaecd30d22021-06-10 15:05:36 +03004815 }
4816
4817 if (old_child_bs) {
4818 if (bdrv_skip_implicit_filters(old_child_bs) == new_child_bs) {
Kevin Wolf430da832023-10-27 17:53:16 +02004819 ret = 0;
4820 goto out_rdlock;
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004821 }
4822
Alberto Garciaecd30d22021-06-10 15:05:36 +03004823 if (old_child_bs->implicit) {
4824 error_setg(errp, "Cannot replace implicit %s child of %s",
4825 child_name, bs->node_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004826 ret = -EPERM;
4827 goto out_rdlock;
Vladimir Sementsov-Ogievskiycbfdb982021-06-10 15:05:33 +03004828 }
4829 }
4830
Alberto Garciaecd30d22021-06-10 15:05:36 +03004831 if (bs->drv->is_filter && !old_child_bs) {
Vladimir Sementsov-Ogievskiy25f78d92021-06-10 15:05:34 +03004832 /*
4833 * Filters always have a file or a backing child, so we are trying to
4834 * change wrong child
4835 */
4836 error_setg(errp, "'%s' is a %s filter node that does not support a "
Alberto Garciaecd30d22021-06-10 15:05:36 +03004837 "%s child", bs->node_name, bs->drv->format_name, child_name);
Kevin Wolf430da832023-10-27 17:53:16 +02004838 ret = -EINVAL;
4839 goto out_rdlock;
Max Reitz1d42f482019-06-12 17:24:39 +02004840 }
4841
Alberto Garciaecd30d22021-06-10 15:05:36 +03004842 if (is_backing) {
4843 reopen_state->old_backing_bs = old_child_bs;
4844 } else {
4845 reopen_state->old_file_bs = old_child_bs;
4846 }
4847
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004848 if (old_child_bs) {
4849 bdrv_ref(old_child_bs);
4850 bdrv_drained_begin(old_child_bs);
4851 }
4852
Kevin Wolf4b408662023-06-05 10:57:06 +02004853 old_ctx = bdrv_get_aio_context(bs);
4854 ctx = bdrv_get_aio_context(new_child_bs);
4855 if (old_ctx != ctx) {
4856 aio_context_release(old_ctx);
4857 aio_context_acquire(ctx);
4858 }
4859
Kevin Wolf430da832023-10-27 17:53:16 +02004860 bdrv_graph_rdunlock_main_loop();
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004861 bdrv_graph_wrlock(new_child_bs);
4862
Kevin Wolf4b408662023-06-05 10:57:06 +02004863 ret = bdrv_set_file_or_backing_noperm(bs, new_child_bs, is_backing,
4864 tran, errp);
4865
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004866 bdrv_graph_wrunlock();
4867
Kevin Wolf4b408662023-06-05 10:57:06 +02004868 if (old_ctx != ctx) {
4869 aio_context_release(ctx);
4870 aio_context_acquire(old_ctx);
4871 }
4872
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02004873 if (old_child_bs) {
4874 bdrv_drained_end(old_child_bs);
4875 bdrv_unref(old_child_bs);
4876 }
4877
Kevin Wolf4b408662023-06-05 10:57:06 +02004878 return ret;
Kevin Wolf430da832023-10-27 17:53:16 +02004879
4880out_rdlock:
4881 bdrv_graph_rdunlock_main_loop();
4882 return ret;
Alberto Garciacb828c32019-03-12 18:48:47 +02004883}
4884
4885/*
Jeff Codye971aa12012-09-20 15:13:19 -04004886 * Prepares a BlockDriverState for reopen. All changes are staged in the
4887 * 'opaque' field of the BDRVReopenState, which is used and allocated by
4888 * the block driver layer .bdrv_reopen_prepare()
4889 *
4890 * bs is the BlockDriverState to reopen
4891 * flags are the new open flags
4892 * queue is the reopen queue
4893 *
4894 * Returns 0 on success, non-zero on error. On error errp will be set
4895 * as well.
4896 *
4897 * On failure, bdrv_reopen_abort() will be called to clean up any data.
4898 * It is the responsibility of the caller to then call the abort() or
4899 * commit() for any other BDS that have been left in a prepare() state
4900 *
Kevin Wolf4b408662023-06-05 10:57:06 +02004901 * The caller must hold the AioContext lock of @reopen_state->bs.
Kevin Wolf5661a002023-09-11 11:46:10 +02004902 *
4903 * After calling this function, the transaction @change_child_tran may only be
4904 * completed while holding a writer lock for the graph.
Jeff Codye971aa12012-09-20 15:13:19 -04004905 */
Kevin Wolfce433d22023-09-29 16:51:43 +02004906static int GRAPH_UNLOCKED
4907bdrv_reopen_prepare(BDRVReopenState *reopen_state, BlockReopenQueue *queue,
4908 Transaction *change_child_tran, Error **errp)
Jeff Codye971aa12012-09-20 15:13:19 -04004909{
4910 int ret = -1;
Alberto Garciae6d79c42018-11-12 16:00:47 +02004911 int old_flags;
Jeff Codye971aa12012-09-20 15:13:19 -04004912 Error *local_err = NULL;
4913 BlockDriver *drv;
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004914 QemuOpts *opts;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004915 QDict *orig_reopen_opts;
Alberto Garcia593b3072018-09-06 12:37:08 +03004916 char *discard = NULL;
Jeff Cody3d8ce172017-04-07 16:55:30 -04004917 bool read_only;
Max Reitz9ad08c42018-11-16 17:45:24 +01004918 bool drv_prepared = false;
Jeff Codye971aa12012-09-20 15:13:19 -04004919
4920 assert(reopen_state != NULL);
4921 assert(reopen_state->bs->drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05004922 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04004923 drv = reopen_state->bs->drv;
4924
Alberto Garcia4c8350f2018-06-29 14:37:02 +03004925 /* This function and each driver's bdrv_reopen_prepare() remove
4926 * entries from reopen_state->options as they are processed, so
4927 * we need to make a copy of the original QDict. */
4928 orig_reopen_opts = qdict_clone_shallow(reopen_state->options);
4929
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004930 /* Process generic block layer options */
4931 opts = qemu_opts_create(&bdrv_runtime_opts, NULL, 0, &error_abort);
Markus Armbrusteraf175e82020-07-07 18:06:03 +02004932 if (!qemu_opts_absorb_qdict(opts, reopen_state->options, errp)) {
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004933 ret = -EINVAL;
4934 goto error;
4935 }
4936
Alberto Garciae6d79c42018-11-12 16:00:47 +02004937 /* This was already called in bdrv_reopen_queue_child() so the flags
4938 * are up-to-date. This time we simply want to remove the options from
4939 * QemuOpts in order to indicate that they have been processed. */
4940 old_flags = reopen_state->flags;
Kevin Wolf91a097e2015-05-08 17:49:53 +02004941 update_flags_from_options(&reopen_state->flags, opts);
Alberto Garciae6d79c42018-11-12 16:00:47 +02004942 assert(old_flags == reopen_state->flags);
Kevin Wolf91a097e2015-05-08 17:49:53 +02004943
Alberto Garcia415bbca2018-10-03 13:23:13 +03004944 discard = qemu_opt_get_del(opts, BDRV_OPT_DISCARD);
Alberto Garcia593b3072018-09-06 12:37:08 +03004945 if (discard != NULL) {
4946 if (bdrv_parse_discard_flags(discard, &reopen_state->flags) != 0) {
4947 error_setg(errp, "Invalid discard option");
4948 ret = -EINVAL;
4949 goto error;
4950 }
4951 }
4952
Alberto Garcia543770b2018-09-06 12:37:09 +03004953 reopen_state->detect_zeroes =
4954 bdrv_parse_detect_zeroes(opts, reopen_state->flags, &local_err);
4955 if (local_err) {
4956 error_propagate(errp, local_err);
4957 ret = -EINVAL;
4958 goto error;
4959 }
4960
Alberto Garcia57f9db92018-09-06 12:37:06 +03004961 /* All other options (including node-name and driver) must be unchanged.
4962 * Put them back into the QDict, so that they are checked at the end
4963 * of this function. */
4964 qemu_opts_to_qdict(opts, reopen_state->options);
Kevin Wolfccf9dc02015-05-08 17:24:56 +02004965
Jeff Cody3d8ce172017-04-07 16:55:30 -04004966 /* If we are to stay read-only, do not allow permission change
4967 * to r/w. Attempting to set to r/w may fail if either BDRV_O_ALLOW_RDWR is
4968 * not set, or if the BDS still has copy_on_read enabled */
4969 read_only = !(reopen_state->flags & BDRV_O_RDWR);
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004970
4971 bdrv_graph_rdlock_main_loop();
Kevin Wolf54a32bf2017-08-03 17:02:58 +02004972 ret = bdrv_can_set_read_only(reopen_state->bs, read_only, true, &local_err);
Kevin Wolf4026f1c2023-09-29 16:51:47 +02004973 bdrv_graph_rdunlock_main_loop();
Jeff Cody3d8ce172017-04-07 16:55:30 -04004974 if (local_err) {
4975 error_propagate(errp, local_err);
Jeff Codye971aa12012-09-20 15:13:19 -04004976 goto error;
4977 }
4978
Jeff Codye971aa12012-09-20 15:13:19 -04004979 if (drv->bdrv_reopen_prepare) {
Alberto Garciafaf116b2019-03-12 18:48:49 +02004980 /*
4981 * If a driver-specific option is missing, it means that we
4982 * should reset it to its default value.
4983 * But not all options allow that, so we need to check it first.
4984 */
4985 ret = bdrv_reset_options_allowed(reopen_state->bs,
4986 reopen_state->options, errp);
4987 if (ret) {
4988 goto error;
4989 }
4990
Jeff Codye971aa12012-09-20 15:13:19 -04004991 ret = drv->bdrv_reopen_prepare(reopen_state, queue, &local_err);
4992 if (ret) {
4993 if (local_err != NULL) {
4994 error_propagate(errp, local_err);
4995 } else {
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02004996 bdrv_graph_rdlock_main_loop();
Max Reitzf30c66b2019-02-01 20:29:05 +01004997 bdrv_refresh_filename(reopen_state->bs);
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02004998 bdrv_graph_rdunlock_main_loop();
Luiz Capitulinod8b68952013-06-10 11:29:27 -04004999 error_setg(errp, "failed while preparing to reopen image '%s'",
5000 reopen_state->bs->filename);
Jeff Codye971aa12012-09-20 15:13:19 -04005001 }
5002 goto error;
5003 }
5004 } else {
5005 /* It is currently mandatory to have a bdrv_reopen_prepare()
5006 * handler for each supported drv. */
Kevin Wolf4026f1c2023-09-29 16:51:47 +02005007 bdrv_graph_rdlock_main_loop();
Alberto Garcia81e5f782015-04-08 12:29:19 +03005008 error_setg(errp, "Block format '%s' used by node '%s' "
5009 "does not support reopening files", drv->format_name,
5010 bdrv_get_device_or_node_name(reopen_state->bs));
Kevin Wolf4026f1c2023-09-29 16:51:47 +02005011 bdrv_graph_rdunlock_main_loop();
Jeff Codye971aa12012-09-20 15:13:19 -04005012 ret = -1;
5013 goto error;
5014 }
5015
Max Reitz9ad08c42018-11-16 17:45:24 +01005016 drv_prepared = true;
5017
Alberto Garciabacd9b82019-03-12 18:48:46 +02005018 /*
5019 * We must provide the 'backing' option if the BDS has a backing
5020 * file or if the image file has a backing file name as part of
5021 * its metadata. Otherwise the 'backing' option can be omitted.
5022 */
5023 if (drv->supports_backing && reopen_state->backing_missing &&
Max Reitz1d42f482019-06-12 17:24:39 +02005024 (reopen_state->bs->backing || reopen_state->bs->backing_file[0])) {
Alberto Garcia85466322019-03-12 18:48:45 +02005025 error_setg(errp, "backing is missing for '%s'",
5026 reopen_state->bs->node_name);
5027 ret = -EINVAL;
5028 goto error;
5029 }
5030
Alberto Garciacb828c32019-03-12 18:48:47 +02005031 /*
5032 * Allow changing the 'backing' option. The new value can be
5033 * either a reference to an existing node (using its node name)
5034 * or NULL to simply detach the current backing file.
5035 */
Alberto Garciaecd30d22021-06-10 15:05:36 +03005036 ret = bdrv_reopen_parse_file_or_backing(reopen_state, true,
5037 change_child_tran, errp);
Alberto Garciacb828c32019-03-12 18:48:47 +02005038 if (ret < 0) {
5039 goto error;
5040 }
5041 qdict_del(reopen_state->options, "backing");
5042
Alberto Garciaecd30d22021-06-10 15:05:36 +03005043 /* Allow changing the 'file' option. In this case NULL is not allowed */
5044 ret = bdrv_reopen_parse_file_or_backing(reopen_state, false,
5045 change_child_tran, errp);
5046 if (ret < 0) {
5047 goto error;
5048 }
5049 qdict_del(reopen_state->options, "file");
5050
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005051 /* Options that are not handled are only okay if they are unchanged
5052 * compared to the old state. It is expected that some options are only
5053 * used for the initial open, but not reopen (e.g. filename) */
5054 if (qdict_size(reopen_state->options)) {
5055 const QDictEntry *entry = qdict_first(reopen_state->options);
5056
Kevin Wolfce433d22023-09-29 16:51:43 +02005057 GRAPH_RDLOCK_GUARD_MAINLOOP();
5058
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005059 do {
Max Reitz54fd1b02017-11-14 19:01:26 +01005060 QObject *new = entry->value;
5061 QObject *old = qdict_get(reopen_state->bs->options, entry->key);
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005062
Alberto Garciadb905282018-09-06 12:37:05 +03005063 /* Allow child references (child_name=node_name) as long as they
5064 * point to the current child (i.e. everything stays the same). */
5065 if (qobject_type(new) == QTYPE_QSTRING) {
5066 BdrvChild *child;
5067 QLIST_FOREACH(child, &reopen_state->bs->children, next) {
5068 if (!strcmp(child->name, entry->key)) {
5069 break;
5070 }
5071 }
5072
5073 if (child) {
Markus Armbruster410f44f2020-12-11 18:11:42 +01005074 if (!strcmp(child->bs->node_name,
5075 qstring_get_str(qobject_to(QString, new)))) {
Alberto Garciadb905282018-09-06 12:37:05 +03005076 continue; /* Found child with this name, skip option */
5077 }
5078 }
5079 }
5080
Max Reitz54fd1b02017-11-14 19:01:26 +01005081 /*
5082 * TODO: When using -drive to specify blockdev options, all values
5083 * will be strings; however, when using -blockdev, blockdev-add or
5084 * filenames using the json:{} pseudo-protocol, they will be
5085 * correctly typed.
5086 * In contrast, reopening options are (currently) always strings
5087 * (because you can only specify them through qemu-io; all other
5088 * callers do not specify any options).
5089 * Therefore, when using anything other than -drive to create a BDS,
5090 * this cannot detect non-string options as unchanged, because
5091 * qobject_is_equal() always returns false for objects of different
5092 * type. In the future, this should be remedied by correctly typing
5093 * all options. For now, this is not too big of an issue because
5094 * the user can simply omit options which cannot be changed anyway,
5095 * so they will stay unchanged.
5096 */
5097 if (!qobject_is_equal(new, old)) {
Kevin Wolf4d2cb092015-04-10 17:50:50 +02005098 error_setg(errp, "Cannot change the option '%s'", entry->key);
5099 ret = -EINVAL;
5100 goto error;
5101 }
5102 } while ((entry = qdict_next(reopen_state->options, entry)));
5103 }
5104
Jeff Codye971aa12012-09-20 15:13:19 -04005105 ret = 0;
5106
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005107 /* Restore the original reopen_state->options QDict */
5108 qobject_unref(reopen_state->options);
5109 reopen_state->options = qobject_ref(orig_reopen_opts);
5110
Jeff Codye971aa12012-09-20 15:13:19 -04005111error:
Max Reitz9ad08c42018-11-16 17:45:24 +01005112 if (ret < 0 && drv_prepared) {
5113 /* drv->bdrv_reopen_prepare() has succeeded, so we need to
5114 * call drv->bdrv_reopen_abort() before signaling an error
5115 * (bdrv_reopen_multiple() will not call bdrv_reopen_abort()
5116 * when the respective bdrv_reopen_prepare() has failed) */
5117 if (drv->bdrv_reopen_abort) {
5118 drv->bdrv_reopen_abort(reopen_state);
5119 }
5120 }
Kevin Wolfccf9dc02015-05-08 17:24:56 +02005121 qemu_opts_del(opts);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005122 qobject_unref(orig_reopen_opts);
Alberto Garcia593b3072018-09-06 12:37:08 +03005123 g_free(discard);
Jeff Codye971aa12012-09-20 15:13:19 -04005124 return ret;
5125}
5126
5127/*
5128 * Takes the staged changes for the reopen from bdrv_reopen_prepare(), and
5129 * makes them final by swapping the staging BlockDriverState contents into
5130 * the active BlockDriverState contents.
5131 */
Kevin Wolfce433d22023-09-29 16:51:43 +02005132static void GRAPH_UNLOCKED bdrv_reopen_commit(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005133{
5134 BlockDriver *drv;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005135 BlockDriverState *bs;
Alberto Garcia50196d72018-09-06 12:37:03 +03005136 BdrvChild *child;
Jeff Codye971aa12012-09-20 15:13:19 -04005137
5138 assert(reopen_state != NULL);
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005139 bs = reopen_state->bs;
5140 drv = bs->drv;
Jeff Codye971aa12012-09-20 15:13:19 -04005141 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005142 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005143
5144 /* If there are any driver level actions to take */
5145 if (drv->bdrv_reopen_commit) {
5146 drv->bdrv_reopen_commit(reopen_state);
5147 }
5148
Kevin Wolfce433d22023-09-29 16:51:43 +02005149 GRAPH_RDLOCK_GUARD_MAINLOOP();
5150
Jeff Codye971aa12012-09-20 15:13:19 -04005151 /* set BDS specific flags now */
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005152 qobject_unref(bs->explicit_options);
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005153 qobject_unref(bs->options);
Alberto Garciaab5b52282021-07-08 13:47:05 +02005154 qobject_ref(reopen_state->explicit_options);
5155 qobject_ref(reopen_state->options);
Kevin Wolf145f5982015-05-08 16:15:03 +02005156
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005157 bs->explicit_options = reopen_state->explicit_options;
Alberto Garcia4c8350f2018-06-29 14:37:02 +03005158 bs->options = reopen_state->options;
Vladimir Sementsov-Ogievskiy50bf65b2017-06-28 15:05:12 +03005159 bs->open_flags = reopen_state->flags;
Alberto Garcia543770b2018-09-06 12:37:09 +03005160 bs->detect_zeroes = reopen_state->detect_zeroes;
Kevin Wolf355ef4a2013-12-11 20:14:09 +01005161
Alberto Garcia50196d72018-09-06 12:37:03 +03005162 /* Remove child references from bs->options and bs->explicit_options.
5163 * Child options were already removed in bdrv_reopen_queue_child() */
5164 QLIST_FOREACH(child, &bs->children, next) {
5165 qdict_del(bs->explicit_options, child->name);
5166 qdict_del(bs->options, child->name);
5167 }
Vladimir Sementsov-Ogievskiy3d0e8742021-06-10 15:05:35 +03005168 /* backing is probably removed, so it's not handled by previous loop */
5169 qdict_del(bs->explicit_options, "backing");
5170 qdict_del(bs->options, "backing");
5171
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005172 bdrv_refresh_limits(bs, NULL, NULL);
Paolo Bonzini439cc332023-04-07 17:32:58 +02005173 bdrv_refresh_total_sectors(bs, bs->total_sectors);
Jeff Codye971aa12012-09-20 15:13:19 -04005174}
5175
5176/*
5177 * Abort the reopen, and delete and free the staged changes in
5178 * reopen_state
5179 */
Kevin Wolfce433d22023-09-29 16:51:43 +02005180static void GRAPH_UNLOCKED bdrv_reopen_abort(BDRVReopenState *reopen_state)
Jeff Codye971aa12012-09-20 15:13:19 -04005181{
5182 BlockDriver *drv;
5183
5184 assert(reopen_state != NULL);
5185 drv = reopen_state->bs->drv;
5186 assert(drv != NULL);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05005187 GLOBAL_STATE_CODE();
Jeff Codye971aa12012-09-20 15:13:19 -04005188
5189 if (drv->bdrv_reopen_abort) {
5190 drv->bdrv_reopen_abort(reopen_state);
5191 }
5192}
5193
5194
Max Reitz64dff522016-01-29 16:36:10 +01005195static void bdrv_close(BlockDriverState *bs)
bellardfc01f7e2003-06-30 10:03:06 +00005196{
Max Reitz33384422014-06-20 21:57:33 +02005197 BdrvAioNotifier *ban, *ban_next;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005198 BdrvChild *child, *next;
Max Reitz33384422014-06-20 21:57:33 +02005199
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005200 GLOBAL_STATE_CODE();
Max Reitz30f55fb2016-05-17 16:41:32 +02005201 assert(!bs->refcnt);
Alberto Garcia99b7e772015-09-25 16:41:44 +03005202
Paolo Bonzinifc272912015-12-23 11:48:24 +01005203 bdrv_drained_begin(bs); /* complete I/O */
Stefan Hajnoczi58fda172013-07-02 15:36:25 +02005204 bdrv_flush(bs);
Fam Zheng53ec73e2015-05-29 18:53:14 +08005205 bdrv_drain(bs); /* in case flush left pending I/O */
Paolo Bonzinifc272912015-12-23 11:48:24 +01005206
Paolo Bonzini3cbc0022012-10-19 11:36:48 +02005207 if (bs->drv) {
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005208 if (bs->drv->bdrv_close) {
Max Reitz7b99a262019-06-12 16:07:11 +02005209 /* Must unfreeze all children, so bdrv_unref_child() works */
Vladimir Sementsov-Ogievskiy3c005292018-08-14 15:43:19 +03005210 bs->drv->bdrv_close(bs);
5211 }
Kevin Wolf9a4f4c32015-06-16 14:19:22 +02005212 bs->drv = NULL;
bellardb3380822004-03-14 21:38:54 +00005213 }
Zhi Yong Wu98f90db2011-11-08 13:00:14 +08005214
Fiona Ebnere462c6d2023-10-19 15:19:35 +02005215 bdrv_graph_wrlock(bs);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005216 QLIST_FOREACH_SAFE(child, &bs->children, next, next) {
Alberto Garciadd4118c2019-05-13 16:46:17 +03005217 bdrv_unref_child(bs, child);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005218 }
Kevin Wolf32a8aba2023-09-11 11:46:19 +02005219 bdrv_graph_wrunlock();
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005220
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005221 assert(!bs->backing);
5222 assert(!bs->file);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005223 g_free(bs->opaque);
5224 bs->opaque = NULL;
Stefan Hajnoczid73415a2020-09-23 11:56:46 +01005225 qatomic_set(&bs->copy_on_read, 0);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005226 bs->backing_file[0] = '\0';
5227 bs->backing_format[0] = '\0';
5228 bs->total_sectors = 0;
5229 bs->encrypted = false;
5230 bs->sg = false;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005231 qobject_unref(bs->options);
5232 qobject_unref(bs->explicit_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005233 bs->options = NULL;
5234 bs->explicit_options = NULL;
Marc-André Lureaucb3e7f02018-04-19 17:01:43 +02005235 qobject_unref(bs->full_open_options);
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005236 bs->full_open_options = NULL;
Hanna Reitz0bc329f2021-08-12 10:41:44 +02005237 g_free(bs->block_status_cache);
5238 bs->block_status_cache = NULL;
Alberto Garcia50a3efb2017-11-06 16:53:45 +02005239
Vladimir Sementsov-Ogievskiycca43ae2017-06-28 15:05:16 +03005240 bdrv_release_named_dirty_bitmaps(bs);
5241 assert(QLIST_EMPTY(&bs->dirty_bitmaps));
5242
Max Reitz33384422014-06-20 21:57:33 +02005243 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
5244 g_free(ban);
5245 }
5246 QLIST_INIT(&bs->aio_notifiers);
Paolo Bonzinifc272912015-12-23 11:48:24 +01005247 bdrv_drained_end(bs);
Greg Kurz1a6d3bd2020-10-23 17:01:10 +02005248
5249 /*
5250 * If we're still inside some bdrv_drain_all_begin()/end() sections, end
5251 * them now since this BDS won't exist anymore when bdrv_drain_all_end()
5252 * gets called.
5253 */
5254 if (bs->quiesce_counter) {
5255 bdrv_drain_all_end_quiesce(bs);
5256 }
bellardb3380822004-03-14 21:38:54 +00005257}
5258
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005259void bdrv_close_all(void)
5260{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005261 GLOBAL_STATE_CODE();
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04005262 assert(job_next(NULL) == NULL);
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005263
Max Reitzca9bd242016-01-29 16:36:14 +01005264 /* Drop references from requests still in flight, such as canceled block
5265 * jobs whose AIO context has not been polled yet */
5266 bdrv_drain_all();
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02005267
Max Reitzca9bd242016-01-29 16:36:14 +01005268 blk_remove_all_bs();
5269 blockdev_close_all_bdrv_states();
5270
Kevin Wolfa1a2af02016-04-08 18:26:37 +02005271 assert(QTAILQ_EMPTY(&all_bdrv_states));
MORITA Kazutaka2bc93fe2010-05-28 11:44:57 +09005272}
5273
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005274static bool GRAPH_RDLOCK should_update_child(BdrvChild *c, BlockDriverState *to)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005275{
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005276 GQueue *queue;
5277 GHashTable *found;
5278 bool ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005279
Max Reitzbd86fb92020-05-13 13:05:13 +02005280 if (c->klass->stay_at_node) {
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005281 return false;
5282 }
5283
Max Reitzec9f10f2018-06-13 20:18:15 +02005284 /* If the child @c belongs to the BDS @to, replacing the current
5285 * c->bs by @to would mean to create a loop.
5286 *
5287 * Such a case occurs when appending a BDS to a backing chain.
5288 * For instance, imagine the following chain:
5289 *
5290 * guest device -> node A -> further backing chain...
5291 *
5292 * Now we create a new BDS B which we want to put on top of this
5293 * chain, so we first attach A as its backing node:
5294 *
5295 * node B
5296 * |
5297 * v
5298 * guest device -> node A -> further backing chain...
5299 *
5300 * Finally we want to replace A by B. When doing that, we want to
5301 * replace all pointers to A by pointers to B -- except for the
5302 * pointer from B because (1) that would create a loop, and (2)
5303 * that pointer should simply stay intact:
5304 *
5305 * guest device -> node B
5306 * |
5307 * v
5308 * node A -> further backing chain...
5309 *
5310 * In general, when replacing a node A (c->bs) by a node B (@to),
5311 * if A is a child of B, that means we cannot replace A by B there
5312 * because that would create a loop. Silently detaching A from B
5313 * is also not really an option. So overall just leaving A in
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005314 * place there is the most sensible choice.
5315 *
5316 * We would also create a loop in any cases where @c is only
5317 * indirectly referenced by @to. Prevent this by returning false
5318 * if @c is found (by breadth-first search) anywhere in the whole
5319 * subtree of @to.
5320 */
5321
5322 ret = true;
5323 found = g_hash_table_new(NULL, NULL);
5324 g_hash_table_add(found, to);
5325 queue = g_queue_new();
5326 g_queue_push_tail(queue, to);
5327
5328 while (!g_queue_is_empty(queue)) {
5329 BlockDriverState *v = g_queue_pop_head(queue);
5330 BdrvChild *c2;
5331
5332 QLIST_FOREACH(c2, &v->children, next) {
5333 if (c2 == c) {
5334 ret = false;
5335 break;
5336 }
5337
5338 if (g_hash_table_contains(found, c2->bs)) {
5339 continue;
5340 }
5341
5342 g_queue_push_tail(queue, c2->bs);
5343 g_hash_table_add(found, c2->bs);
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005344 }
5345 }
5346
Vladimir Sementsov-Ogievskiy2f30b7c2019-02-23 22:20:39 +03005347 g_queue_free(queue);
5348 g_hash_table_destroy(found);
5349
5350 return ret;
Kevin Wolfd0ac0382017-03-01 17:30:41 +01005351}
5352
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005353static void bdrv_remove_child_commit(void *opaque)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005354{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005355 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005356 bdrv_child_free(opaque);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005357}
5358
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005359static TransactionActionDrv bdrv_remove_child_drv = {
5360 .commit = bdrv_remove_child_commit,
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005361};
5362
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005363/*
5364 * Function doesn't update permissions, caller is responsible for this.
5365 *
5366 * @child->bs (if non-NULL) must be drained.
Kevin Wolf5661a002023-09-11 11:46:10 +02005367 *
5368 * After calling this function, the transaction @tran may only be completed
5369 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005370 */
5371static void GRAPH_WRLOCK bdrv_remove_child(BdrvChild *child, Transaction *tran)
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005372{
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005373 if (!child) {
5374 return;
5375 }
5376
5377 if (child->bs) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005378 assert(child->quiesced_parent);
Vladimir Sementsov-Ogievskiya2c37a32022-07-26 23:11:30 +03005379 bdrv_replace_child_tran(child, NULL, tran);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005380 }
5381
Vladimir Sementsov-Ogievskiy57f08942022-07-26 23:11:34 +03005382 tran_add(tran, &bdrv_remove_child_drv, child);
Vladimir Sementsov-Ogievskiy46541ee2021-04-28 18:17:50 +03005383}
5384
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005385/*
5386 * Both @from and @to (if non-NULL) must be drained. @to must be kept drained
5387 * until the transaction is completed.
Kevin Wolf5661a002023-09-11 11:46:10 +02005388 *
5389 * After calling this function, the transaction @tran may only be completed
5390 * while holding a writer lock for the graph.
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005391 */
5392static int GRAPH_WRLOCK
5393bdrv_replace_node_noperm(BlockDriverState *from,
5394 BlockDriverState *to,
5395 bool auto_skip, Transaction *tran,
5396 Error **errp)
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005397{
5398 BdrvChild *c, *next;
5399
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005400 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005401
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005402 assert(from->quiesce_counter);
5403 assert(to->quiesce_counter);
Kevin Wolf23987472022-11-18 18:41:09 +01005404
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005405 QLIST_FOREACH_SAFE(c, &from->parents, next_parent, next) {
5406 assert(c->bs == from);
5407 if (!should_update_child(c, to)) {
5408 if (auto_skip) {
5409 continue;
5410 }
5411 error_setg(errp, "Should not change '%s' link to '%s'",
5412 c->name, from->node_name);
5413 return -EINVAL;
5414 }
5415 if (c->frozen) {
5416 error_setg(errp, "Cannot change '%s' link to '%s'",
5417 c->name, from->node_name);
5418 return -EPERM;
5419 }
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005420 bdrv_replace_child_tran(c, to, tran);
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005421 }
5422
5423 return 0;
5424}
5425
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005426/*
5427 * With auto_skip=true bdrv_replace_node_common skips updating from parents
5428 * if it creates a parent-child relation loop or if parent is block-job.
5429 *
5430 * With auto_skip=false the error is returned if from has a parent which should
5431 * not be updated.
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005432 *
5433 * With @detach_subchain=true @to must be in a backing chain of @from. In this
5434 * case backing link of the cow-parent of @to is removed.
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005435 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005436static int bdrv_replace_node_common(BlockDriverState *from,
5437 BlockDriverState *to,
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005438 bool auto_skip, bool detach_subchain,
5439 Error **errp)
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005440{
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005441 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005442 g_autoptr(GSList) refresh_list = NULL;
Miroslav Rezanina2d369d62021-05-05 03:59:03 -04005443 BlockDriverState *to_cow_parent = NULL;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005444 int ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005445
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05005446 GLOBAL_STATE_CODE();
Hanna Reitz82b54cf2021-11-15 15:54:04 +01005447
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005448 /* Make sure that @from doesn't go away until we have successfully attached
5449 * all of its parents to @to. */
5450 bdrv_ref(from);
5451
Kevin Wolff871abd2019-05-21 19:00:25 +02005452 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
Kevin Wolf30dd65f2020-03-10 12:38:29 +01005453 assert(bdrv_get_aio_context(from) == bdrv_get_aio_context(to));
Kevin Wolff871abd2019-05-21 19:00:25 +02005454 bdrv_drained_begin(from);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005455 bdrv_drained_begin(to);
5456
5457 bdrv_graph_wrlock(to);
Kevin Wolff871abd2019-05-21 19:00:25 +02005458
Kevin Wolf372b69f2023-10-27 17:53:15 +02005459 if (detach_subchain) {
5460 assert(bdrv_chain_contains(from, to));
5461 assert(from != to);
5462 for (to_cow_parent = from;
5463 bdrv_filter_or_cow_bs(to_cow_parent) != to;
5464 to_cow_parent = bdrv_filter_or_cow_bs(to_cow_parent))
5465 {
5466 ;
5467 }
5468 }
5469
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005470 /*
5471 * Do the replacement without permission update.
5472 * Replacement may influence the permissions, we should calculate new
5473 * permissions based on new graph. If we fail, we'll roll-back the
5474 * replacement.
5475 */
Vladimir Sementsov-Ogievskiy117caba2021-04-28 18:17:48 +03005476 ret = bdrv_replace_node_noperm(from, to, auto_skip, tran, errp);
5477 if (ret < 0) {
5478 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005479 }
5480
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005481 if (detach_subchain) {
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005482 /* to_cow_parent is already drained because from is drained */
Vladimir Sementsov-Ogievskiyf38eaec2022-11-07 19:35:56 +03005483 bdrv_remove_child(bdrv_filter_or_cow_child(to_cow_parent), tran);
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005484 }
5485
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005486 refresh_list = g_slist_prepend(refresh_list, to);
5487 refresh_list = g_slist_prepend(refresh_list, from);
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005488
5489 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005490 if (ret < 0) {
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005491 goto out;
5492 }
5493
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005494 ret = 0;
5495
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005496out:
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005497 tran_finalize(tran, ret);
Kevin Wolf5661a002023-09-11 11:46:10 +02005498 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy3bb0e292021-04-28 18:17:45 +03005499
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005500 bdrv_drained_end(to);
Kevin Wolff871abd2019-05-21 19:00:25 +02005501 bdrv_drained_end(from);
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005502 bdrv_unref(from);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005503
5504 return ret;
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005505}
5506
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005507int bdrv_replace_node(BlockDriverState *from, BlockDriverState *to,
5508 Error **errp)
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005509{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005510 GLOBAL_STATE_CODE();
5511
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03005512 return bdrv_replace_node_common(from, to, true, false, errp);
5513}
5514
5515int bdrv_drop_filter(BlockDriverState *bs, Error **errp)
5516{
Kevin Wolf372b69f2023-10-27 17:53:15 +02005517 BlockDriverState *child_bs;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005518
Kevin Wolf372b69f2023-10-27 17:53:15 +02005519 GLOBAL_STATE_CODE();
5520 bdrv_graph_rdlock_main_loop();
5521 child_bs = bdrv_filter_or_cow_bs(bs);
5522 bdrv_graph_rdunlock_main_loop();
5523
5524 return bdrv_replace_node_common(bs, child_bs, true, true, errp);
Vladimir Sementsov-Ogievskiy313274b2020-11-06 15:42:36 +03005525}
5526
Jeff Cody8802d1f2012-02-28 15:54:06 -05005527/*
5528 * Add new bs contents at the top of an image chain while the chain is
5529 * live, while keeping required fields on the top layer.
5530 *
5531 * This will modify the BlockDriverState fields, and swap contents
5532 * between bs_new and bs_top. Both bs_new and bs_top are modified.
5533 *
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005534 * bs_new must not be attached to a BlockBackend and must not have backing
5535 * child.
Jeff Codyf6801b82012-03-27 16:30:19 -04005536 *
Jeff Cody8802d1f2012-02-28 15:54:06 -05005537 * This function does not create any image files.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005538 *
5539 * The caller must hold the AioContext lock for @bs_top.
Jeff Cody8802d1f2012-02-28 15:54:06 -05005540 */
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005541int bdrv_append(BlockDriverState *bs_new, BlockDriverState *bs_top,
5542 Error **errp)
Jeff Cody8802d1f2012-02-28 15:54:06 -05005543{
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005544 int ret;
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005545 BdrvChild *child;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005546 Transaction *tran = tran_new();
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005547 AioContext *old_context, *new_context = NULL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005548
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005549 GLOBAL_STATE_CODE();
5550
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005551 assert(!bs_new->backing);
5552
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005553 old_context = bdrv_get_aio_context(bs_top);
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005554 bdrv_drained_begin(bs_top);
5555
5556 /*
5557 * bdrv_drained_begin() requires that only the AioContext of the drained
5558 * node is locked, and at this point it can still differ from the AioContext
5559 * of bs_top.
5560 */
5561 new_context = bdrv_get_aio_context(bs_new);
5562 aio_context_release(old_context);
5563 aio_context_acquire(new_context);
5564 bdrv_drained_begin(bs_new);
5565 aio_context_release(new_context);
5566 aio_context_acquire(old_context);
5567 new_context = NULL;
5568
5569 bdrv_graph_wrlock(bs_top);
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005570
Vladimir Sementsov-Ogievskiy5bb047472022-07-26 23:11:32 +03005571 child = bdrv_attach_child_noperm(bs_new, bs_top, "backing",
5572 &child_of_bds, bdrv_backing_role(bs_new),
5573 tran, errp);
5574 if (!child) {
5575 ret = -EINVAL;
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005576 goto out;
Kevin Wolfb2c28322017-02-20 12:46:42 +01005577 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005578
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005579 /*
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005580 * bdrv_attach_child_noperm could change the AioContext of bs_top and
5581 * bs_new, but at least they are in the same AioContext now. This is the
5582 * AioContext that we need to lock for the rest of the function.
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005583 */
5584 new_context = bdrv_get_aio_context(bs_top);
5585
5586 if (old_context != new_context) {
5587 aio_context_release(old_context);
5588 aio_context_acquire(new_context);
5589 }
5590
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005591 ret = bdrv_replace_node_noperm(bs_top, bs_new, true, tran, errp);
Vladimir Sementsov-Ogievskiya1e708f2021-02-02 15:49:43 +03005592 if (ret < 0) {
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005593 goto out;
Kevin Wolf234ac1a2017-03-02 18:43:00 +01005594 }
Kevin Wolfdd62f1c2015-06-18 14:09:57 +02005595
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03005596 ret = bdrv_refresh_perms(bs_new, tran, errp);
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005597out:
5598 tran_finalize(tran, ret);
5599
Vladimir Sementsov-Ogievskiy1e4c7972021-04-28 18:17:55 +03005600 bdrv_refresh_limits(bs_top, NULL, NULL);
Kevin Wolf5661a002023-09-11 11:46:10 +02005601 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005602
Kevin Wolf7d4ca9d2023-09-11 11:46:09 +02005603 bdrv_drained_end(bs_top);
5604 bdrv_drained_end(bs_new);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005605
Stefano Garzarella60d90bf2023-02-14 18:16:21 +01005606 if (new_context && old_context != new_context) {
5607 aio_context_release(new_context);
5608 aio_context_acquire(old_context);
5609 }
5610
Vladimir Sementsov-Ogievskiy2272edc2021-04-28 18:17:49 +03005611 return ret;
Jeff Cody8802d1f2012-02-28 15:54:06 -05005612}
5613
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005614/* Not for empty child */
5615int bdrv_replace_child_bs(BdrvChild *child, BlockDriverState *new_bs,
5616 Error **errp)
5617{
5618 int ret;
5619 Transaction *tran = tran_new();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005620 g_autoptr(GSList) refresh_list = NULL;
5621 BlockDriverState *old_bs = child->bs;
5622
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005623 GLOBAL_STATE_CODE();
5624
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005625 bdrv_ref(old_bs);
5626 bdrv_drained_begin(old_bs);
5627 bdrv_drained_begin(new_bs);
Kevin Wolf2f64e1f2023-09-11 11:46:08 +02005628 bdrv_graph_wrlock(new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005629
Vladimir Sementsov-Ogievskiy0f0b1e22022-07-26 23:11:29 +03005630 bdrv_replace_child_tran(child, new_bs, tran);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005631
Vladimir Sementsov-Ogievskiyfb0ff4d2022-11-07 19:35:58 +03005632 refresh_list = g_slist_prepend(refresh_list, old_bs);
5633 refresh_list = g_slist_prepend(refresh_list, new_bs);
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005634
5635 ret = bdrv_list_refresh_perms(refresh_list, NULL, tran, errp);
5636
5637 tran_finalize(tran, ret);
5638
Kevin Wolf5661a002023-09-11 11:46:10 +02005639 bdrv_graph_wrunlock();
Vladimir Sementsov-Ogievskiybd8f4c42021-08-24 11:38:23 +03005640 bdrv_drained_end(old_bs);
5641 bdrv_drained_end(new_bs);
5642 bdrv_unref(old_bs);
5643
5644 return ret;
5645}
5646
Fam Zheng4f6fd342013-08-23 09:14:47 +08005647static void bdrv_delete(BlockDriverState *bs)
bellardb3380822004-03-14 21:38:54 +00005648{
Fam Zheng3718d8a2014-05-23 21:29:43 +08005649 assert(bdrv_op_blocker_is_empty(bs));
Fam Zheng4f6fd342013-08-23 09:14:47 +08005650 assert(!bs->refcnt);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005651 GLOBAL_STATE_CODE();
Markus Armbruster18846de2010-06-29 16:58:30 +02005652
Stefan Hajnoczi1b7bdbc2010-04-10 07:02:42 +01005653 /* remove from list, if necessary */
Kevin Wolf63eaaae2016-03-18 10:46:57 +01005654 if (bs->node_name[0] != '\0') {
5655 QTAILQ_REMOVE(&graph_bdrv_states, bs, node_list);
5656 }
Max Reitz2c1d04e2016-01-29 16:36:11 +01005657 QTAILQ_REMOVE(&all_bdrv_states, bs, bs_list);
5658
Anton Kuchin30c321f2019-05-07 11:12:56 +03005659 bdrv_close(bs);
5660
Stefan Hajnoczifa9185f2023-08-08 11:58:52 -04005661 qemu_mutex_destroy(&bs->reqs_lock);
5662
Anthony Liguori7267c092011-08-20 22:09:37 -05005663 g_free(bs);
bellardfc01f7e2003-06-30 10:03:06 +00005664}
5665
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005666
5667/*
5668 * Replace @bs by newly created block node.
5669 *
5670 * @options is a QDict of options to pass to the block drivers, or NULL for an
5671 * empty set of options. The reference to the QDict belongs to the block layer
5672 * after the call (even on failure), so if the caller intends to reuse the
5673 * dictionary, it needs to use qobject_ref() before calling bdrv_open.
Kevin Wolf88234072023-05-25 14:47:11 +02005674 *
5675 * The caller holds the AioContext lock for @bs. It must make sure that @bs
5676 * stays in the same AioContext, i.e. @options must not refer to nodes in a
5677 * different AioContext.
Vladimir Sementsov-Ogievskiy96796fa2021-09-20 14:55:36 +03005678 */
5679BlockDriverState *bdrv_insert_node(BlockDriverState *bs, QDict *options,
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005680 int flags, Error **errp)
5681{
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005682 ERRP_GUARD();
5683 int ret;
Kevin Wolf88234072023-05-25 14:47:11 +02005684 AioContext *ctx = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005685 BlockDriverState *new_node_bs = NULL;
5686 const char *drvname, *node_name;
5687 BlockDriver *drv;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005688
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005689 drvname = qdict_get_try_str(options, "driver");
5690 if (!drvname) {
5691 error_setg(errp, "driver is not specified");
5692 goto fail;
5693 }
5694
5695 drv = bdrv_find_format(drvname);
5696 if (!drv) {
5697 error_setg(errp, "Unknown driver: '%s'", drvname);
5698 goto fail;
5699 }
5700
5701 node_name = qdict_get_try_str(options, "node-name");
5702
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005703 GLOBAL_STATE_CODE();
5704
Kevin Wolf88234072023-05-25 14:47:11 +02005705 aio_context_release(ctx);
5706 aio_context_acquire(qemu_get_aio_context());
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005707 new_node_bs = bdrv_new_open_driver_opts(drv, node_name, options, flags,
5708 errp);
Kevin Wolf88234072023-05-25 14:47:11 +02005709 aio_context_release(qemu_get_aio_context());
5710 aio_context_acquire(ctx);
5711 assert(bdrv_get_aio_context(bs) == ctx);
5712
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005713 options = NULL; /* bdrv_new_open_driver() eats options */
5714 if (!new_node_bs) {
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005715 error_prepend(errp, "Could not create node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005716 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005717 }
5718
5719 bdrv_drained_begin(bs);
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005720 ret = bdrv_replace_node(bs, new_node_bs, errp);
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005721 bdrv_drained_end(bs);
5722
Vladimir Sementsov-Ogievskiyf053b7e2021-09-20 14:55:35 +03005723 if (ret < 0) {
5724 error_prepend(errp, "Could not replace node: ");
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005725 goto fail;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005726 }
5727
5728 return new_node_bs;
Vladimir Sementsov-Ogievskiyb11c8732021-09-20 14:55:37 +03005729
5730fail:
5731 qobject_unref(options);
5732 bdrv_unref(new_node_bs);
5733 return NULL;
Andrey Shinkevich8872ef72020-12-16 09:16:52 +03005734}
5735
aliguorie97fc192009-04-21 23:11:50 +00005736/*
5737 * Run consistency checks on an image
5738 *
Kevin Wolfe076f332010-06-29 11:43:13 +02005739 * Returns 0 if the check could be completed (it doesn't mean that the image is
Stefan Weila1c72732011-04-28 17:20:38 +02005740 * free of errors) or -errno when an internal error occurred. The results of the
Kevin Wolfe076f332010-06-29 11:43:13 +02005741 * check are stored in res.
aliguorie97fc192009-04-21 23:11:50 +00005742 */
Vladimir Sementsov-Ogievskiy21c22832020-09-24 21:54:10 +03005743int coroutine_fn bdrv_co_check(BlockDriverState *bs,
5744 BdrvCheckResult *res, BdrvCheckMode fix)
aliguorie97fc192009-04-21 23:11:50 +00005745{
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05005746 IO_CODE();
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01005747 assert_bdrv_graph_readable();
Max Reitz908bcd52014-08-07 22:47:55 +02005748 if (bs->drv == NULL) {
5749 return -ENOMEDIUM;
5750 }
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005751 if (bs->drv->bdrv_co_check == NULL) {
aliguorie97fc192009-04-21 23:11:50 +00005752 return -ENOTSUP;
5753 }
5754
Kevin Wolfe076f332010-06-29 11:43:13 +02005755 memset(res, 0, sizeof(*res));
Paolo Bonzini2fd61632018-03-01 17:36:19 +01005756 return bs->drv->bdrv_co_check(bs, res, fix);
5757}
5758
Kevin Wolf756e6732010-01-12 12:55:17 +01005759/*
5760 * Return values:
5761 * 0 - success
5762 * -EINVAL - backing format specified, but no file
5763 * -ENOSPC - can't update the backing file because no space is left in the
5764 * image file header
5765 * -ENOTSUP - format driver doesn't support changing the backing file
5766 */
Eric Blakee54ee1b2020-07-06 15:39:53 -05005767int bdrv_change_backing_file(BlockDriverState *bs, const char *backing_file,
Eric Blake497a30d2021-05-03 14:36:00 -07005768 const char *backing_fmt, bool require)
Kevin Wolf756e6732010-01-12 12:55:17 +01005769{
5770 BlockDriver *drv = bs->drv;
Paolo Bonzini469ef352012-04-12 14:01:02 +02005771 int ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005772
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005773 GLOBAL_STATE_CODE();
5774
Max Reitzd470ad42017-11-10 21:31:09 +01005775 if (!drv) {
5776 return -ENOMEDIUM;
5777 }
5778
Paolo Bonzini5f377792012-04-12 14:01:01 +02005779 /* Backing file format doesn't make sense without a backing file */
5780 if (backing_fmt && !backing_file) {
5781 return -EINVAL;
5782 }
5783
Eric Blake497a30d2021-05-03 14:36:00 -07005784 if (require && backing_file && !backing_fmt) {
5785 return -EINVAL;
Eric Blakee54ee1b2020-07-06 15:39:53 -05005786 }
5787
Kevin Wolf756e6732010-01-12 12:55:17 +01005788 if (drv->bdrv_change_backing_file != NULL) {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005789 ret = drv->bdrv_change_backing_file(bs, backing_file, backing_fmt);
Kevin Wolf756e6732010-01-12 12:55:17 +01005790 } else {
Paolo Bonzini469ef352012-04-12 14:01:02 +02005791 ret = -ENOTSUP;
Kevin Wolf756e6732010-01-12 12:55:17 +01005792 }
Paolo Bonzini469ef352012-04-12 14:01:02 +02005793
5794 if (ret == 0) {
5795 pstrcpy(bs->backing_file, sizeof(bs->backing_file), backing_file ?: "");
5796 pstrcpy(bs->backing_format, sizeof(bs->backing_format), backing_fmt ?: "");
Max Reitz998c2012019-02-01 20:29:08 +01005797 pstrcpy(bs->auto_backing_file, sizeof(bs->auto_backing_file),
5798 backing_file ?: "");
Paolo Bonzini469ef352012-04-12 14:01:02 +02005799 }
5800 return ret;
Kevin Wolf756e6732010-01-12 12:55:17 +01005801}
5802
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005803/*
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005804 * Finds the first non-filter node above bs in the chain between
5805 * active and bs. The returned node is either an immediate parent of
5806 * bs, or there are only filter nodes between the two.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005807 *
5808 * Returns NULL if bs is not found in active's image chain,
5809 * or if active == bs.
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005810 *
5811 * Returns the bottommost base image if bs == NULL.
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005812 */
5813BlockDriverState *bdrv_find_overlay(BlockDriverState *active,
5814 BlockDriverState *bs)
5815{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005816
5817 GLOBAL_STATE_CODE();
5818
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005819 bs = bdrv_skip_filters(bs);
5820 active = bdrv_skip_filters(active);
5821
5822 while (active) {
5823 BlockDriverState *next = bdrv_backing_chain_next(active);
5824 if (bs == next) {
5825 return active;
5826 }
5827 active = next;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005828 }
5829
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005830 return NULL;
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005831}
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005832
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005833/* Given a BDS, searches for the base layer. */
5834BlockDriverState *bdrv_find_base(BlockDriverState *bs)
5835{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005836 GLOBAL_STATE_CODE();
5837
Jeff Cody4caf0fc2014-06-25 15:35:26 -04005838 return bdrv_find_overlay(bs, NULL);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005839}
5840
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005841/*
Max Reitz7b99a262019-06-12 16:07:11 +02005842 * Return true if at least one of the COW (backing) and filter links
5843 * between @bs and @base is frozen. @errp is set if that's the case.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005844 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005845 */
5846bool bdrv_is_backing_chain_frozen(BlockDriverState *bs, BlockDriverState *base,
5847 Error **errp)
5848{
5849 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005850 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005851
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005852 GLOBAL_STATE_CODE();
5853
Max Reitz7b99a262019-06-12 16:07:11 +02005854 for (i = bs; i != base; i = child_bs(child)) {
5855 child = bdrv_filter_or_cow_child(i);
5856
5857 if (child && child->frozen) {
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005858 error_setg(errp, "Cannot change '%s' link from '%s' to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005859 child->name, i->node_name, child->bs->node_name);
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005860 return true;
5861 }
5862 }
5863
5864 return false;
5865}
5866
5867/*
Max Reitz7b99a262019-06-12 16:07:11 +02005868 * Freeze all COW (backing) and filter links between @bs and @base.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005869 * If any of the links is already frozen the operation is aborted and
5870 * none of the links are modified.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005871 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005872 * Returns 0 on success. On failure returns < 0 and sets @errp.
5873 */
5874int bdrv_freeze_backing_chain(BlockDriverState *bs, BlockDriverState *base,
5875 Error **errp)
5876{
5877 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005878 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005879
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005880 GLOBAL_STATE_CODE();
5881
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005882 if (bdrv_is_backing_chain_frozen(bs, base, errp)) {
5883 return -EPERM;
5884 }
5885
Max Reitz7b99a262019-06-12 16:07:11 +02005886 for (i = bs; i != base; i = child_bs(child)) {
5887 child = bdrv_filter_or_cow_child(i);
5888 if (child && child->bs->never_freeze) {
Max Reitze5182c12019-07-03 19:28:02 +02005889 error_setg(errp, "Cannot freeze '%s' link to '%s'",
Max Reitz7b99a262019-06-12 16:07:11 +02005890 child->name, child->bs->node_name);
Max Reitze5182c12019-07-03 19:28:02 +02005891 return -EPERM;
5892 }
5893 }
5894
Max Reitz7b99a262019-06-12 16:07:11 +02005895 for (i = bs; i != base; i = child_bs(child)) {
5896 child = bdrv_filter_or_cow_child(i);
5897 if (child) {
5898 child->frozen = true;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005899 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005900 }
5901
5902 return 0;
5903}
5904
5905/*
Max Reitz7b99a262019-06-12 16:07:11 +02005906 * Unfreeze all COW (backing) and filter links between @bs and @base.
5907 * The caller must ensure that all links are frozen before using this
5908 * function.
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005909 * @base must be reachable from @bs, or NULL.
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005910 */
5911void bdrv_unfreeze_backing_chain(BlockDriverState *bs, BlockDriverState *base)
5912{
5913 BlockDriverState *i;
Max Reitz7b99a262019-06-12 16:07:11 +02005914 BdrvChild *child;
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005915
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005916 GLOBAL_STATE_CODE();
5917
Max Reitz7b99a262019-06-12 16:07:11 +02005918 for (i = bs; i != base; i = child_bs(child)) {
5919 child = bdrv_filter_or_cow_child(i);
5920 if (child) {
5921 assert(child->frozen);
5922 child->frozen = false;
Alberto Garcia0f0998f2019-03-28 18:25:09 +02005923 }
Alberto Garcia2cad1eb2019-03-12 18:48:40 +02005924 }
5925}
5926
5927/*
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005928 * Drops images above 'base' up to and including 'top', and sets the image
5929 * above 'top' to have base as its backing file.
5930 *
5931 * Requires that the overlay to 'top' is opened r/w, so that the backing file
5932 * information in 'bs' can be properly updated.
5933 *
5934 * E.g., this will convert the following chain:
5935 * bottom <- base <- intermediate <- top <- active
5936 *
5937 * to
5938 *
5939 * bottom <- base <- active
5940 *
5941 * It is allowed for bottom==base, in which case it converts:
5942 *
5943 * base <- intermediate <- top <- active
5944 *
5945 * to
5946 *
5947 * base <- active
5948 *
Jeff Cody54e26902014-06-25 15:40:10 -04005949 * If backing_file_str is non-NULL, it will be used when modifying top's
5950 * overlay image metadata.
5951 *
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005952 * Error conditions:
5953 * if active == top, that is considered an error
5954 *
5955 */
Kevin Wolfbde70712017-06-27 20:36:18 +02005956int bdrv_drop_intermediate(BlockDriverState *top, BlockDriverState *base,
5957 const char *backing_file_str)
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005958{
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005959 BlockDriverState *explicit_top = top;
5960 bool update_inherits_from;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005961 BdrvChild *c;
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005962 Error *local_err = NULL;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005963 int ret = -EIO;
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005964 g_autoptr(GSList) updated_children = NULL;
5965 GSList *p;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005966
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05005967 GLOBAL_STATE_CODE();
5968
Kevin Wolf6858eba2017-06-29 19:32:21 +02005969 bdrv_ref(top);
Kevin Wolf631086d2022-11-18 18:41:03 +01005970 bdrv_drained_begin(base);
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02005971 bdrv_graph_rdlock_main_loop();
Kevin Wolf6858eba2017-06-29 19:32:21 +02005972
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005973 if (!top->drv || !base->drv) {
5974 goto exit;
5975 }
5976
Kevin Wolf5db15a52015-09-14 15:33:33 +02005977 /* Make sure that base is in the backing chain of top */
5978 if (!bdrv_chain_contains(top, base)) {
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005979 goto exit;
5980 }
5981
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005982 /* If 'base' recursively inherits from 'top' then we should set
5983 * base->inherits_from to top->inherits_from after 'top' and all
5984 * other intermediate nodes have been dropped.
5985 * If 'top' is an implicit node (e.g. "commit_top") we should skip
5986 * it because no one inherits from it. We use explicit_top for that. */
Max Reitzdcf3f9b2019-06-12 17:34:45 +02005987 explicit_top = bdrv_skip_implicit_filters(explicit_top);
Alberto Garcia6bd858b2018-10-31 18:16:38 +02005988 update_inherits_from = bdrv_inherits_from_recursive(base, explicit_top);
5989
Jeff Cody6ebdcee2012-09-27 13:29:12 -04005990 /* success - we can delete the intermediate states, and link top->base */
Max Reitzf30c66b2019-02-01 20:29:05 +01005991 if (!backing_file_str) {
5992 bdrv_refresh_filename(base);
5993 backing_file_str = base->filename;
5994 }
Kevin Wolf61f09ce2017-09-19 16:22:54 +02005995
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03005996 QLIST_FOREACH(c, &top->parents, next_parent) {
5997 updated_children = g_slist_prepend(updated_children, c);
5998 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01005999
Vladimir Sementsov-Ogievskiy3108a152021-04-28 18:17:51 +03006000 /*
6001 * It seems correct to pass detach_subchain=true here, but it triggers
6002 * one more yet not fixed bug, when due to nested aio_poll loop we switch to
6003 * another drained section, which modify the graph (for example, removing
6004 * the child, which we keep in updated_children list). So, it's a TODO.
6005 *
6006 * Note, bug triggered if pass detach_subchain=true here and run
6007 * test-bdrv-drain. test_drop_intermediate_poll() test-case will crash.
6008 * That's a FIXME.
6009 */
6010 bdrv_replace_node_common(top, base, false, false, &local_err);
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03006011 if (local_err) {
6012 error_report_err(local_err);
6013 goto exit;
6014 }
6015
6016 for (p = updated_children; p; p = p->next) {
6017 c = p->data;
6018
Max Reitzbd86fb92020-05-13 13:05:13 +02006019 if (c->klass->update_filename) {
6020 ret = c->klass->update_filename(c, base, backing_file_str,
6021 &local_err);
Kevin Wolf61f09ce2017-09-19 16:22:54 +02006022 if (ret < 0) {
Vladimir Sementsov-Ogievskiyd669ed62020-11-06 15:42:37 +03006023 /*
6024 * TODO: Actually, we want to rollback all previous iterations
6025 * of this loop, and (which is almost impossible) previous
6026 * bdrv_replace_node()...
6027 *
6028 * Note, that c->klass->update_filename may lead to permission
6029 * update, so it's a bad idea to call it inside permission
6030 * update transaction of bdrv_replace_node.
6031 */
Kevin Wolf61f09ce2017-09-19 16:22:54 +02006032 error_report_err(local_err);
6033 goto exit;
6034 }
6035 }
Kevin Wolf12fa4af2017-02-17 20:42:32 +01006036 }
Jeff Cody6ebdcee2012-09-27 13:29:12 -04006037
Alberto Garcia6bd858b2018-10-31 18:16:38 +02006038 if (update_inherits_from) {
6039 base->inherits_from = explicit_top->inherits_from;
6040 }
6041
Jeff Cody6ebdcee2012-09-27 13:29:12 -04006042 ret = 0;
Jeff Cody6ebdcee2012-09-27 13:29:12 -04006043exit:
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02006044 bdrv_graph_rdunlock_main_loop();
Kevin Wolf631086d2022-11-18 18:41:03 +01006045 bdrv_drained_end(base);
Kevin Wolf6858eba2017-06-29 19:32:21 +02006046 bdrv_unref(top);
Jeff Cody6ebdcee2012-09-27 13:29:12 -04006047 return ret;
6048}
6049
bellard83f64092006-08-01 16:21:11 +00006050/**
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006051 * Implementation of BlockDriver.bdrv_co_get_allocated_file_size() that
Max Reitz081e4652019-06-12 18:14:13 +02006052 * sums the size of all data-bearing children. (This excludes backing
6053 * children.)
6054 */
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02006055static int64_t coroutine_fn GRAPH_RDLOCK
6056bdrv_sum_allocated_file_size(BlockDriverState *bs)
Max Reitz081e4652019-06-12 18:14:13 +02006057{
6058 BdrvChild *child;
6059 int64_t child_size, sum = 0;
6060
6061 QLIST_FOREACH(child, &bs->children, next) {
6062 if (child->role & (BDRV_CHILD_DATA | BDRV_CHILD_METADATA |
6063 BDRV_CHILD_FILTERED))
6064 {
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006065 child_size = bdrv_co_get_allocated_file_size(child->bs);
Max Reitz081e4652019-06-12 18:14:13 +02006066 if (child_size < 0) {
6067 return child_size;
6068 }
6069 sum += child_size;
6070 }
6071 }
6072
6073 return sum;
6074}
6075
6076/**
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006077 * Length of a allocated file in bytes. Sparse files are counted by actual
6078 * allocated space. Return < 0 if error or unknown.
6079 */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006080int64_t coroutine_fn bdrv_co_get_allocated_file_size(BlockDriverState *bs)
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006081{
6082 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006083 IO_CODE();
Emanuele Giuseppe Espositode335632023-05-04 13:57:43 +02006084 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006085
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006086 if (!drv) {
6087 return -ENOMEDIUM;
6088 }
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006089 if (drv->bdrv_co_get_allocated_file_size) {
6090 return drv->bdrv_co_get_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006091 }
Max Reitz081e4652019-06-12 18:14:13 +02006092
6093 if (drv->bdrv_file_open) {
6094 /*
6095 * Protocol drivers default to -ENOTSUP (most of their data is
6096 * not stored in any of their children (if they even have any),
6097 * so there is no generic way to figure it out).
6098 */
6099 return -ENOTSUP;
6100 } else if (drv->is_filter) {
6101 /* Filter drivers default to the size of their filtered child */
Emanuele Giuseppe Esposito82618d72023-01-13 21:42:07 +01006102 return bdrv_co_get_allocated_file_size(bdrv_filter_bs(bs));
Max Reitz081e4652019-06-12 18:14:13 +02006103 } else {
6104 /* Other drivers default to summing their children's sizes */
6105 return bdrv_sum_allocated_file_size(bs);
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006106 }
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006107}
6108
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006109/*
6110 * bdrv_measure:
6111 * @drv: Format driver
6112 * @opts: Creation options for new image
6113 * @in_bs: Existing image containing data for new image (may be NULL)
6114 * @errp: Error object
6115 * Returns: A #BlockMeasureInfo (free using qapi_free_BlockMeasureInfo())
6116 * or NULL on error
6117 *
6118 * Calculate file size required to create a new image.
6119 *
6120 * If @in_bs is given then space for allocated clusters and zero clusters
6121 * from that image are included in the calculation. If @opts contains a
6122 * backing file that is shared by @in_bs then backing clusters may be omitted
6123 * from the calculation.
6124 *
6125 * If @in_bs is NULL then the calculation includes no allocated clusters
6126 * unless a preallocation option is given in @opts.
6127 *
6128 * Note that @in_bs may use a different BlockDriver from @drv.
6129 *
6130 * If an error occurs the @errp pointer is set.
6131 */
6132BlockMeasureInfo *bdrv_measure(BlockDriver *drv, QemuOpts *opts,
6133 BlockDriverState *in_bs, Error **errp)
6134{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006135 IO_CODE();
Stefan Hajnoczi90880ff2017-07-05 13:57:30 +01006136 if (!drv->bdrv_measure) {
6137 error_setg(errp, "Block driver '%s' does not support size measurement",
6138 drv->format_name);
6139 return NULL;
6140 }
6141
6142 return drv->bdrv_measure(opts, in_bs, errp);
6143}
6144
Fam Zheng4a1d5e12011-07-12 19:56:39 +08006145/**
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006146 * Return number of sectors on success, -errno on error.
bellard83f64092006-08-01 16:21:11 +00006147 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006148int64_t coroutine_fn bdrv_co_nb_sectors(BlockDriverState *bs)
bellard83f64092006-08-01 16:21:11 +00006149{
6150 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006151 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006152 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006153
bellard83f64092006-08-01 16:21:11 +00006154 if (!drv)
bellard19cb3732006-08-19 11:45:59 +00006155 return -ENOMEDIUM;
Stefan Hajnoczi51762282010-04-19 16:56:41 +01006156
Paolo Bonzini160a29e2023-04-07 17:32:56 +02006157 if (bs->bl.has_variable_length) {
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006158 int ret = bdrv_co_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolfb94a2612013-10-29 12:18:58 +01006159 if (ret < 0) {
6160 return ret;
Stefan Hajnoczi46a4e4e2011-03-29 20:04:41 +01006161 }
bellard83f64092006-08-01 16:21:11 +00006162 }
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006163 return bs->total_sectors;
6164}
6165
Paolo Bonzini81f730d2023-04-07 17:33:03 +02006166/*
6167 * This wrapper is written by hand because this function is in the hot I/O path,
6168 * via blk_get_geometry.
6169 */
6170int64_t coroutine_mixed_fn bdrv_nb_sectors(BlockDriverState *bs)
6171{
6172 BlockDriver *drv = bs->drv;
6173 IO_CODE();
6174
6175 if (!drv)
6176 return -ENOMEDIUM;
6177
6178 if (bs->bl.has_variable_length) {
6179 int ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
6180 if (ret < 0) {
6181 return ret;
6182 }
6183 }
6184
6185 return bs->total_sectors;
6186}
6187
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006188/**
6189 * Return length in bytes on success, -errno on error.
6190 * The length is always a multiple of BDRV_SECTOR_SIZE.
6191 */
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006192int64_t coroutine_fn bdrv_co_getlength(BlockDriverState *bs)
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006193{
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006194 int64_t ret;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006195 IO_CODE();
Kevin Wolf8ab81402023-02-03 16:22:02 +01006196 assert_bdrv_graph_readable();
Markus Armbruster65a9bb22014-06-26 13:23:17 +02006197
Emanuele Giuseppe Espositoc86422c2023-01-13 21:42:04 +01006198 ret = bdrv_co_nb_sectors(bs);
Eric Blake122860b2020-11-05 09:51:22 -06006199 if (ret < 0) {
6200 return ret;
6201 }
6202 if (ret > INT64_MAX / BDRV_SECTOR_SIZE) {
6203 return -EFBIG;
6204 }
6205 return ret * BDRV_SECTOR_SIZE;
bellardfc01f7e2003-06-30 10:03:06 +00006206}
6207
Eric Blake54115412016-06-23 16:37:26 -06006208bool bdrv_is_sg(BlockDriverState *bs)
ths985a03b2007-12-24 16:10:43 +00006209{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006210 IO_CODE();
ths985a03b2007-12-24 16:10:43 +00006211 return bs->sg;
6212}
6213
Max Reitzae23f782019-06-12 22:57:15 +02006214/**
6215 * Return whether the given node supports compressed writes.
6216 */
6217bool bdrv_supports_compressed_writes(BlockDriverState *bs)
6218{
6219 BlockDriverState *filtered;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006220 IO_CODE();
Max Reitzae23f782019-06-12 22:57:15 +02006221
6222 if (!bs->drv || !block_driver_can_compress(bs->drv)) {
6223 return false;
6224 }
6225
6226 filtered = bdrv_filter_bs(bs);
6227 if (filtered) {
6228 /*
6229 * Filters can only forward compressed writes, so we have to
6230 * check the child.
6231 */
6232 return bdrv_supports_compressed_writes(filtered);
6233 }
6234
6235 return true;
6236}
6237
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006238const char *bdrv_get_format_name(BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006239{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006240 IO_CODE();
Markus Armbrusterf8d6bba2012-06-13 10:11:48 +02006241 return bs->drv ? bs->drv->format_name : NULL;
bellardea2384d2004-08-01 21:59:26 +00006242}
6243
Stefan Hajnocziada42402014-08-27 12:08:55 +01006244static int qsort_strcmp(const void *a, const void *b)
6245{
Max Reitzceff5bd2016-10-12 22:49:05 +02006246 return strcmp(*(char *const *)a, *(char *const *)b);
Stefan Hajnocziada42402014-08-27 12:08:55 +01006247}
6248
ths5fafdf22007-09-16 21:08:06 +00006249void bdrv_iterate_format(void (*it)(void *opaque, const char *name),
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006250 void *opaque, bool read_only)
bellardea2384d2004-08-01 21:59:26 +00006251{
6252 BlockDriver *drv;
Jeff Codye855e4f2014-04-28 18:29:54 -04006253 int count = 0;
Stefan Hajnocziada42402014-08-27 12:08:55 +01006254 int i;
Jeff Codye855e4f2014-04-28 18:29:54 -04006255 const char **formats = NULL;
bellardea2384d2004-08-01 21:59:26 +00006256
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006257 GLOBAL_STATE_CODE();
6258
Stefan Hajnoczi8a22f022010-04-13 10:29:33 +01006259 QLIST_FOREACH(drv, &bdrv_drivers, list) {
Jeff Codye855e4f2014-04-28 18:29:54 -04006260 if (drv->format_name) {
6261 bool found = false;
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006262
6263 if (use_bdrv_whitelist && !bdrv_is_whitelisted(drv, read_only)) {
6264 continue;
6265 }
6266
Markus Armbrusterfb2575f2023-09-21 14:13:11 +02006267 i = count;
Jeff Codye855e4f2014-04-28 18:29:54 -04006268 while (formats && i && !found) {
6269 found = !strcmp(formats[--i], drv->format_name);
6270 }
6271
6272 if (!found) {
Markus Armbruster5839e532014-08-19 10:31:08 +02006273 formats = g_renew(const char *, formats, count + 1);
Jeff Codye855e4f2014-04-28 18:29:54 -04006274 formats[count++] = drv->format_name;
Jeff Codye855e4f2014-04-28 18:29:54 -04006275 }
6276 }
bellardea2384d2004-08-01 21:59:26 +00006277 }
Stefan Hajnocziada42402014-08-27 12:08:55 +01006278
Max Reitzeb0df692016-10-12 22:49:06 +02006279 for (i = 0; i < (int)ARRAY_SIZE(block_driver_modules); i++) {
6280 const char *format_name = block_driver_modules[i].format_name;
6281
6282 if (format_name) {
6283 bool found = false;
6284 int j = count;
6285
Andrey Shinkevich9ac404c2019-03-07 16:33:58 +03006286 if (use_bdrv_whitelist &&
6287 !bdrv_format_is_whitelisted(format_name, read_only)) {
6288 continue;
6289 }
6290
Max Reitzeb0df692016-10-12 22:49:06 +02006291 while (formats && j && !found) {
6292 found = !strcmp(formats[--j], format_name);
6293 }
6294
6295 if (!found) {
6296 formats = g_renew(const char *, formats, count + 1);
6297 formats[count++] = format_name;
6298 }
6299 }
6300 }
6301
Stefan Hajnocziada42402014-08-27 12:08:55 +01006302 qsort(formats, count, sizeof(formats[0]), qsort_strcmp);
6303
6304 for (i = 0; i < count; i++) {
6305 it(opaque, formats[i]);
6306 }
6307
Jeff Codye855e4f2014-04-28 18:29:54 -04006308 g_free(formats);
bellardea2384d2004-08-01 21:59:26 +00006309}
6310
Benoît Canetdc364f42014-01-23 21:31:32 +01006311/* This function is to find a node in the bs graph */
6312BlockDriverState *bdrv_find_node(const char *node_name)
6313{
6314 BlockDriverState *bs;
6315
6316 assert(node_name);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006317 GLOBAL_STATE_CODE();
Benoît Canetdc364f42014-01-23 21:31:32 +01006318
6319 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6320 if (!strcmp(node_name, bs->node_name)) {
6321 return bs;
6322 }
6323 }
6324 return NULL;
6325}
6326
Benoît Canetc13163f2014-01-23 21:31:34 +01006327/* Put this QMP function here so it can access the static graph_bdrv_states. */
Peter Krempafacda542020-01-20 09:50:49 +01006328BlockDeviceInfoList *bdrv_named_nodes_list(bool flat,
6329 Error **errp)
Benoît Canetc13163f2014-01-23 21:31:34 +01006330{
Eric Blake9812e712020-10-27 00:05:47 -05006331 BlockDeviceInfoList *list;
Benoît Canetc13163f2014-01-23 21:31:34 +01006332 BlockDriverState *bs;
6333
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006334 GLOBAL_STATE_CODE();
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02006335 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006336
Benoît Canetc13163f2014-01-23 21:31:34 +01006337 list = NULL;
6338 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
Peter Krempafacda542020-01-20 09:50:49 +01006339 BlockDeviceInfo *info = bdrv_block_device_info(NULL, bs, flat, errp);
Alberto Garciad5a8ee62015-04-17 14:52:43 +03006340 if (!info) {
6341 qapi_free_BlockDeviceInfoList(list);
6342 return NULL;
6343 }
Eric Blake9812e712020-10-27 00:05:47 -05006344 QAPI_LIST_PREPEND(list, info);
Benoît Canetc13163f2014-01-23 21:31:34 +01006345 }
6346
6347 return list;
6348}
6349
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006350typedef struct XDbgBlockGraphConstructor {
6351 XDbgBlockGraph *graph;
6352 GHashTable *graph_nodes;
6353} XDbgBlockGraphConstructor;
6354
6355static XDbgBlockGraphConstructor *xdbg_graph_new(void)
6356{
6357 XDbgBlockGraphConstructor *gr = g_new(XDbgBlockGraphConstructor, 1);
6358
6359 gr->graph = g_new0(XDbgBlockGraph, 1);
6360 gr->graph_nodes = g_hash_table_new(NULL, NULL);
6361
6362 return gr;
6363}
6364
6365static XDbgBlockGraph *xdbg_graph_finalize(XDbgBlockGraphConstructor *gr)
6366{
6367 XDbgBlockGraph *graph = gr->graph;
6368
6369 g_hash_table_destroy(gr->graph_nodes);
6370 g_free(gr);
6371
6372 return graph;
6373}
6374
6375static uintptr_t xdbg_graph_node_num(XDbgBlockGraphConstructor *gr, void *node)
6376{
6377 uintptr_t ret = (uintptr_t)g_hash_table_lookup(gr->graph_nodes, node);
6378
6379 if (ret != 0) {
6380 return ret;
6381 }
6382
6383 /*
6384 * Start counting from 1, not 0, because 0 interferes with not-found (NULL)
6385 * answer of g_hash_table_lookup.
6386 */
6387 ret = g_hash_table_size(gr->graph_nodes) + 1;
6388 g_hash_table_insert(gr->graph_nodes, node, (void *)ret);
6389
6390 return ret;
6391}
6392
6393static void xdbg_graph_add_node(XDbgBlockGraphConstructor *gr, void *node,
6394 XDbgBlockGraphNodeType type, const char *name)
6395{
6396 XDbgBlockGraphNode *n;
6397
6398 n = g_new0(XDbgBlockGraphNode, 1);
6399
6400 n->id = xdbg_graph_node_num(gr, node);
6401 n->type = type;
6402 n->name = g_strdup(name);
6403
Eric Blake9812e712020-10-27 00:05:47 -05006404 QAPI_LIST_PREPEND(gr->graph->nodes, n);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006405}
6406
6407static void xdbg_graph_add_edge(XDbgBlockGraphConstructor *gr, void *parent,
6408 const BdrvChild *child)
6409{
Max Reitzcdb1cec2019-11-08 13:34:52 +01006410 BlockPermission qapi_perm;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006411 XDbgBlockGraphEdge *edge;
Emanuele Giuseppe Esposito862fded2022-03-03 10:15:55 -05006412 GLOBAL_STATE_CODE();
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006413
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006414 edge = g_new0(XDbgBlockGraphEdge, 1);
6415
6416 edge->parent = xdbg_graph_node_num(gr, parent);
6417 edge->child = xdbg_graph_node_num(gr, child->bs);
6418 edge->name = g_strdup(child->name);
6419
Max Reitzcdb1cec2019-11-08 13:34:52 +01006420 for (qapi_perm = 0; qapi_perm < BLOCK_PERMISSION__MAX; qapi_perm++) {
6421 uint64_t flag = bdrv_qapi_perm_to_blk_perm(qapi_perm);
6422
6423 if (flag & child->perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006424 QAPI_LIST_PREPEND(edge->perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006425 }
Max Reitzcdb1cec2019-11-08 13:34:52 +01006426 if (flag & child->shared_perm) {
Eric Blake9812e712020-10-27 00:05:47 -05006427 QAPI_LIST_PREPEND(edge->shared_perm, qapi_perm);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006428 }
6429 }
6430
Eric Blake9812e712020-10-27 00:05:47 -05006431 QAPI_LIST_PREPEND(gr->graph->edges, edge);
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006432}
6433
6434
6435XDbgBlockGraph *bdrv_get_xdbg_block_graph(Error **errp)
6436{
6437 BlockBackend *blk;
6438 BlockJob *job;
6439 BlockDriverState *bs;
6440 BdrvChild *child;
6441 XDbgBlockGraphConstructor *gr = xdbg_graph_new();
6442
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006443 GLOBAL_STATE_CODE();
6444
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006445 for (blk = blk_all_next(NULL); blk; blk = blk_all_next(blk)) {
6446 char *allocated_name = NULL;
6447 const char *name = blk_name(blk);
6448
6449 if (!*name) {
6450 name = allocated_name = blk_get_attached_dev_id(blk);
6451 }
6452 xdbg_graph_add_node(gr, blk, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_BACKEND,
6453 name);
6454 g_free(allocated_name);
6455 if (blk_root(blk)) {
6456 xdbg_graph_add_edge(gr, blk, blk_root(blk));
6457 }
6458 }
6459
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006460 WITH_JOB_LOCK_GUARD() {
6461 for (job = block_job_next_locked(NULL); job;
6462 job = block_job_next_locked(job)) {
6463 GSList *el;
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006464
Emanuele Giuseppe Esposito880eeec2022-09-26 05:32:04 -04006465 xdbg_graph_add_node(gr, job, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_JOB,
6466 job->job.id);
6467 for (el = job->nodes; el; el = el->next) {
6468 xdbg_graph_add_edge(gr, job, (BdrvChild *)el->data);
6469 }
Vladimir Sementsov-Ogievskiy5d3b4e92018-12-21 20:09:07 +03006470 }
6471 }
6472
6473 QTAILQ_FOREACH(bs, &graph_bdrv_states, node_list) {
6474 xdbg_graph_add_node(gr, bs, X_DBG_BLOCK_GRAPH_NODE_TYPE_BLOCK_DRIVER,
6475 bs->node_name);
6476 QLIST_FOREACH(child, &bs->children, next) {
6477 xdbg_graph_add_edge(gr, bs, child);
6478 }
6479 }
6480
6481 return xdbg_graph_finalize(gr);
6482}
6483
Benoît Canet12d3ba82014-01-23 21:31:35 +01006484BlockDriverState *bdrv_lookup_bs(const char *device,
6485 const char *node_name,
6486 Error **errp)
6487{
Markus Armbruster7f06d472014-10-07 13:59:12 +02006488 BlockBackend *blk;
6489 BlockDriverState *bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006490
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006491 GLOBAL_STATE_CODE();
6492
Benoît Canet12d3ba82014-01-23 21:31:35 +01006493 if (device) {
Markus Armbruster7f06d472014-10-07 13:59:12 +02006494 blk = blk_by_name(device);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006495
Markus Armbruster7f06d472014-10-07 13:59:12 +02006496 if (blk) {
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006497 bs = blk_bs(blk);
6498 if (!bs) {
Max Reitz5433c242015-10-19 17:53:29 +02006499 error_setg(errp, "Device '%s' has no medium", device);
Max Reitz5433c242015-10-19 17:53:29 +02006500 }
6501
Alberto Garcia9f4ed6f2015-10-26 16:46:49 +02006502 return bs;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006503 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006504 }
6505
Benoît Canetdd67fa52014-02-12 17:15:06 +01006506 if (node_name) {
6507 bs = bdrv_find_node(node_name);
Benoît Canet12d3ba82014-01-23 21:31:35 +01006508
Benoît Canetdd67fa52014-02-12 17:15:06 +01006509 if (bs) {
6510 return bs;
6511 }
Benoît Canet12d3ba82014-01-23 21:31:35 +01006512 }
6513
Connor Kuehl785ec4b2021-03-05 09:19:28 -06006514 error_setg(errp, "Cannot find device=\'%s\' nor node-name=\'%s\'",
Benoît Canetdd67fa52014-02-12 17:15:06 +01006515 device ? device : "",
6516 node_name ? node_name : "");
6517 return NULL;
Benoît Canet12d3ba82014-01-23 21:31:35 +01006518}
6519
Jeff Cody5a6684d2014-06-25 15:40:09 -04006520/* If 'base' is in the same chain as 'top', return true. Otherwise,
6521 * return false. If either argument is NULL, return false. */
6522bool bdrv_chain_contains(BlockDriverState *top, BlockDriverState *base)
6523{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006524
6525 GLOBAL_STATE_CODE();
Kevin Wolf372b69f2023-10-27 17:53:15 +02006526 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006527
Jeff Cody5a6684d2014-06-25 15:40:09 -04006528 while (top && top != base) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006529 top = bdrv_filter_or_cow_bs(top);
Jeff Cody5a6684d2014-06-25 15:40:09 -04006530 }
6531
6532 return top != NULL;
6533}
6534
Fam Zheng04df7652014-10-31 11:32:54 +08006535BlockDriverState *bdrv_next_node(BlockDriverState *bs)
6536{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006537 GLOBAL_STATE_CODE();
Fam Zheng04df7652014-10-31 11:32:54 +08006538 if (!bs) {
6539 return QTAILQ_FIRST(&graph_bdrv_states);
6540 }
6541 return QTAILQ_NEXT(bs, node_list);
6542}
6543
Kevin Wolf0f122642018-03-28 18:29:18 +02006544BlockDriverState *bdrv_next_all_states(BlockDriverState *bs)
6545{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006546 GLOBAL_STATE_CODE();
Kevin Wolf0f122642018-03-28 18:29:18 +02006547 if (!bs) {
6548 return QTAILQ_FIRST(&all_bdrv_states);
6549 }
6550 return QTAILQ_NEXT(bs, bs_list);
6551}
6552
Fam Zheng20a9e772014-10-31 11:32:55 +08006553const char *bdrv_get_node_name(const BlockDriverState *bs)
6554{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006555 IO_CODE();
Fam Zheng20a9e772014-10-31 11:32:55 +08006556 return bs->node_name;
6557}
6558
Kevin Wolf1f0c4612016-03-22 18:38:44 +01006559const char *bdrv_get_parent_name(const BlockDriverState *bs)
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006560{
6561 BdrvChild *c;
6562 const char *name;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05006563 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006564
6565 /* If multiple parents have a name, just pick the first one. */
6566 QLIST_FOREACH(c, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006567 if (c->klass->get_name) {
6568 name = c->klass->get_name(c);
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006569 if (name && *name) {
6570 return name;
6571 }
6572 }
6573 }
6574
6575 return NULL;
6576}
6577
Markus Armbruster7f06d472014-10-07 13:59:12 +02006578/* TODO check what callers really want: bs->node_name or blk_name() */
Markus Armbrusterbfb197e2014-10-07 13:59:11 +02006579const char *bdrv_get_device_name(const BlockDriverState *bs)
bellardea2384d2004-08-01 21:59:26 +00006580{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006581 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006582 return bdrv_get_parent_name(bs) ?: "";
bellardea2384d2004-08-01 21:59:26 +00006583}
6584
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006585/* This can be used to identify nodes that might not have a device
6586 * name associated. Since node and device names live in the same
6587 * namespace, the result is unambiguous. The exception is if both are
6588 * absent, then this returns an empty (non-null) string. */
6589const char *bdrv_get_device_or_node_name(const BlockDriverState *bs)
6590{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006591 IO_CODE();
Kevin Wolf4c265bf2016-02-26 10:22:16 +01006592 return bdrv_get_parent_name(bs) ?: bs->node_name;
Alberto Garcia9b2aa842015-04-08 12:29:18 +03006593}
6594
Markus Armbrusterc8433282012-06-05 16:49:24 +02006595int bdrv_get_flags(BlockDriverState *bs)
6596{
Hanna Reitz15aee7a2022-04-27 13:40:54 +02006597 IO_CODE();
Markus Armbrusterc8433282012-06-05 16:49:24 +02006598 return bs->open_flags;
6599}
6600
Peter Lieven3ac21622013-06-28 12:47:42 +02006601int bdrv_has_zero_init_1(BlockDriverState *bs)
6602{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006603 GLOBAL_STATE_CODE();
Peter Lieven3ac21622013-06-28 12:47:42 +02006604 return 1;
6605}
6606
Kevin Wolf06717982023-10-27 17:53:11 +02006607int coroutine_mixed_fn bdrv_has_zero_init(BlockDriverState *bs)
Kevin Wolff2feebb2010-04-14 17:30:35 +02006608{
Max Reitz93393e62019-06-12 17:03:38 +02006609 BlockDriverState *filtered;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006610 GLOBAL_STATE_CODE();
Max Reitz93393e62019-06-12 17:03:38 +02006611
Max Reitzd470ad42017-11-10 21:31:09 +01006612 if (!bs->drv) {
6613 return 0;
6614 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006615
Paolo Bonzini11212d82013-09-04 19:00:27 +02006616 /* If BS is a copy on write image, it is initialized to
6617 the contents of the base image, which may not be zeroes. */
Max Reitz34778172019-06-12 17:10:46 +02006618 if (bdrv_cow_child(bs)) {
Paolo Bonzini11212d82013-09-04 19:00:27 +02006619 return 0;
6620 }
Kevin Wolf336c1c12010-07-28 11:26:29 +02006621 if (bs->drv->bdrv_has_zero_init) {
6622 return bs->drv->bdrv_has_zero_init(bs);
Kevin Wolff2feebb2010-04-14 17:30:35 +02006623 }
Max Reitz93393e62019-06-12 17:03:38 +02006624
6625 filtered = bdrv_filter_bs(bs);
6626 if (filtered) {
6627 return bdrv_has_zero_init(filtered);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006628 }
Kevin Wolff2feebb2010-04-14 17:30:35 +02006629
Peter Lieven3ac21622013-06-28 12:47:42 +02006630 /* safe default */
6631 return 0;
Kevin Wolff2feebb2010-04-14 17:30:35 +02006632}
6633
Peter Lieven4ce78692013-10-24 12:06:54 +02006634bool bdrv_can_write_zeroes_with_unmap(BlockDriverState *bs)
6635{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006636 IO_CODE();
Denis V. Lunev2f0342e2016-07-14 16:33:26 +03006637 if (!(bs->open_flags & BDRV_O_UNMAP)) {
Peter Lieven4ce78692013-10-24 12:06:54 +02006638 return false;
6639 }
6640
Eric Blakee24d8132018-01-26 13:34:39 -06006641 return bs->supported_zero_flags & BDRV_REQ_MAY_UNMAP;
Peter Lieven4ce78692013-10-24 12:06:54 +02006642}
6643
ths5fafdf22007-09-16 21:08:06 +00006644void bdrv_get_backing_filename(BlockDriverState *bs,
bellard83f64092006-08-01 16:21:11 +00006645 char *filename, int filename_size)
bellardea2384d2004-08-01 21:59:26 +00006646{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006647 IO_CODE();
Kevin Wolf3574c602011-10-26 11:02:11 +02006648 pstrcpy(filename, filename_size, bs->backing_file);
bellardea2384d2004-08-01 21:59:26 +00006649}
6650
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006651int coroutine_fn bdrv_co_get_info(BlockDriverState *bs, BlockDriverInfo *bdi)
bellardfaea38e2006-08-05 21:31:00 +00006652{
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006653 int ret;
bellardfaea38e2006-08-05 21:31:00 +00006654 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006655 IO_CODE();
Emanuele Giuseppe Espositoa00e70c2023-05-04 13:57:44 +02006656 assert_bdrv_graph_readable();
6657
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006658 /* if bs->drv == NULL, bs is closed, so there's nothing to do here */
6659 if (!drv) {
bellard19cb3732006-08-19 11:45:59 +00006660 return -ENOMEDIUM;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006661 }
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006662 if (!drv->bdrv_co_get_info) {
Max Reitz93393e62019-06-12 17:03:38 +02006663 BlockDriverState *filtered = bdrv_filter_bs(bs);
6664 if (filtered) {
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006665 return bdrv_co_get_info(filtered, bdi);
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006666 }
bellardfaea38e2006-08-05 21:31:00 +00006667 return -ENOTSUP;
Manos Pitsidianakis5a612c02017-07-13 18:30:25 +03006668 }
bellardfaea38e2006-08-05 21:31:00 +00006669 memset(bdi, 0, sizeof(*bdi));
Emanuele Giuseppe Esposito3d47eb02023-01-13 21:42:08 +01006670 ret = drv->bdrv_co_get_info(bs, bdi);
Andrey Drobyshevc54483b2023-07-11 20:25:51 +03006671 if (bdi->subcluster_size == 0) {
6672 /*
6673 * If the driver left this unset, subclusters are not supported.
6674 * Then it is safe to treat each cluster as having only one subcluster.
6675 */
6676 bdi->subcluster_size = bdi->cluster_size;
6677 }
Vladimir Sementsov-Ogievskiy8b117002020-12-04 01:27:13 +03006678 if (ret < 0) {
6679 return ret;
6680 }
6681
6682 if (bdi->cluster_size > BDRV_MAX_ALIGNMENT) {
6683 return -EINVAL;
6684 }
6685
6686 return 0;
bellardfaea38e2006-08-05 21:31:00 +00006687}
6688
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006689ImageInfoSpecific *bdrv_get_specific_info(BlockDriverState *bs,
6690 Error **errp)
Max Reitzeae041f2013-10-09 10:46:16 +02006691{
6692 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006693 IO_CODE();
Max Reitzeae041f2013-10-09 10:46:16 +02006694 if (drv && drv->bdrv_get_specific_info) {
Andrey Shinkevich1bf6e9c2019-02-08 18:06:06 +03006695 return drv->bdrv_get_specific_info(bs, errp);
Max Reitzeae041f2013-10-09 10:46:16 +02006696 }
6697 return NULL;
6698}
6699
Anton Nefedovd9245592019-09-23 15:17:37 +03006700BlockStatsSpecific *bdrv_get_specific_stats(BlockDriverState *bs)
6701{
6702 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006703 IO_CODE();
Anton Nefedovd9245592019-09-23 15:17:37 +03006704 if (!drv || !drv->bdrv_get_specific_stats) {
6705 return NULL;
6706 }
6707 return drv->bdrv_get_specific_stats(bs);
6708}
6709
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006710void coroutine_fn bdrv_co_debug_event(BlockDriverState *bs, BlkdebugEvent event)
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006711{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05006712 IO_CODE();
Emanuele Giuseppe Espositocb2bfaa2023-05-04 13:57:45 +02006713 assert_bdrv_graph_readable();
6714
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006715 if (!bs || !bs->drv || !bs->drv->bdrv_co_debug_event) {
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006716 return;
6717 }
6718
Emanuele Giuseppe Espositoc834dc02023-01-13 21:42:11 +01006719 bs->drv->bdrv_co_debug_event(bs, event);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006720}
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006721
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006722static BlockDriverState * GRAPH_RDLOCK
6723bdrv_find_debug_node(BlockDriverState *bs)
Kevin Wolf41c695c2012-12-06 14:32:58 +01006724{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05006725 GLOBAL_STATE_CODE();
Kevin Wolf41c695c2012-12-06 14:32:58 +01006726 while (bs && bs->drv && !bs->drv->bdrv_debug_breakpoint) {
Max Reitzf706a922019-06-12 17:42:13 +02006727 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006728 }
6729
6730 if (bs && bs->drv && bs->drv->bdrv_debug_breakpoint) {
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006731 assert(bs->drv->bdrv_debug_remove_breakpoint);
6732 return bs;
6733 }
6734
6735 return NULL;
6736}
6737
6738int bdrv_debug_breakpoint(BlockDriverState *bs, const char *event,
6739 const char *tag)
6740{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006741 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006742 GRAPH_RDLOCK_GUARD_MAINLOOP();
6743
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006744 bs = bdrv_find_debug_node(bs);
6745 if (bs) {
Kevin Wolf41c695c2012-12-06 14:32:58 +01006746 return bs->drv->bdrv_debug_breakpoint(bs, event, tag);
6747 }
6748
6749 return -ENOTSUP;
6750}
6751
Fam Zheng4cc70e92013-11-20 10:01:54 +08006752int bdrv_debug_remove_breakpoint(BlockDriverState *bs, const char *tag)
6753{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006754 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006755 GRAPH_RDLOCK_GUARD_MAINLOOP();
6756
Vladimir Sementsov-Ogievskiyd10529a2019-09-20 17:20:49 +03006757 bs = bdrv_find_debug_node(bs);
6758 if (bs) {
Fam Zheng4cc70e92013-11-20 10:01:54 +08006759 return bs->drv->bdrv_debug_remove_breakpoint(bs, tag);
6760 }
6761
6762 return -ENOTSUP;
6763}
6764
Kevin Wolf41c695c2012-12-06 14:32:58 +01006765int bdrv_debug_resume(BlockDriverState *bs, const char *tag)
6766{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006767 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006768 GRAPH_RDLOCK_GUARD_MAINLOOP();
6769
Max Reitz938789e2014-03-10 23:44:08 +01006770 while (bs && (!bs->drv || !bs->drv->bdrv_debug_resume)) {
Max Reitzf706a922019-06-12 17:42:13 +02006771 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006772 }
6773
6774 if (bs && bs->drv && bs->drv->bdrv_debug_resume) {
6775 return bs->drv->bdrv_debug_resume(bs, tag);
6776 }
6777
6778 return -ENOTSUP;
6779}
6780
6781bool bdrv_debug_is_suspended(BlockDriverState *bs, const char *tag)
6782{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006783 GLOBAL_STATE_CODE();
Kevin Wolfc0fc5122023-09-29 16:51:46 +02006784 GRAPH_RDLOCK_GUARD_MAINLOOP();
6785
Kevin Wolf41c695c2012-12-06 14:32:58 +01006786 while (bs && bs->drv && !bs->drv->bdrv_debug_is_suspended) {
Max Reitzf706a922019-06-12 17:42:13 +02006787 bs = bdrv_primary_bs(bs);
Kevin Wolf41c695c2012-12-06 14:32:58 +01006788 }
6789
6790 if (bs && bs->drv && bs->drv->bdrv_debug_is_suspended) {
6791 return bs->drv->bdrv_debug_is_suspended(bs, tag);
6792 }
6793
6794 return false;
Kevin Wolf8b9b0cc2010-03-15 17:27:00 +01006795}
6796
Jeff Codyb1b1d782012-10-16 15:49:09 -04006797/* backing_file can either be relative, or absolute, or a protocol. If it is
6798 * relative, it must be relative to the chain. So, passing in bs->filename
6799 * from a BDS as backing_file should not be done, as that may be relative to
6800 * the CWD rather than the chain. */
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006801BlockDriverState *bdrv_find_backing_image(BlockDriverState *bs,
6802 const char *backing_file)
6803{
Jeff Codyb1b1d782012-10-16 15:49:09 -04006804 char *filename_full = NULL;
6805 char *backing_file_full = NULL;
6806 char *filename_tmp = NULL;
6807 int is_protocol = 0;
Max Reitz0b877d02018-08-01 20:34:11 +02006808 bool filenames_refreshed = false;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006809 BlockDriverState *curr_bs = NULL;
6810 BlockDriverState *retval = NULL;
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006811 BlockDriverState *bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006812
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006813 GLOBAL_STATE_CODE();
Kevin Wolfb7cfc7d2023-09-29 16:51:45 +02006814 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006815
Jeff Codyb1b1d782012-10-16 15:49:09 -04006816 if (!bs || !bs->drv || !backing_file) {
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006817 return NULL;
6818 }
6819
Jeff Codyb1b1d782012-10-16 15:49:09 -04006820 filename_full = g_malloc(PATH_MAX);
6821 backing_file_full = g_malloc(PATH_MAX);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006822
6823 is_protocol = path_has_protocol(backing_file);
6824
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006825 /*
6826 * Being largely a legacy function, skip any filters here
6827 * (because filters do not have normal filenames, so they cannot
6828 * match anyway; and allowing json:{} filenames is a bit out of
6829 * scope).
6830 */
6831 for (curr_bs = bdrv_skip_filters(bs);
6832 bdrv_cow_child(curr_bs) != NULL;
6833 curr_bs = bs_below)
6834 {
6835 bs_below = bdrv_backing_chain_next(curr_bs);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006836
Max Reitz0b877d02018-08-01 20:34:11 +02006837 if (bdrv_backing_overridden(curr_bs)) {
6838 /*
6839 * If the backing file was overridden, we can only compare
6840 * directly against the backing node's filename.
6841 */
6842
6843 if (!filenames_refreshed) {
6844 /*
6845 * This will automatically refresh all of the
6846 * filenames in the rest of the backing chain, so we
6847 * only need to do this once.
6848 */
6849 bdrv_refresh_filename(bs_below);
6850 filenames_refreshed = true;
6851 }
6852
6853 if (strcmp(backing_file, bs_below->filename) == 0) {
6854 retval = bs_below;
6855 break;
6856 }
6857 } else if (is_protocol || path_has_protocol(curr_bs->backing_file)) {
6858 /*
6859 * If either of the filename paths is actually a protocol, then
6860 * compare unmodified paths; otherwise make paths relative.
6861 */
Max Reitz6b6833c2019-02-01 20:29:15 +01006862 char *backing_file_full_ret;
6863
Jeff Codyb1b1d782012-10-16 15:49:09 -04006864 if (strcmp(backing_file, curr_bs->backing_file) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006865 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006866 break;
6867 }
Jeff Cody418661e2017-01-25 20:08:20 -05006868 /* Also check against the full backing filename for the image */
Max Reitz6b6833c2019-02-01 20:29:15 +01006869 backing_file_full_ret = bdrv_get_full_backing_filename(curr_bs,
6870 NULL);
6871 if (backing_file_full_ret) {
6872 bool equal = strcmp(backing_file, backing_file_full_ret) == 0;
6873 g_free(backing_file_full_ret);
6874 if (equal) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006875 retval = bs_below;
Jeff Cody418661e2017-01-25 20:08:20 -05006876 break;
6877 }
Jeff Cody418661e2017-01-25 20:08:20 -05006878 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006879 } else {
Jeff Codyb1b1d782012-10-16 15:49:09 -04006880 /* If not an absolute filename path, make it relative to the current
6881 * image's filename path */
Max Reitz2d9158c2019-02-01 20:29:17 +01006882 filename_tmp = bdrv_make_absolute_filename(curr_bs, backing_file,
6883 NULL);
6884 /* We are going to compare canonicalized absolute pathnames */
6885 if (!filename_tmp || !realpath(filename_tmp, filename_full)) {
6886 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006887 continue;
6888 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006889 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006890
6891 /* We need to make sure the backing filename we are comparing against
6892 * is relative to the current image filename (or absolute) */
Max Reitz2d9158c2019-02-01 20:29:17 +01006893 filename_tmp = bdrv_get_full_backing_filename(curr_bs, NULL);
6894 if (!filename_tmp || !realpath(filename_tmp, backing_file_full)) {
6895 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006896 continue;
6897 }
Max Reitz2d9158c2019-02-01 20:29:17 +01006898 g_free(filename_tmp);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006899
6900 if (strcmp(backing_file_full, filename_full) == 0) {
Max Reitzdcf3f9b2019-06-12 17:34:45 +02006901 retval = bs_below;
Jeff Codyb1b1d782012-10-16 15:49:09 -04006902 break;
6903 }
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006904 }
6905 }
6906
Jeff Codyb1b1d782012-10-16 15:49:09 -04006907 g_free(filename_full);
6908 g_free(backing_file_full);
Jeff Codyb1b1d782012-10-16 15:49:09 -04006909 return retval;
Marcelo Tosattie8a6bb92012-01-18 14:40:51 +00006910}
6911
bellardea2384d2004-08-01 21:59:26 +00006912void bdrv_init(void)
6913{
Kevin Wolfe5f05f82021-07-09 18:41:41 +02006914#ifdef CONFIG_BDRV_WHITELIST_TOOLS
6915 use_bdrv_whitelist = 1;
6916#endif
Anthony Liguori5efa9d52009-05-09 17:03:42 -05006917 module_call_init(MODULE_INIT_BLOCK);
bellardea2384d2004-08-01 21:59:26 +00006918}
pbrookce1a14d2006-08-07 02:38:06 +00006919
Markus Armbrustereb852012009-10-27 18:41:44 +01006920void bdrv_init_with_whitelist(void)
6921{
6922 use_bdrv_whitelist = 1;
6923 bdrv_init();
6924}
6925
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05006926int bdrv_activate(BlockDriverState *bs, Error **errp)
6927{
Kevin Wolf4417ab72017-05-04 18:52:37 +02006928 BdrvChild *child, *parent;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006929 Error *local_err = NULL;
6930 int ret;
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006931 BdrvDirtyBitmap *bm;
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006932
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006933 GLOBAL_STATE_CODE();
Kevin Wolf3804e3c2023-09-11 11:46:12 +02006934 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05006935
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006936 if (!bs->drv) {
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006937 return -ENOMEDIUM;
Anthony Liguori0f154232011-11-14 15:09:45 -06006938 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006939
Vladimir Sementsov-Ogievskiy16e977d2017-01-31 14:23:08 +03006940 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006941 bdrv_activate(child->bs, &local_err);
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006942 if (local_err) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006943 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006944 return -EINVAL;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006945 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006946 }
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006947
Kevin Wolfdafe0962017-11-16 13:00:01 +01006948 /*
6949 * Update permissions, they may differ for inactive nodes.
6950 *
6951 * Note that the required permissions of inactive images are always a
6952 * subset of the permissions required after activating the image. This
6953 * allows us to just get the permissions upfront without restricting
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006954 * bdrv_co_invalidate_cache().
Kevin Wolfdafe0962017-11-16 13:00:01 +01006955 *
6956 * It also means that in error cases, we don't have to try and revert to
6957 * the old permissions (which is an operation that could fail, too). We can
6958 * just keep the extended permissions for the next time that an activation
6959 * of the image is tried.
6960 */
Kevin Wolf7bb49412019-12-17 15:06:38 +01006961 if (bs->open_flags & BDRV_O_INACTIVE) {
6962 bs->open_flags &= ~BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03006963 ret = bdrv_refresh_perms(bs, NULL, errp);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006964 if (ret < 0) {
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006965 bs->open_flags |= BDRV_O_INACTIVE;
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006966 return ret;
Fam Zheng0d1c5c92016-05-11 10:45:33 +08006967 }
Kevin Wolf3456a8d2014-03-11 10:58:39 +01006968
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05006969 ret = bdrv_invalidate_cache(bs, errp);
6970 if (ret < 0) {
6971 bs->open_flags |= BDRV_O_INACTIVE;
6972 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006973 }
Vladimir Sementsov-Ogievskiy9c98f142018-10-29 16:23:17 -04006974
Kevin Wolf7bb49412019-12-17 15:06:38 +01006975 FOR_EACH_DIRTY_BITMAP(bs, bm) {
6976 bdrv_dirty_bitmap_skip_store(bm, false);
6977 }
6978
Emanuele Giuseppe Espositoc0579602023-01-13 21:42:03 +01006979 ret = bdrv_refresh_total_sectors(bs, bs->total_sectors);
Kevin Wolf7bb49412019-12-17 15:06:38 +01006980 if (ret < 0) {
6981 bs->open_flags |= BDRV_O_INACTIVE;
6982 error_setg_errno(errp, -ret, "Could not refresh total sector count");
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006983 return ret;
Kevin Wolf7bb49412019-12-17 15:06:38 +01006984 }
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01006985 }
Kevin Wolf4417ab72017-05-04 18:52:37 +02006986
6987 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02006988 if (parent->klass->activate) {
6989 parent->klass->activate(parent, &local_err);
Kevin Wolf4417ab72017-05-04 18:52:37 +02006990 if (local_err) {
Kevin Wolf78fc3b32019-01-31 15:16:10 +01006991 bs->open_flags |= BDRV_O_INACTIVE;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006992 error_propagate(errp, local_err);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006993 return -EINVAL;
Kevin Wolf4417ab72017-05-04 18:52:37 +02006994 }
6995 }
6996 }
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03006997
6998 return 0;
Anthony Liguori0f154232011-11-14 15:09:45 -06006999}
7000
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05007001int coroutine_fn bdrv_co_invalidate_cache(BlockDriverState *bs, Error **errp)
7002{
7003 Error *local_err = NULL;
Emanuele Giuseppe Esposito1581a702022-03-03 10:16:09 -05007004 IO_CODE();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05007005
7006 assert(!(bs->open_flags & BDRV_O_INACTIVE));
Kevin Wolf1b3ff9f2022-12-07 14:18:38 +01007007 assert_bdrv_graph_readable();
Emanuele Giuseppe Esposito11d0c9b2022-02-09 05:54:52 -05007008
7009 if (bs->drv->bdrv_co_invalidate_cache) {
7010 bs->drv->bdrv_co_invalidate_cache(bs, &local_err);
7011 if (local_err) {
7012 error_propagate(errp, local_err);
7013 return -EINVAL;
7014 }
7015 }
7016
7017 return 0;
7018}
7019
Emanuele Giuseppe Esposito3b717192022-02-09 05:54:51 -05007020void bdrv_activate_all(Error **errp)
Anthony Liguori0f154232011-11-14 15:09:45 -06007021{
Kevin Wolf7c8eece2016-03-22 18:58:50 +01007022 BlockDriverState *bs;
Kevin Wolf88be7b42016-05-20 18:49:07 +02007023 BdrvNextIterator it;
Anthony Liguori0f154232011-11-14 15:09:45 -06007024
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007025 GLOBAL_STATE_CODE();
Kevin Wolf2b3912f2023-09-29 16:51:39 +02007026 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007027
Kevin Wolf88be7b42016-05-20 18:49:07 +02007028 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02007029 AioContext *aio_context = bdrv_get_aio_context(bs);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03007030 int ret;
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02007031
7032 aio_context_acquire(aio_context);
Emanuele Giuseppe Espositoa94750d2022-02-09 05:54:50 -05007033 ret = bdrv_activate(bs, errp);
Stefan Hajnoczied78cda2014-05-08 16:34:35 +02007034 aio_context_release(aio_context);
Vladimir Sementsov-Ogievskiy54166452020-09-24 21:54:08 +03007035 if (ret < 0) {
Max Reitz5e003f12017-11-10 18:25:45 +01007036 bdrv_next_cleanup(&it);
Kevin Wolf5a8a30d2014-03-12 15:59:16 +01007037 return;
7038 }
Anthony Liguori0f154232011-11-14 15:09:45 -06007039 }
7040}
7041
Kevin Wolf0e6bad12023-09-29 16:51:38 +02007042static bool GRAPH_RDLOCK
7043bdrv_has_bds_parent(BlockDriverState *bs, bool only_active)
Kevin Wolf9e372712018-11-23 15:11:14 +01007044{
7045 BdrvChild *parent;
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007046 GLOBAL_STATE_CODE();
Kevin Wolf9e372712018-11-23 15:11:14 +01007047
7048 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02007049 if (parent->klass->parent_is_bds) {
Kevin Wolf9e372712018-11-23 15:11:14 +01007050 BlockDriverState *parent_bs = parent->opaque;
7051 if (!only_active || !(parent_bs->open_flags & BDRV_O_INACTIVE)) {
7052 return true;
7053 }
7054 }
7055 }
7056
7057 return false;
7058}
7059
Kevin Wolf0e6bad12023-09-29 16:51:38 +02007060static int GRAPH_RDLOCK bdrv_inactivate_recurse(BlockDriverState *bs)
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007061{
Kevin Wolfcfa1a572017-05-04 18:52:38 +02007062 BdrvChild *child, *parent;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007063 int ret;
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03007064 uint64_t cumulative_perms, cumulative_shared_perms;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007065
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007066 GLOBAL_STATE_CODE();
7067
Max Reitzd470ad42017-11-10 21:31:09 +01007068 if (!bs->drv) {
7069 return -ENOMEDIUM;
7070 }
7071
Kevin Wolf9e372712018-11-23 15:11:14 +01007072 /* Make sure that we don't inactivate a child before its parent.
7073 * It will be covered by recursion from the yet active parent. */
7074 if (bdrv_has_bds_parent(bs, true)) {
7075 return 0;
7076 }
7077
7078 assert(!(bs->open_flags & BDRV_O_INACTIVE));
7079
7080 /* Inactivate this node */
7081 if (bs->drv->bdrv_inactivate) {
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007082 ret = bs->drv->bdrv_inactivate(bs);
7083 if (ret < 0) {
7084 return ret;
7085 }
7086 }
7087
Kevin Wolf9e372712018-11-23 15:11:14 +01007088 QLIST_FOREACH(parent, &bs->parents, next_parent) {
Max Reitzbd86fb92020-05-13 13:05:13 +02007089 if (parent->klass->inactivate) {
7090 ret = parent->klass->inactivate(parent);
Kevin Wolf9e372712018-11-23 15:11:14 +01007091 if (ret < 0) {
7092 return ret;
Kevin Wolfcfa1a572017-05-04 18:52:38 +02007093 }
7094 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007095 }
Kevin Wolf38701b62017-05-04 18:52:39 +02007096
Vladimir Sementsov-Ogievskiya13de402021-09-11 15:00:27 +03007097 bdrv_get_cumulative_perm(bs, &cumulative_perms,
7098 &cumulative_shared_perms);
7099 if (cumulative_perms & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED)) {
7100 /* Our inactive parents still need write access. Inactivation failed. */
7101 return -EPERM;
7102 }
7103
Kevin Wolf9e372712018-11-23 15:11:14 +01007104 bs->open_flags |= BDRV_O_INACTIVE;
7105
Vladimir Sementsov-Ogievskiybb87e4d2020-11-06 15:42:38 +03007106 /*
7107 * Update permissions, they may differ for inactive nodes.
7108 * We only tried to loosen restrictions, so errors are not fatal, ignore
7109 * them.
7110 */
Vladimir Sementsov-Ogievskiyf1316ed2022-11-07 19:35:57 +03007111 bdrv_refresh_perms(bs, NULL, NULL);
Kevin Wolf9e372712018-11-23 15:11:14 +01007112
7113 /* Recursively inactivate children */
Kevin Wolf38701b62017-05-04 18:52:39 +02007114 QLIST_FOREACH(child, &bs->children, next) {
Kevin Wolf9e372712018-11-23 15:11:14 +01007115 ret = bdrv_inactivate_recurse(child->bs);
Kevin Wolf38701b62017-05-04 18:52:39 +02007116 if (ret < 0) {
7117 return ret;
7118 }
7119 }
7120
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007121 return 0;
7122}
7123
7124int bdrv_inactivate_all(void)
7125{
Max Reitz79720af2016-03-16 19:54:44 +01007126 BlockDriverState *bs = NULL;
Kevin Wolf88be7b42016-05-20 18:49:07 +02007127 BdrvNextIterator it;
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007128 int ret = 0;
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007129 GSList *aio_ctxs = NULL, *ctx;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007130
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007131 GLOBAL_STATE_CODE();
Kevin Wolf0e6bad12023-09-29 16:51:38 +02007132 GRAPH_RDLOCK_GUARD_MAINLOOP();
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007133
Kevin Wolf88be7b42016-05-20 18:49:07 +02007134 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007135 AioContext *aio_context = bdrv_get_aio_context(bs);
7136
7137 if (!g_slist_find(aio_ctxs, aio_context)) {
7138 aio_ctxs = g_slist_prepend(aio_ctxs, aio_context);
7139 aio_context_acquire(aio_context);
7140 }
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007141 }
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007142
Kevin Wolf9e372712018-11-23 15:11:14 +01007143 for (bs = bdrv_first(&it); bs; bs = bdrv_next(&it)) {
7144 /* Nodes with BDS parents are covered by recursion from the last
7145 * parent that gets inactivated. Don't inactivate them a second
7146 * time if that has already happened. */
7147 if (bdrv_has_bds_parent(bs, false)) {
7148 continue;
7149 }
7150 ret = bdrv_inactivate_recurse(bs);
7151 if (ret < 0) {
7152 bdrv_next_cleanup(&it);
7153 goto out;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007154 }
7155 }
7156
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007157out:
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007158 for (ctx = aio_ctxs; ctx != NULL; ctx = ctx->next) {
7159 AioContext *aio_context = ctx->data;
7160 aio_context_release(aio_context);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007161 }
Paolo Bonzinibd6458e2017-12-07 20:13:15 +00007162 g_slist_free(aio_ctxs);
Fam Zhengaad0b7a2016-05-11 10:45:35 +08007163
7164 return ret;
Kevin Wolf76b1c7f2015-12-22 14:07:08 +01007165}
7166
Kevin Wolff9f05dc2011-07-15 13:50:26 +02007167/**************************************************************/
bellard19cb3732006-08-19 11:45:59 +00007168/* removable device support */
7169
7170/**
7171 * Return TRUE if the media is present
7172 */
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007173bool coroutine_fn bdrv_co_is_inserted(BlockDriverState *bs)
bellard19cb3732006-08-19 11:45:59 +00007174{
7175 BlockDriver *drv = bs->drv;
Max Reitz28d7a782015-10-19 17:53:13 +02007176 BdrvChild *child;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007177 IO_CODE();
Emanuele Giuseppe Espositoc73ff922023-02-03 16:21:57 +01007178 assert_bdrv_graph_readable();
Markus Armbrustera1aff5b2011-09-06 18:58:41 +02007179
Max Reitze031f752015-10-19 17:53:11 +02007180 if (!drv) {
7181 return false;
7182 }
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007183 if (drv->bdrv_co_is_inserted) {
7184 return drv->bdrv_co_is_inserted(bs);
Max Reitze031f752015-10-19 17:53:11 +02007185 }
Max Reitz28d7a782015-10-19 17:53:13 +02007186 QLIST_FOREACH(child, &bs->children, next) {
Emanuele Giuseppe Esposito1e97be92023-01-13 21:42:02 +01007187 if (!bdrv_co_is_inserted(child->bs)) {
Max Reitz28d7a782015-10-19 17:53:13 +02007188 return false;
7189 }
7190 }
7191 return true;
bellard19cb3732006-08-19 11:45:59 +00007192}
7193
7194/**
bellard19cb3732006-08-19 11:45:59 +00007195 * If eject_flag is TRUE, eject the media. Otherwise, close the tray
7196 */
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007197void coroutine_fn bdrv_co_eject(BlockDriverState *bs, bool eject_flag)
bellard19cb3732006-08-19 11:45:59 +00007198{
7199 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007200 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007201 assert_bdrv_graph_readable();
bellard19cb3732006-08-19 11:45:59 +00007202
Emanuele Giuseppe Esposito2531b392023-01-13 21:42:09 +01007203 if (drv && drv->bdrv_co_eject) {
7204 drv->bdrv_co_eject(bs, eject_flag);
bellard19cb3732006-08-19 11:45:59 +00007205 }
bellard19cb3732006-08-19 11:45:59 +00007206}
7207
bellard19cb3732006-08-19 11:45:59 +00007208/**
7209 * Lock or unlock the media (if it is locked, the user won't be able
7210 * to eject it manually).
7211 */
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007212void coroutine_fn bdrv_co_lock_medium(BlockDriverState *bs, bool locked)
bellard19cb3732006-08-19 11:45:59 +00007213{
7214 BlockDriver *drv = bs->drv;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007215 IO_CODE();
Kevin Wolf79a292e2023-02-03 16:21:58 +01007216 assert_bdrv_graph_readable();
Markus Armbruster025e8492011-09-06 18:58:47 +02007217 trace_bdrv_lock_medium(bs, locked);
Stefan Hajnoczib8c6d092011-03-29 20:04:40 +01007218
Emanuele Giuseppe Esposito2c752612023-01-13 21:42:10 +01007219 if (drv && drv->bdrv_co_lock_medium) {
7220 drv->bdrv_co_lock_medium(bs, locked);
bellard19cb3732006-08-19 11:45:59 +00007221 }
7222}
ths985a03b2007-12-24 16:10:43 +00007223
Fam Zheng9fcb0252013-08-23 09:14:46 +08007224/* Get a reference to bs */
7225void bdrv_ref(BlockDriverState *bs)
7226{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007227 GLOBAL_STATE_CODE();
Fam Zheng9fcb0252013-08-23 09:14:46 +08007228 bs->refcnt++;
7229}
7230
7231/* Release a previously grabbed reference to bs.
7232 * If after releasing, reference count is zero, the BlockDriverState is
7233 * deleted. */
7234void bdrv_unref(BlockDriverState *bs)
7235{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007236 GLOBAL_STATE_CODE();
Jeff Cody9a4d5ca2014-07-23 17:22:57 -04007237 if (!bs) {
7238 return;
7239 }
Fam Zheng9fcb0252013-08-23 09:14:46 +08007240 assert(bs->refcnt > 0);
7241 if (--bs->refcnt == 0) {
7242 bdrv_delete(bs);
7243 }
7244}
7245
Kevin Wolfac2ae232023-09-11 11:46:04 +02007246/*
7247 * Release a BlockDriverState reference while holding the graph write lock.
7248 *
7249 * Calling bdrv_unref() directly is forbidden while holding the graph lock
7250 * because bdrv_close() both involves polling and taking the graph lock
7251 * internally. bdrv_schedule_unref() instead delays decreasing the refcount and
7252 * possibly closing @bs until the graph lock is released.
7253 */
7254void bdrv_schedule_unref(BlockDriverState *bs)
7255{
7256 if (!bs) {
7257 return;
7258 }
7259 aio_bh_schedule_oneshot(qemu_get_aio_context(),
7260 (QEMUBHFunc *) bdrv_unref, bs);
7261}
7262
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007263struct BdrvOpBlocker {
7264 Error *reason;
7265 QLIST_ENTRY(BdrvOpBlocker) list;
7266};
7267
7268bool bdrv_op_is_blocked(BlockDriverState *bs, BlockOpType op, Error **errp)
7269{
7270 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007271 GLOBAL_STATE_CODE();
Kevin Wolf0bb79c92023-09-29 16:51:49 +02007272
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007273 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7274 if (!QLIST_EMPTY(&bs->op_blockers[op])) {
7275 blocker = QLIST_FIRST(&bs->op_blockers[op]);
Markus Armbruster4b576642018-10-17 10:26:25 +02007276 error_propagate_prepend(errp, error_copy(blocker->reason),
7277 "Node '%s' is busy: ",
7278 bdrv_get_device_or_node_name(bs));
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007279 return true;
7280 }
7281 return false;
7282}
7283
7284void bdrv_op_block(BlockDriverState *bs, BlockOpType op, Error *reason)
7285{
7286 BdrvOpBlocker *blocker;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007287 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007288 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7289
Markus Armbruster5839e532014-08-19 10:31:08 +02007290 blocker = g_new0(BdrvOpBlocker, 1);
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007291 blocker->reason = reason;
7292 QLIST_INSERT_HEAD(&bs->op_blockers[op], blocker, list);
7293}
7294
7295void bdrv_op_unblock(BlockDriverState *bs, BlockOpType op, Error *reason)
7296{
7297 BdrvOpBlocker *blocker, *next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007298 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007299 assert((int) op >= 0 && op < BLOCK_OP_TYPE_MAX);
7300 QLIST_FOREACH_SAFE(blocker, &bs->op_blockers[op], list, next) {
7301 if (blocker->reason == reason) {
7302 QLIST_REMOVE(blocker, list);
7303 g_free(blocker);
7304 }
7305 }
7306}
7307
7308void bdrv_op_block_all(BlockDriverState *bs, Error *reason)
7309{
7310 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007311 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007312 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7313 bdrv_op_block(bs, i, reason);
7314 }
7315}
7316
7317void bdrv_op_unblock_all(BlockDriverState *bs, Error *reason)
7318{
7319 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007320 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007321 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7322 bdrv_op_unblock(bs, i, reason);
7323 }
7324}
7325
7326bool bdrv_op_blocker_is_empty(BlockDriverState *bs)
7327{
7328 int i;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007329 GLOBAL_STATE_CODE();
Fam Zhengfbe40ff2014-05-23 21:29:42 +08007330 for (i = 0; i < BLOCK_OP_TYPE_MAX; i++) {
7331 if (!QLIST_EMPTY(&bs->op_blockers[i])) {
7332 return false;
7333 }
7334 }
7335 return true;
7336}
7337
Kevin Wolfe1355052022-12-07 14:18:30 +01007338/*
7339 * Must not be called while holding the lock of an AioContext other than the
7340 * current one.
7341 */
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007342void bdrv_img_create(const char *filename, const char *fmt,
7343 const char *base_filename, const char *base_fmt,
Fam Zheng92172832017-04-21 20:27:01 +08007344 char *options, uint64_t img_size, int flags, bool quiet,
7345 Error **errp)
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007346{
Chunyan Liu83d05212014-06-05 17:20:51 +08007347 QemuOptsList *create_opts = NULL;
7348 QemuOpts *opts = NULL;
7349 const char *backing_fmt, *backing_file;
7350 int64_t size;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007351 BlockDriver *drv, *proto_drv;
Max Reitzcc84d902013-09-06 17:14:26 +02007352 Error *local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007353 int ret = 0;
7354
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007355 GLOBAL_STATE_CODE();
7356
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007357 /* Find driver and parse its options */
7358 drv = bdrv_find_format(fmt);
7359 if (!drv) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007360 error_setg(errp, "Unknown file format '%s'", fmt);
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007361 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007362 }
7363
Max Reitzb65a5e12015-02-05 13:58:12 -05007364 proto_drv = bdrv_find_protocol(filename, true, errp);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007365 if (!proto_drv) {
Luiz Capitulinod92ada22012-11-30 10:52:09 -02007366 return;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007367 }
7368
Max Reitzc6149722014-12-02 18:32:45 +01007369 if (!drv->create_opts) {
7370 error_setg(errp, "Format driver '%s' does not support image creation",
7371 drv->format_name);
7372 return;
7373 }
7374
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007375 if (!proto_drv->create_opts) {
7376 error_setg(errp, "Protocol driver '%s' does not support image creation",
7377 proto_drv->format_name);
7378 return;
7379 }
7380
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007381 aio_context_acquire(qemu_get_aio_context());
7382
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007383 /* Create parameter list */
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007384 create_opts = qemu_opts_append(create_opts, drv->create_opts);
Maxim Levitsky5a5e7f82020-03-26 03:12:18 +02007385 create_opts = qemu_opts_append(create_opts, proto_drv->create_opts);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007386
Chunyan Liu83d05212014-06-05 17:20:51 +08007387 opts = qemu_opts_create(create_opts, NULL, 0, &error_abort);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007388
7389 /* Parse -o options */
7390 if (options) {
Markus Armbrustera5f9b9d2020-07-07 18:06:05 +02007391 if (!qemu_opts_do_parse(opts, options, NULL, errp)) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007392 goto out;
7393 }
7394 }
7395
Kevin Wolff6dc1c32019-11-26 16:45:49 +01007396 if (!qemu_opt_get(opts, BLOCK_OPT_SIZE)) {
7397 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, img_size, &error_abort);
7398 } else if (img_size != UINT64_C(-1)) {
7399 error_setg(errp, "The image size must be specified only once");
7400 goto out;
7401 }
7402
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007403 if (base_filename) {
Markus Armbruster235e59c2020-07-07 18:05:42 +02007404 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FILE, base_filename,
Markus Armbruster38825782020-07-07 18:05:43 +02007405 NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007406 error_setg(errp, "Backing file not supported for file format '%s'",
7407 fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007408 goto out;
7409 }
7410 }
7411
7412 if (base_fmt) {
Markus Armbruster38825782020-07-07 18:05:43 +02007413 if (!qemu_opt_set(opts, BLOCK_OPT_BACKING_FMT, base_fmt, NULL)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007414 error_setg(errp, "Backing file format not supported for file "
7415 "format '%s'", fmt);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007416 goto out;
7417 }
7418 }
7419
Chunyan Liu83d05212014-06-05 17:20:51 +08007420 backing_file = qemu_opt_get(opts, BLOCK_OPT_BACKING_FILE);
7421 if (backing_file) {
7422 if (!strcmp(filename, backing_file)) {
Luiz Capitulino71c79812012-11-30 10:52:04 -02007423 error_setg(errp, "Error: Trying to create an image with the "
7424 "same filename as the backing file");
Jes Sorensen792da932010-12-16 13:52:17 +01007425 goto out;
7426 }
Connor Kuehl975a7bd2020-08-13 08:47:22 -05007427 if (backing_file[0] == '\0') {
7428 error_setg(errp, "Expected backing file name, got empty string");
7429 goto out;
7430 }
Jes Sorensen792da932010-12-16 13:52:17 +01007431 }
7432
Chunyan Liu83d05212014-06-05 17:20:51 +08007433 backing_fmt = qemu_opt_get(opts, BLOCK_OPT_BACKING_FMT);
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007434
John Snow6e6e55f2017-07-17 20:34:22 -04007435 /* The size for the image must always be specified, unless we have a backing
7436 * file and we have not been forbidden from opening it. */
Eric Blakea8b42a12017-09-25 09:55:07 -05007437 size = qemu_opt_get_size(opts, BLOCK_OPT_SIZE, img_size);
John Snow6e6e55f2017-07-17 20:34:22 -04007438 if (backing_file && !(flags & BDRV_O_NO_BACKING)) {
7439 BlockDriverState *bs;
Max Reitz645ae7d2019-02-01 20:29:14 +01007440 char *full_backing;
John Snow6e6e55f2017-07-17 20:34:22 -04007441 int back_flags;
7442 QDict *backing_options = NULL;
Paolo Bonzini63090da2012-04-12 14:01:03 +02007443
Max Reitz645ae7d2019-02-01 20:29:14 +01007444 full_backing =
7445 bdrv_get_full_backing_filename_from_filename(filename, backing_file,
7446 &local_err);
John Snow6e6e55f2017-07-17 20:34:22 -04007447 if (local_err) {
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007448 goto out;
7449 }
Max Reitz645ae7d2019-02-01 20:29:14 +01007450 assert(full_backing);
John Snow6e6e55f2017-07-17 20:34:22 -04007451
Max Reitzd5b23992021-06-22 16:00:30 +02007452 /*
7453 * No need to do I/O here, which allows us to open encrypted
7454 * backing images without needing the secret
7455 */
John Snow6e6e55f2017-07-17 20:34:22 -04007456 back_flags = flags;
7457 back_flags &= ~(BDRV_O_RDWR | BDRV_O_SNAPSHOT | BDRV_O_NO_BACKING);
Max Reitzd5b23992021-06-22 16:00:30 +02007458 back_flags |= BDRV_O_NO_IO;
John Snow6e6e55f2017-07-17 20:34:22 -04007459
Fam Zhengcc954f02017-12-15 16:04:45 +08007460 backing_options = qdict_new();
John Snow6e6e55f2017-07-17 20:34:22 -04007461 if (backing_fmt) {
John Snow6e6e55f2017-07-17 20:34:22 -04007462 qdict_put_str(backing_options, "driver", backing_fmt);
7463 }
Fam Zhengcc954f02017-12-15 16:04:45 +08007464 qdict_put_bool(backing_options, BDRV_OPT_FORCE_SHARE, true);
John Snow6e6e55f2017-07-17 20:34:22 -04007465
7466 bs = bdrv_open(full_backing, NULL, backing_options, back_flags,
7467 &local_err);
7468 g_free(full_backing);
Eric Blakeadd82002020-07-06 15:39:50 -05007469 if (!bs) {
7470 error_append_hint(&local_err, "Could not open backing image.\n");
John Snow6e6e55f2017-07-17 20:34:22 -04007471 goto out;
7472 } else {
Eric Blaked9f059a2020-07-06 15:39:54 -05007473 if (!backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007474 error_setg(&local_err,
7475 "Backing file specified without backing format");
Michael Tokarevfbdffb02023-04-05 16:34:04 +03007476 error_append_hint(&local_err, "Detected format of %s.\n",
Eric Blake497a30d2021-05-03 14:36:00 -07007477 bs->drv->format_name);
7478 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007479 }
John Snow6e6e55f2017-07-17 20:34:22 -04007480 if (size == -1) {
7481 /* Opened BS, have no size */
7482 size = bdrv_getlength(bs);
7483 if (size < 0) {
7484 error_setg_errno(errp, -size, "Could not get size of '%s'",
7485 backing_file);
7486 bdrv_unref(bs);
7487 goto out;
7488 }
7489 qemu_opt_set_number(opts, BLOCK_OPT_SIZE, size, &error_abort);
7490 }
7491 bdrv_unref(bs);
7492 }
Eric Blaked9f059a2020-07-06 15:39:54 -05007493 /* (backing_file && !(flags & BDRV_O_NO_BACKING)) */
7494 } else if (backing_file && !backing_fmt) {
Eric Blake497a30d2021-05-03 14:36:00 -07007495 error_setg(&local_err,
7496 "Backing file specified without backing format");
7497 goto out;
Eric Blaked9f059a2020-07-06 15:39:54 -05007498 }
John Snow6e6e55f2017-07-17 20:34:22 -04007499
7500 if (size == -1) {
7501 error_setg(errp, "Image creation needs a size parameter");
7502 goto out;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007503 }
7504
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007505 if (!quiet) {
Kővágó, Zoltánfe646692015-07-07 16:42:10 +02007506 printf("Formatting '%s', fmt=%s ", filename, fmt);
Fam Zheng43c5d8f2014-12-09 15:38:04 +08007507 qemu_opts_print(opts, " ");
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007508 puts("");
Eric Blake4e2f4412020-07-06 15:39:45 -05007509 fflush(stdout);
Miroslav Rezaninaf382d432013-02-13 09:09:40 +01007510 }
Chunyan Liu83d05212014-06-05 17:20:51 +08007511
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007512 ret = bdrv_create(drv, filename, opts, &local_err);
Chunyan Liu83d05212014-06-05 17:20:51 +08007513
Max Reitzcc84d902013-09-06 17:14:26 +02007514 if (ret == -EFBIG) {
7515 /* This is generally a better message than whatever the driver would
7516 * deliver (especially because of the cluster_size_hint), since that
7517 * is most probably not much different from "image too large". */
7518 const char *cluster_size_hint = "";
Chunyan Liu83d05212014-06-05 17:20:51 +08007519 if (qemu_opt_get_size(opts, BLOCK_OPT_CLUSTER_SIZE, 0)) {
Max Reitzcc84d902013-09-06 17:14:26 +02007520 cluster_size_hint = " (try using a larger cluster size)";
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007521 }
Max Reitzcc84d902013-09-06 17:14:26 +02007522 error_setg(errp, "The image size is too large for file format '%s'"
7523 "%s", fmt, cluster_size_hint);
7524 error_free(local_err);
7525 local_err = NULL;
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007526 }
7527
7528out:
Chunyan Liu83d05212014-06-05 17:20:51 +08007529 qemu_opts_del(opts);
7530 qemu_opts_free(create_opts);
Eduardo Habkost621ff942016-06-13 18:57:56 -03007531 error_propagate(errp, local_err);
Kevin Wolfc6e0a6d2023-05-25 14:47:04 +02007532 aio_context_release(qemu_get_aio_context());
Jes Sorensenf88e1a42010-12-16 13:52:15 +01007533}
Stefan Hajnoczi85d126f2013-03-07 13:41:48 +01007534
7535AioContext *bdrv_get_aio_context(BlockDriverState *bs)
7536{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007537 IO_CODE();
Stefan Hajnoczi33f2a752018-02-16 16:50:13 +00007538 return bs ? bs->aio_context : qemu_get_aio_context();
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007539}
7540
Kevin Wolfe336fd42020-10-05 17:58:53 +02007541AioContext *coroutine_fn bdrv_co_enter(BlockDriverState *bs)
7542{
7543 Coroutine *self = qemu_coroutine_self();
7544 AioContext *old_ctx = qemu_coroutine_get_aio_context(self);
7545 AioContext *new_ctx;
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007546 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007547
7548 /*
7549 * Increase bs->in_flight to ensure that this operation is completed before
7550 * moving the node to a different AioContext. Read new_ctx only afterwards.
7551 */
7552 bdrv_inc_in_flight(bs);
7553
7554 new_ctx = bdrv_get_aio_context(bs);
7555 aio_co_reschedule_self(new_ctx);
7556 return old_ctx;
7557}
7558
7559void coroutine_fn bdrv_co_leave(BlockDriverState *bs, AioContext *old_ctx)
7560{
Emanuele Giuseppe Esposito384a48f2022-03-03 10:15:50 -05007561 IO_CODE();
Kevin Wolfe336fd42020-10-05 17:58:53 +02007562 aio_co_reschedule_self(old_ctx);
7563 bdrv_dec_in_flight(bs);
7564}
7565
Kevin Wolf18c6ac12020-10-05 17:58:54 +02007566void coroutine_fn bdrv_co_lock(BlockDriverState *bs)
7567{
7568 AioContext *ctx = bdrv_get_aio_context(bs);
7569
7570 /* In the main thread, bs->aio_context won't change concurrently */
7571 assert(qemu_get_current_aio_context() == qemu_get_aio_context());
7572
7573 /*
7574 * We're in coroutine context, so we already hold the lock of the main
7575 * loop AioContext. Don't lock it twice to avoid deadlocks.
7576 */
7577 assert(qemu_in_coroutine());
7578 if (ctx != qemu_get_aio_context()) {
7579 aio_context_acquire(ctx);
7580 }
7581}
7582
7583void coroutine_fn bdrv_co_unlock(BlockDriverState *bs)
7584{
7585 AioContext *ctx = bdrv_get_aio_context(bs);
7586
7587 assert(qemu_in_coroutine());
7588 if (ctx != qemu_get_aio_context()) {
7589 aio_context_release(ctx);
7590 }
7591}
7592
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007593static void bdrv_do_remove_aio_context_notifier(BdrvAioNotifier *ban)
7594{
Emanuele Giuseppe Espositobdb73472022-03-03 10:16:02 -05007595 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007596 QLIST_REMOVE(ban, list);
7597 g_free(ban);
7598}
7599
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007600static void bdrv_detach_aio_context(BlockDriverState *bs)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007601{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007602 BdrvAioNotifier *baf, *baf_tmp;
Max Reitz33384422014-06-20 21:57:33 +02007603
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007604 assert(!bs->walking_aio_notifiers);
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007605 GLOBAL_STATE_CODE();
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007606 bs->walking_aio_notifiers = true;
7607 QLIST_FOREACH_SAFE(baf, &bs->aio_notifiers, list, baf_tmp) {
7608 if (baf->deleted) {
7609 bdrv_do_remove_aio_context_notifier(baf);
7610 } else {
7611 baf->detach_aio_context(baf->opaque);
7612 }
Max Reitz33384422014-06-20 21:57:33 +02007613 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007614 /* Never mind iterating again to check for ->deleted. bdrv_close() will
7615 * remove remaining aio notifiers if we aren't called again.
7616 */
7617 bs->walking_aio_notifiers = false;
Max Reitz33384422014-06-20 21:57:33 +02007618
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007619 if (bs->drv && bs->drv->bdrv_detach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007620 bs->drv->bdrv_detach_aio_context(bs);
7621 }
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007622
7623 bs->aio_context = NULL;
7624}
7625
Kevin Wolfa3a683c2019-05-06 19:17:57 +02007626static void bdrv_attach_aio_context(BlockDriverState *bs,
7627 AioContext *new_context)
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007628{
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007629 BdrvAioNotifier *ban, *ban_tmp;
Emanuele Giuseppe Espositoda359902022-03-03 10:16:11 -05007630 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007631
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007632 bs->aio_context = new_context;
7633
Kevin Wolf1bffe1a2019-04-17 17:15:25 +02007634 if (bs->drv && bs->drv->bdrv_attach_aio_context) {
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007635 bs->drv->bdrv_attach_aio_context(bs, new_context);
7636 }
Max Reitz33384422014-06-20 21:57:33 +02007637
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007638 assert(!bs->walking_aio_notifiers);
7639 bs->walking_aio_notifiers = true;
7640 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_tmp) {
7641 if (ban->deleted) {
7642 bdrv_do_remove_aio_context_notifier(ban);
7643 } else {
7644 ban->attached_aio_context(new_context, ban->opaque);
7645 }
Max Reitz33384422014-06-20 21:57:33 +02007646 }
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007647 bs->walking_aio_notifiers = false;
Stefan Hajnoczidcd04222014-05-08 16:34:37 +02007648}
7649
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007650typedef struct BdrvStateSetAioContext {
7651 AioContext *new_ctx;
7652 BlockDriverState *bs;
7653} BdrvStateSetAioContext;
7654
7655static bool bdrv_parent_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007656 GHashTable *visited,
7657 Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007658 Error **errp)
7659{
7660 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007661 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007662 return true;
7663 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007664 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007665
7666 /*
7667 * A BdrvChildClass that doesn't handle AioContext changes cannot
7668 * tolerate any AioContext changes
7669 */
7670 if (!c->klass->change_aio_ctx) {
7671 char *user = bdrv_child_user_desc(c);
7672 error_setg(errp, "Changing iothreads is not supported by %s", user);
7673 g_free(user);
7674 return false;
7675 }
7676 if (!c->klass->change_aio_ctx(c, ctx, visited, tran, errp)) {
7677 assert(!errp || *errp);
7678 return false;
7679 }
7680 return true;
7681}
7682
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007683bool bdrv_child_change_aio_context(BdrvChild *c, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007684 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007685 Error **errp)
7686{
7687 GLOBAL_STATE_CODE();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007688 if (g_hash_table_contains(visited, c)) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007689 return true;
7690 }
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007691 g_hash_table_add(visited, c);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007692 return bdrv_change_aio_context(c->bs, ctx, visited, tran, errp);
7693}
7694
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007695static void bdrv_set_aio_context_clean(void *opaque)
7696{
7697 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7698 BlockDriverState *bs = (BlockDriverState *) state->bs;
7699
7700 /* Paired with bdrv_drained_begin in bdrv_change_aio_context() */
7701 bdrv_drained_end(bs);
7702
7703 g_free(state);
7704}
7705
7706static void bdrv_set_aio_context_commit(void *opaque)
7707{
7708 BdrvStateSetAioContext *state = (BdrvStateSetAioContext *) opaque;
7709 BlockDriverState *bs = (BlockDriverState *) state->bs;
7710 AioContext *new_context = state->new_ctx;
7711 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007712
7713 /*
7714 * Take the old AioContex when detaching it from bs.
7715 * At this point, new_context lock is already acquired, and we are now
7716 * also taking old_context. This is safe as long as bdrv_detach_aio_context
7717 * does not call AIO_POLL_WHILE().
7718 */
7719 if (old_context != qemu_get_aio_context()) {
7720 aio_context_acquire(old_context);
7721 }
7722 bdrv_detach_aio_context(bs);
7723 if (old_context != qemu_get_aio_context()) {
7724 aio_context_release(old_context);
7725 }
7726 bdrv_attach_aio_context(bs, new_context);
7727}
7728
7729static TransactionActionDrv set_aio_context = {
7730 .commit = bdrv_set_aio_context_commit,
7731 .clean = bdrv_set_aio_context_clean,
7732};
7733
Kevin Wolf42a65f02019-05-07 18:31:38 +02007734/*
7735 * Changes the AioContext used for fd handlers, timers, and BHs by this
7736 * BlockDriverState and all its children and parents.
7737 *
Max Reitz43eaaae2019-07-22 15:30:54 +02007738 * Must be called from the main AioContext.
7739 *
Kevin Wolf42a65f02019-05-07 18:31:38 +02007740 * The caller must own the AioContext lock for the old AioContext of bs, but it
7741 * must not own the AioContext lock for new_context (unless new_context is the
7742 * same as the current context of bs).
7743 *
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007744 * @visited will accumulate all visited BdrvChild objects. The caller is
Kevin Wolf42a65f02019-05-07 18:31:38 +02007745 * responsible for freeing the list afterwards.
7746 */
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007747static bool bdrv_change_aio_context(BlockDriverState *bs, AioContext *ctx,
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007748 GHashTable *visited, Transaction *tran,
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007749 Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007750{
7751 BdrvChild *c;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007752 BdrvStateSetAioContext *state;
7753
7754 GLOBAL_STATE_CODE();
Kevin Wolf5d231842019-05-06 19:17:56 +02007755
7756 if (bdrv_get_aio_context(bs) == ctx) {
7757 return true;
7758 }
7759
Kevin Wolf7f831d22023-09-11 11:46:17 +02007760 bdrv_graph_rdlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007761 QLIST_FOREACH(c, &bs->parents, next_parent) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007762 if (!bdrv_parent_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007763 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007764 return false;
7765 }
7766 }
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007767
Kevin Wolf5d231842019-05-06 19:17:56 +02007768 QLIST_FOREACH(c, &bs->children, next) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007769 if (!bdrv_child_change_aio_context(c, ctx, visited, tran, errp)) {
Kevin Wolf7f831d22023-09-11 11:46:17 +02007770 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007771 return false;
7772 }
7773 }
Kevin Wolf7f831d22023-09-11 11:46:17 +02007774 bdrv_graph_rdunlock_main_loop();
Kevin Wolf5d231842019-05-06 19:17:56 +02007775
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007776 state = g_new(BdrvStateSetAioContext, 1);
7777 *state = (BdrvStateSetAioContext) {
7778 .new_ctx = ctx,
7779 .bs = bs,
7780 };
7781
7782 /* Paired with bdrv_drained_end in bdrv_set_aio_context_clean() */
7783 bdrv_drained_begin(bs);
7784
7785 tran_add(tran, &set_aio_context, state);
7786
Kevin Wolf5d231842019-05-06 19:17:56 +02007787 return true;
7788}
7789
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007790/*
7791 * Change bs's and recursively all of its parents' and children's AioContext
7792 * to the given new context, returning an error if that isn't possible.
7793 *
7794 * If ignore_child is not NULL, that child (and its subgraph) will not
7795 * be touched.
7796 *
7797 * This function still requires the caller to take the bs current
7798 * AioContext lock, otherwise draining will fail since AIO_WAIT_WHILE
7799 * assumes the lock is always held if bs is in another AioContext.
7800 * For the same reason, it temporarily also holds the new AioContext, since
7801 * bdrv_drained_end calls BDRV_POLL_WHILE that assumes the lock is taken too.
7802 * Therefore the new AioContext lock must not be taken by the caller.
7803 */
Emanuele Giuseppe Espositoa41cfda2022-10-25 04:49:51 -04007804int bdrv_try_change_aio_context(BlockDriverState *bs, AioContext *ctx,
7805 BdrvChild *ignore_child, Error **errp)
Kevin Wolf5d231842019-05-06 19:17:56 +02007806{
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007807 Transaction *tran;
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007808 GHashTable *visited;
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007809 int ret;
7810 AioContext *old_context = bdrv_get_aio_context(bs);
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007811 GLOBAL_STATE_CODE();
7812
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007813 /*
7814 * Recursion phase: go through all nodes of the graph.
7815 * Take care of checking that all nodes support changing AioContext
Michael Tokarev3202d8e2023-07-14 14:06:05 +03007816 * and drain them, building a linear list of callbacks to run if everything
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007817 * is successful (the transaction itself).
7818 */
7819 tran = tran_new();
Emanuele Giuseppe Espositoe08cc002022-10-25 04:49:45 -04007820 visited = g_hash_table_new(NULL, NULL);
7821 if (ignore_child) {
7822 g_hash_table_add(visited, ignore_child);
7823 }
7824 ret = bdrv_change_aio_context(bs, ctx, visited, tran, errp);
7825 g_hash_table_destroy(visited);
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007826
7827 /*
7828 * Linear phase: go through all callbacks collected in the transaction.
7829 * Run all callbacks collected in the recursion to switch all nodes
7830 * AioContext lock (transaction commit), or undo all changes done in the
7831 * recursion (transaction abort).
7832 */
Kevin Wolf5d231842019-05-06 19:17:56 +02007833
7834 if (!ret) {
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007835 /* Just run clean() callbacks. No AioContext changed. */
7836 tran_abort(tran);
Kevin Wolf5d231842019-05-06 19:17:56 +02007837 return -EPERM;
7838 }
7839
Emanuele Giuseppe Esposito7e8c1822022-10-25 04:49:44 -04007840 /*
7841 * Release old AioContext, it won't be needed anymore, as all
7842 * bdrv_drained_begin() have been called already.
7843 */
7844 if (qemu_get_aio_context() != old_context) {
7845 aio_context_release(old_context);
7846 }
7847
7848 /*
7849 * Acquire new AioContext since bdrv_drained_end() is going to be called
7850 * after we switched all nodes in the new AioContext, and the function
7851 * assumes that the lock of the bs is always taken.
7852 */
7853 if (qemu_get_aio_context() != ctx) {
7854 aio_context_acquire(ctx);
7855 }
7856
7857 tran_commit(tran);
7858
7859 if (qemu_get_aio_context() != ctx) {
7860 aio_context_release(ctx);
7861 }
7862
7863 /* Re-acquire the old AioContext, since the caller takes and releases it. */
7864 if (qemu_get_aio_context() != old_context) {
7865 aio_context_acquire(old_context);
7866 }
Kevin Wolf53a7d042019-05-06 19:17:59 +02007867
Kevin Wolf5d231842019-05-06 19:17:56 +02007868 return 0;
7869}
7870
Max Reitz33384422014-06-20 21:57:33 +02007871void bdrv_add_aio_context_notifier(BlockDriverState *bs,
7872 void (*attached_aio_context)(AioContext *new_context, void *opaque),
7873 void (*detach_aio_context)(void *opaque), void *opaque)
7874{
7875 BdrvAioNotifier *ban = g_new(BdrvAioNotifier, 1);
7876 *ban = (BdrvAioNotifier){
7877 .attached_aio_context = attached_aio_context,
7878 .detach_aio_context = detach_aio_context,
7879 .opaque = opaque
7880 };
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007881 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007882
7883 QLIST_INSERT_HEAD(&bs->aio_notifiers, ban, list);
7884}
7885
7886void bdrv_remove_aio_context_notifier(BlockDriverState *bs,
7887 void (*attached_aio_context)(AioContext *,
7888 void *),
7889 void (*detach_aio_context)(void *),
7890 void *opaque)
7891{
7892 BdrvAioNotifier *ban, *ban_next;
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007893 GLOBAL_STATE_CODE();
Max Reitz33384422014-06-20 21:57:33 +02007894
7895 QLIST_FOREACH_SAFE(ban, &bs->aio_notifiers, list, ban_next) {
7896 if (ban->attached_aio_context == attached_aio_context &&
7897 ban->detach_aio_context == detach_aio_context &&
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007898 ban->opaque == opaque &&
7899 ban->deleted == false)
Max Reitz33384422014-06-20 21:57:33 +02007900 {
Stefan Hajnoczie8a095d2016-06-16 17:56:26 +01007901 if (bs->walking_aio_notifiers) {
7902 ban->deleted = true;
7903 } else {
7904 bdrv_do_remove_aio_context_notifier(ban);
7905 }
Max Reitz33384422014-06-20 21:57:33 +02007906 return;
7907 }
7908 }
7909
7910 abort();
7911}
7912
Max Reitz77485432014-10-27 11:12:50 +01007913int bdrv_amend_options(BlockDriverState *bs, QemuOpts *opts,
Max Reitzd1402b52018-05-09 23:00:18 +02007914 BlockDriverAmendStatusCB *status_cb, void *cb_opaque,
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007915 bool force,
Max Reitzd1402b52018-05-09 23:00:18 +02007916 Error **errp)
Max Reitz6f176b42013-09-03 10:09:50 +02007917{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007918 GLOBAL_STATE_CODE();
Max Reitzd470ad42017-11-10 21:31:09 +01007919 if (!bs->drv) {
Max Reitzd1402b52018-05-09 23:00:18 +02007920 error_setg(errp, "Node is ejected");
Max Reitzd470ad42017-11-10 21:31:09 +01007921 return -ENOMEDIUM;
7922 }
Chunyan Liuc282e1f2014-06-05 17:21:11 +08007923 if (!bs->drv->bdrv_amend_options) {
Max Reitzd1402b52018-05-09 23:00:18 +02007924 error_setg(errp, "Block driver '%s' does not support option amendment",
7925 bs->drv->format_name);
Max Reitz6f176b42013-09-03 10:09:50 +02007926 return -ENOTSUP;
7927 }
Maxim Levitskya3579bf2020-06-25 14:55:38 +02007928 return bs->drv->bdrv_amend_options(bs, opts, status_cb,
7929 cb_opaque, force, errp);
Max Reitz6f176b42013-09-03 10:09:50 +02007930}
Benoît Canetf6186f42013-10-02 14:33:48 +02007931
Max Reitz5d69b5a2020-02-18 11:34:41 +01007932/*
7933 * This function checks whether the given @to_replace is allowed to be
7934 * replaced by a node that always shows the same data as @bs. This is
7935 * used for example to verify whether the mirror job can replace
7936 * @to_replace by the target mirrored from @bs.
7937 * To be replaceable, @bs and @to_replace may either be guaranteed to
7938 * always show the same data (because they are only connected through
7939 * filters), or some driver may allow replacing one of its children
7940 * because it can guarantee that this child's data is not visible at
7941 * all (for example, for dissenting quorum children that have no other
7942 * parents).
7943 */
7944bool bdrv_recurse_can_replace(BlockDriverState *bs,
7945 BlockDriverState *to_replace)
7946{
Max Reitz93393e62019-06-12 17:03:38 +02007947 BlockDriverState *filtered;
7948
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05007949 GLOBAL_STATE_CODE();
7950
Max Reitz5d69b5a2020-02-18 11:34:41 +01007951 if (!bs || !bs->drv) {
7952 return false;
7953 }
7954
7955 if (bs == to_replace) {
7956 return true;
7957 }
7958
7959 /* See what the driver can do */
7960 if (bs->drv->bdrv_recurse_can_replace) {
7961 return bs->drv->bdrv_recurse_can_replace(bs, to_replace);
7962 }
7963
7964 /* For filters without an own implementation, we can recurse on our own */
Max Reitz93393e62019-06-12 17:03:38 +02007965 filtered = bdrv_filter_bs(bs);
7966 if (filtered) {
7967 return bdrv_recurse_can_replace(filtered, to_replace);
Max Reitz5d69b5a2020-02-18 11:34:41 +01007968 }
7969
7970 /* Safe default */
7971 return false;
7972}
7973
Max Reitz810803a2020-02-18 11:34:44 +01007974/*
7975 * Check whether the given @node_name can be replaced by a node that
7976 * has the same data as @parent_bs. If so, return @node_name's BDS;
7977 * NULL otherwise.
7978 *
7979 * @node_name must be a (recursive) *child of @parent_bs (or this
7980 * function will return NULL).
7981 *
7982 * The result (whether the node can be replaced or not) is only valid
7983 * for as long as no graph or permission changes occur.
7984 */
Wen Congyange12f3782015-07-17 10:12:22 +08007985BlockDriverState *check_to_replace_node(BlockDriverState *parent_bs,
7986 const char *node_name, Error **errp)
Benoît Canet09158f02014-06-27 18:25:25 +02007987{
7988 BlockDriverState *to_replace_bs = bdrv_find_node(node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007989 AioContext *aio_context;
7990
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05007991 GLOBAL_STATE_CODE();
7992
Benoît Canet09158f02014-06-27 18:25:25 +02007993 if (!to_replace_bs) {
Connor Kuehl785ec4b2021-03-05 09:19:28 -06007994 error_setg(errp, "Failed to find node with node-name='%s'", node_name);
Benoît Canet09158f02014-06-27 18:25:25 +02007995 return NULL;
7996 }
7997
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01007998 aio_context = bdrv_get_aio_context(to_replace_bs);
7999 aio_context_acquire(aio_context);
8000
Benoît Canet09158f02014-06-27 18:25:25 +02008001 if (bdrv_op_is_blocked(to_replace_bs, BLOCK_OP_TYPE_REPLACE, errp)) {
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01008002 to_replace_bs = NULL;
8003 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02008004 }
8005
8006 /* We don't want arbitrary node of the BDS chain to be replaced only the top
8007 * most non filter in order to prevent data corruption.
8008 * Another benefit is that this tests exclude backing files which are
8009 * blocked by the backing blockers.
8010 */
Max Reitz810803a2020-02-18 11:34:44 +01008011 if (!bdrv_recurse_can_replace(parent_bs, to_replace_bs)) {
8012 error_setg(errp, "Cannot replace '%s' by a node mirrored from '%s', "
8013 "because it cannot be guaranteed that doing so would not "
8014 "lead to an abrupt change of visible data",
8015 node_name, parent_bs->node_name);
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01008016 to_replace_bs = NULL;
8017 goto out;
Benoît Canet09158f02014-06-27 18:25:25 +02008018 }
8019
Stefan Hajnoczi5a7e7a02014-10-21 12:03:58 +01008020out:
8021 aio_context_release(aio_context);
Benoît Canet09158f02014-06-27 18:25:25 +02008022 return to_replace_bs;
8023}
Ming Lei448ad912014-07-04 18:04:33 +08008024
Max Reitz97e2f022019-02-01 20:29:27 +01008025/**
8026 * Iterates through the list of runtime option keys that are said to
8027 * be "strong" for a BDS. An option is called "strong" if it changes
8028 * a BDS's data. For example, the null block driver's "size" and
8029 * "read-zeroes" options are strong, but its "latency-ns" option is
8030 * not.
8031 *
8032 * If a key returned by this function ends with a dot, all options
8033 * starting with that prefix are strong.
8034 */
8035static const char *const *strong_options(BlockDriverState *bs,
8036 const char *const *curopt)
8037{
8038 static const char *const global_options[] = {
8039 "driver", "filename", NULL
8040 };
8041
8042 if (!curopt) {
8043 return &global_options[0];
8044 }
8045
8046 curopt++;
8047 if (curopt == &global_options[ARRAY_SIZE(global_options) - 1] && bs->drv) {
8048 curopt = bs->drv->strong_runtime_opts;
8049 }
8050
8051 return (curopt && *curopt) ? curopt : NULL;
8052}
8053
8054/**
8055 * Copies all strong runtime options from bs->options to the given
8056 * QDict. The set of strong option keys is determined by invoking
8057 * strong_options().
8058 *
8059 * Returns true iff any strong option was present in bs->options (and
8060 * thus copied to the target QDict) with the exception of "filename"
8061 * and "driver". The caller is expected to use this value to decide
8062 * whether the existence of strong options prevents the generation of
8063 * a plain filename.
8064 */
8065static bool append_strong_runtime_options(QDict *d, BlockDriverState *bs)
8066{
8067 bool found_any = false;
8068 const char *const *option_name = NULL;
8069
8070 if (!bs->drv) {
8071 return false;
8072 }
8073
8074 while ((option_name = strong_options(bs, option_name))) {
8075 bool option_given = false;
8076
8077 assert(strlen(*option_name) > 0);
8078 if ((*option_name)[strlen(*option_name) - 1] != '.') {
8079 QObject *entry = qdict_get(bs->options, *option_name);
8080 if (!entry) {
8081 continue;
8082 }
8083
8084 qdict_put_obj(d, *option_name, qobject_ref(entry));
8085 option_given = true;
8086 } else {
8087 const QDictEntry *entry;
8088 for (entry = qdict_first(bs->options); entry;
8089 entry = qdict_next(bs->options, entry))
8090 {
8091 if (strstart(qdict_entry_key(entry), *option_name, NULL)) {
8092 qdict_put_obj(d, qdict_entry_key(entry),
8093 qobject_ref(qdict_entry_value(entry)));
8094 option_given = true;
8095 }
8096 }
8097 }
8098
8099 /* While "driver" and "filename" need to be included in a JSON filename,
8100 * their existence does not prohibit generation of a plain filename. */
8101 if (!found_any && option_given &&
8102 strcmp(*option_name, "driver") && strcmp(*option_name, "filename"))
8103 {
8104 found_any = true;
8105 }
8106 }
8107
Max Reitz62a01a272019-02-01 20:29:34 +01008108 if (!qdict_haskey(d, "driver")) {
8109 /* Drivers created with bdrv_new_open_driver() may not have a
8110 * @driver option. Add it here. */
8111 qdict_put_str(d, "driver", bs->drv->format_name);
8112 }
8113
Max Reitz97e2f022019-02-01 20:29:27 +01008114 return found_any;
8115}
8116
Max Reitz90993622019-02-01 20:29:09 +01008117/* Note: This function may return false positives; it may return true
8118 * even if opening the backing file specified by bs's image header
8119 * would result in exactly bs->backing. */
Emanuele Giuseppe Espositofa8fc1d2021-12-15 07:11:38 -05008120static bool bdrv_backing_overridden(BlockDriverState *bs)
Max Reitz90993622019-02-01 20:29:09 +01008121{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008122 GLOBAL_STATE_CODE();
Max Reitz90993622019-02-01 20:29:09 +01008123 if (bs->backing) {
8124 return strcmp(bs->auto_backing_file,
8125 bs->backing->bs->filename);
8126 } else {
8127 /* No backing BDS, so if the image header reports any backing
8128 * file, it must have been suppressed */
8129 return bs->auto_backing_file[0] != '\0';
8130 }
8131}
8132
Max Reitz91af7012014-07-18 20:24:56 +02008133/* Updates the following BDS fields:
8134 * - exact_filename: A filename which may be used for opening a block device
8135 * which (mostly) equals the given BDS (even without any
8136 * other options; so reading and writing must return the same
8137 * results, but caching etc. may be different)
8138 * - full_open_options: Options which, when given when opening a block device
8139 * (without a filename), result in a BDS (mostly)
8140 * equalling the given one
8141 * - filename: If exact_filename is set, it is copied here. Otherwise,
8142 * full_open_options is converted to a JSON object, prefixed with
8143 * "json:" (for use through the JSON pseudo protocol) and put here.
8144 */
8145void bdrv_refresh_filename(BlockDriverState *bs)
8146{
8147 BlockDriver *drv = bs->drv;
Max Reitze24518e2019-02-01 20:29:06 +01008148 BdrvChild *child;
Max Reitz52f72d62019-06-12 17:43:03 +02008149 BlockDriverState *primary_child_bs;
Max Reitz91af7012014-07-18 20:24:56 +02008150 QDict *opts;
Max Reitz90993622019-02-01 20:29:09 +01008151 bool backing_overridden;
Max Reitz998b3a12019-02-01 20:29:28 +01008152 bool generate_json_filename; /* Whether our default implementation should
8153 fill exact_filename (false) or not (true) */
Max Reitz91af7012014-07-18 20:24:56 +02008154
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008155 GLOBAL_STATE_CODE();
8156
Max Reitz91af7012014-07-18 20:24:56 +02008157 if (!drv) {
8158 return;
8159 }
8160
Max Reitze24518e2019-02-01 20:29:06 +01008161 /* This BDS's file name may depend on any of its children's file names, so
8162 * refresh those first */
8163 QLIST_FOREACH(child, &bs->children, next) {
8164 bdrv_refresh_filename(child->bs);
Max Reitz91af7012014-07-18 20:24:56 +02008165 }
8166
Max Reitzbb808d52019-02-01 20:29:07 +01008167 if (bs->implicit) {
8168 /* For implicit nodes, just copy everything from the single child */
8169 child = QLIST_FIRST(&bs->children);
8170 assert(QLIST_NEXT(child, next) == NULL);
8171
8172 pstrcpy(bs->exact_filename, sizeof(bs->exact_filename),
8173 child->bs->exact_filename);
8174 pstrcpy(bs->filename, sizeof(bs->filename), child->bs->filename);
8175
Pan Nengyuancb895612020-01-16 16:56:00 +08008176 qobject_unref(bs->full_open_options);
Max Reitzbb808d52019-02-01 20:29:07 +01008177 bs->full_open_options = qobject_ref(child->bs->full_open_options);
8178
8179 return;
8180 }
8181
Max Reitz90993622019-02-01 20:29:09 +01008182 backing_overridden = bdrv_backing_overridden(bs);
8183
8184 if (bs->open_flags & BDRV_O_NO_IO) {
8185 /* Without I/O, the backing file does not change anything.
8186 * Therefore, in such a case (primarily qemu-img), we can
8187 * pretend the backing file has not been overridden even if
8188 * it technically has been. */
8189 backing_overridden = false;
8190 }
8191
Max Reitz97e2f022019-02-01 20:29:27 +01008192 /* Gather the options QDict */
8193 opts = qdict_new();
Max Reitz998b3a12019-02-01 20:29:28 +01008194 generate_json_filename = append_strong_runtime_options(opts, bs);
8195 generate_json_filename |= backing_overridden;
Max Reitz97e2f022019-02-01 20:29:27 +01008196
8197 if (drv->bdrv_gather_child_options) {
8198 /* Some block drivers may not want to present all of their children's
8199 * options, or name them differently from BdrvChild.name */
8200 drv->bdrv_gather_child_options(bs, opts, backing_overridden);
8201 } else {
8202 QLIST_FOREACH(child, &bs->children, next) {
Max Reitz25191e52020-05-13 13:05:33 +02008203 if (child == bs->backing && !backing_overridden) {
Max Reitz97e2f022019-02-01 20:29:27 +01008204 /* We can skip the backing BDS if it has not been overridden */
8205 continue;
8206 }
8207
8208 qdict_put(opts, child->name,
8209 qobject_ref(child->bs->full_open_options));
8210 }
8211
8212 if (backing_overridden && !bs->backing) {
8213 /* Force no backing file */
8214 qdict_put_null(opts, "backing");
8215 }
8216 }
8217
8218 qobject_unref(bs->full_open_options);
8219 bs->full_open_options = opts;
8220
Max Reitz52f72d62019-06-12 17:43:03 +02008221 primary_child_bs = bdrv_primary_bs(bs);
8222
Max Reitz998b3a12019-02-01 20:29:28 +01008223 if (drv->bdrv_refresh_filename) {
8224 /* Obsolete information is of no use here, so drop the old file name
8225 * information before refreshing it */
8226 bs->exact_filename[0] = '\0';
8227
8228 drv->bdrv_refresh_filename(bs);
Max Reitz52f72d62019-06-12 17:43:03 +02008229 } else if (primary_child_bs) {
8230 /*
8231 * Try to reconstruct valid information from the underlying
8232 * file -- this only works for format nodes (filter nodes
8233 * cannot be probed and as such must be selected by the user
8234 * either through an options dict, or through a special
8235 * filename which the filter driver must construct in its
8236 * .bdrv_refresh_filename() implementation).
8237 */
Max Reitz998b3a12019-02-01 20:29:28 +01008238
8239 bs->exact_filename[0] = '\0';
8240
Max Reitzfb695c72019-02-01 20:29:29 +01008241 /*
8242 * We can use the underlying file's filename if:
8243 * - it has a filename,
Max Reitz52f72d62019-06-12 17:43:03 +02008244 * - the current BDS is not a filter,
Max Reitzfb695c72019-02-01 20:29:29 +01008245 * - the file is a protocol BDS, and
8246 * - opening that file (as this BDS's format) will automatically create
8247 * the BDS tree we have right now, that is:
8248 * - the user did not significantly change this BDS's behavior with
8249 * some explicit (strong) options
8250 * - no non-file child of this BDS has been overridden by the user
8251 * Both of these conditions are represented by generate_json_filename.
8252 */
Max Reitz52f72d62019-06-12 17:43:03 +02008253 if (primary_child_bs->exact_filename[0] &&
8254 primary_child_bs->drv->bdrv_file_open &&
8255 !drv->is_filter && !generate_json_filename)
Max Reitzfb695c72019-02-01 20:29:29 +01008256 {
Max Reitz52f72d62019-06-12 17:43:03 +02008257 strcpy(bs->exact_filename, primary_child_bs->exact_filename);
Max Reitz998b3a12019-02-01 20:29:28 +01008258 }
8259 }
8260
Max Reitz91af7012014-07-18 20:24:56 +02008261 if (bs->exact_filename[0]) {
8262 pstrcpy(bs->filename, sizeof(bs->filename), bs->exact_filename);
Max Reitz97e2f022019-02-01 20:29:27 +01008263 } else {
Markus Armbrustereab3a462020-12-11 18:11:37 +01008264 GString *json = qobject_to_json(QOBJECT(bs->full_open_options));
Eric Blake5c86bdf2020-06-08 13:26:38 -05008265 if (snprintf(bs->filename, sizeof(bs->filename), "json:%s",
Markus Armbrustereab3a462020-12-11 18:11:37 +01008266 json->str) >= sizeof(bs->filename)) {
Eric Blake5c86bdf2020-06-08 13:26:38 -05008267 /* Give user a hint if we truncated things. */
8268 strcpy(bs->filename + sizeof(bs->filename) - 4, "...");
8269 }
Markus Armbrustereab3a462020-12-11 18:11:37 +01008270 g_string_free(json, true);
Max Reitz91af7012014-07-18 20:24:56 +02008271 }
8272}
Wen Congyange06018a2016-05-10 15:36:37 +08008273
Max Reitz1e89d0f2019-02-01 20:29:18 +01008274char *bdrv_dirname(BlockDriverState *bs, Error **errp)
8275{
8276 BlockDriver *drv = bs->drv;
Max Reitz52f72d62019-06-12 17:43:03 +02008277 BlockDriverState *child_bs;
Max Reitz1e89d0f2019-02-01 20:29:18 +01008278
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008279 GLOBAL_STATE_CODE();
8280
Max Reitz1e89d0f2019-02-01 20:29:18 +01008281 if (!drv) {
8282 error_setg(errp, "Node '%s' is ejected", bs->node_name);
8283 return NULL;
8284 }
8285
8286 if (drv->bdrv_dirname) {
8287 return drv->bdrv_dirname(bs, errp);
8288 }
8289
Max Reitz52f72d62019-06-12 17:43:03 +02008290 child_bs = bdrv_primary_bs(bs);
8291 if (child_bs) {
8292 return bdrv_dirname(child_bs, errp);
Max Reitz1e89d0f2019-02-01 20:29:18 +01008293 }
8294
8295 bdrv_refresh_filename(bs);
8296 if (bs->exact_filename[0] != '\0') {
8297 return path_combine(bs->exact_filename, "");
8298 }
8299
8300 error_setg(errp, "Cannot generate a base directory for %s nodes",
8301 drv->format_name);
8302 return NULL;
8303}
8304
Wen Congyange06018a2016-05-10 15:36:37 +08008305/*
8306 * Hot add/remove a BDS's child. So the user can take a child offline when
8307 * it is broken and take a new child online
8308 */
8309void bdrv_add_child(BlockDriverState *parent_bs, BlockDriverState *child_bs,
8310 Error **errp)
8311{
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008312 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008313 if (!parent_bs->drv || !parent_bs->drv->bdrv_add_child) {
8314 error_setg(errp, "The node %s does not support adding a child",
8315 bdrv_get_device_or_node_name(parent_bs));
8316 return;
8317 }
8318
Sam Li774c7262023-05-08 12:55:30 +08008319 /*
8320 * Non-zoned block drivers do not follow zoned storage constraints
8321 * (i.e. sequential writes to zones). Refuse mixing zoned and non-zoned
8322 * drivers in a graph.
8323 */
8324 if (!parent_bs->drv->supports_zoned_children &&
8325 child_bs->bl.zoned == BLK_Z_HM) {
8326 /*
8327 * The host-aware model allows zoned storage constraints and random
8328 * write. Allow mixing host-aware and non-zoned drivers. Using
8329 * host-aware device as a regular device.
8330 */
8331 error_setg(errp, "Cannot add a %s child to a %s parent",
8332 child_bs->bl.zoned == BLK_Z_HM ? "zoned" : "non-zoned",
8333 parent_bs->drv->supports_zoned_children ?
8334 "support zoned children" : "not support zoned children");
8335 return;
8336 }
8337
Wen Congyange06018a2016-05-10 15:36:37 +08008338 if (!QLIST_EMPTY(&child_bs->parents)) {
8339 error_setg(errp, "The node %s already has a parent",
8340 child_bs->node_name);
8341 return;
8342 }
8343
8344 parent_bs->drv->bdrv_add_child(parent_bs, child_bs, errp);
8345}
8346
8347void bdrv_del_child(BlockDriverState *parent_bs, BdrvChild *child, Error **errp)
8348{
8349 BdrvChild *tmp;
8350
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008351 GLOBAL_STATE_CODE();
Wen Congyange06018a2016-05-10 15:36:37 +08008352 if (!parent_bs->drv || !parent_bs->drv->bdrv_del_child) {
8353 error_setg(errp, "The node %s does not support removing a child",
8354 bdrv_get_device_or_node_name(parent_bs));
8355 return;
8356 }
8357
8358 QLIST_FOREACH(tmp, &parent_bs->children, next) {
8359 if (tmp == child) {
8360 break;
8361 }
8362 }
8363
8364 if (!tmp) {
8365 error_setg(errp, "The node %s does not have a child named %s",
8366 bdrv_get_device_or_node_name(parent_bs),
8367 bdrv_get_device_or_node_name(child->bs));
8368 return;
8369 }
8370
8371 parent_bs->drv->bdrv_del_child(parent_bs, child, errp);
8372}
Max Reitz6f7a3b52020-04-29 16:11:23 +02008373
8374int bdrv_make_empty(BdrvChild *c, Error **errp)
8375{
8376 BlockDriver *drv = c->bs->drv;
8377 int ret;
8378
Emanuele Giuseppe Espositof791bf72022-03-03 10:15:49 -05008379 GLOBAL_STATE_CODE();
Max Reitz6f7a3b52020-04-29 16:11:23 +02008380 assert(c->perm & (BLK_PERM_WRITE | BLK_PERM_WRITE_UNCHANGED));
8381
8382 if (!drv->bdrv_make_empty) {
8383 error_setg(errp, "%s does not support emptying nodes",
8384 drv->format_name);
8385 return -ENOTSUP;
8386 }
8387
8388 ret = drv->bdrv_make_empty(c->bs);
8389 if (ret < 0) {
8390 error_setg_errno(errp, -ret, "Failed to empty %s",
8391 c->bs->filename);
8392 return ret;
8393 }
8394
8395 return 0;
8396}
Max Reitz9a6fc882019-05-31 15:23:11 +02008397
8398/*
8399 * Return the child that @bs acts as an overlay for, and from which data may be
8400 * copied in COW or COR operations. Usually this is the backing file.
8401 */
8402BdrvChild *bdrv_cow_child(BlockDriverState *bs)
8403{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008404 IO_CODE();
8405
Max Reitz9a6fc882019-05-31 15:23:11 +02008406 if (!bs || !bs->drv) {
8407 return NULL;
8408 }
8409
8410 if (bs->drv->is_filter) {
8411 return NULL;
8412 }
8413
8414 if (!bs->backing) {
8415 return NULL;
8416 }
8417
8418 assert(bs->backing->role & BDRV_CHILD_COW);
8419 return bs->backing;
8420}
8421
8422/*
8423 * If @bs acts as a filter for exactly one of its children, return
8424 * that child.
8425 */
8426BdrvChild *bdrv_filter_child(BlockDriverState *bs)
8427{
8428 BdrvChild *c;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008429 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008430
8431 if (!bs || !bs->drv) {
8432 return NULL;
8433 }
8434
8435 if (!bs->drv->is_filter) {
8436 return NULL;
8437 }
8438
8439 /* Only one of @backing or @file may be used */
8440 assert(!(bs->backing && bs->file));
8441
8442 c = bs->backing ?: bs->file;
8443 if (!c) {
8444 return NULL;
8445 }
8446
8447 assert(c->role & BDRV_CHILD_FILTERED);
8448 return c;
8449}
8450
8451/*
8452 * Return either the result of bdrv_cow_child() or bdrv_filter_child(),
8453 * whichever is non-NULL.
8454 *
8455 * Return NULL if both are NULL.
8456 */
8457BdrvChild *bdrv_filter_or_cow_child(BlockDriverState *bs)
8458{
8459 BdrvChild *cow_child = bdrv_cow_child(bs);
8460 BdrvChild *filter_child = bdrv_filter_child(bs);
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008461 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008462
8463 /* Filter nodes cannot have COW backing files */
8464 assert(!(cow_child && filter_child));
8465
8466 return cow_child ?: filter_child;
8467}
8468
8469/*
8470 * Return the primary child of this node: For filters, that is the
8471 * filtered child. For other nodes, that is usually the child storing
8472 * metadata.
8473 * (A generally more helpful description is that this is (usually) the
8474 * child that has the same filename as @bs.)
8475 *
8476 * Drivers do not necessarily have a primary child; for example quorum
8477 * does not.
8478 */
8479BdrvChild *bdrv_primary_child(BlockDriverState *bs)
8480{
8481 BdrvChild *c, *found = NULL;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008482 IO_CODE();
Max Reitz9a6fc882019-05-31 15:23:11 +02008483
8484 QLIST_FOREACH(c, &bs->children, next) {
8485 if (c->role & BDRV_CHILD_PRIMARY) {
8486 assert(!found);
8487 found = c;
8488 }
8489 }
8490
8491 return found;
8492}
Max Reitzd38d7eb2019-06-12 15:06:37 +02008493
8494static BlockDriverState *bdrv_do_skip_filters(BlockDriverState *bs,
8495 bool stop_on_explicit_filter)
8496{
8497 BdrvChild *c;
8498
8499 if (!bs) {
8500 return NULL;
8501 }
8502
8503 while (!(stop_on_explicit_filter && !bs->implicit)) {
8504 c = bdrv_filter_child(bs);
8505 if (!c) {
8506 /*
8507 * A filter that is embedded in a working block graph must
8508 * have a child. Assert this here so this function does
8509 * not return a filter node that is not expected by the
8510 * caller.
8511 */
8512 assert(!bs->drv || !bs->drv->is_filter);
8513 break;
8514 }
8515 bs = c->bs;
8516 }
8517 /*
8518 * Note that this treats nodes with bs->drv == NULL as not being
8519 * filters (bs->drv == NULL should be replaced by something else
8520 * anyway).
8521 * The advantage of this behavior is that this function will thus
8522 * always return a non-NULL value (given a non-NULL @bs).
8523 */
8524
8525 return bs;
8526}
8527
8528/*
8529 * Return the first BDS that has not been added implicitly or that
8530 * does not have a filtered child down the chain starting from @bs
8531 * (including @bs itself).
8532 */
8533BlockDriverState *bdrv_skip_implicit_filters(BlockDriverState *bs)
8534{
Emanuele Giuseppe Espositob4ad82a2022-03-03 10:15:57 -05008535 GLOBAL_STATE_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008536 return bdrv_do_skip_filters(bs, true);
8537}
8538
8539/*
8540 * Return the first BDS that does not have a filtered child down the
8541 * chain starting from @bs (including @bs itself).
8542 */
8543BlockDriverState *bdrv_skip_filters(BlockDriverState *bs)
8544{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008545 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008546 return bdrv_do_skip_filters(bs, false);
8547}
8548
8549/*
8550 * For a backing chain, return the first non-filter backing image of
8551 * the first non-filter image.
8552 */
8553BlockDriverState *bdrv_backing_chain_next(BlockDriverState *bs)
8554{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008555 IO_CODE();
Max Reitzd38d7eb2019-06-12 15:06:37 +02008556 return bdrv_skip_filters(bdrv_cow_bs(bdrv_skip_filters(bs)));
8557}
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008558
8559/**
8560 * Check whether [offset, offset + bytes) overlaps with the cached
8561 * block-status data region.
8562 *
8563 * If so, and @pnum is not NULL, set *pnum to `bsc.data_end - offset`,
8564 * which is what bdrv_bsc_is_data()'s interface needs.
8565 * Otherwise, *pnum is not touched.
8566 */
8567static bool bdrv_bsc_range_overlaps_locked(BlockDriverState *bs,
8568 int64_t offset, int64_t bytes,
8569 int64_t *pnum)
8570{
8571 BdrvBlockStatusCache *bsc = qatomic_rcu_read(&bs->block_status_cache);
8572 bool overlaps;
8573
8574 overlaps =
8575 qatomic_read(&bsc->valid) &&
8576 ranges_overlap(offset, bytes, bsc->data_start,
8577 bsc->data_end - bsc->data_start);
8578
8579 if (overlaps && pnum) {
8580 *pnum = bsc->data_end - offset;
8581 }
8582
8583 return overlaps;
8584}
8585
8586/**
8587 * See block_int.h for this function's documentation.
8588 */
8589bool bdrv_bsc_is_data(BlockDriverState *bs, int64_t offset, int64_t *pnum)
8590{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008591 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008592 RCU_READ_LOCK_GUARD();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008593 return bdrv_bsc_range_overlaps_locked(bs, offset, 1, pnum);
8594}
8595
8596/**
8597 * See block_int.h for this function's documentation.
8598 */
8599void bdrv_bsc_invalidate_range(BlockDriverState *bs,
8600 int64_t offset, int64_t bytes)
8601{
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008602 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008603 RCU_READ_LOCK_GUARD();
8604
8605 if (bdrv_bsc_range_overlaps_locked(bs, offset, bytes, NULL)) {
8606 qatomic_set(&bs->block_status_cache->valid, false);
8607 }
8608}
8609
8610/**
8611 * See block_int.h for this function's documentation.
8612 */
8613void bdrv_bsc_fill(BlockDriverState *bs, int64_t offset, int64_t bytes)
8614{
8615 BdrvBlockStatusCache *new_bsc = g_new(BdrvBlockStatusCache, 1);
8616 BdrvBlockStatusCache *old_bsc;
Emanuele Giuseppe Esposito967d7902022-03-03 10:15:58 -05008617 IO_CODE();
Hanna Reitz0bc329f2021-08-12 10:41:44 +02008618
8619 *new_bsc = (BdrvBlockStatusCache) {
8620 .valid = true,
8621 .data_start = offset,
8622 .data_end = offset + bytes,
8623 };
8624
8625 QEMU_LOCK_GUARD(&bs->bsc_modify_lock);
8626
8627 old_bsc = qatomic_rcu_read(&bs->block_status_cache);
8628 qatomic_rcu_set(&bs->block_status_cache, new_bsc);
8629 if (old_bsc) {
8630 g_free_rcu(old_bsc, rcu);
8631 }
8632}